diff --git a/lib/src/Makefile b/lib/src/Makefile index 543352b5a..df398befe 100644 --- a/lib/src/Makefile +++ b/lib/src/Makefile @@ -2,6 +2,7 @@ RUNGHC=runghc RUNMAKE=$(RUNGHC) Make.hs PROBSFILE=../../treebanks/PennTreebank/ParseEngAbs.probs +TPROBSFILE=translator/translate.probs #GF_LIB_PATH=.. @@ -138,7 +139,7 @@ TranslateFin: TranslateFin.pgf TranslateFre: TranslateFre.pgf S=-s -GFMKT=mkdir -p ../translator && gf $S -make -literal=Symb -probs=$(PROBSFILE) -gfo-dir ../translator +GFMKT=mkdir -p ../translator && gf $S -make -literal=Symb -probs=$(TPROBSFILE) -gfo-dir ../translator TRANSLATE8=TranslateEng.pgf TranslateBul.pgf TranslateChi.pgf TranslateGer.pgf TranslateSwe.pgf TranslateHin.pgf TranslateFin.pgf TranslateFre.pgf diff --git a/lib/src/chunk/Chunk.gf b/lib/src/chunk/Chunk.gf new file mode 100644 index 000000000..2f6828308 --- /dev/null +++ b/lib/src/chunk/Chunk.gf @@ -0,0 +1,101 @@ +abstract Chunk = Cat, Extensions [VPS,VPI] ** { + +cat + Chunks ; + Chunk ; + + VC ; + +fun + OneChunk : Chunk -> Chunks ; + PlusChunk : Chunk -> Chunks -> Chunks ; + + ChunkPhr : Chunks -> Phr ; + +fun + + AP_Chunk : AP -> Chunk ; + AdA_Chunk : AdA -> Chunk ; + Adv_Chunk : Adv -> Chunk ; + AdV_Chunk : AdV -> Chunk ; + AdN_Chunk : AdN -> Chunk ; + S_Chunk : S -> Chunk ; + SSlash_Chunk : SSlash -> Chunk ; + QS_Chunk : QS -> Chunk ; + CN_Pl_Chunk : CN -> Chunk ; + CN_Sg_Chunk : CN -> Chunk ; + CN_Pl_Gen_Chunk : CN -> Chunk ; + CN_Sg_Gen_Chunk : CN -> Chunk ; + Conj_Chunk : Conj -> Chunk ; + IAdv_Chunk : IAdv -> Chunk ; + IP_Chunk : IP -> Chunk ; + NP_Nom_Chunk : NP -> Chunk ; + NP_Acc_Chunk : NP -> Chunk ; + NP_Gen_Chunk : NP -> Chunk ; + Numeral_Nom_Chunk : Numeral -> Chunk ; + Numeral_Gen_Chunk : Numeral -> Chunk ; + Ord_Nom_Chunk : Ord -> Chunk ; + Ord_Gen_Chunk : Ord -> Chunk ; + Predet_Chunk : Predet -> Chunk ; + Prep_Chunk : Prep -> Chunk ; + RP_Nom_Chunk : RP -> Chunk ; + RP_Gen_Chunk : RP -> Chunk ; + RP_Acc_Chunk : RP -> Chunk ; + Subj_Chunk : Subj -> Chunk ; + PConj_Chunk : PConj -> Chunk ; + + VPS_Chunk : VPS -> Chunk ; + VPI_Chunk : VPI -> Chunk ; + +-- verbs lifted to one cat + + V2_V : V2 -> VC ; + VA_V : VA -> VC ; + VQ_V : VQ -> VC ; + VS_V : VS -> VC ; + VV_V : VV -> VC ; + + V3_V : V3 -> VC ; + V2A_V : V2A -> VC ; + V2Q_V : V2Q -> VC ; + V2S_V : V2S -> VC ; + V2V_V : V2V -> VC ; + + UseVC : Temp -> Pol -> VC -> VPS ; + + +-- syncategorematic chunks + refl_SgP1_Chunk, + refl_SgP2_Chunk, + refl_SgP3_Chunk, + refl_PlP1_Chunk, + refl_PlP2_Chunk, + refl_PlP3_Chunk : Chunk ; + neg_Chunk : Chunk ; + copula_Chunk : Chunk ; + copula_neg_Chunk : Chunk ; + copula_inf_Chunk : Chunk ; + past_copula_Chunk : Chunk ; + past_copula_neg_Chunk : Chunk ; + future_Chunk : Chunk ; + future_neg_Chunk : Chunk ; + cond_Chunk : Chunk ; + cond_neg_Chunk : Chunk ; + perfect_Chunk : Chunk ; + perfect_neg_Chunk : Chunk ; + past_perfect_Chunk : Chunk ; + past_perfect_neg_Chunk : Chunk ; + +-- chunks for punctuation marks + fullstop_Chunk : Chunk ; + exclmark_Chunk : Chunk ; + questmark_Chunk : Chunk ; + comma_Chunk : Chunk ; + colon_Chunk : Chunk ; + semicolon_Chunk : Chunk ; + quote_Chunk : Chunk ; + lpar_Chunk : Chunk ; + rpar_Chunk : Chunk ; + dash_Chunk : Chunk ; + +} \ No newline at end of file diff --git a/lib/src/chunk/ChunkEng.gf b/lib/src/chunk/ChunkEng.gf new file mode 100644 index 000000000..21631c428 --- /dev/null +++ b/lib/src/chunk/ChunkEng.gf @@ -0,0 +1,33 @@ +concrete ChunkEng of Chunk = CatEng, ExtensionsEng [VPS,VPI] ** + ChunkFunctor with (Syntax = SyntaxEng), (Extensions = ExtensionsEng) ** + open + SyntaxEng, (E = ExtensionsEng), Prelude, + (R = ResEng), (P = ParadigmsEng) in { + +oper + emptyNP = mkNP (P.mkPN []) ; + +lin + copula_inf_Chunk = ss "to be" | ss "be" ; + refl_SgP1_Chunk = ss "myself" ; + refl_SgP2_Chunk = ss "yourself" ; + refl_SgP3_Chunk = ss "himself" | ss "herself" | ss "itself" ; + refl_PlP1_Chunk = ss "ourselves" ; + refl_PlP2_Chunk = ss "yourselves" ; + refl_PlP3_Chunk = ss "themselves" ; + neg_Chunk = ss "not" | ss "doesn't" | ss "don't" ; + copula_Chunk = ss "is" | ss "are" | ss "am" ; + copula_neg_Chunk = ss "isn't" | ss "aren't" ; + past_copula_Chunk = ss "was" | ss "were" ; + past_copula_neg_Chunk = ss "wasn't" | ss "weren't" ; + future_Chunk = ss "will" ; + future_neg_Chunk = ss "won't" ; + cond_Chunk = ss "would" ; + cond_neg_Chunk = ss "wouldn't" ; + perfect_Chunk = ss "has" | ss "have" ; + perfect_neg_Chunk = ss "hasn't" | ss "haven't" ; + past_perfect_Chunk = ss "had" ; + past_perfect_neg_Chunk = ss "hadn't" ; + + +} \ No newline at end of file diff --git a/lib/src/chunk/ChunkFunctor.gf b/lib/src/chunk/ChunkFunctor.gf new file mode 100644 index 000000000..a73b5038c --- /dev/null +++ b/lib/src/chunk/ChunkFunctor.gf @@ -0,0 +1,82 @@ +incomplete concrete ChunkFunctor of Chunk = Cat, Extensions [VPS,VPI] ** + open + Syntax, Extensions, + Prelude in { + +lincat + Chunks = {s : Str} ; + Chunk = {s : Str}; + + VC = V ; + +lin + OneChunk c = c ; + PlusChunk c cs = cc2 c cs ; + + ChunkPhr c = ss ("*" ++ c.s) | c ; + +lin + AP_Chunk ap = mkUtt ap ; + AdA_Chunk ada = ada ; + Adv_Chunk adv = adv ; + AdV_Chunk adv = adv ; + AdN_Chunk adn = adn ; + S_Chunk s = mkUtt s ; + SSlash_Chunk s = mkUtt ; + QS_Chunk qs = mkUtt qs ; + CN_Pl_Chunk cn = mkUtt (mkNP aPl_Det cn) ; + CN_Sg_Chunk cn = mkUtt cn ; +---- CN_Pl_Gen_Chunk cn = ss (cn.s ! Pl ! Gen) ; +---- CN_Sg_Gen_Chunk cn = ss (cn.s ! Sg ! Gen) ; + Conj_Chunk conj = ss conj.s2 ; ---- + IAdv_Chunk iadv = iadv ; + IP_Chunk ip = mkUtt ip ; + NP_Nom_Chunk np = mkUtt np ; +---- NP_Acc_Chunk np = ss (np.s ! NPAcc) ; +---- NP_Gen_Chunk np = ss (np.s ! NCase Gen) | ss (np.s ! NPNomPoss) ; + Numeral_Nom_Chunk num = mkUtt (mkNP (mkDet num)) ; +---- Numeral_Gen_Chunk num = ss (num.s ! NCard ! Gen) ; +---- Ord_Nom_Chunk ord = ss (ord.s ! Nom) ; +---- Ord_Gen_Chunk ord = ss (ord.s ! Gen) ; + Predet_Chunk predet = mkUtt (mkNP predet emptyNP) ; + Prep_Chunk prep = mkAdv prep emptyNP ; ---- +---- RP_Nom_Chunk rp = ss (rp.s ! RC Neutr (NCase Nom)) ; +---- RP_Acc_Chunk rp = ss (rp.s ! RPrep Masc) ; ---- +---- RP_Gen_Chunk rp = ss (rp.s ! RC Neutr (NCase Gen)) ; + Subj_Chunk subj = subj ; + PConj_Chunk pconj = pconj ; + + VPS_Chunk vps = mkUtt (E.PredVPS emptyNP vps) ; +-- VPI_Chunk : VPI -> Chunk ; + + + V2_V, + VA_V, + VQ_V, + VS_V, +---- VV_V, + V3_V, + V2A_V, + V2Q_V, + V2S_V, + V2V_V + = \v -> ; + + UseVC t p vc = E.MkVPS t p (mkVP vc) ; + + + fullstop_Chunk = ss "." ; + exclmark_Chunk = ss "!" ; + questmark_Chunk = ss "?" ; + comma_Chunk = ss "," ; + colon_Chunk = ss ":" ; + semicolon_Chunk = ss ";" ; + quote_Chunk = ss "\"" ; + lpar_Chunk = ss "(" ; + rpar_Chunk = ss ")" ; + dash_Chunk = ss "-" ; + +oper + emptyNP : NP = mkNP (P.mkPN []) ; + +} \ No newline at end of file diff --git a/lib/src/chunk/ChunkSwe.gf b/lib/src/chunk/ChunkSwe.gf new file mode 100644 index 000000000..abb0eac04 --- /dev/null +++ b/lib/src/chunk/ChunkSwe.gf @@ -0,0 +1,32 @@ +concrete ChunkSwe of Chunk = CatSwe, ExtensionsSwe [VPS,VPI] ** + ChunkFunctor with (Syntax = SyntaxSwe), (Extensions = ExtensionsSwe) ** + open + SyntaxSwe, (E = ExtensionsSwe), Prelude, + (R = ResSwe), (P = ParadigmsSwe) in { + +oper + emptyNP = mkNP (P.mkPN []) ; + +lin + copula_inf_Chunk = ss "att vara" | ss "vara" ; + refl_SgP1_Chunk = ss "mig själv" ; + refl_SgP2_Chunk = ss "dig själv" ; + refl_SgP3_Chunk = ss "sig själv" ; + refl_PlP1_Chunk = ss "oss själva" ; + refl_PlP2_Chunk = ss "er själva" ; + refl_PlP3_Chunk = ss "sig själva" ; + neg_Chunk = ss "inte" ; + copula_Chunk = ss "är" ; + copula_neg_Chunk = ss "är inte" ; + past_copula_Chunk = ss "var" ; + past_copula_neg_Chunk = ss "var inte" ; + future_Chunk = ss "ska" | ss "skall" ; + future_neg_Chunk = ss "ska inte" | ss "skall inte" ; + cond_Chunk = ss "skulle" ; + cond_neg_Chunk = ss "skulle inte" ; + perfect_Chunk = ss "har" ; + perfect_neg_Chunk = ss "har inte" ; + past_perfect_Chunk = ss "hade" ; + past_perfect_neg_Chunk = ss "hade inte" ; + +} \ No newline at end of file diff --git a/lib/src/translator/Translate.gf b/lib/src/translator/Translate.gf index a2d75d011..33a410ce1 100644 --- a/lib/src/translator/Translate.gf +++ b/lib/src/translator/Translate.gf @@ -19,6 +19,8 @@ abstract Translate = Symbol [PN, Symb, String, CN, Card, NP, MkSymb, SymbPN, CNNumNP], ---- why only these? + Chunk - [VPS,VPI], + Construction, Extensions, Dictionary, @@ -27,8 +29,9 @@ abstract Translate = ** { flags startcat=Phr; - heuristic_search_factor=0.60; - meta_prob=1.0e-5; - meta_token_prob=1.1965149246222233e-9; +---- robustness by Chunk now +---- heuristic_search_factor=0.60; +---- meta_prob=1.0e-5; +---- meta_token_prob=1.1965149246222233e-9; } diff --git a/lib/src/translator/TranslateEng.gf b/lib/src/translator/TranslateEng.gf index 76e20b966..5000aab1a 100644 --- a/lib/src/translator/TranslateEng.gf +++ b/lib/src/translator/TranslateEng.gf @@ -1,4 +1,4 @@ ---# -path=.:../abstract:../english +--# -path=.:src/chunk concrete TranslateEng of Translate = TenseX - [Pol, PNeg, PPos], @@ -27,6 +27,8 @@ concrete TranslateEng of Translate = ConstructionEng, DocumentationEng, + ChunkEng - [VPS,VPI], + ExtensionsEng, DictionaryEng ** open MorphoEng, ResEng, ParadigmsEng, (G = GrammarEng), (E = ExtraEng), Prelude in { diff --git a/lib/src/translator/TranslateSwe.gf b/lib/src/translator/TranslateSwe.gf index 2471985f4..abe69c24b 100644 --- a/lib/src/translator/TranslateSwe.gf +++ b/lib/src/translator/TranslateSwe.gf @@ -1,4 +1,5 @@ ---# -path=.:../swedish/:../scandinavian:../abstract +--# -path=.:src/chunk:alltenses + concrete TranslateSwe of Translate = TenseSwe, NounSwe - [PPartNP], @@ -21,6 +22,8 @@ concrete TranslateSwe of Translate = ConstructionSwe, DocumentationSwe, + ChunkSwe - [VPS,VPI], + ExtensionsSwe, DictionarySwe ** open MorphoSwe, ResSwe, ParadigmsSwe, SyntaxSwe, CommonScand, (E = ExtraSwe), Prelude in { diff --git a/lib/src/translator/translate.probs b/lib/src/translator/translate.probs new file mode 100644 index 000000000..9142b868f --- /dev/null +++ b/lib/src/translator/translate.probs @@ -0,0 +1,65112 @@ +AAnter 3.680390326175346e-2 +ASimul 0.9630957042034355 +AdAP 2.827830116771853e-2 +AdAdV 1.364256480218281e-3 +AdAdv 6.588414792725003e-4 +AdNum 4.229299363057325e-2 +AdVVP 4.304612935772342e-2 +AdVVPSlash 6.291994545842848e-3 +AddAdvQVP 0.3333333333333333 +AdjCN 0.20261756348651422 +AdjOrd 1.5244367206317265e-5 +AdnCAdv 1.597444089456869e-3 +AdvAP 4.664776365133083e-3 +AdvCN 1.1901396926464243e-4 +AdvIAdv 7.272727272727272e-2 +AdvIP 3.8461538461538464e-2 +AdvNP 8.313947773664035e-2 +AdvQVP 0.3333333333333333 +AdvS 4.076757989637492e-2 +AdvSlash 7.886435331230284e-4 +AdvVP 0.1687002187086788 +AdvVPSlash 0.1519278474150252 +ApposCN 1.0041803656704205e-4 +ApposNP 1.2049080960650044e-2 +BaseAP 0.9078947368421053 +BaseAdV 0.5 +BaseAdv 0.9767441860465116 +BaseCN 0.89375 +BaseIAdv 0.6666666666666666 +BaseNP 0.835431429762401 +BaseRS 0.9615384615384616 +BaseS 0.9967381174277726 +BaseVPI 0.873015873015873 +BaseVPS 0.961038961038961 +CAdvAP 1.5244367206317265e-5 +CNNumNP 1.064840601553029e-4 +CompAP 0.3753019088430074 +CompAdv 0.13307362680171406 +CompCN 1.5582391897156213e-4 +CompIAdv 0.375 +CompIP 0.625 +CompNP 0.42820412933385277 +CompQS 2.3373587845734321e-4 +CompS 3.825477210751851e-2 +CompVP 2.415270744059213e-2 +ComparA 1.8293240647580719e-4 +ComparAdvAdj 8.668966832532898e-6 +ComparAdvAdjS 8.668966832532898e-6 +ComplA2 2.28665508094759e-3 +ComplBareVS 6.266724320530415e-6 +ComplN2 1.4356060042547494e-3 +ComplN3 1.3850415512465374e-3 +ComplSlash 0.24568692698639494 +ComplSlashIP 0.3333333333333333 +ComplSlashPartLast 2.506689728212166e-5 +ComplVA 6.122589661158216e-3 +ComplVPIVV 1.629348323337908e-4 +ComplVQ 3.3840311330864245e-4 +ComplVS 0.10664084776246609 +ComplVV 6.258577578913727e-2 +CompoundCN 0.10736547702286556 +ConjAP 2.1189670416781e-3 +ConjAdV 9.744689144416293e-5 +ConjAdv 1.0922898208991453e-3 +ConjCN 5.318436751513708e-4 +ConjIAdv 3.636363636363636e-2 +ConjNP 2.736094273887924e-2 +ConjRS 2.843494085532302e-3 +ConjS 1.9207456695670914e-2 +ConjVPI 0.3216374269005848 +ConjVPS 0.32962138084632514 +ConsAP 8.552631578947369e-2 +ConsAdV 0.5 +ConsAdv 2.3255813953488372e-2 +ConsCN 0.10625 +ConsIAdv 0.3333333333333333 +ConsNP 0.164568570237599 +ConsRS 3.8461538461538464e-2 +ConsS 3.2618825722274e-3 +ConsVPI 0.12698412698412698 +ConsVPS 3.896103896103896e-2 +CountNP 3.8252350840404965e-3 +D_0 0.19584979296558946 +D_1 0.1889486459473609 +D_2 7.596021131788111e-2 +D_3 5.197277616486602e-2 +D_4 5.016419970491647e-2 +D_5 6.496597020608252e-2 +D_6 4.792727618866308e-2 +D_7 5.420969968111941e-2 +D_8 0.10903812288801104 +D_9 0.16096330493550998 +DashCN 7.36245743462742e-3 +DefArt 0.3595034562979747 +DetCN 0.3793726723676594 +DetNP 1.8124133110535914e-2 +DetQuant 0.9479428710541264 +DetQuantOrd 8.074332548892315e-3 +EmbedQS 0.3125 +EmbedS 6.25e-2 +EmbedVP 0.625 +EmptyRelSlash 8.921317887768919e-2 +ExistNP 8.783542950252049e-4 +ExtAdvNP 2.7303605168026388e-6 +ExtAdvS 7.623717033485089e-3 +ExtAdvVP 6.266724320530415e-6 +FunRP 1.2656625743576763e-4 +GenNP 5.109020301585474e-2 +GenRP 2.670548031894697e-2 +GerundAP 8.826488612457696e-3 +GerundN 1.2505734436831681e-2 +IDig 0.30795600628481645 +IIDig 0.6920439937151835 +IdRP 0.6011897228198962 +IdetCN 7.051282051282051e-2 +IdetIP 5.128205128205128e-2 +IdetQuant 0.14285714285714285 +ImpVP 1.0 +IndefArt 0.4820399731008536 +MassNP 7.935519806035189e-2 +MkSymb 1.0 +MkVPI 0.672514619883041 +MkVPS 0.6391982182628062 +NoPConj 0.97636755262944 +NoVoc 0.9999796789270473 +NumCard 6.588767786682927e-2 +NumDigits 0.5488747346072187 +NumNumeral 0.27125265392781317 +NumPl 0.3241324320045965 +NumSg 0.6070425590544256 +OrdCompar 1.1806375442739079e-3 +OrdDigits 2.9515938606847697e-3 +OrdNumeral 8.618654073199528e-2 +OrdSuperl 0.7497048406139315 +PConjConj 1.2354710233276436e-2 +PNeg 2.5737765781314283e-2 +PPos 0.9738708997682096 +PartNP 2.2315119237120458e-5 +PassVPSlash 3.3577108909401965e-2 +PastPartAP 4.9589926522150066e-2 +PastPartRS 6.46041856232939e-2 +PhrUtt 1.0 +PositA 0.7892771121070764 +PositAdAAdj 0.670892494929006 +PositAdVAdj 0.4894757357240304 +PositAdvAdj 3.371361201172044e-2 +PossNP 6.2333566402356475e-2 +PossPron 6.186197829893191e-2 +PredSCVP 6.364886195834819e-5 +PredVP 0.9827129690921126 +PredVPS 1.3020482566022827e-3 +PredVPosv 1.4575589388461735e-2 +PredVPovs 1.6039513213503742e-3 +PredetNP 1.2259318720443848e-3 +PrepIP 1.818181818181818e-2 +PrepNP 0.7427830851119164 +PresPartRS 0.17618289353958144 +ProgrVP 2.0228986106672182e-2 +QuestCl 0.18502202643171806 +QuestIAdv 0.15859030837004406 +QuestIComp 3.0837004405286344e-2 +QuestQVP 4.405286343612335e-3 +QuestSlash 0.44493392070484583 +QuestVP 0.15859030837004406 +ReflA2 1.5244367206317265e-5 +ReflVP 5.013379456424332e-5 +RelCN 3.719186539520076e-6 +RelCl 3.0088761847449976e-4 +RelNP 2.006268907746579e-2 +RelS 8.97964314898126e-6 +RelSlash 8.048743794192868e-2 +RelVP 0.8299984955619076 +SSubjS 1.0595978915797885e-3 +SentAP 1.5244367206317265e-4 +SentCN 3.719186539520076e-6 +Slash2V3 6.538417308734865e-3 +Slash3V3 2.52994036569138e-3 +SlashBareV2S 1.642818419280117e-5 +SlashPrep 0.26025236593059936 +SlashSlashV2V 1.9713821031361404e-4 +SlashV2A 3.006357707282614e-3 +SlashV2Q 3.285636838560234e-5 +SlashV2S 3.285636838560234e-4 +SlashV2V 3.104926812439421e-2 +SlashV2VNP 3.285636838560234e-5 +SlashV2a 0.7921834699610653 +SlashVP 0.7239747634069401 +SlashVPIV2V 3.942764206272281e-4 +SlashVS 9.46372239747634e-3 +SlashVV 4.484894284634719e-3 +SubjS 4.386497217261647e-3 +SymbPN 0.8107861060329068 +TCond 1.7737397420867527e-2 +TFut 2.4267291910902697e-2 +TPast 0.25411488862837045 +TPres 0.7038569753810082 +TTAnt 1.0 +UncNeg 3.913344504761236e-4 +Use2N3 1.3850415512465374e-3 +Use3N3 1.3850415512465374e-3 +UseA2 1.5244367206317265e-5 +UseCl 0.7016333970887997 +UseComp 8.03958063080847e-2 +UseComparA 3.2927833165645294e-3 +UseN 0.6240237135333759 +UseN2 1.2087356253440247e-3 +UsePN 0.11859866976835622 +UsePron 5.6442012603344145e-2 +UseQCl 0.8396946564885496 +UseQuantPN 2.0100914124701025e-2 +UseRCl 0.7555732484076433 +UseSlash 1.0 +UseV 7.683004016970289e-2 +UttAP 8.125952260030472e-5 +UttAdV 4.062976130015236e-5 +UttAdv 8.125952260030472e-5 +UttCN 2.23463687150838e-4 +UttCard 2.031488065007618e-5 +UttIAdv 4.062976130015236e-5 +UttIP 2.031488065007618e-5 +UttImpPl 2.031488065007618e-5 +UttImpPol 2.031488065007618e-5 +UttImpSg 7.516505840528187e-4 +UttInterj 2.23463687150838e-4 +UttNP 6.256983240223463e-3 +UttQS 1.2595226003047231e-3 +UttS 0.9908176739461656 +UttVP 8.125952260030472e-5 +VPSlashPrep 1.642818419280117e-5 +VPSlashVS 8.214092096400585e-5 +VocNP 2.03210729526519e-5 +a_bomb_N 3.729715012475897e-6 +a_fortiori_Adv 8.668966832532898e-6 +a_la_carte_Adv 8.668966832532898e-6 +a_la_mode_Adv 8.668966832532898e-6 +a_level_N 3.729715012475897e-6 +a_posteriori_A 1.0773191989054437e-5 +a_posteriori_Adv 8.668966832532898e-6 +a_priori_A 2.1546383978108874e-5 +a_priori_Adv 8.668966832532898e-6 +aa_N 3.729715012475897e-6 +aachen_PN 1.865462821325971e-5 +aalii_N 3.729715012475897e-6 +aardvark_N 3.729715012475897e-6 +aardwolf_N 3.729715012475897e-6 +aarhus_PN 1.865462821325971e-5 +ab_initio_Adv 8.668966832532898e-6 +aba_N 3.729715012475897e-6 +abaca_N 3.729715012475897e-6 +aback_Adv 1.7337933665065797e-5 +abactinal_A 1.0773191989054437e-5 +abacus_N 7.459430024951794e-6 +abaft_Adv 8.668966832532898e-6 +abaft_Prep 9.978546125829467e-6 +abalone_N 3.729715012475897e-6 +abampere_N 3.729715012475897e-6 +abandon_N 3.729715012475897e-6 +abandon_V2 1.0142151101952767e-3 +abandonment_N 7.459430024951794e-6 +abarticulation_N 3.729715012475897e-6 +abase_V2 1.609865254278217e-5 +abasement_N 3.729715012475897e-6 +abash_V2 3.219730508556434e-5 +abashment_N 3.729715012475897e-6 +abasia_N 3.729715012475897e-6 +abasic_A 1.0773191989054437e-5 +abatable_A 1.0773191989054437e-5 +abate_V 2.0410940263981494e-4 +abate_V2 4.8295957628346505e-5 +abatement_N 1.8648575062379485e-5 +abator_N 3.729715012475897e-6 +abattis_N 3.729715012475897e-6 +abattoir_N 3.729715012475897e-6 +abaxial_A 1.0773191989054437e-5 +abaya_N 3.729715012475897e-6 +abbacy_N 3.729715012475897e-6 +abbatial_A 1.0773191989054437e-5 +abbe_N 3.729715012475897e-6 +abbess_N 3.729715012475897e-6 +abbey_N 3.729715012475897e-6 +abbot_N 3.729715012475897e-6 +abbreviate_V2 1.609865254278217e-5 +abbreviation_N 3.729715012475897e-6 +abc_N 3.729715012475897e-6 +abcoulomb_N 3.729715012475897e-6 +abdicable_A 1.0773191989054437e-5 +abdicate_V 2.2678822515534993e-5 +abdicate_V2 3.219730508556434e-5 +abdication_N 3.729715012475897e-6 +abdicator_N 3.729715012475897e-6 +abdomen_N 3.729715012475897e-6 +abdominal_A 1.0773191989054437e-5 +abdominal_N 3.729715012475897e-6 +abdominocentesis_N 3.729715012475897e-6 +abdominoplasty_N 3.729715012475897e-6 +abdominous_A 1.0773191989054437e-5 +abdominousness_N 3.729715012475897e-6 +abdominovesical_A 1.0773191989054437e-5 +abducent_A 1.0773191989054437e-5 +abducent_N 3.729715012475897e-6 +abduct_V2 1.609865254278217e-5 +abduction_N 1.118914503742769e-5 +abductor_N 3.729715012475897e-6 +abe_PN 1.865462821325971e-5 +abeam_Adv 8.668966832532898e-6 +abecedarian_A 1.0773191989054437e-5 +abecedarian_N 3.729715012475897e-6 +abecedarius_N 3.729715012475897e-6 +abed_Adv 8.668966832532898e-6 +abelia_N 3.729715012475897e-6 +abelmosk_N 3.729715012475897e-6 +abercarn_PN 1.865462821325971e-5 +aberdare_PN 1.865462821325971e-5 +aberdeen_PN 1.865462821325971e-5 +abergavenny_PN 1.865462821325971e-5 +abergele_PN 1.865462821325971e-5 +aberrance_N 3.729715012475897e-6 +aberrant_A 1.0773191989054437e-5 +aberrant_N 3.729715012475897e-6 +aberration_N 7.459430024951794e-6 +abertillery_PN 1.865462821325971e-5 +aberystwyth_PN 1.865462821325971e-5 +abet_V 6.803646754660499e-5 +abet_V2 3.219730508556434e-5 +abetalipoproteinemia_N 3.729715012475897e-6 +abetment_N 3.729715012475897e-6 +abettor_N 3.729715012475897e-6 +abeyance_N 3.729715012475897e-6 +abeyant_A 1.0773191989054437e-5 +abfarad_N 3.729715012475897e-6 +abhenry_N 3.729715012475897e-6 +abhor_V2 1.609865254278217e-5 +abhorrence_N 3.729715012475897e-6 +abhorrent_A 1.0773191989054437e-5 +abhorrer_N 3.729715012475897e-6 +abidance_N 3.729715012475897e-6 +abide_V 6.803646754660499e-5 +abide_V2 1.609865254278217e-5 +abide_by_V2 1.609865254278217e-5 +abience_N 3.729715012475897e-6 +abient_A 1.0773191989054437e-5 +ability_N 4.0280922134739686e-4 +abingdon_PN 1.865462821325971e-5 +abiogenesis_N 3.729715012475897e-6 +abiogenetic_A 1.0773191989054437e-5 +abiogenist_N 3.729715012475897e-6 +abiotrophy_N 3.729715012475897e-6 +abject_A 1.0773191989054437e-5 +abjection_N 3.729715012475897e-6 +abjuration_N 3.729715012475897e-6 +abjure_V2 1.609865254278217e-5 +abjurer_N 3.729715012475897e-6 +ablactation_N 3.729715012475897e-6 +ablated_A 1.0773191989054437e-5 +ablation_N 3.729715012475897e-6 +ablative_A 1.0773191989054437e-5 +ablative_N 3.729715012475897e-6 +ablaut_N 3.729715012475897e-6 +ablaze_A 1.0773191989054437e-5 +ablaze_Adv 8.668966832532898e-6 +able_A 2.3808754295810306e-3 +able_bodied_A 1.0773191989054437e-5 +ableism_N 3.729715012475897e-6 +ablepharia_N 3.729715012475897e-6 +abloom_A 1.0773191989054437e-5 +ablution_N 3.729715012475897e-6 +ablutionary_A 1.0773191989054437e-5 +abnegation_N 3.729715012475897e-6 +abnegator_N 3.729715012475897e-6 +abnormal_A 6.463915193432663e-5 +abnormality_N 3.729715012475897e-6 +abo_N 3.729715012475897e-6 +aboard_Adv 2.6006900497598697e-5 +aboard_Prep 9.978546125829467e-5 +abocclusion_N 3.729715012475897e-6 +abode_N 3.729715012475897e-6 +abohm_N 3.729715012475897e-6 +abolish_V2 2.4147978814173252e-4 +abolishable_A 1.0773191989054437e-5 +abolition_N 1.118914503742769e-5 +abolitionary_A 1.0773191989054437e-5 +abolitionism_N 3.729715012475897e-6 +abolitionist_N 3.729715012475897e-6 +abomasal_A 1.0773191989054437e-5 +abomasum_N 3.729715012475897e-6 +abominable_A 2.1546383978108874e-5 +abominate_V2 1.609865254278217e-5 +abomination_N 7.459430024951794e-6 +abominator_N 3.729715012475897e-6 +aborad_Adv 8.668966832532898e-6 +aboral_A 1.0773191989054437e-5 +aboriginal_A 1.0773191989054437e-5 +aboriginal_N 3.729715012475897e-6 +aborigine_N 3.729715012475897e-6 +abort_N 3.729715012475897e-6 +abort_V 4.5357645031069986e-5 +abort_V2 6.439461017112868e-5 +aborticide_N 3.729715012475897e-6 +abortifacient_A 1.0773191989054437e-5 +abortifacient_N 3.729715012475897e-6 +abortion_N 6.601595572082338e-4 +abortionist_N 1.118914503742769e-5 +abortive_A 2.1546383978108874e-5 +abortus_N 3.729715012475897e-6 +abound_V 1.8143058012427994e-4 +about_AdN 0.536741214057508 +about_Adv 6.050938849107963e-3 +about_Prep 1.613530908546625e-2 +about_face_N 3.729715012475897e-6 +about_face_V 2.2678822515534993e-5 +above_A 1.0773191989054437e-5 +above_Adv 1.7337933665065797e-5 +above_N 3.729715012475897e-6 +above_Prep 1.776181210397645e-3 +above_board_A 2.046906477920343e-4 +above_board_Adv 8.668966832532898e-6 +above_mentioned_A 1.0773191989054437e-5 +above_named_A 1.0773191989054437e-5 +aboveboard_A 1.0773191989054437e-5 +aboveground_A 1.0773191989054437e-5 +abracadabra_N 3.729715012475897e-6 +abrachia_N 3.729715012475897e-6 +abrade_V2 1.609865254278217e-5 +abrader_N 3.729715012475897e-6 +abraham_PN 1.865462821325971e-5 +abranchiate_A 1.0773191989054437e-5 +abrasion_N 3.729715012475897e-6 +abrasive_A 3.231957596716331e-5 +abrasive_N 1.8648575062379485e-5 +abrasiveness_N 3.729715012475897e-6 +abreast_Adv 8.668966832532898e-6 +abridge_V2 3.219730508556434e-5 +abridgement_N 3.729715012475897e-6 +abridger_N 3.729715012475897e-6 +abridgment_N 3.729715012475897e-6 +abroach_A 1.0773191989054437e-5 +abroad_A 1.0773191989054437e-5 +abroad_Adv 4.941311094543752e-4 +abrocome_N 3.729715012475897e-6 +abrogate_V2 1.609865254278217e-5 +abrogation_N 3.729715012475897e-6 +abrogator_N 3.729715012475897e-6 +abrupt_A 2.1546383978108874e-4 +abruptness_N 3.729715012475897e-6 +abscess_N 3.729715012475897e-6 +abscessed_A 1.0773191989054437e-5 +abscissa_N 3.729715012475897e-6 +abscission_N 3.729715012475897e-6 +abscond_V 2.2678822515534993e-5 +absconder_N 3.729715012475897e-6 +abscondment_N 3.729715012475897e-6 +abseiler_N 3.729715012475897e-6 +absence_N 8.951316029942152e-5 +absent_A 3.231957596716331e-5 +absent_Prep 2.99356383774884e-5 +absent_V2 1.609865254278217e-5 +absent_minded_A 1.0773191989054437e-5 +absent_mindedness_N 3.729715012475897e-6 +absentee_N 3.729715012475897e-6 +absenteeism_N 1.4918860049903587e-5 +absentmindedness_N 3.729715012475897e-6 +absinth_N 3.729715012475897e-6 +absinthe_N 3.729715012475897e-6 +absolute_A 3.6628852762785085e-4 +absolute_N 3.729715012475897e-6 +absoluteness_N 3.729715012475897e-6 +absolution_N 3.729715012475897e-6 +absolutism_N 1.118914503742769e-5 +absolutist_A 1.0773191989054437e-5 +absolutist_N 3.729715012475897e-6 +absolve_V2 3.219730508556434e-5 +absolver_N 3.729715012475897e-6 +absolvitory_A 1.0773191989054437e-5 +absorb_V2 4.990582288262473e-4 +absorbable_A 1.0773191989054437e-5 +absorbate_N 3.729715012475897e-6 +absorbefacient_A 1.0773191989054437e-5 +absorbency_N 3.729715012475897e-6 +absorbent_A 2.1546383978108874e-5 +absorbent_N 3.729715012475897e-6 +absorber_N 3.729715012475897e-6 +absorbing_A 1.0773191989054437e-5 +absorption_N 7.459430024951794e-6 +absorptivity_N 3.729715012475897e-6 +abstain_V 6.803646754660499e-5 +abstainer_N 3.729715012475897e-6 +abstemious_A 1.0773191989054437e-5 +abstemiousness_N 3.729715012475897e-6 +abstention_N 7.459430024951794e-6 +abstinence_N 7.459430024951794e-6 +abstinent_A 1.0773191989054437e-5 +abstract_A 5.3865959945272184e-5 +abstract_N 7.459430024951794e-6 +abstract_V2 1.609865254278217e-5 +abstractedness_N 3.729715012475897e-6 +abstraction_N 3.729715012475897e-6 +abstractionism_N 3.729715012475897e-6 +abstractionist_N 3.729715012475897e-6 +abstractive_A 1.0773191989054437e-5 +abstractness_N 3.729715012475897e-6 +abstractor_N 3.729715012475897e-6 +abstruse_A 1.0773191989054437e-5 +abstruseness_N 3.729715012475897e-6 +absurd_A 7.541234392338106e-5 +absurd_N 3.729715012475897e-6 +absurdity_N 1.118914503742769e-5 +abulia_N 3.729715012475897e-6 +abulic_A 1.0773191989054437e-5 +abundance_N 3.729715012475897e-6 +abundant_A 8.61855359124355e-5 +abuse_N 1.305400254366564e-4 +abuse_V2 1.2878922034225736e-4 +abuser_N 3.729715012475897e-6 +abusive_A 4.309276795621775e-5 +abut_V 2.2678822515534993e-5 +abutment_N 3.729715012475897e-6 +abutter_N 3.729715012475897e-6 +abuzz_A 1.0773191989054437e-5 +abvolt_N 3.729715012475897e-6 +abwatt_N 3.729715012475897e-6 +abysm_N 3.729715012475897e-6 +abysmal_A 1.0773191989054437e-5 +abyss_N 3.729715012475897e-6 +abyssal_A 1.0773191989054437e-5 +acacia_N 3.729715012475897e-6 +academia_N 3.729715012475897e-6 +academic_A 2.8010299171541536e-4 +academic_N 1.4918860049903587e-5 +academically_Adv 1.7337933665065797e-5 +academician_N 3.729715012475897e-6 +academicianship_N 3.729715012475897e-6 +academy_N 1.8648575062379485e-5 +acanthion_N 3.729715012475897e-6 +acanthocephalan_N 3.729715012475897e-6 +acanthocyte_N 3.729715012475897e-6 +acanthocytosis_N 3.729715012475897e-6 +acanthoid_A 1.0773191989054437e-5 +acantholysis_N 3.729715012475897e-6 +acanthoma_N 3.729715012475897e-6 +acanthosis_N 3.729715012475897e-6 +acanthotic_A 1.0773191989054437e-5 +acanthus_N 3.729715012475897e-6 +acapnic_A 1.0773191989054437e-5 +acardia_N 3.729715012475897e-6 +acariasis_N 3.729715012475897e-6 +acaricide_N 3.729715012475897e-6 +acarid_N 3.729715012475897e-6 +acarine_N 3.729715012475897e-6 +acarophobia_N 3.729715012475897e-6 +acarpelous_A 1.0773191989054437e-5 +acarpous_A 1.0773191989054437e-5 +acarus_N 3.729715012475897e-6 +acatalectic_A 1.0773191989054437e-5 +acatalectic_N 3.729715012475897e-6 +acataphasia_N 3.729715012475897e-6 +acathexia_N 3.729715012475897e-6 +acathexis_N 3.729715012475897e-6 +acaudate_A 1.0773191989054437e-5 +acaulescent_A 1.0773191989054437e-5 +accede_V 9.071529006213997e-5 +accelerando_A 1.0773191989054437e-5 +accelerando_Adv 8.668966832532898e-6 +accelerando_N 3.729715012475897e-6 +accelerate_V 5.896493854039099e-4 +accelerate_V2 1.4488787288503951e-4 +acceleration_N 2.9837720099807175e-5 +accelerative_A 1.0773191989054437e-5 +accelerator_N 7.459430024951794e-6 +accelerometer_N 3.729715012475897e-6 +accent_N 1.4918860049903587e-5 +accent_V2 1.609865254278217e-5 +accentor_N 3.729715012475897e-6 +accentual_A 1.0773191989054437e-5 +accentuate_V2 1.609865254278217e-5 +accentuation_N 3.729715012475897e-6 +accept_V 4.082188052796299e-4 +accept_V2 2.2216140509039393e-3 +accept_VS 3.4656038814763474e-4 +acceptability_N 3.729715012475897e-6 +acceptable_A 1.9391745580297985e-4 +acceptance_N 8.205373027446973e-5 +acceptation_N 3.729715012475897e-6 +acceptive_A 1.0773191989054437e-5 +acceptor_N 3.729715012475897e-6 +access_N 2.7599891092321637e-4 +access_V2 4.8295957628346505e-5 +accessary_A 1.0773191989054437e-5 +accessary_N 3.729715012475897e-6 +accessibility_N 3.729715012475897e-6 +accessible_A 7.541234392338106e-5 +accession_N 3.729715012475897e-6 +accessional_A 1.0773191989054437e-5 +accessorial_A 1.0773191989054437e-5 +accessory_A 1.0773191989054437e-5 +accessory_N 5.2216010174662554e-5 +accidence_N 3.729715012475897e-6 +accident_N 1.08161735361801e-4 +accident_prone_A 1.0773191989054437e-5 +accidental_A 3.231957596716331e-5 +accidental_N 3.729715012475897e-6 +accipitrine_A 1.0773191989054437e-5 +acclaim_N 7.459430024951794e-6 +acclaim_V2 6.439461017112868e-5 +acclamation_N 3.729715012475897e-6 +acclimate_V 2.2678822515534993e-5 +acclimate_V2 1.609865254278217e-5 +acclimation_N 3.729715012475897e-6 +acclimatization_N 3.729715012475897e-6 +acclimatize_V 2.2678822515534993e-5 +acclimatize_V2 1.609865254278217e-5 +acclivitous_A 1.0773191989054437e-5 +acclivity_N 3.729715012475897e-6 +accolade_N 1.4918860049903587e-5 +accommodate_V 1.1339411257767497e-4 +accommodate_V2 3.058743983128612e-4 +accommodation_N 1.4918860049903587e-5 +accommodational_A 1.0773191989054437e-5 +accommodative_A 1.0773191989054437e-5 +accompaniment_N 1.118914503742769e-5 +accompanist_N 7.459430024951794e-6 +accompany_V2 5.473541864545937e-4 +accomplice_N 3.729715012475897e-6 +accomplish_V2 2.8977574577007903e-4 +accomplishable_A 1.0773191989054437e-5 +accomplishment_N 3.356743511228307e-5 +accord_N 2.4616119082340916e-4 +accord_V 1.1339411257767497e-4 +accord_V2 3.219730508556434e-5 +accordance_N 3.729715012475897e-6 +accordant_A 1.0773191989054437e-5 +according_to_Prep 4.949358878411416e-3 +accordingly_Adv 6.935173466026319e-5 +accordion_N 3.729715012475897e-6 +accordionist_N 3.729715012475897e-6 +accost_V2 1.609865254278217e-5 +accouchement_N 3.729715012475897e-6 +account_N 9.995636233435404e-4 +account_V 3.719326892547739e-3 +account_V2 3.219730508556434e-5 +account_for_V2 4.8295957628346505e-5 +accountability_N 3.729715012475897e-6 +accountable_A 5.3865959945272184e-5 +accountancy_N 3.729715012475897e-6 +accountant_N 6.340515521209024e-5 +accountantship_N 3.729715012475897e-6 +accounting_N 3.729715012475897e-6 +accoutered_A 1.0773191989054437e-5 +accra_PN 1.865462821325971e-5 +accredit_V2 1.609865254278217e-5 +accreditation_N 3.729715012475897e-6 +accretion_N 3.729715012475897e-6 +accretionary_A 1.0773191989054437e-5 +accretive_A 1.0773191989054437e-5 +accrington_PN 1.865462821325971e-5 +accrue_V 1.5875175760874494e-4 +accrue_V2 2.7367709322729687e-4 +acculturation_N 3.729715012475897e-6 +acculturational_A 1.0773191989054437e-5 +accumbent_A 1.0773191989054437e-5 +accumulate_V 1.3607293509320997e-4 +accumulate_V2 1.4488787288503951e-4 +accumulation_N 1.8648575062379485e-5 +accumulative_A 1.0773191989054437e-5 +accumulator_N 3.729715012475897e-6 +accuracy_N 2.237829007485538e-5 +accurate_A 2.47783415748252e-4 +accursed_A 1.0773191989054437e-5 +accurst_A 1.0773191989054437e-5 +accusation_N 4.475658014971076e-5 +accusative_A 1.0773191989054437e-5 +accusative_N 3.729715012475897e-6 +accusatorial_A 1.0773191989054437e-5 +accuse_V2 1.2878922034225736e-3 +accused_N 3.729715012475897e-6 +accuser_N 1.4918860049903587e-5 +accusingly_Adv 8.668966832532898e-6 +accustom_V2 1.1269056779947518e-4 +ace_A 1.0773191989054437e-5 +ace_N 1.118914503742769e-5 +acebutolol_N 3.729715012475897e-6 +acentric_A 1.0773191989054437e-5 +acephalia_N 3.729715012475897e-6 +acephalous_A 1.0773191989054437e-5 +acerate_A 1.0773191989054437e-5 +acerb_A 1.0773191989054437e-5 +acerbity_N 3.729715012475897e-6 +acerola_N 3.729715012475897e-6 +acervate_A 1.0773191989054437e-5 +acervulus_N 3.729715012475897e-6 +acetabular_A 1.0773191989054437e-5 +acetabulum_N 3.729715012475897e-6 +acetal_N 3.729715012475897e-6 +acetaldehyde_N 3.729715012475897e-6 +acetaldol_N 3.729715012475897e-6 +acetamide_N 3.729715012475897e-6 +acetaminophen_N 3.729715012475897e-6 +acetanilide_N 3.729715012475897e-6 +acetate_N 7.459430024951794e-6 +acetic_A 1.0773191989054437e-5 +acetin_N 3.729715012475897e-6 +acetone_N 3.729715012475897e-6 +acetonic_A 1.0773191989054437e-5 +acetophenetidin_N 3.729715012475897e-6 +acetose_A 1.0773191989054437e-5 +acetum_N 3.729715012475897e-6 +acetyl_N 3.729715012475897e-6 +acetylation_N 3.729715012475897e-6 +acetylcholine_N 3.729715012475897e-6 +acetylene_N 7.459430024951794e-6 +acetylenic_A 1.0773191989054437e-5 +acetylic_A 1.0773191989054437e-5 +ache_N 3.729715012475897e-6 +ache_V 4.5357645031069986e-5 +ache_for_V2 1.609865254278217e-5 +achene_N 3.729715012475897e-6 +achenial_A 1.0773191989054437e-5 +achievability_N 3.729715012475897e-6 +achievable_A 3.231957596716331e-5 +achieve_V2 1.0625110678236232e-3 +achievement_N 4.848629516218666e-5 +achiever_N 3.729715012475897e-6 +achillea_N 3.729715012475897e-6 +achilles_PN 1.865462821325971e-5 +achimenes_N 3.729715012475897e-6 +achira_N 3.729715012475897e-6 +achlamydeous_A 1.0773191989054437e-5 +achlorhydria_N 3.729715012475897e-6 +achlorhydric_A 1.0773191989054437e-5 +acholia_N 3.729715012475897e-6 +achondrite_N 3.729715012475897e-6 +achondritic_A 1.0773191989054437e-5 +achondroplasia_N 3.729715012475897e-6 +achondroplastic_A 1.0773191989054437e-5 +achromatic_A 1.0773191989054437e-5 +achromatin_N 3.729715012475897e-6 +achromatinic_A 1.0773191989054437e-5 +achromatous_A 1.0773191989054437e-5 +achromia_N 3.729715012475897e-6 +achromic_A 1.0773191989054437e-5 +achylia_N 3.729715012475897e-6 +acicula_N 3.729715012475897e-6 +aciculate_A 1.0773191989054437e-5 +acid_A 4.309276795621775e-5 +acid_N 4.1026865137234865e-5 +acidemia_N 3.729715012475897e-6 +acidic_A 1.0773191989054437e-5 +acidification_N 3.729715012475897e-6 +acidify_V 4.5357645031069986e-5 +acidify_V2 1.609865254278217e-5 +acidimetric_A 1.0773191989054437e-5 +acidimetry_N 3.729715012475897e-6 +acidity_N 3.729715012475897e-6 +acidophil_N 3.729715012475897e-6 +acidophilic_A 1.0773191989054437e-5 +acidophilus_N 3.729715012475897e-6 +acidosis_N 3.729715012475897e-6 +acidotic_A 1.0773191989054437e-5 +acidulated_A 1.0773191989054437e-5 +acidulous_A 1.0773191989054437e-5 +acinar_A 1.0773191989054437e-5 +acinus_N 3.729715012475897e-6 +ack_ack_N 3.729715012475897e-6 +ackee_N 3.729715012475897e-6 +acknowledge_V 2.0410940263981494e-4 +acknowledge_V2 2.092824830561682e-4 +acknowledge_VS 2.8880032345636225e-3 +acknowledgeable_A 1.0773191989054437e-5 +acknowledgement_N 7.459430024951794e-6 +acknowledgment_N 3.729715012475897e-6 +acme_N 3.729715012475897e-6 +acne_N 1.4918860049903587e-5 +acned_A 1.0773191989054437e-5 +acneiform_A 1.0773191989054437e-5 +acold_A 1.0773191989054437e-5 +acolyte_N 3.729715012475897e-6 +aconite_N 3.729715012475897e-6 +acorea_N 3.729715012475897e-6 +acorn_N 7.459430024951794e-6 +acorn_cup_N 3.729715012475897e-6 +acoustic_A 1.0773191989054437e-5 +acoustic_N 3.729715012475897e-6 +acoustically_Adv 8.668966832532898e-6 +acoustician_N 3.729715012475897e-6 +acoustics_N 3.729715012475897e-6 +acquaint_V2 3.219730508556434e-5 +acquaintance_N 3.729715012475897e-6 +acquaintanceship_N 3.729715012475897e-6 +acquiesce_V 6.803646754660499e-5 +acquiescence_N 3.729715012475897e-6 +acquiescent_A 1.0773191989054437e-5 +acquirable_A 1.0773191989054437e-5 +acquire_V2 6.0208960510005315e-3 +acquirement_N 3.729715012475897e-6 +acquirer_N 3.729715012475897e-6 +acquiring_N 3.729715012475897e-6 +acquisition_N 1.156211653867528e-3 +acquisitive_A 3.231957596716331e-5 +acquisitiveness_N 3.729715012475897e-6 +acquit_V2 1.2878922034225736e-4 +acquittal_N 7.459430024951794e-6 +acquittance_N 3.729715012475897e-6 +acre_N 1.1562116538675279e-4 +acreage_N 3.729715012475897e-6 +acrid_A 1.0773191989054437e-5 +acridity_N 3.729715012475897e-6 +acrimonious_A 3.231957596716331e-5 +acrimony_N 1.118914503742769e-5 +acritical_A 1.0773191989054437e-5 +acroanesthesia_N 3.729715012475897e-6 +acrobat_N 3.729715012475897e-6 +acrobatic_A 1.0773191989054437e-5 +acrobatics_N 3.729715012475897e-6 +acrocarp_N 3.729715012475897e-6 +acrocarpous_A 1.0773191989054437e-5 +acrocentric_A 1.0773191989054437e-5 +acrocyanosis_N 3.729715012475897e-6 +acrodont_N 3.729715012475897e-6 +acrogen_N 3.729715012475897e-6 +acrogenic_A 1.0773191989054437e-5 +acromegalic_A 1.0773191989054437e-5 +acromegaly_N 3.729715012475897e-6 +acromicria_N 3.729715012475897e-6 +acromion_N 3.729715012475897e-6 +acromphalus_N 3.729715012475897e-6 +acromyotonia_N 3.729715012475897e-6 +acronym_N 7.459430024951794e-6 +acronymic_A 1.0773191989054437e-5 +acropetal_A 1.0773191989054437e-5 +acrophobia_N 3.729715012475897e-6 +acrophobic_A 1.0773191989054437e-5 +acrophony_N 3.729715012475897e-6 +acropolis_N 3.729715012475897e-6 +acroscopic_A 1.0773191989054437e-5 +acrosome_N 3.729715012475897e-6 +across_Adv 1.7337933665065797e-5 +across_Prep 1.0577258893379234e-3 +acrostic_N 3.729715012475897e-6 +acrylamide_N 3.729715012475897e-6 +acrylic_N 3.729715012475897e-6 +act_N 2.387017607984574e-4 +act_V 2.3359187191001043e-3 +act_V2 1.609865254278217e-5 +act_V2V 4.675081813931744e-4 +act_VA 1.968503937007874e-3 +act_on_V2 1.609865254278217e-5 +act_out_V2 1.609865254278217e-5 +act_up_V 2.2678822515534993e-5 +act_upon_V2 1.609865254278217e-5 +actable_A 1.0773191989054437e-5 +actin_N 3.729715012475897e-6 +actinal_A 1.0773191989054437e-5 +acting_N 3.729715012475897e-6 +actinia_N 3.729715012475897e-6 +actinic_A 1.0773191989054437e-5 +actinism_N 3.729715012475897e-6 +actinium_N 3.729715012475897e-6 +actinoid_A 1.0773191989054437e-5 +actinoid_N 3.729715012475897e-6 +actinolite_N 3.729715012475897e-6 +actinometer_N 3.729715012475897e-6 +actinometric_A 1.0773191989054437e-5 +actinometry_N 3.729715012475897e-6 +actinomorphic_A 1.0773191989054437e-5 +actinomyces_N 3.729715012475897e-6 +actinomycetal_A 1.0773191989054437e-5 +actinomycete_N 3.729715012475897e-6 +actinomycin_N 3.729715012475897e-6 +actinomycosis_N 3.729715012475897e-6 +actinomycotic_A 1.0773191989054437e-5 +actinomyxidian_N 3.729715012475897e-6 +actinopod_N 3.729715012475897e-6 +action_N 1.0555093485306788e-3 +actionable_A 2.1546383978108874e-5 +activate_V2 6.439461017112868e-5 +activation_N 3.729715012475897e-6 +activator_N 3.729715012475897e-6 +active_A 1.508246878467621e-3 +active_N 3.729715012475897e-6 +activeness_N 3.729715012475897e-6 +activism_N 3.729715012475897e-6 +activist_A 1.0773191989054437e-5 +activist_N 1.6037774553646355e-4 +activity_N 9.175098930690706e-4 +actomyosin_N 3.729715012475897e-6 +actor_N 1.193508803992287e-4 +actress_N 2.9837720099807175e-5 +actual_A 2.359329045602922e-3 +actuality_N 3.729715012475897e-6 +actuarial_A 2.1546383978108874e-5 +actuary_N 1.118914503742769e-5 +actuate_V2 1.609865254278217e-5 +actuator_N 3.729715012475897e-6 +acuate_A 1.0773191989054437e-5 +acuity_N 3.729715012475897e-6 +aculea_N 3.729715012475897e-6 +aculeate_A 1.0773191989054437e-5 +aculeus_N 3.729715012475897e-6 +acumen_N 3.729715012475897e-6 +acuminate_A 1.0773191989054437e-5 +acupressure_N 3.729715012475897e-6 +acupuncture_N 3.729715012475897e-6 +acute_A 4.309276795621775e-5 +acuteness_N 3.729715012475897e-6 +acyclic_A 1.0773191989054437e-5 +acyclovir_N 3.729715012475897e-6 +acyl_N 3.729715012475897e-6 +acylation_N 3.729715012475897e-6 +ad_N 1.115184788730293e-3 +ad_PN 1.865462821325971e-5 +ad_hoc_A 1.0773191989054437e-5 +ad_hoc_Adv 8.668966832532898e-6 +ad_infinitum_Adv 8.668966832532898e-6 +ad_interim_Adv 8.668966832532898e-6 +ad_lib_A 1.0773191989054437e-5 +ad_lib_Adv 8.668966832532898e-6 +ad_lib_V 2.2678822515534993e-5 +ad_libitum_Adv 8.668966832532898e-6 +ad_man_N 3.729715012475897e-6 +ad_nauseam_Adv 8.668966832532898e-6 +ad_valorem_Adv 8.668966832532898e-6 +ada_PN 1.865462821325971e-5 +adactylia_N 3.729715012475897e-6 +adactylous_A 1.0773191989054437e-5 +adage_N 3.729715012475897e-6 +adagio_A 1.0773191989054437e-5 +adagio_Adv 8.668966832532898e-6 +adagio_N 3.729715012475897e-6 +adam_PN 1.865462821325971e-5 +adamance_N 3.729715012475897e-6 +adamant_A 5.3865959945272184e-5 +adamant_N 3.729715012475897e-6 +adamantine_A 1.0773191989054437e-5 +adapt_V 2.0410940263981494e-4 +adapt_V2 1.609865254278217e-4 +adaptability_N 3.729715012475897e-6 +adaptable_A 2.1546383978108874e-5 +adaptation_N 1.4918860049903587e-5 +adaptational_A 1.0773191989054437e-5 +adapter_N 7.459430024951794e-6 +adaptive_A 1.0773191989054437e-5 +adaptor_N 3.729715012475897e-6 +adaxial_A 1.0773191989054437e-5 +add_V 4.127545697827369e-3 +add_V2 3.509506254326513e-3 +add_VS 1.9234101542193727e-2 +add_in_V 2.2678822515534993e-5 +add_on_V2 1.609865254278217e-5 +add_up_V 2.2678822515534993e-5 +add_up_V2 1.609865254278217e-5 +add_up_to_V2 1.609865254278217e-5 +addable_A 1.0773191989054437e-5 +addax_N 3.729715012475897e-6 +addend_N 3.729715012475897e-6 +addendum_N 3.729715012475897e-6 +adder_N 3.729715012475897e-6 +addict_N 1.8648575062379485e-5 +addict_V2 6.439461017112868e-5 +addiction_N 1.4918860049903587e-5 +addictive_A 2.1546383978108874e-5 +adding_machine_N 3.729715012475897e-6 +addis_ababa_PN 1.865462821325971e-5 +addition_N 2.0886404069865022e-4 +additional_A 2.4778341574825205e-3 +additive_A 1.0773191989054437e-5 +additive_N 1.118914503742769e-5 +addle_A 1.0773191989054437e-5 +addle_V 2.2678822515534993e-5 +addle_V2 1.609865254278217e-5 +addle_brained_A 1.0773191989054437e-5 +addle_head_N 3.729715012475897e-6 +addle_pated_A 1.0773191989054437e-5 +addlebrained_A 1.0773191989054437e-5 +address_N 7.832401526199384e-5 +address_V2 7.244393644251976e-4 +addressable_A 1.0773191989054437e-5 +addressee_N 3.729715012475897e-6 +addressograph_N 3.729715012475897e-6 +adduce_V2 1.609865254278217e-5 +adducent_A 1.0773191989054437e-5 +adducer_N 3.729715012475897e-6 +adducing_N 3.729715012475897e-6 +adduct_N 3.729715012475897e-6 +adduction_N 3.729715012475897e-6 +adductor_N 3.729715012475897e-6 +adelaide_PN 1.865462821325971e-5 +adelgid_N 3.729715012475897e-6 +adenine_N 3.729715012475897e-6 +adenitis_N 3.729715012475897e-6 +adenocarcinoma_N 3.729715012475897e-6 +adenocarcinomatous_A 1.0773191989054437e-5 +adenoid_A 1.0773191989054437e-5 +adenoidal_A 1.0773191989054437e-5 +adenoidectomy_N 3.729715012475897e-6 +adenoma_N 3.729715012475897e-6 +adenomegaly_N 3.729715012475897e-6 +adenopathy_N 3.729715012475897e-6 +adenosine_N 3.729715012475897e-6 +adenovirus_N 3.729715012475897e-6 +adept_A 3.231957596716331e-5 +adept_N 7.459430024951794e-6 +adeptness_N 3.729715012475897e-6 +adequacy_N 1.118914503742769e-5 +adequate_A 3.770617196169053e-4 +adesite_N 3.729715012475897e-6 +adhere_V 4.5357645031069986e-5 +adherence_N 3.729715012475897e-6 +adherent_A 1.0773191989054437e-5 +adherent_N 3.729715012475897e-6 +adhesion_N 3.729715012475897e-6 +adhesive_A 2.1546383978108874e-5 +adhesive_N 2.6108005087331277e-5 +adhesiveness_N 3.729715012475897e-6 +adhocracy_N 3.729715012475897e-6 +adiabatic_A 1.0773191989054437e-5 +adience_N 3.729715012475897e-6 +adient_A 1.0773191989054437e-5 +adieu_N 3.729715012475897e-6 +adipose_A 1.0773191989054437e-5 +adiposity_N 3.729715012475897e-6 +adit_N 3.729715012475897e-6 +adjacency_N 3.729715012475897e-6 +adjacent_A 8.61855359124355e-5 +adjectival_A 1.0773191989054437e-5 +adjective_A 1.0773191989054437e-5 +adjective_N 7.459430024951794e-6 +adjoin_V 4.5357645031069986e-5 +adjoin_V2 1.609865254278217e-5 +adjourn_V 2.2678822515534993e-5 +adjourn_V2 3.219730508556434e-5 +adjournment_N 1.4918860049903587e-5 +adjudge_V2 1.609865254278217e-5 +adjudicate_V 2.2678822515534993e-5 +adjudicate_V2 1.609865254278217e-5 +adjudication_N 3.729715012475897e-6 +adjudicative_A 1.0773191989054437e-5 +adjudicator_N 2.237829007485538e-5 +adjunct_A 1.0773191989054437e-5 +adjunct_N 3.729715012475897e-6 +adjunctive_A 1.0773191989054437e-5 +adjuration_N 3.729715012475897e-6 +adjuratory_A 1.0773191989054437e-5 +adjure_V2 1.609865254278217e-5 +adjust_V 9.751893681680048e-4 +adjust_V2 8.049326271391085e-4 +adjust_V2V 4.675081813931744e-4 +adjustable_A 3.016493756935242e-4 +adjuster_N 9.324287531189741e-5 +adjustive_A 1.0773191989054437e-5 +adjustment_N 1.9767489566122252e-4 +adjutant_N 3.729715012475897e-6 +adjuvant_A 1.0773191989054437e-5 +adjuvant_N 3.729715012475897e-6 +admass_N 3.729715012475897e-6 +administer_V 9.071529006213997e-5 +administer_V2 1.2878922034225736e-4 +administrable_A 1.0773191989054437e-5 +administration_N 1.0368607734682993e-3 +administrative_A 5.063400234855585e-4 +administratorFem_N 3.729715012475897e-6 +administratorMasc_N 7.832401526199384e-5 +administrivia_N 3.729715012475897e-6 +admirability_N 3.729715012475897e-6 +admirable_A 8.61855359124355e-5 +admiral_N 7.459430024951794e-6 +admiralty_N 3.729715012475897e-6 +admiration_N 3.729715012475897e-6 +admire_V2 6.439461017112868e-5 +admirer_N 1.118914503742769e-5 +admiringly_Adv 8.668966832532898e-6 +admissibility_N 3.729715012475897e-6 +admissible_A 2.1546383978108874e-5 +admission_N 5.967544019961435e-5 +admissive_A 1.0773191989054437e-5 +admit_V 5.669705628883749e-4 +admit_V2 2.575784406845147e-4 +admit_VS 1.7328019407381737e-3 +admittable_A 1.0773191989054437e-5 +admittance_N 3.729715012475897e-6 +admittedly_Adv 5.2013800995197394e-5 +admix_V 2.2678822515534993e-5 +admix_V2 1.609865254278217e-5 +admixture_N 3.729715012475897e-6 +admonish_V2 1.609865254278217e-5 +admonisher_N 3.729715012475897e-6 +admonition_N 1.4918860049903587e-5 +admonitory_A 1.0773191989054437e-5 +adnate_A 1.0773191989054437e-5 +adnexa_N 3.729715012475897e-6 +adnexal_A 1.0773191989054437e-5 +adnoun_N 3.729715012475897e-6 +ado_N 7.459430024951794e-6 +adobe_N 3.729715012475897e-6 +adobo_N 3.729715012475897e-6 +adolescence_N 3.729715012475897e-6 +adolescent_A 2.1546383978108874e-5 +adolescent_N 7.459430024951794e-6 +adonis_N 3.729715012475897e-6 +adopt_V2 1.4166814237648309e-3 +adoptable_A 1.0773191989054437e-5 +adoptee_N 3.729715012475897e-6 +adoption_N 4.1026865137234865e-5 +adoptive_A 2.1546383978108874e-5 +adorability_N 3.729715012475897e-6 +adorable_A 1.0773191989054437e-5 +adoration_N 3.729715012475897e-6 +adore_V2 1.609865254278217e-5 +adorer_N 3.729715012475897e-6 +adoring_A 1.0773191989054437e-5 +adorn_V2 6.439461017112868e-5 +adornment_N 3.729715012475897e-6 +adoxography_N 3.729715012475897e-6 +adrenal_A 1.0773191989054437e-5 +adrenalectomy_N 3.729715012475897e-6 +adrenalin_N 3.729715012475897e-6 +adrenarche_N 3.729715012475897e-6 +adrenergic_A 1.0773191989054437e-5 +adrenergic_N 3.729715012475897e-6 +adrenocortical_A 1.0773191989054437e-5 +adrenocorticotropic_A 1.0773191989054437e-5 +adrenosterone_N 3.729715012475897e-6 +adrian_PN 1.865462821325971e-5 +adrift_A 1.0773191989054437e-5 +adrift_Adv 8.668966832532898e-6 +adroit_A 4.309276795621775e-5 +adroitness_N 3.729715012475897e-6 +adscititious_A 1.0773191989054437e-5 +adscript_A 1.0773191989054437e-5 +adsorbable_A 1.0773191989054437e-5 +adsorbate_N 3.729715012475897e-6 +adsorbent_A 1.0773191989054437e-5 +adsorbent_N 3.729715012475897e-6 +adsorption_N 3.729715012475897e-6 +adulation_N 3.729715012475897e-6 +adulatory_A 1.0773191989054437e-5 +adult_A 2.1546383978108874e-5 +adult_N 1.1562116538675279e-4 +adulterant_N 3.729715012475897e-6 +adulterate_A 1.0773191989054437e-5 +adulterate_V2 1.609865254278217e-5 +adulterating_A 1.0773191989054437e-5 +adulteration_N 3.729715012475897e-6 +adulterator_N 3.729715012475897e-6 +adulterer_N 3.729715012475897e-6 +adulteress_N 3.729715012475897e-6 +adulterine_A 1.0773191989054437e-5 +adulterous_A 1.0773191989054437e-5 +adultery_N 3.729715012475897e-6 +adulthood_N 3.729715012475897e-6 +adumbrate_V2 1.609865254278217e-5 +adumbration_N 3.729715012475897e-6 +adumbrative_A 1.0773191989054437e-5 +adust_A 1.0773191989054437e-5 +advance_N 2.8345834094816813e-4 +advance_V 8.617952555903298e-4 +advance_V2 1.4488787288503952e-3 +advancement_N 1.118914503742769e-5 +advancer_N 3.729715012475897e-6 +advantage_N 2.9464748598559583e-4 +advantage_V2 1.609865254278217e-5 +advantageous_A 2.1546383978108874e-5 +advection_N 3.729715012475897e-6 +advective_A 1.0773191989054437e-5 +advent_N 2.6108005087331277e-5 +adventist_N 3.729715012475897e-6 +adventitial_A 1.0773191989054437e-5 +adventitious_A 1.0773191989054437e-5 +adventive_A 1.0773191989054437e-5 +adventure_N 2.6108005087331277e-5 +adventure_V2 1.609865254278217e-5 +adventurer_N 3.729715012475897e-6 +adventuresome_A 1.0773191989054437e-5 +adventuress_N 3.729715012475897e-6 +adventurism_N 3.729715012475897e-6 +adventuristic_A 1.0773191989054437e-5 +adventurous_A 1.0773191989054437e-5 +adventurousness_N 3.729715012475897e-6 +adverb_N 3.729715012475897e-6 +adverbial_A 1.0773191989054437e-5 +adverbial_N 3.729715012475897e-6 +adversary_N 3.729715012475897e-5 +adversative_A 1.0773191989054437e-5 +adverse_A 3.44742143649742e-4 +adversity_N 3.729715012475897e-6 +advert_N 7.459430024951794e-6 +advert_V 2.2678822515534993e-5 +advertence_N 3.729715012475897e-6 +advertent_A 1.0773191989054437e-5 +advertise_V 4.989340953417699e-4 +advertise_V2 2.092824830561682e-4 +advertisement_N 5.594572518713845e-5 +advertiser_N 3.1329606104797534e-4 +advertising_N 6.377812671333784e-4 +advertorial_N 3.729715012475897e-6 +advice_N 1.6410746054893946e-4 +advisability_N 3.729715012475897e-6 +advisable_A 2.1546383978108874e-5 +advise_V 8.164376105592598e-4 +advise_V2 4.990582288262473e-4 +advise_VS 4.6208051753017965e-4 +advisee_N 3.729715012475897e-6 +adviserFem_N 3.729715012475897e-6 +adviserMasc_N 3.9534979132244504e-4 +advisory_A 1.6159787983581657e-4 +advisory_N 3.729715012475897e-6 +advocacy_N 2.237829007485538e-5 +advocate_N 1.193508803992287e-4 +advocate_V2 2.092824830561682e-4 +advocate_VS 1.1552012938254491e-4 +advowson_N 3.729715012475897e-6 +adynamia_N 3.729715012475897e-6 +adynamic_A 1.0773191989054437e-5 +adz_N 3.729715012475897e-6 +adze_N 3.729715012475897e-6 +aecial_A 1.0773191989054437e-5 +aeciospore_N 3.729715012475897e-6 +aecium_N 3.729715012475897e-6 +aegis_N 7.459430024951794e-6 +aeolotropic_A 1.0773191989054437e-5 +aeon_N 3.729715012475897e-6 +aerate_V2 1.609865254278217e-5 +aeration_N 3.729715012475897e-6 +aerator_N 3.729715012475897e-6 +aerial_A 3.231957596716331e-5 +aerial_N 3.729715012475897e-6 +aerialist_N 3.729715012475897e-6 +aerides_N 3.729715012475897e-6 +aerie_N 3.729715012475897e-6 +aeriferous_A 1.0773191989054437e-5 +aeriform_A 1.0773191989054437e-5 +aerobatics_N 3.729715012475897e-6 +aerobe_N 3.729715012475897e-6 +aerobic_A 1.0773191989054437e-5 +aerobics_N 3.729715012475897e-6 +aerobiosis_N 3.729715012475897e-6 +aerobiotic_A 1.0773191989054437e-5 +aerodontalgia_N 3.729715012475897e-6 +aerodrome_N 3.729715012475897e-6 +aerodynamic_A 2.1546383978108874e-5 +aerodynamics_N 3.729715012475897e-6 +aerolite_N 3.729715012475897e-6 +aerolitic_A 1.0773191989054437e-5 +aerological_A 1.0773191989054437e-5 +aerology_N 3.729715012475897e-6 +aeromechanic_A 1.0773191989054437e-5 +aeromechanics_N 3.729715012475897e-6 +aeromedical_A 1.0773191989054437e-5 +aeromedicine_N 3.729715012475897e-6 +aeronaut_N 3.729715012475897e-6 +aeronautical_A 1.0773191989054437e-5 +aeronautics_N 3.729715012475897e-6 +aerophagia_N 3.729715012475897e-6 +aerophilatelic_A 1.0773191989054437e-5 +aerophilately_N 3.729715012475897e-6 +aerophile_N 3.729715012475897e-6 +aeroplane_N 3.729715012475897e-6 +aerosol_N 3.729715012475897e-6 +aerosolized_A 1.0773191989054437e-5 +aerospace_N 1.3799945546160818e-4 +aertex_N 3.729715012475897e-6 +aery_N 3.729715012475897e-6 +aeschynanthus_N 3.729715012475897e-6 +aesculapian_A 1.0773191989054437e-5 +aesthete_N 3.729715012475897e-6 +aesthetic_A 5.3865959945272184e-5 +aesthetic_N 7.459430024951794e-6 +aesthetical_A 1.0773191989054437e-5 +aesthetics_N 3.729715012475897e-6 +aestival_A 1.0773191989054437e-5 +aether_N 3.729715012475897e-6 +aetiology_N 3.729715012475897e-6 +afar_Adv 8.668966832532898e-6 +afebrile_A 1.0773191989054437e-5 +affability_N 3.729715012475897e-6 +affable_A 2.1546383978108874e-5 +affair_N 2.387017607984574e-4 +affairs_N 3.729715012475897e-6 +affect_N 3.729715012475897e-6 +affect_V2 2.688474974644622e-3 +affectation_N 3.729715012475897e-6 +affectedly_Adv 8.668966832532898e-6 +affectedness_N 3.729715012475897e-6 +affecting_A 1.0773191989054437e-5 +affection_N 7.459430024951794e-6 +affectional_A 1.0773191989054437e-5 +affectionate_A 2.1546383978108874e-5 +affectionateness_N 3.729715012475897e-6 +affenpinscher_N 3.729715012475897e-6 +afferent_A 1.0773191989054437e-5 +affiance_V2 1.609865254278217e-5 +affiant_N 3.729715012475897e-6 +affidavit_N 8.951316029942152e-5 +affiliate_N 1.8648575062379485e-5 +affiliate_V 9.071529006213997e-5 +affiliate_V2 1.609865254278217e-4 +affiliation_N 1.4918860049903587e-5 +affinal_A 1.0773191989054437e-5 +affine_A 1.0773191989054437e-5 +affine_N 3.729715012475897e-6 +affined_A 1.0773191989054437e-5 +affinity_N 1.118914503742769e-5 +affirm_V 2.2678822515534993e-5 +affirm_V2 6.439461017112868e-5 +affirm_VS 1.1552012938254491e-4 +affirmable_A 1.0773191989054437e-5 +affirmation_N 1.118914503742769e-5 +affirmative_A 5.3865959945272184e-5 +affirmative_N 1.4918860049903587e-5 +affirmativeness_N 3.729715012475897e-6 +affix_N 3.729715012475897e-6 +affix_V2 1.609865254278217e-5 +affixal_A 1.0773191989054437e-5 +affixation_N 3.729715012475897e-6 +afflatus_N 3.729715012475897e-6 +afflict_V2 9.659191525669301e-5 +affliction_N 7.459430024951794e-6 +afflictive_A 1.0773191989054437e-5 +affluence_N 3.729715012475897e-6 +affluent_A 1.8314426381392542e-4 +affluent_N 1.118914503742769e-5 +afford_V2 3.702690084839899e-4 +afford_V2V 4.675081813931744e-4 +afforest_V2 1.609865254278217e-5 +afforestation_N 3.729715012475897e-6 +affranchise_V2 1.609865254278217e-5 +affray_N 3.729715012475897e-6 +affricate_N 3.729715012475897e-6 +affrication_N 3.729715012475897e-6 +affront_N 3.729715012475897e-6 +affront_V2 1.609865254278217e-5 +affusion_N 3.729715012475897e-6 +afghan_A 1.0773191989054437e-4 +afghan_N 3.729715012475897e-6 +afghani_N 3.729715012475897e-6 +afghanistan_PN 2.238555385591165e-4 +afghanistaniFem_N 3.729715012475897e-6 +afghanistaniMasc_N 3.729715012475897e-6 +afghanistani_A 1.0773191989054437e-5 +afibrinogenemia_N 3.729715012475897e-6 +aficionado_N 3.729715012475897e-6 +afield_Adv 1.7337933665065797e-5 +afire_A 1.0773191989054437e-5 +aflame_A 1.0773191989054437e-5 +aflare_A 1.0773191989054437e-5 +aflatoxin_N 3.729715012475897e-6 +afloat_A 1.0773191989054437e-5 +aflutter_A 1.0773191989054437e-5 +afoot_A 1.0773191989054437e-5 +afoot_Adv 8.668966832532898e-6 +afore_Adv 8.668966832532898e-6 +afore_Prep 9.978546125829467e-6 +aforesaid_A 1.0773191989054437e-5 +aforethought_Adv 8.668966832532898e-6 +afoul_Adv 8.668966832532898e-6 +afraid_A 2.3701022375919762e-4 +afresh_Adv 8.668966832532898e-6 +africa_PN 1.865462821325971e-5 +africanFem_N 3.729715012475897e-6 +africanMasc_N 3.729715012475897e-6 +african_A 5.3865959945272184e-5 +afrikaans_N 3.729715012475897e-6 +afrikanerFem_N 3.729715012475897e-6 +afrikanerMasc_N 7.459430024951794e-6 +afrikaner_A 1.0773191989054437e-5 +afro_americanFem_N 3.729715012475897e-6 +afro_americanMasc_N 3.729715012475897e-6 +afro_asian_A 1.0773191989054437e-5 +afro_wig_N 3.729715012475897e-6 +afropavo_N 3.729715012475897e-6 +aft_Adv 8.668966832532898e-6 +after_A 1.0773191989054437e-5 +after_Adv 1.6471036981812508e-4 +after_Prep 1.3261487801227361e-2 +after_Subj 1.2048192771084338e-2 +afterbirth_N 3.729715012475897e-6 +afterburner_N 3.729715012475897e-6 +aftercare_N 3.729715012475897e-6 +afterdamp_N 3.729715012475897e-6 +afterdeck_N 3.729715012475897e-6 +aftereffect_N 1.4918860049903587e-5 +afterglow_N 3.729715012475897e-6 +afterimage_N 3.729715012475897e-6 +afterlife_N 3.729715012475897e-6 +aftermath_N 8.951316029942152e-5 +aftermost_A 1.0773191989054437e-5 +afternoon_N 3.095663460354994e-4 +afterpains_N 3.729715012475897e-6 +afterpiece_N 3.729715012475897e-6 +aftershaft_N 3.729715012475897e-6 +aftershafted_A 1.0773191989054437e-5 +aftershock_N 7.459430024951794e-6 +aftertaste_N 3.729715012475897e-6 +afterthought_N 3.729715012475897e-6 +afterwards_Adv 6.068276782773029e-5 +afterworld_N 3.729715012475897e-6 +again_Adv 2.0112003051476323e-3 +against_Prep 5.907299306491044e-3 +agal_N 3.729715012475897e-6 +agalactia_N 3.729715012475897e-6 +agama_N 3.729715012475897e-6 +agamete_N 3.729715012475897e-6 +agamic_A 1.0773191989054437e-5 +agamid_N 3.729715012475897e-6 +agammaglobulinemia_N 3.729715012475897e-6 +agapanthus_N 3.729715012475897e-6 +agape_A 1.0773191989054437e-5 +agape_N 3.729715012475897e-6 +agar_N 3.729715012475897e-6 +agar_agar_N 3.729715012475897e-6 +agaric_N 3.729715012475897e-6 +agate_N 3.729715012475897e-6 +agateware_N 3.729715012475897e-6 +agatha_PN 1.865462821325971e-5 +agave_N 3.729715012475897e-6 +agaze_A 1.0773191989054437e-5 +age_N 4.214577964097763e-4 +age_V 5.669705628883749e-4 +age_V2 3.219730508556434e-5 +age_bracket_N 3.729715012475897e-6 +age_group_N 3.729715012475897e-6 +age_long_A 1.0773191989054437e-5 +age_old_A 1.0773191989054437e-5 +aged_N 3.729715012475897e-6 +agedness_N 3.729715012475897e-6 +ageing_N 3.729715012475897e-6 +ageism_N 3.729715012475897e-6 +ageless_A 1.0773191989054437e-5 +agelessness_N 3.729715012475897e-6 +agelong_A 1.0773191989054437e-5 +agency_N 1.6858311856391053e-3 +agenda_N 9.697259032437332e-5 +agenesis_N 3.729715012475897e-6 +agent_N 1.6410746054893946e-4 +agent_provocateur_N 1.5291831551151176e-4 +agential_A 1.0773191989054437e-5 +agerasia_N 3.729715012475897e-6 +ageratum_N 3.729715012475897e-6 +aggie_PN 1.865462821325971e-5 +agglomerate_A 1.0773191989054437e-5 +agglomerate_N 3.729715012475897e-6 +agglomerate_V 2.2678822515534993e-5 +agglomerate_V2 1.609865254278217e-5 +agglomeration_N 3.729715012475897e-6 +agglomerator_N 3.729715012475897e-6 +agglutinate_A 1.0773191989054437e-5 +agglutinate_V2 1.609865254278217e-5 +agglutination_N 3.729715012475897e-6 +agglutinative_A 1.0773191989054437e-5 +agglutinin_N 3.729715012475897e-6 +agglutinogen_N 3.729715012475897e-6 +aggrandize_V2 1.609865254278217e-5 +aggrandizement_N 3.729715012475897e-6 +aggravate_V2 1.7708517797060386e-4 +aggravating_A 1.0773191989054437e-5 +aggravation_N 3.729715012475897e-6 +aggravator_N 3.729715012475897e-6 +aggregate_A 1.0773191989054437e-5 +aggregate_N 2.9837720099807175e-5 +aggregate_V 2.2678822515534993e-5 +aggregate_V2 1.609865254278217e-5 +aggregation_N 3.729715012475897e-6 +aggression_N 3.729715012475897e-6 +aggressive_A 9.37267703047736e-4 +aggressiveness_N 7.459430024951794e-6 +aggressor_N 3.729715012475897e-6 +aggrieve_V2 1.609865254278217e-5 +aggro_N 3.729715012475897e-6 +aghast_A 2.1546383978108874e-5 +agile_A 1.0773191989054437e-5 +agility_N 1.118914503742769e-5 +agin_Prep 9.978546125829467e-6 +aging_N 7.459430024951794e-6 +agio_N 3.729715012475897e-6 +agitate_V 2.2678822515534993e-5 +agitate_V2 3.219730508556434e-5 +agitation_N 7.459430024951794e-6 +agitative_A 1.0773191989054437e-5 +agitator_N 3.729715012475897e-6 +agitprop_N 3.729715012475897e-6 +agleam_A 1.0773191989054437e-5 +aglet_N 3.729715012475897e-6 +aglow_A 1.0773191989054437e-5 +agm_N 3.729715012475897e-6 +agnail_N 3.729715012475897e-6 +agnate_A 1.0773191989054437e-5 +agnate_N 3.729715012475897e-6 +agnes_PN 1.865462821325971e-5 +agnomen_N 3.729715012475897e-6 +agnosia_N 3.729715012475897e-6 +agnostic_A 1.0773191989054437e-5 +agnostic_N 3.729715012475897e-6 +agnosticism_N 3.729715012475897e-6 +ago_A 1.0773191989054437e-5 +ago_Adv 3.6062902023336857e-3 +ago_Prep 1.49678191887442e-3 +agog_A 1.0773191989054437e-5 +agon_N 3.729715012475897e-6 +agonadal_A 1.0773191989054437e-5 +agonal_A 1.0773191989054437e-5 +agonist_N 3.729715012475897e-6 +agonistic_A 1.0773191989054437e-5 +agonize_V 6.803646754660499e-5 +agonized_A 1.0773191989054437e-5 +agonizingly_Adv 8.668966832532898e-6 +agony_N 3.729715012475897e-6 +agora_N 3.729715012475897e-6 +agoraphobia_N 3.729715012475897e-6 +agoraphobic_A 1.0773191989054437e-5 +agouti_N 3.729715012475897e-6 +agra_PN 1.865462821325971e-5 +agranulocytic_A 1.0773191989054437e-5 +agranulocytosis_N 3.729715012475897e-6 +agrapha_N 3.729715012475897e-6 +agraphia_N 3.729715012475897e-6 +agraphic_A 1.0773191989054437e-5 +agrarian_A 1.0773191989054437e-5 +agree_V 3.333786909783644e-3 +agree_V2 4.8295957628346505e-5 +agree_VS 4.505285045919251e-3 +agree_VV 2.3448010763021335e-2 +agree_on_V 2.2678822515534993e-5 +agree_with_V2 1.609865254278217e-5 +agreeable_A 2.1546383978108874e-5 +agreeableness_N 3.729715012475897e-6 +agreement_N 1.6746420406016777e-3 +agrestic_A 1.0773191989054437e-5 +agribusiness_N 3.729715012475897e-6 +agricultural_A 1.8314426381392542e-4 +agriculture_N 5.594572518713845e-5 +agriculturist_N 3.729715012475897e-6 +agrimonia_N 3.729715012475897e-6 +agrobiologic_A 1.0773191989054437e-5 +agrobiology_N 3.729715012475897e-6 +agrologic_A 1.0773191989054437e-5 +agrology_N 3.729715012475897e-6 +agromania_N 3.729715012475897e-6 +agronomic_A 1.0773191989054437e-5 +agronomist_N 3.729715012475897e-6 +agronomy_N 3.729715012475897e-6 +aground_A 1.0773191989054437e-5 +aground_Adv 8.668966832532898e-6 +agrypnia_N 3.729715012475897e-6 +agrypnotic_A 1.0773191989054437e-5 +agua_N 3.729715012475897e-6 +ague_N 3.729715012475897e-6 +agueweed_N 3.729715012475897e-6 +aguish_A 1.0773191989054437e-5 +ah_Interj 3.0534351145038167e-2 +ahead_Adv 6.84848379770099e-4 +ahead_of_Prep 5.288629446689617e-4 +ahimsa_N 3.729715012475897e-6 +ahistorical_A 1.0773191989054437e-5 +ahmedabad_PN 1.865462821325971e-5 +aid_N 4.550252315220594e-4 +aid_V 2.0410940263981494e-4 +aid_V2 3.702690084839899e-4 +aide_N 7.459430024951794e-6 +aide_de_camp_N 3.729715012475897e-6 +aide_memoire_N 3.729715012475897e-6 +aids_N 3.729715012475897e-6 +aigret_N 3.729715012475897e-6 +aigrette_N 3.729715012475897e-6 +aikido_N 3.729715012475897e-6 +ail_V 2.4946704767088494e-4 +ail_V2 1.609865254278217e-5 +ailanthus_N 3.729715012475897e-6 +aileron_N 3.729715012475897e-6 +ailment_N 1.8648575062379485e-5 +ailurophobia_N 3.729715012475897e-6 +aim_N 7.459430024951794e-5 +aim_V 5.669705628883749e-4 +aim_V2 1.1591029830803161e-3 +aim_VV 1.4414760714972132e-3 +aim_at_V2 1.609865254278217e-5 +aimless_A 3.231957596716331e-5 +aioli_N 3.729715012475897e-6 +air_N 4.512955165095835e-4 +air_V 2.2678822515534994e-4 +air_V2 3.219730508556434e-4 +air_bladder_N 3.729715012475897e-6 +air_conditioned_A 4.309276795621775e-5 +air_conditioning_N 3.729715012475897e-6 +air_cooled_A 1.0773191989054437e-5 +air_minded_A 1.0773191989054437e-5 +air_pump_N 3.729715012475897e-6 +air_raid_N 3.729715012475897e-6 +air_shaft_N 3.729715012475897e-6 +air_sick_A 1.0773191989054437e-5 +air_sickness_N 3.729715012475897e-6 +air_to_air_A 1.0773191989054437e-5 +air_to_ground_A 1.0773191989054437e-5 +airbed_N 3.729715012475897e-6 +airborne_A 4.309276795621775e-5 +airbrake_N 3.729715012475897e-6 +airbrush_N 3.729715012475897e-6 +airburst_N 3.729715012475897e-6 +airbus_N 3.729715012475897e-6 +aircraft_N 3.207554910729271e-4 +aircraftman_N 3.729715012475897e-6 +aircraftsman_N 3.729715012475897e-6 +aircrew_N 3.729715012475897e-6 +aircrewman_N 3.729715012475897e-6 +airdock_N 3.729715012475897e-6 +airdrie_PN 1.865462821325971e-5 +airdrome_N 3.729715012475897e-6 +airdrop_N 3.729715012475897e-6 +aireborough_PN 1.865462821325971e-5 +airedale_N 3.729715012475897e-6 +airfare_N 3.729715012475897e-6 +airfield_N 7.459430024951794e-6 +airflow_N 3.729715012475897e-6 +airfoil_N 3.729715012475897e-6 +airforce_N 3.729715012475897e-6 +airframe_N 3.729715012475897e-6 +airhead_N 3.729715012475897e-6 +airheaded_A 1.0773191989054437e-5 +airiness_N 3.729715012475897e-6 +airing_N 2.237829007485538e-5 +airing_cupboard_N 3.729715012475897e-6 +airless_A 1.0773191989054437e-5 +airlift_N 3.729715012475897e-6 +airline_N 8.093481577072695e-4 +airliner_N 1.118914503742769e-5 +airlock_N 3.729715012475897e-6 +airmail_N 3.729715012475897e-6 +airmailer_N 3.729715012475897e-6 +airman_N 7.459430024951794e-6 +airplane_N 4.848629516218666e-5 +airport_N 1.5664803052398767e-4 +airs_N 3.729715012475897e-6 +airscrew_N 3.729715012475897e-6 +airship_N 3.729715012475897e-6 +airsick_A 1.0773191989054437e-5 +airsickness_N 3.729715012475897e-6 +airspace_N 3.729715012475897e-6 +airspeed_N 3.729715012475897e-6 +airstream_N 3.729715012475897e-6 +airstrip_N 3.729715012475897e-6 +airtight_A 1.0773191989054437e-5 +airway_N 7.459430024951794e-6 +airwoman_N 3.729715012475897e-6 +airworthiness_N 3.729715012475897e-6 +airworthy_A 1.0773191989054437e-5 +airy_A 1.0773191989054437e-5 +aisle_N 2.237829007485538e-5 +aitch_N 3.729715012475897e-6 +aitch_bone_N 3.729715012475897e-6 +aitchbone_N 3.729715012475897e-6 +ajar_A 1.0773191989054437e-5 +aka_Prep 9.978546125829467e-6 +akaryocyte_N 3.729715012475897e-6 +akee_N 3.729715012475897e-6 +akimbo_Adv 8.668966832532898e-6 +akin_A 5.3865959945272184e-5 +akinesis_N 3.729715012475897e-6 +akron_PN 1.865462821325971e-5 +al_PN 1.865462821325971e-5 +ala_N 3.729715012475897e-6 +alabama_PN 9.327314106629855e-5 +alabaster_A 1.0773191989054437e-5 +alabaster_N 3.729715012475897e-6 +alacritous_A 1.0773191989054437e-5 +alacrity_N 3.729715012475897e-6 +alalia_N 3.729715012475897e-6 +alan_PN 1.865462821325971e-5 +alanine_N 3.729715012475897e-6 +alar_A 1.0773191989054437e-5 +alarm_N 4.475658014971076e-5 +alarm_V2 1.609865254278217e-4 +alarm_clock_N 3.729715012475897e-6 +alarming_A 4.309276795621775e-5 +alarmism_N 3.729715012475897e-6 +alarmist_N 3.729715012475897e-6 +alas_Interj 1.5267175572519083e-2 +alaska_PN 3.730925642651942e-4 +alastrim_N 3.729715012475897e-6 +alate_A 1.0773191989054437e-5 +alb_N 3.729715012475897e-6 +albacore_N 3.729715012475897e-6 +albania_PN 5.596388463977913e-5 +albanian_A 1.0773191989054437e-5 +albanian_N 7.459430024951794e-6 +albatross_N 3.729715012475897e-6 +albedo_N 3.729715012475897e-6 +albeit_Subj 8.032128514056225e-4 +albert_PN 1.865462821325971e-5 +alberta_PN 1.865462821325971e-5 +albescent_A 1.0773191989054437e-5 +albinal_A 1.0773191989054437e-5 +albinism_N 3.729715012475897e-6 +albino_N 3.729715012475897e-6 +albite_N 3.729715012475897e-6 +albitic_A 1.0773191989054437e-5 +albizzia_N 3.729715012475897e-6 +albuca_N 3.729715012475897e-6 +albuginea_N 3.729715012475897e-6 +album_N 2.6108005087331277e-5 +albumen_N 3.729715012475897e-6 +albumin_N 3.729715012475897e-6 +albuminous_A 1.0773191989054437e-5 +albuminuria_N 3.729715012475897e-6 +albuminuric_A 1.0773191989054437e-5 +albuterol_N 3.729715012475897e-6 +alcalde_N 3.729715012475897e-6 +alcazar_N 3.729715012475897e-6 +alchemic_A 1.0773191989054437e-5 +alchemist_N 7.459430024951794e-6 +alchemistic_A 1.0773191989054437e-5 +alchemy_N 3.729715012475897e-6 +alcohol_N 5.967544019961435e-5 +alcoholic_A 3.231957596716331e-5 +alcoholic_N 1.118914503742769e-5 +alcoholism_N 1.118914503742769e-5 +alcove_N 3.729715012475897e-6 +aldehyde_N 3.729715012475897e-6 +aldehydic_A 1.0773191989054437e-5 +alder_N 3.729715012475897e-6 +alderfly_N 3.729715012475897e-6 +alderman_N 3.729715012475897e-6 +aldermanic_A 1.0773191989054437e-5 +aldershot_PN 1.865462821325971e-5 +aldohexose_N 3.729715012475897e-6 +aldol_N 3.729715012475897e-6 +aldose_N 3.729715012475897e-6 +aldosterone_N 3.729715012475897e-6 +aldosteronism_N 3.729715012475897e-6 +ale_N 7.459430024951794e-6 +ale_house_N 3.729715012475897e-6 +aleatory_A 1.0773191989054437e-5 +alee_A 1.0773191989054437e-5 +alee_Adv 8.668966832532898e-6 +alehouse_N 3.729715012475897e-6 +alembic_N 3.729715012475897e-6 +alendronate_N 3.729715012475897e-6 +aleph_N 3.729715012475897e-6 +aleppo_PN 1.865462821325971e-5 +alert_A 5.3865959945272184e-5 +alert_N 1.4918860049903587e-5 +alert_V2 1.609865254278217e-4 +alertness_N 3.729715012475897e-6 +alessandria_PN 1.865462821325971e-5 +aleurone_N 3.729715012475897e-6 +aleuronic_A 1.0773191989054437e-5 +alewife_N 3.729715012475897e-6 +alex_PN 1.865462821325971e-5 +alexander_PN 1.865462821325971e-5 +alexandra_PN 1.865462821325971e-5 +alexandria_PN 1.865462821325971e-5 +alexandrine_N 3.729715012475897e-6 +alexandrite_N 3.729715012475897e-6 +alexia_N 3.729715012475897e-6 +alexic_A 1.0773191989054437e-5 +alexic_N 3.729715012475897e-6 +alf_PN 1.865462821325971e-5 +alfalfa_N 7.459430024951794e-6 +alfred_PN 1.865462821325971e-5 +alfresco_A 1.0773191989054437e-5 +alfresco_Adv 1.7337933665065797e-5 +alfreton_PN 1.865462821325971e-5 +alga_N 3.729715012475897e-6 +algal_A 1.0773191989054437e-5 +algarroba_N 3.729715012475897e-6 +algebra_N 3.729715012475897e-6 +algebraic_A 1.0773191989054437e-5 +algebraical_A 1.0773191989054437e-5 +algebraist_N 3.729715012475897e-6 +alger_PN 1.865462821325971e-5 +algeria_PN 1.865462821325971e-5 +algerian_A 1.0773191989054437e-5 +algerian_N 3.729715012475897e-6 +algid_A 1.0773191989054437e-5 +algidity_N 3.729715012475897e-6 +algin_N 3.729715012475897e-6 +algoid_A 1.0773191989054437e-5 +algolagnia_N 3.729715012475897e-6 +algolagnic_A 1.0773191989054437e-5 +algometer_N 3.729715012475897e-6 +algometric_A 1.0773191989054437e-5 +algometry_N 3.729715012475897e-6 +algophobia_N 3.729715012475897e-6 +algophobic_A 1.0773191989054437e-5 +algorism_N 3.729715012475897e-6 +algorithm_N 3.729715012475897e-6 +algorithmic_A 1.0773191989054437e-5 +ali_PN 1.865462821325971e-5 +alias_Adv 8.668966832532898e-6 +alias_N 3.729715012475897e-6 +alibi_N 3.729715012475897e-6 +alicante_PN 1.865462821325971e-5 +alice_PN 1.865462821325971e-5 +alidade_N 3.729715012475897e-6 +alienFem_N 3.729715012475897e-6 +alienMasc_N 2.9837720099807175e-5 +alien_A 5.3865959945272184e-5 +alienable_A 1.0773191989054437e-5 +alienage_N 3.729715012475897e-6 +alienate_V2 1.1269056779947518e-4 +alienating_A 1.0773191989054437e-5 +alienation_N 3.729715012475897e-6 +alienator_N 3.729715012475897e-6 +alienee_N 3.729715012475897e-6 +alienism_N 3.729715012475897e-6 +alienist_N 3.729715012475897e-6 +alienor_N 3.729715012475897e-6 +alight_A 1.0773191989054437e-5 +alight_V 2.2678822515534993e-5 +align_V 2.2678822515534993e-5 +align_V2 1.2878922034225736e-4 +alignment_N 3.729715012475897e-6 +alike_A 1.0773191989054437e-5 +alike_Adv 1.1269656882292768e-4 +alimentary_A 1.0773191989054437e-5 +alimentative_A 1.0773191989054437e-5 +alimony_N 1.118914503742769e-5 +aliphatic_A 1.0773191989054437e-5 +aliquant_N 3.729715012475897e-6 +aliquot_A 1.0773191989054437e-5 +aliquot_N 3.729715012475897e-6 +alison_PN 1.865462821325971e-5 +aliterate_N 3.729715012475897e-6 +alive_A 2.1546383978108874e-4 +aliyah_N 3.729715012475897e-6 +alizarin_N 3.729715012475897e-6 +alkahest_N 3.729715012475897e-6 +alkahestic_A 1.0773191989054437e-5 +alkalemia_N 3.729715012475897e-6 +alkalescent_A 1.0773191989054437e-5 +alkali_N 3.729715012475897e-6 +alkalimetry_N 3.729715012475897e-6 +alkaline_A 1.0773191989054437e-5 +alkalinity_N 3.729715012475897e-6 +alkalinuria_N 3.729715012475897e-6 +alkaloid_N 3.729715012475897e-6 +alkaloidal_A 1.0773191989054437e-5 +alkalosis_N 3.729715012475897e-6 +alkalotic_A 1.0773191989054437e-5 +alkapton_N 3.729715012475897e-6 +alkaptonuria_N 3.729715012475897e-6 +alkene_N 3.729715012475897e-6 +alkyd_N 3.729715012475897e-6 +alkyl_N 3.729715012475897e-6 +alkylbenzene_N 3.729715012475897e-6 +alkylbenzenesulfonate_N 3.729715012475897e-6 +alkylic_A 1.0773191989054437e-5 +all_A 1.0773191989054437e-5 +all_Predet 0.495 +all_mains_A 1.0773191989054437e-5 +all_round_A 1.0773191989054437e-5 +all_rounder_N 3.729715012475897e-6 +allah_PN 1.865462821325971e-5 +allahabad_PN 1.865462821325971e-5 +allamanda_N 3.729715012475897e-6 +allan_PN 1.865462821325971e-5 +allantoic_A 1.0773191989054437e-5 +allantoid_A 1.0773191989054437e-5 +allantois_N 3.729715012475897e-6 +allargando_A 1.0773191989054437e-5 +allay_V2 1.1269056779947518e-4 +allegation_N 1.7902632059884304e-4 +allege_V2 8.53228584767455e-4 +allege_V2V 4.675081813931744e-4 +allege_VS 2.425922717033443e-3 +allegedly_AdA 4.563894523326572e-3 +allegedly_AdV 1.9489378288832587e-3 +allegiance_N 1.8648575062379485e-5 +allegiant_A 1.0773191989054437e-5 +allegoric_A 1.0773191989054437e-5 +allegorical_A 1.0773191989054437e-5 +allegorizer_N 3.729715012475897e-6 +allegory_N 1.118914503742769e-5 +allegretto_A 1.0773191989054437e-5 +allegretto_Adv 8.668966832532898e-6 +allegretto_N 3.729715012475897e-6 +allegro_A 1.0773191989054437e-5 +allegro_Adv 8.668966832532898e-6 +allegro_N 3.729715012475897e-6 +allele_N 3.729715012475897e-6 +allelic_A 1.0773191989054437e-5 +allemande_N 3.729715012475897e-6 +allen_PN 1.865462821325971e-5 +allergen_N 3.729715012475897e-6 +allergenic_A 1.0773191989054437e-5 +allergic_A 2.1546383978108874e-5 +allergist_N 3.729715012475897e-6 +allergology_N 3.729715012475897e-6 +allergy_N 2.237829007485538e-5 +alleviate_V2 1.4488787288503951e-4 +alleviation_N 3.729715012475897e-6 +alleviative_A 1.0773191989054437e-5 +alleviator_N 3.729715012475897e-6 +alley_N 2.237829007485538e-5 +alleyway_N 3.729715012475897e-6 +alliaceous_A 1.0773191989054437e-5 +alliance_N 1.8275603561131894e-4 +allies_N 3.729715012475897e-6 +alligator_N 1.118914503742769e-5 +alligatored_A 1.0773191989054437e-5 +alligatorfish_N 3.729715012475897e-6 +alliteration_N 3.729715012475897e-6 +alliterative_A 1.0773191989054437e-5 +alliterator_N 3.729715012475897e-6 +alloa_PN 1.865462821325971e-5 +allocable_A 1.0773191989054437e-5 +allocate_V 1.3607293509320997e-4 +allocate_V2 2.4147978814173252e-4 +allocation_N 6.340515521209024e-5 +allocator_N 3.729715012475897e-6 +allochronic_A 1.0773191989054437e-5 +allochthonous_A 1.0773191989054437e-5 +allocution_N 3.729715012475897e-6 +allogamous_A 1.0773191989054437e-5 +allogamy_N 3.729715012475897e-6 +allogeneic_A 1.0773191989054437e-5 +allograph_N 3.729715012475897e-6 +allographic_A 1.0773191989054437e-5 +allomerism_N 3.729715012475897e-6 +allomerous_A 1.0773191989054437e-5 +allometric_A 1.0773191989054437e-5 +allometry_N 3.729715012475897e-6 +allomorph_N 3.729715012475897e-6 +allomorphic_A 1.0773191989054437e-5 +allopathic_A 1.0773191989054437e-5 +allopathy_N 3.729715012475897e-6 +allopatric_A 1.0773191989054437e-5 +allopatry_N 3.729715012475897e-6 +allophone_N 3.729715012475897e-6 +allophonic_A 1.0773191989054437e-5 +allopurinol_N 3.729715012475897e-6 +allosaur_N 3.729715012475897e-6 +allot_V2 1.609865254278217e-5 +allotment_N 3.356743511228307e-5 +allotrope_N 3.729715012475897e-6 +allotropic_A 1.0773191989054437e-5 +allotropy_N 3.729715012475897e-6 +allover_A 1.0773191989054437e-5 +allow_V 9.525105456524698e-4 +allow_V2 9.176231949385836e-4 +allow_V2V 8.22814399251987e-2 +allow_VS 6.35360711603997e-4 +allow_for_V2 1.609865254278217e-5 +allow_of_V2 1.609865254278217e-5 +allowable_A 4.309276795621775e-5 +allowance_N 4.475658014971076e-5 +alloy_N 1.4918860049903587e-5 +alloy_V2 1.609865254278217e-5 +allspice_N 3.729715012475897e-6 +allude_V 6.803646754660499e-5 +allure_N 1.4918860049903587e-5 +allure_V2 1.609865254278217e-5 +allurement_N 3.729715012475897e-6 +alluring_A 2.1546383978108874e-5 +allusion_N 1.118914503742769e-5 +allusive_A 1.0773191989054437e-5 +allusiveness_N 3.729715012475897e-6 +alluvial_A 2.1546383978108874e-5 +alluvion_N 3.729715012475897e-6 +ally_N 1.9021546563627073e-4 +ally_V2 8.049326271391085e-5 +allyl_N 3.729715012475897e-6 +allylic_A 1.0773191989054437e-5 +alma_ata_PN 1.865462821325971e-5 +alma_mater_N 7.459430024951794e-6 +almanac_N 7.459430024951794e-6 +almandine_N 3.729715012475897e-6 +almandite_N 3.729715012475897e-6 +almeria_PN 1.865462821325971e-5 +almighty_A 1.0773191989054437e-5 +almighty_N 3.729715012475897e-6 +almond_N 3.729715012475897e-6 +almond_eyed_A 1.0773191989054437e-5 +almoner_N 3.729715012475897e-6 +almost_AdA 2.535496957403651e-3 +almost_AdN 3.194888178913738e-2 +almost_Adv 1.967855470984968e-3 +almost_Predet 3.3333333333333335e-3 +alms_N 3.729715012475897e-6 +alms_box_N 3.729715012475897e-6 +alms_giving_N 3.729715012475897e-6 +alms_house_N 3.729715012475897e-6 +almsgiver_N 3.729715012475897e-6 +alnwick_PN 1.865462821325971e-5 +alocasia_N 3.729715012475897e-6 +aloe_N 3.729715012475897e-6 +aloes_N 3.729715012475897e-6 +aloft_Adv 3.4675867330131594e-5 +aloha_N 3.729715012475897e-6 +alone_A 1.0557728149273348e-3 +aloneness_N 3.729715012475897e-6 +along_Adv 2.7740693864105275e-4 +along_Prep 1.347103726986978e-3 +alongside_Adv 1.7337933665065797e-5 +alongside_Prep 6.984982288080626e-5 +aloof_A 1.0773191989054437e-5 +aloof_Adv 8.668966832532898e-6 +aloofness_N 3.729715012475897e-6 +alopecia_N 3.729715012475897e-6 +alopecic_A 1.0773191989054437e-5 +aloud_Adv 1.7337933665065797e-5 +alp_N 3.729715012475897e-6 +alpaca_N 3.729715012475897e-6 +alpenstock_N 3.729715012475897e-6 +alpestrine_A 1.0773191989054437e-5 +alpha_A 1.0773191989054437e-5 +alpha_N 7.459430024951794e-6 +alphabet_N 7.459430024951794e-6 +alphabetic_A 1.0773191989054437e-5 +alphabetical_A 1.0773191989054437e-5 +alphabetization_N 3.729715012475897e-6 +alphabetized_A 1.0773191989054437e-5 +alphabetizer_N 3.729715012475897e-6 +alphanumeric_A 1.0773191989054437e-5 +alphanumerics_N 3.729715012475897e-6 +alphavirus_N 3.729715012475897e-6 +alpine_A 1.0773191989054437e-5 +alpinist_N 3.729715012475897e-6 +alprazolam_N 3.729715012475897e-6 +already_AdV 3.488598713701033e-2 +already_Adv 3.2075177280371727e-4 +alright_A 1.0773191989054437e-5 +alright_Adv 8.668966832532898e-6 +alsatian_N 3.729715012475897e-6 +also_AdV 0.17598908594815826 +also_Adv 5.374759436170397e-4 +also_ran_N 3.729715012475897e-6 +alstroemeria_N 3.729715012475897e-6 +altar_N 7.459430024951794e-6 +altar_piece_N 3.729715012475897e-6 +altarpiece_N 3.729715012475897e-6 +altazimuth_N 3.729715012475897e-6 +alter_V 1.3607293509320997e-4 +alter_V2 4.0246631356955425e-4 +alter_ego_N 3.729715012475897e-6 +alterability_N 3.729715012475897e-6 +alterable_A 1.0773191989054437e-5 +alteration_N 3.729715012475897e-6 +altercation_N 3.729715012475897e-6 +alternate_A 4.309276795621775e-5 +alternate_V 2.2678822515534993e-5 +alternate_V2 4.8295957628346505e-5 +alternation_N 3.729715012475897e-6 +alternative_A 2.8010299171541536e-4 +alternative_N 2.9837720099807176e-4 +alternator_N 3.729715012475897e-6 +althea_N 3.729715012475897e-6 +although_Subj 1.7670682730923693e-2 +altimeter_N 3.729715012475897e-6 +altissimo_A 1.0773191989054437e-5 +altitude_N 1.4918860049903587e-5 +altitudinal_A 1.0773191989054437e-5 +altitudinous_A 1.0773191989054437e-5 +alto_A 1.0773191989054437e-5 +alto_N 3.729715012475897e-6 +altocumulus_N 3.729715012475897e-6 +altogether_Adv 1.9071727031572377e-4 +alton_PN 1.865462821325971e-5 +altostratus_N 3.729715012475897e-6 +altricial_A 1.0773191989054437e-5 +altrincham_PN 1.865462821325971e-5 +altruism_N 7.459430024951794e-6 +altruist_N 3.729715012475897e-6 +altruistic_A 2.1546383978108874e-5 +altruistically_Adv 8.668966832532898e-6 +alula_N 3.729715012475897e-6 +alular_A 1.0773191989054437e-5 +alum_N 3.729715012475897e-6 +alumina_N 3.729715012475897e-6 +aluminate_N 3.729715012475897e-6 +aluminiferous_A 1.0773191989054437e-5 +aluminium_N 3.729715012475897e-6 +aluminous_A 1.0773191989054437e-5 +aluminum_N 3.729715012475897e-6 +alumna_N 3.729715012475897e-6 +alumnus_N 2.237829007485538e-5 +alumroot_N 3.729715012475897e-6 +alundum_N 3.729715012475897e-6 +alvechurch_PN 1.865462821325971e-5 +alveolar_A 1.0773191989054437e-5 +alveolar_N 3.729715012475897e-6 +alveolate_A 1.0773191989054437e-5 +alveolitis_N 3.729715012475897e-6 +alveolus_N 3.729715012475897e-6 +alvine_A 1.0773191989054437e-5 +always_AdV 1.2862989670629507e-2 +alyssum_N 3.729715012475897e-6 +amah_N 7.459430024951794e-6 +amain_Adv 8.668966832532898e-6 +amalgam_N 3.729715012475897e-6 +amalgamate_A 1.0773191989054437e-5 +amalgamate_V 2.2678822515534993e-5 +amalgamate_V2 3.219730508556434e-5 +amalgamation_N 1.4918860049903587e-5 +amalgamative_A 1.0773191989054437e-5 +amalgamator_N 3.729715012475897e-6 +amanda_PN 1.865462821325971e-5 +amanuensis_N 3.729715012475897e-6 +amaranth_N 3.729715012475897e-6 +amaranthine_A 1.0773191989054437e-5 +amarelle_N 3.729715012475897e-6 +amaretto_N 3.729715012475897e-6 +amaryllis_N 3.729715012475897e-6 +amass_V2 2.2538113559895037e-4 +amastia_N 3.729715012475897e-6 +amateur_A 1.0773191989054437e-5 +amateur_N 7.459430024951794e-6 +amateurish_A 2.1546383978108874e-5 +amateurishness_N 3.729715012475897e-6 +amateurism_N 3.729715012475897e-6 +amative_A 1.0773191989054437e-5 +amatory_A 1.0773191989054437e-5 +amaurosis_N 3.729715012475897e-6 +amaurotic_A 1.0773191989054437e-5 +amaze_V2 4.8295957628346505e-5 +amaze_V2V 4.675081813931744e-4 +amazement_N 1.8648575062379485e-5 +amazing_A 1.4005149585770768e-4 +amazon_N 3.729715012475897e-6 +ambages_N 3.729715012475897e-6 +ambassador_N 4.475658014971076e-5 +ambassadorial_A 1.0773191989054437e-5 +ambassadorship_N 3.729715012475897e-6 +ambassadress_N 3.729715012475897e-6 +amber_A 1.0773191989054437e-5 +amber_N 3.729715012475897e-6 +ambergris_N 3.729715012475897e-6 +amberjack_N 3.729715012475897e-6 +ambiance_N 3.729715012475897e-6 +ambidexterity_N 3.729715012475897e-6 +ambidextrous_A 1.0773191989054437e-5 +ambience_N 3.729715012475897e-6 +ambient_A 1.0773191989054437e-5 +ambiguity_N 1.8648575062379485e-5 +ambiguous_A 6.463915193432663e-5 +ambit_N 3.729715012475897e-6 +ambition_N 4.475658014971076e-5 +ambitious_A 2.908761837044698e-4 +ambivalence_N 1.118914503742769e-5 +ambivalent_A 5.3865959945272184e-5 +ambiversion_N 3.729715012475897e-6 +ambiversive_A 1.0773191989054437e-5 +amble_N 3.729715012475897e-6 +amble_V 4.5357645031069986e-5 +amblygonite_N 3.729715012475897e-6 +amblyopia_N 3.729715012475897e-6 +amblyopic_A 1.0773191989054437e-5 +amboyna_N 3.729715012475897e-6 +ambrosia_N 3.729715012475897e-6 +ambrosial_A 1.0773191989054437e-5 +ambulacral_A 1.0773191989054437e-5 +ambulacrum_N 3.729715012475897e-6 +ambulance_N 2.237829007485538e-5 +ambulant_A 1.0773191989054437e-5 +ambulation_N 3.729715012475897e-6 +ambulatory_A 1.0773191989054437e-5 +ambulatory_N 3.729715012475897e-6 +ambuscade_N 3.729715012475897e-6 +ambuscade_V2 1.609865254278217e-5 +ambush_N 3.729715012475897e-6 +ambush_V2 4.8295957628346505e-5 +ambusher_N 3.729715012475897e-6 +ambystomid_N 3.729715012475897e-6 +ameba_N 3.729715012475897e-6 +amebiasis_N 3.729715012475897e-6 +ameboid_A 1.0773191989054437e-5 +ameer_N 3.729715012475897e-6 +amelia_N 3.729715012475897e-6 +ameliorate_V 2.2678822515534993e-5 +ameliorate_V2 1.609865254278217e-5 +amelioration_N 3.729715012475897e-6 +ameloblast_N 3.729715012475897e-6 +amelogenesis_N 3.729715012475897e-6 +amen_Interj 1.5267175572519083e-2 +amenability_N 3.729715012475897e-6 +amenable_A 2.1546383978108874e-5 +amend_V 2.7214587018641994e-4 +amend_V2 2.8977574577007903e-4 +amend_V2V 9.350163627863488e-4 +amendable_A 1.0773191989054437e-5 +amendatory_A 1.0773191989054437e-5 +amendment_N 2.275126157610297e-4 +amenity_N 1.4918860049903587e-5 +amenorrhea_N 3.729715012475897e-6 +amenorrheic_A 1.0773191989054437e-5 +amentiferous_A 1.0773191989054437e-5 +amerciable_A 1.0773191989054437e-5 +america_PN 2.052009103458568e-3 +americanFem_N 3.729715012475897e-6 +americanMasc_N 2.275126157610297e-4 +american_A 4.309276795621775e-4 +americanism_N 3.729715012475897e-6 +americanize_V2 3.219730508556434e-5 +americium_N 3.729715012475897e-6 +amesbury_PN 1.865462821325971e-5 +ametabolic_A 1.0773191989054437e-5 +amethyst_A 1.0773191989054437e-5 +amethyst_N 3.729715012475897e-6 +amethystine_A 1.0773191989054437e-5 +ametria_N 3.729715012475897e-6 +ametropia_N 3.729715012475897e-6 +ametropic_A 1.0773191989054437e-5 +amharic_N 3.729715012475897e-6 +amiability_N 3.729715012475897e-6 +amiable_A 3.231957596716331e-5 +amicability_N 3.729715012475897e-6 +amicable_A 3.231957596716331e-5 +amid_Prep 7.28433867185551e-4 +amide_N 3.729715012475897e-6 +amidship_A 1.0773191989054437e-5 +amidship_Adv 8.668966832532898e-6 +amidships_Adv 8.668966832532898e-6 +amidst_Prep 9.978546125829467e-6 +amiens_PN 1.865462821325971e-5 +amigo_N 3.729715012475897e-6 +amine_N 3.729715012475897e-6 +amino_A 1.0773191989054437e-5 +amino_N 3.729715012475897e-6 +aminoaciduria_N 3.729715012475897e-6 +aminomethane_N 3.729715012475897e-6 +aminophylline_N 3.729715012475897e-6 +aminopyrine_N 3.729715012475897e-6 +amiodarone_N 3.729715012475897e-6 +amir_N 3.729715012475897e-6 +amiss_A 2.1546383978108874e-5 +amiss_Adv 8.668966832532898e-6 +amitosis_N 3.729715012475897e-6 +amitotic_A 1.0773191989054437e-5 +amitriptyline_N 3.729715012475897e-6 +amity_N 3.729715012475897e-6 +ammanford_PN 1.865462821325971e-5 +ammeter_N 3.729715012475897e-6 +ammine_N 3.729715012475897e-6 +ammino_A 1.0773191989054437e-5 +ammobium_N 3.729715012475897e-6 +ammonia_N 7.459430024951794e-6 +ammoniac_A 1.0773191989054437e-5 +ammoniac_N 3.729715012475897e-6 +ammoniated_A 1.0773191989054437e-5 +ammonification_N 3.729715012475897e-6 +ammonite_N 3.729715012475897e-6 +ammonitic_A 1.0773191989054437e-5 +ammonium_N 3.729715012475897e-6 +ammoniuria_N 3.729715012475897e-6 +ammunition_N 1.4918860049903587e-5 +amnesia_N 3.729715012475897e-6 +amnesic_A 1.0773191989054437e-5 +amnesic_N 3.729715012475897e-6 +amnestic_A 1.0773191989054437e-5 +amnesty_N 7.459430024951794e-6 +amniocentesis_N 3.729715012475897e-6 +amnion_N 3.729715012475897e-6 +amniote_N 3.729715012475897e-6 +amniotic_A 1.0773191989054437e-5 +amobarbital_N 3.729715012475897e-6 +amoeba_N 3.729715012475897e-6 +amoebic_A 1.0773191989054437e-5 +amok_Adv 2.6006900497598697e-5 +among_Prep 5.22875816993464e-3 +amongst_Prep 1.9957092251658934e-5 +amora_N 3.729715012475897e-6 +amoral_A 1.0773191989054437e-5 +amoralism_N 3.729715012475897e-6 +amoralist_N 3.729715012475897e-6 +amorality_N 3.729715012475897e-6 +amorist_N 3.729715012475897e-6 +amoristic_A 1.0773191989054437e-5 +amorous_A 1.0773191989054437e-5 +amorousness_N 3.729715012475897e-6 +amorpha_N 3.729715012475897e-6 +amorphophallus_N 3.729715012475897e-6 +amorphous_A 1.0773191989054437e-5 +amort_A 1.0773191989054437e-5 +amortization_N 2.6108005087331277e-5 +amortize_V2 4.8295957628346505e-5 +amount_N 1.156211653867528e-3 +amount_V 9.525105456524698e-4 +amour_N 3.729715012475897e-6 +amour_propre_N 3.729715012475897e-6 +amoxicillin_N 3.729715012475897e-6 +amp_Conj 1.2653665959235975e-2 +amp_N 7.459430024951794e-6 +amperage_N 3.729715012475897e-6 +ampere_N 3.729715012475897e-6 +ampersand_N 3.729715012475897e-6 +amphetamine_N 3.729715012475897e-6 +amphibia_N 3.729715012475897e-6 +amphibian_N 3.729715012475897e-6 +amphibiotic_A 1.0773191989054437e-5 +amphibious_A 1.0773191989054437e-5 +amphibole_N 3.729715012475897e-6 +amphibolite_N 3.729715012475897e-6 +amphibology_N 3.729715012475897e-6 +amphibrach_N 3.729715012475897e-6 +amphictyony_N 3.729715012475897e-6 +amphidiploid_N 3.729715012475897e-6 +amphidiploidy_N 3.729715012475897e-6 +amphigory_N 3.729715012475897e-6 +amphimixis_N 3.729715012475897e-6 +amphipod_N 3.729715012475897e-6 +amphiprostylar_A 1.0773191989054437e-5 +amphisbaena_N 3.729715012475897e-6 +amphistylar_A 1.0773191989054437e-5 +amphitheater_N 3.729715012475897e-6 +amphitheatre_N 3.729715012475897e-6 +amphitheatric_A 1.0773191989054437e-5 +amphitropous_A 1.0773191989054437e-5 +amphiuma_N 3.729715012475897e-6 +amphora_N 3.729715012475897e-6 +amphoric_A 1.0773191989054437e-5 +amphoteric_A 1.0773191989054437e-5 +amphotericin_N 3.729715012475897e-6 +ampicillin_N 3.729715012475897e-6 +ample_A 1.4005149585770768e-4 +ampleness_N 3.729715012475897e-6 +amplification_N 3.729715012475897e-6 +amplifier_N 1.4918860049903587e-5 +amplify_V2 6.439461017112868e-5 +amplitude_N 3.729715012475897e-6 +ampoule_N 3.729715012475897e-6 +ampulla_N 3.729715012475897e-6 +ampullar_A 1.0773191989054437e-5 +amputate_V2 1.609865254278217e-5 +amputation_N 7.459430024951794e-6 +amputator_N 3.729715012475897e-6 +amputee_N 3.729715012475897e-6 +amrinone_N 3.729715012475897e-6 +amsterdam_PN 2.6116479498563595e-4 +amuck_A 1.0773191989054437e-5 +amuck_Adv 8.668966832532898e-6 +amulet_N 3.729715012475897e-6 +amuse_V2 4.8295957628346505e-5 +amusement_N 1.118914503742769e-5 +amusing_A 9.695872790148993e-5 +amy_PN 1.865462821325971e-5 +amygdala_N 3.729715012475897e-6 +amygdalin_N 3.729715012475897e-6 +amygdaline_A 1.0773191989054437e-5 +amygdaloid_N 3.729715012475897e-6 +amygdalotomy_N 3.729715012475897e-6 +amyl_N 3.729715012475897e-6 +amylase_N 3.729715012475897e-6 +amyloid_N 3.729715012475897e-6 +amyloidosis_N 3.729715012475897e-6 +amylolysis_N 3.729715012475897e-6 +amylolytic_A 1.0773191989054437e-5 +amyotrophia_N 3.729715012475897e-6 +amyxia_N 3.729715012475897e-6 +ana_N 3.729715012475897e-6 +anabatic_A 1.0773191989054437e-5 +anabiosis_N 3.729715012475897e-6 +anabiotic_A 1.0773191989054437e-5 +anabolic_A 1.0773191989054437e-5 +anabolism_N 3.729715012475897e-6 +anachronic_A 1.0773191989054437e-5 +anachronism_N 1.118914503742769e-5 +anachronistic_A 1.0773191989054437e-5 +anachronistically_Adv 8.668966832532898e-6 +anaclinal_A 1.0773191989054437e-5 +anaclisis_N 3.729715012475897e-6 +anaclitic_A 1.0773191989054437e-5 +anacoluthia_N 3.729715012475897e-6 +anacoluthic_A 1.0773191989054437e-5 +anaconda_N 3.729715012475897e-6 +anadiplosis_N 3.729715012475897e-6 +anadromous_A 1.0773191989054437e-5 +anaemia_N 3.729715012475897e-6 +anaemic_A 1.0773191989054437e-5 +anaerobe_N 3.729715012475897e-6 +anaerobic_A 1.0773191989054437e-5 +anaesthesia_N 3.729715012475897e-6 +anaesthetic_A 1.0773191989054437e-5 +anaesthetic_N 3.729715012475897e-6 +anaesthetist_N 3.729715012475897e-6 +anaesthetize_V2 1.609865254278217e-5 +anaglyph_N 3.729715012475897e-6 +anaglyphic_A 1.0773191989054437e-5 +anaglyphy_N 3.729715012475897e-6 +anagnost_N 3.729715012475897e-6 +anagoge_N 3.729715012475897e-6 +anagogic_A 1.0773191989054437e-5 +anagram_N 3.729715012475897e-6 +anagrammatic_A 1.0773191989054437e-5 +anagrams_N 3.729715012475897e-6 +anal_A 1.0773191989054437e-5 +analbuminemia_N 3.729715012475897e-6 +analects_N 3.729715012475897e-6 +analeptic_A 1.0773191989054437e-5 +analeptic_N 3.729715012475897e-6 +analgesia_N 3.729715012475897e-6 +analgesic_A 1.0773191989054437e-5 +analgesic_N 3.729715012475897e-6 +analog_N 7.459430024951794e-6 +analogical_A 1.0773191989054437e-5 +analogist_N 3.729715012475897e-6 +analogous_A 2.1546383978108874e-5 +analogue_A 1.0773191989054437e-5 +analogue_N 3.729715012475897e-6 +analogy_N 1.118914503742769e-5 +analphabet_N 3.729715012475897e-6 +analphabetic_A 1.0773191989054437e-5 +analysand_N 3.729715012475897e-6 +analyse_V2 1.609865254278217e-5 +analysis_N 1.3799945546160818e-4 +analyst_N 3.725985297463421e-3 +analytic_A 2.1546383978108874e-5 +analytical_A 2.1546383978108874e-5 +analyticity_N 3.729715012475897e-6 +analyzable_A 1.0773191989054437e-5 +analyze_V2 3.541703559412077e-4 +analyzer_N 3.729715012475897e-6 +anamnestic_A 1.0773191989054437e-5 +anamorphic_A 1.0773191989054437e-5 +anamorphism_N 3.729715012475897e-6 +anamorphosis_N 3.729715012475897e-6 +anapaest_N 3.729715012475897e-6 +anapaestic_A 1.0773191989054437e-5 +anapest_N 3.729715012475897e-6 +anapestic_A 1.0773191989054437e-5 +anaphase_N 3.729715012475897e-6 +anaphasic_A 1.0773191989054437e-5 +anaphor_N 3.729715012475897e-6 +anaphora_N 3.729715012475897e-6 +anaphoric_A 1.0773191989054437e-5 +anaphrodisia_N 3.729715012475897e-6 +anaphrodisiac_A 1.0773191989054437e-5 +anaphylactic_A 1.0773191989054437e-5 +anaphylaxis_N 3.729715012475897e-6 +anaplasia_N 3.729715012475897e-6 +anaplasmosis_N 3.729715012475897e-6 +anaplastic_A 1.0773191989054437e-5 +anapsid_N 3.729715012475897e-6 +anarchic_A 1.0773191989054437e-5 +anarchically_Adv 8.668966832532898e-6 +anarchism_N 3.729715012475897e-6 +anarchist_N 3.729715012475897e-6 +anarchistic_A 1.0773191989054437e-5 +anarchy_N 7.459430024951794e-6 +anarthria_N 3.729715012475897e-6 +anasarca_N 3.729715012475897e-6 +anasarcous_A 1.0773191989054437e-5 +anaspid_N 3.729715012475897e-6 +anastalsis_N 3.729715012475897e-6 +anastigmat_N 3.729715012475897e-6 +anastigmatic_A 1.0773191989054437e-5 +anastomosis_N 3.729715012475897e-6 +anastomotic_A 1.0773191989054437e-5 +anastrophe_N 3.729715012475897e-6 +anastylosis_N 3.729715012475897e-6 +anathema_N 1.118914503742769e-5 +anathematization_N 3.729715012475897e-6 +anathematize_V 2.2678822515534993e-5 +anathematize_V2 1.609865254278217e-5 +anatomic_A 1.0773191989054437e-5 +anatomical_A 3.231957596716331e-5 +anatomist_N 3.729715012475897e-6 +anatomy_N 3.729715012475897e-6 +anatotitan_N 3.729715012475897e-6 +anatoxin_N 3.729715012475897e-6 +anatropous_A 1.0773191989054437e-5 +ancestor_N 3.729715012475897e-6 +ancestral_A 2.1546383978108874e-5 +ancestress_N 3.729715012475897e-6 +ancestry_N 7.459430024951794e-6 +anchor_N 1.4918860049903587e-5 +anchor_V 4.5357645031069986e-5 +anchor_V2 4.8295957628346505e-5 +anchorage_N 3.729715012475897e-6 +anchorite_N 3.729715012475897e-6 +anchoritic_A 1.0773191989054437e-5 +anchorman_N 7.459430024951794e-6 +anchovy_N 3.729715012475897e-6 +anchusa_N 3.729715012475897e-6 +ancient_A 8.61855359124355e-5 +ancient_N 3.729715012475897e-6 +ancientness_N 3.729715012475897e-6 +ancients_N 3.729715012475897e-6 +ancillary_A 3.231957596716331e-5 +ancona_PN 1.865462821325971e-5 +and_Conj 0.8125575621671405 +andante_A 1.0773191989054437e-5 +andante_Adv 8.668966832532898e-6 +andante_N 3.729715012475897e-6 +andantino_A 1.0773191989054437e-5 +andesite_N 3.729715012475897e-6 +andiron_N 3.729715012475897e-6 +andorra_PN 1.865462821325971e-5 +andorran_A 1.0773191989054437e-5 +andorran_N 3.729715012475897e-6 +andover_PN 1.865462821325971e-5 +andradite_N 3.729715012475897e-6 +andrena_N 3.729715012475897e-6 +andrew_PN 1.865462821325971e-5 +androecium_N 3.729715012475897e-6 +androgen_N 3.729715012475897e-6 +androgenesis_N 3.729715012475897e-6 +androgenetic_A 1.0773191989054437e-5 +androgenic_A 1.0773191989054437e-5 +androglossia_N 3.729715012475897e-6 +androgynous_A 1.0773191989054437e-5 +androgyny_N 3.729715012475897e-6 +android_N 3.729715012475897e-6 +andromeda_N 3.729715012475897e-6 +androphobia_N 3.729715012475897e-6 +androsterone_N 3.729715012475897e-6 +andryala_N 3.729715012475897e-6 +andy_PN 1.865462821325971e-5 +anecdotal_A 4.309276795621775e-5 +anecdote_N 3.729715012475897e-6 +anecdotic_A 1.0773191989054437e-5 +anecdotist_N 3.729715012475897e-6 +anechoic_A 1.0773191989054437e-5 +anemia_N 3.729715012475897e-6 +anemic_A 1.0773191989054437e-5 +anemographic_A 1.0773191989054437e-5 +anemography_N 3.729715012475897e-6 +anemometer_N 3.729715012475897e-6 +anemometric_A 1.0773191989054437e-5 +anemometry_N 3.729715012475897e-6 +anemone_N 3.729715012475897e-6 +anemophilous_A 1.0773191989054437e-5 +anencephalic_A 1.0773191989054437e-5 +anencephaly_N 3.729715012475897e-6 +anenst_Prep 9.978546125829467e-6 +anent_Prep 9.978546125829467e-6 +anergy_N 3.729715012475897e-6 +aneroid_A 1.0773191989054437e-5 +aneroid_N 3.729715012475897e-6 +anesthesia_N 3.729715012475897e-6 +anesthesiologist_N 3.729715012475897e-6 +anesthesiology_N 3.729715012475897e-6 +anesthetic_A 1.0773191989054437e-5 +anesthetic_N 3.729715012475897e-6 +anesthetist_N 3.729715012475897e-6 +anesthetize_V2 3.219730508556434e-5 +anesthyl_N 3.729715012475897e-6 +anestrous_A 1.0773191989054437e-5 +anestrus_N 3.729715012475897e-6 +aneuploid_A 1.0773191989054437e-5 +aneuploidy_N 3.729715012475897e-6 +aneurysm_N 3.729715012475897e-6 +aneurysmal_A 1.0773191989054437e-5 +anew_Adv 4.33448341626645e-5 +anfractuous_A 1.0773191989054437e-5 +angel_N 7.459430024951794e-6 +angela_PN 1.865462821325971e-5 +angelfish_N 3.729715012475897e-6 +angelic_A 1.0773191989054437e-5 +angelica_N 3.729715012475897e-6 +angelically_Adv 8.668966832532898e-6 +angelim_N 3.729715012475897e-6 +angelology_N 3.729715012475897e-6 +angelus_N 3.729715012475897e-6 +anger_N 4.848629516218666e-5 +anger_V2 1.9318383051338602e-4 +angers_PN 1.865462821325971e-5 +angie_PN 1.865462821325971e-5 +angiitis_N 3.729715012475897e-6 +angina_N 7.459430024951794e-6 +anginal_A 1.0773191989054437e-5 +angiocardiogram_N 3.729715012475897e-6 +angiocarp_N 3.729715012475897e-6 +angiocarpic_A 1.0773191989054437e-5 +angioedema_N 3.729715012475897e-6 +angiogenesis_N 3.729715012475897e-6 +angiogram_N 3.729715012475897e-6 +angiography_N 3.729715012475897e-6 +angiologist_N 3.729715012475897e-6 +angiology_N 3.729715012475897e-6 +angioma_N 3.729715012475897e-6 +angiomatous_A 1.0773191989054437e-5 +angiopathy_N 3.729715012475897e-6 +angioplasty_N 3.729715012475897e-6 +angiopteris_N 3.729715012475897e-6 +angiosarcoma_N 3.729715012475897e-6 +angioscope_N 3.729715012475897e-6 +angiosperm_N 3.729715012475897e-6 +angiospermous_A 1.0773191989054437e-5 +angiotelectasia_N 3.729715012475897e-6 +angiotensin_N 3.729715012475897e-6 +angle_N 1.8648575062379485e-5 +angle_V 2.2678822515534993e-5 +angle_V2 1.609865254278217e-5 +angle_dozer_N 3.729715012475897e-6 +angle_for_V2 1.609865254278217e-5 +angle_iron_N 3.729715012475897e-6 +angle_park_V 2.2678822515534993e-5 +angle_park_V2 1.609865254278217e-5 +angledozer_N 3.729715012475897e-6 +angler_N 3.729715012475897e-6 +anglewing_N 3.729715012475897e-6 +anglican_A 1.0773191989054437e-5 +anglican_N 3.729715012475897e-6 +anglicism_N 3.729715012475897e-6 +anglicize_V2 1.609865254278217e-5 +angling_N 7.459430024951794e-6 +anglo_catholic_A 1.0773191989054437e-5 +anglo_catholic_N 3.729715012475897e-6 +anglo_indian_A 1.0773191989054437e-5 +anglo_indian_N 3.729715012475897e-6 +anglo_saxon_A 1.0773191989054437e-5 +anglo_saxon_N 3.729715012475897e-6 +anglomania_N 3.729715012475897e-6 +anglophil_N 3.729715012475897e-6 +anglophile_N 3.729715012475897e-6 +anglophobe_N 3.729715012475897e-6 +anglophobia_N 3.729715012475897e-6 +angola_PN 1.865462821325971e-5 +angolan_A 2.1546383978108874e-5 +angolan_N 3.729715012475897e-6 +angora_N 7.459430024951794e-6 +angostura_N 3.729715012475897e-6 +angrecum_N 3.729715012475897e-6 +angry_A 2.8010299171541536e-4 +angst_N 7.459430024951794e-6 +angstrom_N 3.729715012475897e-6 +anguilla_PN 1.865462821325971e-5 +anguillan_A 1.0773191989054437e-5 +anguillan_N 3.729715012475897e-6 +anguine_A 1.0773191989054437e-5 +anguish_N 1.118914503742769e-5 +anguished_A 2.1546383978108874e-5 +angular_A 1.0773191989054437e-5 +angularity_N 3.729715012475897e-6 +angulation_N 3.729715012475897e-6 +angus_PN 1.865462821325971e-5 +angwantibo_N 3.729715012475897e-6 +anhedonia_N 3.729715012475897e-6 +anhidrosis_N 3.729715012475897e-6 +anhydride_N 3.729715012475897e-6 +anhydrous_A 1.0773191989054437e-5 +ani_N 3.729715012475897e-6 +anicteric_A 1.0773191989054437e-5 +anil_N 3.729715012475897e-6 +anile_A 1.0773191989054437e-5 +aniline_N 3.729715012475897e-6 +anima_N 3.729715012475897e-6 +animadversion_N 3.729715012475897e-6 +animadvert_V 2.2678822515534993e-5 +animal_N 1.3426974044913228e-4 +animalcule_N 3.729715012475897e-6 +animalism_N 3.729715012475897e-6 +animalistic_A 1.0773191989054437e-5 +animality_N 3.729715012475897e-6 +animalization_N 3.729715012475897e-6 +animate_A 1.0773191989054437e-5 +animate_V2 4.8295957628346505e-5 +animatedly_A 1.0773191989054437e-5 +animatedly_Adv 8.668966832532898e-6 +animateness_N 3.729715012475897e-6 +animating_A 1.0773191989054437e-5 +animation_N 1.8648575062379485e-5 +animatism_N 3.729715012475897e-6 +animatistic_A 1.0773191989054437e-5 +animator_N 3.729715012475897e-6 +animatronics_N 3.729715012475897e-6 +anime_N 3.729715012475897e-6 +animism_N 3.729715012475897e-6 +animist_A 1.0773191989054437e-5 +animist_N 3.729715012475897e-6 +animosity_N 1.118914503742769e-5 +animus_N 3.729715012475897e-6 +anion_N 3.729715012475897e-6 +anionic_A 1.0773191989054437e-5 +anise_N 3.729715012475897e-6 +aniseed_N 3.729715012475897e-6 +aniseikonia_N 3.729715012475897e-6 +aniseikonic_A 1.0773191989054437e-5 +anisette_N 3.729715012475897e-6 +anisogamete_N 3.729715012475897e-6 +anisogametic_A 1.0773191989054437e-5 +anisogamic_A 1.0773191989054437e-5 +anisogamy_N 3.729715012475897e-6 +anisometric_A 1.0773191989054437e-5 +anisometropia_N 3.729715012475897e-6 +anisometropic_A 1.0773191989054437e-5 +anisotropic_A 1.0773191989054437e-5 +anisotropically_Adv 8.668966832532898e-6 +anisotropy_N 3.729715012475897e-6 +anita_PN 1.865462821325971e-5 +anjou_N 3.729715012475897e-6 +ankara_PN 1.865462821325971e-5 +ankle_N 1.118914503742769e-5 +anklebone_N 3.729715012475897e-6 +anklet_N 3.729715012475897e-6 +ankus_N 3.729715012475897e-6 +ankylosaur_N 3.729715012475897e-6 +ankylosis_N 3.729715012475897e-6 +ankylotic_A 1.0773191989054437e-5 +ann_PN 1.865462821325971e-5 +anna_N 3.729715012475897e-6 +annabel_PN 1.865462821325971e-5 +annalist_N 3.729715012475897e-6 +annalistic_A 1.0773191989054437e-5 +annals_N 3.729715012475897e-6 +annan_PN 1.865462821325971e-5 +anne_PN 1.865462821325971e-5 +anneal_V2 1.609865254278217e-5 +annealing_N 3.729715012475897e-6 +annelid_A 1.0773191989054437e-5 +annelid_N 3.729715012475897e-6 +annex_N 7.459430024951794e-6 +annex_V2 1.609865254278217e-5 +annexation_N 3.729715012475897e-6 +annexational_A 1.0773191989054437e-5 +annexe_N 3.729715012475897e-6 +annfield_PN 1.865462821325971e-5 +annfield_plain_PN 1.865462821325971e-5 +annie_PN 1.865462821325971e-5 +annihilate_V2 1.609865254278217e-5 +annihilating_A 1.0773191989054437e-5 +annihilation_N 3.729715012475897e-6 +annihilative_A 1.0773191989054437e-5 +annihilator_N 3.729715012475897e-6 +anniversary_N 5.967544019961435e-5 +annotate_V2 1.609865254278217e-5 +annotation_N 3.729715012475897e-6 +annotator_N 3.729715012475897e-6 +announce_V2 4.684707889949611e-3 +announce_VS 3.581124010858892e-3 +announcement_N 5.07241241696722e-4 +announcer_N 4.848629516218666e-5 +annoy_V2 6.439461017112868e-5 +annoyance_N 3.729715012475897e-6 +annoying_A 2.1546383978108874e-5 +annual_A 4.190771683742176e-3 +annual_N 3.729715012475897e-6 +annuitant_N 3.729715012475897e-6 +annuity_N 5.2216010174662554e-5 +annul_V2 1.609865254278217e-5 +annular_A 1.0773191989054437e-5 +annulet_N 3.729715012475897e-6 +annulment_N 3.729715012475897e-6 +annulus_N 3.729715012475897e-6 +annum_N 3.729715012475897e-6 +annunciate_V2 1.609865254278217e-5 +annunciation_N 3.729715012475897e-6 +annunciator_N 3.729715012475897e-6 +annunciatory_A 1.0773191989054437e-5 +anoa_N 3.729715012475897e-6 +anode_N 3.729715012475897e-6 +anodic_A 1.0773191989054437e-5 +anodyne_A 1.0773191989054437e-5 +anodyne_N 3.729715012475897e-6 +anoint_V2 3.219730508556434e-5 +anointer_N 3.729715012475897e-6 +anointing_N 3.729715012475897e-6 +anointment_N 3.729715012475897e-6 +anomalist_N 3.729715012475897e-6 +anomalops_N 3.729715012475897e-6 +anomalopteryx_N 3.729715012475897e-6 +anomalous_A 3.231957596716331e-5 +anomaly_N 7.459430024951794e-6 +anomie_N 3.729715012475897e-6 +anon_Adv 8.668966832532898e-6 +anon_PN 1.865462821325971e-5 +anonymity_N 2.237829007485538e-5 +anonymous_A 6.463915193432663e-5 +anoperineal_A 1.0773191989054437e-5 +anopheles_N 3.729715012475897e-6 +anopheline_A 1.0773191989054437e-5 +anopheline_N 3.729715012475897e-6 +anopia_N 3.729715012475897e-6 +anorak_N 3.729715012475897e-6 +anorchism_N 3.729715012475897e-6 +anorectal_A 1.0773191989054437e-5 +anorectic_A 1.0773191989054437e-5 +anorexia_N 3.729715012475897e-6 +anorexic_A 1.0773191989054437e-5 +anorexic_N 3.729715012475897e-6 +anorgasmia_N 3.729715012475897e-6 +anorthite_N 3.729715012475897e-6 +anorthitic_A 1.0773191989054437e-5 +anorthopia_N 3.729715012475897e-6 +anosmia_N 3.729715012475897e-6 +anosmic_A 1.0773191989054437e-5 +another_Quant 2.926190923355608e-3 +anovulation_N 3.729715012475897e-6 +anoxemia_N 3.729715012475897e-6 +anoxemic_A 1.0773191989054437e-5 +anoxia_N 3.729715012475897e-6 +anoxic_A 1.0773191989054437e-5 +anserine_A 1.0773191989054437e-5 +anshan_PN 1.865462821325971e-5 +answer_N 1.9767489566122252e-4 +answer_V 3.175035152174899e-4 +answer_V2 3.541703559412077e-4 +answer_back_V2 1.609865254278217e-5 +answer_for_V2 1.609865254278217e-5 +answerable_A 2.1546383978108874e-5 +ant_N 1.118914503742769e-5 +ant_eater_N 3.729715012475897e-6 +ant_hill_N 3.729715012475897e-6 +antacid_A 1.0773191989054437e-5 +antacid_N 3.729715012475897e-6 +antagonism_N 3.729715012475897e-6 +antagonist_N 7.459430024951794e-6 +antagonistic_A 3.231957596716331e-5 +antagonistically_Adv 8.668966832532898e-6 +antagonize_V2 6.439461017112868e-5 +antapex_N 3.729715012475897e-6 +antarctic_A 1.0773191989054437e-5 +antbird_N 3.729715012475897e-6 +ante_N 1.4918860049903587e-5 +ante_meridiem_Adv 8.668966832532898e-6 +anteater_N 3.729715012475897e-6 +antebellum_A 1.0773191989054437e-5 +antecedence_N 3.729715012475897e-6 +antecedent_A 1.0773191989054437e-5 +antecedent_N 7.459430024951794e-6 +antechamber_N 3.729715012475897e-6 +antecubital_A 1.0773191989054437e-5 +antedate_V2 1.609865254278217e-5 +antediluvian_A 1.0773191989054437e-5 +antediluvian_N 3.729715012475897e-6 +antefix_N 3.729715012475897e-6 +antelope_N 7.459430024951794e-6 +antemeridian_A 1.0773191989054437e-5 +antemortem_A 1.0773191989054437e-5 +antenatal_A 1.0773191989054437e-5 +antenna_N 3.729715012475897e-6 +antennal_A 1.0773191989054437e-5 +antenuptial_A 1.0773191989054437e-5 +antepenult_N 3.729715012475897e-6 +antepenultimate_A 1.0773191989054437e-5 +anterior_A 1.0773191989054437e-5 +anteriority_N 3.729715012475897e-6 +anterograde_A 1.0773191989054437e-5 +anteroom_N 3.729715012475897e-6 +anthea_PN 1.865462821325971e-5 +anthelmintic_A 1.0773191989054437e-5 +anthem_N 7.459430024951794e-6 +anther_N 1.8648575062379485e-5 +antheral_A 1.0773191989054437e-5 +antheridial_A 1.0773191989054437e-5 +antheridiophore_N 3.729715012475897e-6 +antheridium_N 3.729715012475897e-6 +antherozoid_N 3.729715012475897e-6 +anthill_N 3.729715012475897e-6 +anthologist_N 3.729715012475897e-6 +anthology_N 7.459430024951794e-6 +anthony_PN 1.865462821325971e-5 +anthophagous_A 1.0773191989054437e-5 +anthophyllite_N 3.729715012475897e-6 +anthozoan_N 3.729715012475897e-6 +anthracite_N 3.729715012475897e-6 +anthracitic_A 1.0773191989054437e-5 +anthracosis_N 3.729715012475897e-6 +anthrax_N 2.6108005087331277e-5 +anthropic_A 1.0773191989054437e-5 +anthropocentric_A 1.0773191989054437e-5 +anthropocentrism_N 3.729715012475897e-6 +anthropogenesis_N 3.729715012475897e-6 +anthropogenetic_A 1.0773191989054437e-5 +anthropoid_A 1.0773191989054437e-5 +anthropoid_N 3.729715012475897e-6 +anthropolatry_N 3.729715012475897e-6 +anthropological_A 1.0773191989054437e-5 +anthropologist_N 3.729715012475897e-6 +anthropology_N 3.729715012475897e-6 +anthropometric_A 1.0773191989054437e-5 +anthropometry_N 3.729715012475897e-6 +anthropomorphic_A 1.0773191989054437e-5 +anthropomorphism_N 3.729715012475897e-6 +anthropophagous_A 1.0773191989054437e-5 +anthropophagy_N 3.729715012475897e-6 +anthroposophy_N 3.729715012475897e-6 +anthurium_N 3.729715012475897e-6 +anti_A 1.0773191989054437e-5 +anti_N 3.729715012475897e-6 +anti_Prep 9.978546125829467e-6 +anti_aircraft_A 2.1546383978108874e-5 +anti_hero_N 3.729715012475897e-6 +anti_personnel_A 1.0773191989054437e-5 +anti_semite_A 1.0773191989054437e-5 +anti_semite_N 3.729715012475897e-6 +anti_semitic_A 3.231957596716331e-5 +anti_semitism_N 3.729715012475897e-6 +antiadrenergic_A 1.0773191989054437e-5 +antiaircraft_A 1.0773191989054437e-5 +antiaircraft_N 3.729715012475897e-6 +antialiasing_N 3.729715012475897e-6 +antiapartheid_A 1.0773191989054437e-5 +antiarrhythmic_N 3.729715012475897e-6 +antiauthoritarian_A 1.0773191989054437e-5 +antibacterial_A 1.0773191989054437e-5 +antibacterial_N 3.729715012475897e-6 +antibaryon_N 3.729715012475897e-6 +antibiosis_N 3.729715012475897e-6 +antibiotic_A 3.231957596716331e-5 +antibiotic_N 1.118914503742769e-5 +antibody_N 5.2216010174662554e-5 +antic_A 1.0773191989054437e-5 +antic_N 7.459430024951794e-6 +anticancer_A 1.0773191989054437e-5 +anticatalyst_N 3.729715012475897e-6 +anticholinergic_A 1.0773191989054437e-5 +anticholinergic_N 3.729715012475897e-6 +anticholinesterase_N 3.729715012475897e-6 +anticipant_A 1.0773191989054437e-5 +anticipate_V 2.9482469270195494e-4 +anticipate_V2 1.0142151101952767e-3 +anticipate_VS 5.776006469127245e-4 +anticipate_VV 6.726888333653661e-4 +anticipation_N 1.118914503742769e-4 +anticipator_N 3.729715012475897e-6 +anticipatory_A 1.0773191989054437e-5 +anticlimactic_A 1.0773191989054437e-5 +anticlimax_N 3.729715012475897e-6 +anticlinal_A 1.0773191989054437e-5 +anticlockwise_Adv 8.668966832532898e-6 +anticoagulant_N 3.729715012475897e-6 +anticoagulation_N 3.729715012475897e-6 +anticoagulative_A 1.0773191989054437e-5 +anticonvulsant_N 3.729715012475897e-6 +anticyclone_N 3.729715012475897e-6 +anticyclonic_A 1.0773191989054437e-5 +antidepressant_N 3.729715012475897e-6 +antidiabetic_N 3.729715012475897e-6 +antidiarrheal_N 3.729715012475897e-6 +antidiuretic_N 3.729715012475897e-6 +antidotal_A 1.0773191989054437e-5 +antidote_N 7.459430024951794e-6 +antidromic_A 1.0773191989054437e-5 +antiemetic_N 3.729715012475897e-6 +antiestablishmentarianism_N 3.729715012475897e-6 +antifeminist_N 3.729715012475897e-6 +antiferromagnetic_A 1.0773191989054437e-5 +antiferromagnetism_N 3.729715012475897e-6 +antiflatulent_N 3.729715012475897e-6 +antifreeze_N 7.459430024951794e-6 +antifungal_N 3.729715012475897e-6 +antigen_N 7.459430024951794e-6 +antigenic_A 1.0773191989054437e-5 +antigram_N 3.729715012475897e-6 +antigua_PN 1.865462821325971e-5 +antiguan_A 1.0773191989054437e-5 +antiguan_N 3.729715012475897e-6 +antiheretical_A 1.0773191989054437e-5 +antihero_N 3.729715012475897e-6 +antihistamine_N 3.729715012475897e-6 +antihypertensive_N 3.729715012475897e-6 +antiknock_A 1.0773191989054437e-5 +antiknock_N 3.729715012475897e-6 +antilepton_N 3.729715012475897e-6 +antilogarithm_N 3.729715012475897e-6 +antimacassar_N 3.729715012475897e-6 +antimagnetic_A 1.0773191989054437e-5 +antimalarial_N 3.729715012475897e-6 +antimatter_N 3.729715012475897e-6 +antimeson_N 3.729715012475897e-6 +antimetabolite_N 3.729715012475897e-6 +antimicrobial_A 1.0773191989054437e-5 +antimonial_A 1.0773191989054437e-5 +antimonic_A 1.0773191989054437e-5 +antimonopoly_A 1.0773191989054437e-5 +antimony_N 3.729715012475897e-6 +antimuon_N 3.729715012475897e-6 +antimycin_N 3.729715012475897e-6 +antineoplastic_N 3.729715012475897e-6 +antineutrino_N 3.729715012475897e-6 +antineutron_N 3.729715012475897e-6 +antinode_N 3.729715012475897e-6 +antinomasia_N 3.729715012475897e-6 +antinomian_A 1.0773191989054437e-5 +antinomian_N 3.729715012475897e-6 +antinomianism_N 3.729715012475897e-6 +antinomy_N 3.729715012475897e-6 +antioxidant_N 3.729715012475897e-6 +antiparallel_A 1.0773191989054437e-5 +antiparticle_N 3.729715012475897e-6 +antipasto_N 3.729715012475897e-6 +antipathetic_A 1.0773191989054437e-5 +antipathy_N 3.729715012475897e-6 +antipersonnel_A 1.0773191989054437e-5 +antiperspirant_N 3.729715012475897e-6 +antiphlogistic_A 1.0773191989054437e-5 +antiphon_N 3.729715012475897e-6 +antiphonary_A 1.0773191989054437e-5 +antiphonary_N 3.729715012475897e-6 +antiphony_N 3.729715012475897e-6 +antiphrasis_N 3.729715012475897e-6 +antipodal_A 1.0773191989054437e-5 +antipodal_N 3.729715012475897e-6 +antipode_N 3.729715012475897e-6 +antipodes_N 3.729715012475897e-6 +antipollution_A 1.0773191989054437e-5 +antipope_N 3.729715012475897e-6 +antiproton_N 3.729715012475897e-6 +antiprotozoal_N 3.729715012475897e-6 +antipruritic_N 3.729715012475897e-6 +antipyresis_N 3.729715012475897e-6 +antipyretic_A 1.0773191989054437e-5 +antipyretic_N 3.729715012475897e-6 +antiquarian_A 1.0773191989054437e-5 +antiquarian_N 3.729715012475897e-6 +antiquark_N 3.729715012475897e-6 +antiquary_N 3.729715012475897e-6 +antiquated_A 3.231957596716331e-5 +antique_A 3.231957596716331e-5 +antique_N 7.459430024951794e-6 +antiquity_N 1.4918860049903587e-5 +antiredeposition_N 3.729715012475897e-6 +antirrhinum_N 3.729715012475897e-6 +antisatellite_A 1.0773191989054437e-5 +antisepsis_N 3.729715012475897e-6 +antiseptic_A 1.0773191989054437e-5 +antiseptic_N 3.729715012475897e-6 +antiserum_N 3.729715012475897e-6 +antisocial_A 2.1546383978108874e-5 +antispasmodic_N 3.729715012475897e-6 +antistrophe_N 3.729715012475897e-6 +antistrophic_A 1.0773191989054437e-5 +antisubmarine_A 1.0773191989054437e-5 +antisyphilitic_N 3.729715012475897e-6 +antitank_A 1.0773191989054437e-5 +antitauon_N 3.729715012475897e-6 +antithesis_N 3.729715012475897e-6 +antithetic_A 1.0773191989054437e-5 +antithetical_A 3.231957596716331e-5 +antithyroid_A 1.0773191989054437e-5 +antitoxic_A 1.0773191989054437e-5 +antitoxin_N 3.729715012475897e-6 +antitrade_A 1.0773191989054437e-5 +antitrade_N 3.729715012475897e-6 +antitrades_N 3.729715012475897e-6 +antitussive_N 3.729715012475897e-6 +antitype_N 3.729715012475897e-6 +antitypic_A 1.0773191989054437e-5 +antivenin_N 3.729715012475897e-6 +antiviral_A 1.0773191989054437e-5 +antiviral_N 3.729715012475897e-6 +antler_N 3.729715012475897e-6 +antlered_A 1.0773191989054437e-5 +antony_PN 1.865462821325971e-5 +antonym_N 3.729715012475897e-6 +antonymous_A 1.0773191989054437e-5 +antonymy_N 3.729715012475897e-6 +antrim_PN 1.865462821325971e-5 +antrorse_A 1.0773191989054437e-5 +antrum_N 3.729715012475897e-6 +antsy_A 1.0773191989054437e-5 +antwerp_PN 1.865462821325971e-5 +anuran_A 1.0773191989054437e-5 +anuresis_N 3.729715012475897e-6 +anuretic_A 1.0773191989054437e-5 +anurous_A 1.0773191989054437e-5 +anus_N 3.729715012475897e-6 +anvil_N 3.729715012475897e-6 +anxiety_N 8.951316029942152e-5 +anxiolytic_A 1.0773191989054437e-5 +anxious_A 2.2623703177014317e-4 +anxiousness_N 3.729715012475897e-6 +anyPl_Det 6.579837160864508e-3 +anySg_Det 5.4099380562092566e-5 +any_Adv 8.668966832532898e-6 +anybody_NP 7.918045498727652e-5 +anyhow_Adv 1.7337933665065797e-5 +anymore_Adv 2.6006900497598697e-5 +anyone_NP 1.9658595720979e-4 +anyplace_Adv 8.668966832532898e-6 +anything_NP 3.2218254098271133e-4 +anyway_Adv 2.3406210447838826e-4 +anywhere_Adv 1.9071727031572377e-4 +aorist_N 3.729715012475897e-6 +aoristic_A 1.0773191989054437e-5 +aorta_N 3.729715012475897e-6 +aortal_A 1.0773191989054437e-5 +aortitis_N 3.729715012475897e-6 +aoudad_N 3.729715012475897e-6 +apace_Adv 8.668966832532898e-6 +apache_N 3.729715012475897e-6 +apadana_N 3.729715012475897e-6 +apanage_N 3.729715012475897e-6 +apar_N 3.729715012475897e-6 +apart_Adv 2.2539313764585535e-4 +apart_from_Prep 4.9892730629147335e-5 +apartheid_N 7.459430024951794e-5 +apartment_N 1.4545888548655997e-4 +apathetic_A 2.1546383978108874e-5 +apathetically_Adv 8.668966832532898e-6 +apathy_N 7.459430024951794e-6 +apatite_N 3.729715012475897e-6 +apatosaur_N 3.729715012475897e-6 +ape_N 3.729715012475897e-6 +ape_V2 1.609865254278217e-5 +apeldoorn_PN 1.865462821325971e-5 +apercu_N 3.729715012475897e-6 +aperea_N 3.729715012475897e-6 +aperient_A 1.0773191989054437e-5 +aperient_N 3.729715012475897e-6 +aperiodic_A 1.0773191989054437e-5 +aperitif_N 3.729715012475897e-6 +aperture_N 3.729715012475897e-6 +apery_N 3.729715012475897e-6 +apetalous_A 1.0773191989054437e-5 +apex_N 3.729715012475897e-6 +aphaeresis_N 3.729715012475897e-6 +aphaeretic_A 1.0773191989054437e-5 +aphagia_N 3.729715012475897e-6 +aphakia_N 3.729715012475897e-6 +aphakic_A 1.0773191989054437e-5 +aphakic_N 3.729715012475897e-6 +aphanite_N 3.729715012475897e-6 +aphanitic_A 1.0773191989054437e-5 +aphasia_N 3.729715012475897e-6 +aphasic_A 1.0773191989054437e-5 +aphasic_N 3.729715012475897e-6 +aphelion_N 3.729715012475897e-6 +apheresis_N 3.729715012475897e-6 +aphesis_N 3.729715012475897e-6 +aphetic_A 1.0773191989054437e-5 +aphid_N 3.729715012475897e-6 +aphis_N 3.729715012475897e-6 +aphonia_N 3.729715012475897e-6 +aphonic_A 1.0773191989054437e-5 +aphorism_N 3.729715012475897e-6 +aphorist_N 3.729715012475897e-6 +aphoristic_A 1.0773191989054437e-5 +aphotic_A 1.0773191989054437e-5 +aphrodisia_N 3.729715012475897e-6 +aphrodisiac_A 1.0773191989054437e-5 +aphrodisiac_N 3.729715012475897e-6 +aphyllous_A 1.0773191989054437e-5 +apian_A 1.0773191989054437e-5 +apiarian_A 1.0773191989054437e-5 +apiarist_N 3.729715012475897e-6 +apiary_N 3.729715012475897e-6 +apical_A 1.0773191989054437e-5 +apiculate_A 1.0773191989054437e-5 +apicultural_A 1.0773191989054437e-5 +apiculture_N 3.729715012475897e-6 +apiece_Adv 1.4737243615305928e-4 +apish_A 1.0773191989054437e-5 +apishamore_N 3.729715012475897e-6 +apivorous_A 1.0773191989054437e-5 +aplacental_A 1.0773191989054437e-5 +aplanatic_A 1.0773191989054437e-5 +aplasia_N 3.729715012475897e-6 +aplite_N 3.729715012475897e-6 +aplitic_A 1.0773191989054437e-5 +aplomb_N 7.459430024951794e-6 +apnea_N 3.729715012475897e-6 +apneic_A 1.0773191989054437e-5 +apoapsis_N 3.729715012475897e-6 +apocalypse_N 3.729715012475897e-6 +apocalyptic_A 2.1546383978108874e-5 +apocarpous_A 1.0773191989054437e-5 +apochromatic_A 1.0773191989054437e-5 +apocope_N 3.729715012475897e-6 +apocrine_A 1.0773191989054437e-5 +apocrypha_N 3.729715012475897e-6 +apocryphal_A 1.0773191989054437e-5 +apocynaceous_A 1.0773191989054437e-5 +apodal_A 1.0773191989054437e-5 +apodeme_N 3.729715012475897e-6 +apodictic_A 1.0773191989054437e-5 +apoenzyme_N 3.729715012475897e-6 +apogamic_A 1.0773191989054437e-5 +apogamy_N 3.729715012475897e-6 +apogean_A 1.0773191989054437e-5 +apogee_N 3.729715012475897e-6 +apojove_N 3.729715012475897e-6 +apolemia_N 3.729715012475897e-6 +apolitical_A 1.0773191989054437e-5 +apologetic_A 1.0773191989054437e-5 +apologetically_Adv 1.7337933665065797e-5 +apologetics_N 3.729715012475897e-6 +apologist_N 1.118914503742769e-5 +apologize_V 1.3607293509320997e-4 +apology_N 2.237829007485538e-5 +apomict_N 3.729715012475897e-6 +apomictic_A 1.0773191989054437e-5 +apomixis_N 3.729715012475897e-6 +apomorphine_N 3.729715012475897e-6 +aponeurosis_N 3.729715012475897e-6 +aponeurotic_A 1.0773191989054437e-5 +apopemptic_A 1.0773191989054437e-5 +apophasis_N 3.729715012475897e-6 +apophatic_A 1.0773191989054437e-5 +apophatism_N 3.729715012475897e-6 +apophthegm_N 3.729715012475897e-6 +apophyseal_A 1.0773191989054437e-5 +apophysis_N 3.729715012475897e-6 +apoplectic_A 1.0773191989054437e-5 +apoplectiform_A 1.0773191989054437e-5 +apoplexy_N 3.729715012475897e-6 +apoptosis_N 3.729715012475897e-6 +aposelene_N 3.729715012475897e-6 +aposiopesis_N 3.729715012475897e-6 +aposiopetic_A 1.0773191989054437e-5 +apostasy_N 3.729715012475897e-6 +apostate_A 1.0773191989054437e-5 +apostate_N 3.729715012475897e-6 +apostle_N 3.729715012475897e-6 +apostleship_N 3.729715012475897e-6 +apostolic_A 1.0773191989054437e-5 +apostrophe_N 3.729715012475897e-6 +apostrophic_A 1.0773191989054437e-5 +apostrophize_V2 1.609865254278217e-5 +apothecary_N 3.729715012475897e-6 +apothecial_A 1.0773191989054437e-5 +apothecium_N 3.729715012475897e-6 +apothegm_N 3.729715012475897e-6 +apothegmatic_A 1.0773191989054437e-5 +apotheosis_N 3.729715012475897e-6 +apotropaic_A 1.0773191989054437e-5 +appal_V2 9.659191525669301e-5 +appalling_A 4.309276795621775e-5 +appalling_N 3.729715012475897e-6 +appanage_N 3.729715012475897e-6 +apparatchik_N 3.729715012475897e-6 +apparatus_N 2.237829007485538e-5 +apparel_N 1.0443202034932511e-4 +apparel_V2 1.609865254278217e-5 +appareled_A 1.0773191989054437e-5 +apparent_A 1.5513396464238388e-3 +apparentness_N 3.729715012475897e-6 +apparition_N 7.459430024951794e-6 +apparitional_A 1.0773191989054437e-5 +appeal_N 3.9162007630996916e-4 +appeal_V 7.484011430126548e-4 +appeal_V2 1.7708517797060386e-4 +appeal_V2V 4.675081813931744e-4 +appealable_A 1.0773191989054437e-5 +appealingly_Adv 8.668966832532898e-6 +appear_V 1.6101963986029845e-3 +appear_V2 1.1269056779947518e-4 +appear_VA 5.31496062992126e-2 +appear_VS 9.819210997516316e-4 +appear_VV 1.1339611762444744e-2 +appearance_N 8.951316029942152e-5 +appeasable_A 1.0773191989054437e-5 +appease_V2 1.1269056779947518e-4 +appeasement_N 3.729715012475897e-6 +appeaser_N 3.729715012475897e-6 +appellant_A 1.0773191989054437e-5 +appellant_N 3.729715012475897e-6 +appellate_A 1.0773191989054437e-5 +appellation_N 3.729715012475897e-6 +appellative_A 1.0773191989054437e-5 +append_V2 6.439461017112868e-5 +appendage_N 7.459430024951794e-6 +appendaged_A 1.0773191989054437e-5 +appendant_A 1.0773191989054437e-5 +appendectomy_N 3.729715012475897e-6 +appendicitis_N 3.729715012475897e-6 +appendicle_N 3.729715012475897e-6 +appendicular_A 1.0773191989054437e-5 +appendicularia_N 3.729715012475897e-6 +appendix_N 3.729715012475897e-6 +apperception_N 3.729715012475897e-6 +apperceptive_A 1.0773191989054437e-5 +appertain_V 2.2678822515534993e-5 +appetent_A 1.0773191989054437e-5 +appetite_N 4.848629516218666e-5 +appetitive_A 1.0773191989054437e-5 +appetizer_N 3.729715012475897e-6 +appetizing_A 2.1546383978108874e-5 +appetizingness_N 3.729715012475897e-6 +applaud_V 9.071529006213997e-5 +applaud_V2 1.609865254278217e-4 +applaudable_A 1.0773191989054437e-5 +applause_N 2.9837720099807175e-5 +apple_N 1.6037774553646355e-4 +applecart_N 3.729715012475897e-6 +applejack_N 3.729715012475897e-6 +applesauce_N 3.729715012475897e-6 +applet_N 3.729715012475897e-6 +applewood_N 3.729715012475897e-6 +appliance_N 7.832401526199384e-5 +applicability_N 7.459430024951794e-6 +applicable_A 9.695872790148993e-5 +applicant_N 3.729715012475897e-5 +application_N 2.387017607984574e-4 +applicative_A 1.0773191989054437e-5 +applicator_N 3.729715012475897e-6 +applique_N 3.729715012475897e-6 +applique_V2 1.609865254278217e-5 +apply_V 1.3607293509320995e-3 +apply_V2 4.185649661123364e-4 +apply_V2V 4.675081813931744e-4 +apply_VV 2.8829521429944266e-4 +appoint_V2 6.117487966257224e-4 +appoint_V2V 4.675081813931744e-4 +appoint_V3 4.761904761904762e-3 +appoint_VS 4.0432045283890716e-4 +appointee_N 1.8648575062379485e-5 +appointive_A 1.0773191989054437e-5 +appointment_N 1.4172917047408407e-4 +apportion_V2 1.609865254278217e-5 +apportionment_N 3.729715012475897e-6 +apposite_A 1.0773191989054437e-5 +apposition_N 3.729715012475897e-6 +appositional_A 1.0773191989054437e-5 +appositively_Adv 8.668966832532898e-6 +appraisal_N 2.9837720099807175e-5 +appraise_V2 4.8295957628346505e-5 +appraiser_N 3.729715012475897e-6 +appreciable_A 4.309276795621775e-5 +appreciate_V 2.0410940263981494e-4 +appreciate_V2 1.2878922034225736e-4 +appreciation_N 1.268103104241805e-4 +appreciative_A 1.0773191989054437e-5 +appreciator_N 3.729715012475897e-6 +apprehend_V2 1.609865254278217e-5 +apprehender_N 3.729715012475897e-6 +apprehensible_A 1.0773191989054437e-5 +apprehension_N 1.118914503742769e-5 +apprehensive_A 2.1546383978108874e-5 +apprentice_N 3.729715012475897e-6 +apprentice_V2 1.609865254278217e-5 +apprenticeship_N 3.729715012475897e-6 +appressed_A 1.0773191989054437e-5 +apprise_V2 3.219730508556434e-5 +appro_N 3.729715012475897e-6 +approach_N 3.058366310230235e-4 +approach_V 2.7214587018641994e-4 +approach_V2 5.795514915401581e-4 +approachability_N 3.729715012475897e-6 +approachable_A 1.0773191989054437e-5 +approbation_N 3.729715012475897e-6 +appropriable_A 1.0773191989054437e-5 +appropriate_A 4.632472555293408e-4 +appropriate_V2 9.659191525669301e-5 +appropriateness_N 3.729715012475897e-6 +appropriation_N 2.237829007485538e-4 +appropriative_A 1.0773191989054437e-5 +appropriator_N 3.729715012475897e-6 +approval_N 7.011864223454686e-4 +approve_V 1.4514446409942395e-3 +approve_V2 2.6240803644734935e-3 +approver_N 3.729715012475897e-6 +approvingly_Adv 8.668966832532898e-6 +approx_PN 1.865462821325971e-5 +approximate_A 4.2015448757312305e-4 +approximate_V 2.2678822515534993e-5 +approximate_V2 3.219730508556434e-5 +approximation_N 3.729715012475897e-6 +appurtenance_N 3.729715012475897e-6 +apr_PN 1.865462821325971e-5 +apractic_A 1.0773191989054437e-5 +apraxia_N 3.729715012475897e-6 +apres_ski_A 1.0773191989054437e-5 +apricot_N 3.729715012475897e-6 +april_N 3.729715012475897e-6 +april_PN 1.0633138081558035e-3 +apron_N 3.729715012475897e-6 +apropos_A 1.0773191989054437e-5 +apropos_Adv 8.668966832532898e-6 +apropos_Prep 9.978546125829467e-6 +apse_N 3.729715012475897e-6 +apsidal_A 1.0773191989054437e-5 +apt_A 9.695872790148993e-5 +apteral_A 1.0773191989054437e-5 +apterous_A 1.0773191989054437e-5 +aptitude_N 3.729715012475897e-6 +aptitudinal_A 1.0773191989054437e-5 +aptness_N 3.729715012475897e-6 +apud_Prep 9.978546125829467e-6 +aquaculture_N 3.729715012475897e-6 +aqualung_N 3.729715012475897e-6 +aquamarine_N 7.459430024951794e-6 +aquanaut_N 3.729715012475897e-6 +aquaphobia_N 3.729715012475897e-6 +aquaplane_N 3.729715012475897e-6 +aquaplane_V 2.2678822515534993e-5 +aquarium_N 1.4918860049903587e-5 +aquarius_PN 1.865462821325971e-5 +aquatic_A 1.0773191989054437e-5 +aquatic_N 3.729715012475897e-6 +aquatint_N 3.729715012475897e-6 +aquavit_N 3.729715012475897e-6 +aqueduct_N 3.729715012475897e-6 +aqueous_A 1.0773191989054437e-5 +aquicultural_A 1.0773191989054437e-5 +aquifer_N 3.729715012475897e-6 +aquiferous_A 1.0773191989054437e-5 +aquiline_A 1.0773191989054437e-5 +arab_N 1.118914503742769e-5 +arabesque_N 3.729715012475897e-6 +arabian_A 1.0773191989054437e-5 +arabian_N 3.729715012475897e-6 +arabic_A 1.0773191989054437e-5 +arabic_N 3.729715012475897e-6 +arability_N 3.729715012475897e-6 +arabist_N 3.729715012475897e-6 +arable_A 2.1546383978108874e-5 +arachnid_N 3.729715012475897e-6 +arachnoid_A 1.0773191989054437e-5 +arachnoid_N 3.729715012475897e-6 +arachnophobia_N 3.729715012475897e-6 +aragonite_N 3.729715012475897e-6 +aralia_N 3.729715012475897e-6 +arame_N 3.729715012475897e-6 +araneidal_A 1.0773191989054437e-5 +arariba_N 3.729715012475897e-6 +araroba_N 3.729715012475897e-6 +araucaria_N 3.729715012475897e-6 +arbiter_N 3.729715012475897e-6 +arbitrable_A 1.0773191989054437e-5 +arbitrage_N 4.587549465345353e-4 +arbitrageur_N 8.205373027446973e-5 +arbitral_A 1.0773191989054437e-5 +arbitrament_N 3.729715012475897e-6 +arbitrary_A 8.61855359124355e-5 +arbitrate_V 2.2678822515534993e-5 +arbitrate_V2 3.219730508556434e-5 +arbitration_N 2.9837720099807175e-5 +arbitrative_A 1.0773191989054437e-5 +arbitrator_N 3.356743511228307e-5 +arbor_N 3.729715012475897e-6 +arboraceous_A 1.0773191989054437e-5 +arboreal_A 1.0773191989054437e-5 +arboretum_N 3.729715012475897e-6 +arborical_A 1.0773191989054437e-5 +arboriculture_N 3.729715012475897e-6 +arborolatry_N 3.729715012475897e-6 +arborvitae_N 3.729715012475897e-6 +arbour_N 3.729715012475897e-6 +arbovirus_N 3.729715012475897e-6 +arbroath_PN 1.865462821325971e-5 +arbutus_N 3.729715012475897e-6 +arc_N 3.729715012475897e-6 +arc_lamp_N 3.729715012475897e-6 +arc_light_N 3.729715012475897e-6 +arcade_N 7.459430024951794e-6 +arcadian_A 1.0773191989054437e-5 +arcadian_N 3.729715012475897e-6 +arcane_A 3.231957596716331e-5 +arced_A 1.0773191989054437e-5 +arcella_N 3.729715012475897e-6 +arch_A 1.0773191989054437e-5 +arch_N 7.459430024951794e-6 +arch_V 4.5357645031069986e-5 +arch_V2 4.8295957628346505e-5 +archaebacteria_N 3.729715012475897e-6 +archaeological_A 2.1546383978108874e-5 +archaeologist_N 3.729715012475897e-6 +archaeology_N 3.729715012475897e-6 +archaeopteryx_N 3.729715012475897e-6 +archaeornis_N 3.729715012475897e-6 +archaic_A 3.231957596716331e-5 +archaism_N 3.729715012475897e-6 +archaist_N 3.729715012475897e-6 +archaistic_A 1.0773191989054437e-5 +archangel_N 3.729715012475897e-6 +archangelic_A 1.0773191989054437e-5 +archbishop_N 3.729715012475897e-6 +archbishopric_N 3.729715012475897e-6 +archdeacon_N 3.729715012475897e-6 +archdeaconry_N 3.729715012475897e-6 +archdiocesan_A 1.0773191989054437e-5 +archdiocese_N 3.729715012475897e-6 +archducal_A 1.0773191989054437e-5 +archduchess_N 3.729715012475897e-6 +archduchy_N 3.729715012475897e-6 +archduke_N 3.729715012475897e-6 +archean_A 1.0773191989054437e-5 +archegonial_A 1.0773191989054437e-5 +archegonium_N 3.729715012475897e-6 +archenteron_N 3.729715012475897e-6 +archeologist_N 3.729715012475897e-6 +archeology_N 3.729715012475897e-6 +archeozoic_A 1.0773191989054437e-5 +archer_N 3.729715012475897e-6 +archerfish_N 3.729715012475897e-6 +archery_N 3.729715012475897e-6 +archespore_N 3.729715012475897e-6 +archesporial_A 1.0773191989054437e-5 +archetypal_A 1.0773191989054437e-5 +archetype_N 3.729715012475897e-6 +archiannelid_N 3.729715012475897e-6 +archidiaconal_A 1.0773191989054437e-5 +archidiaconate_N 3.729715012475897e-6 +archiepiscopal_A 1.0773191989054437e-5 +archil_N 3.729715012475897e-6 +archimandrite_N 3.729715012475897e-6 +archine_N 3.729715012475897e-6 +archipallium_N 3.729715012475897e-6 +archipelagic_A 1.0773191989054437e-5 +archipelago_N 3.729715012475897e-6 +architect_N 7.832401526199384e-5 +architectonics_N 3.729715012475897e-6 +architectural_A 1.0773191989054437e-4 +architecture_N 5.967544019961435e-5 +architeuthis_N 3.729715012475897e-6 +architrave_N 3.729715012475897e-6 +archival_A 1.0773191989054437e-5 +archive_N 3.729715012475897e-6 +archives_N 3.729715012475897e-6 +archivist_N 3.729715012475897e-6 +archosaur_N 3.729715012475897e-6 +archosaurian_A 1.0773191989054437e-5 +archpriest_N 3.729715012475897e-6 +archway_N 3.729715012475897e-6 +arco_A 1.0773191989054437e-5 +arctic_A 1.0773191989054437e-5 +arctic_N 3.729715012475897e-6 +arctiid_N 3.729715012475897e-6 +arcus_N 3.729715012475897e-6 +ardeb_N 3.729715012475897e-6 +ardent_A 5.3865959945272184e-5 +ardor_N 3.729715012475897e-6 +ardour_N 3.729715012475897e-6 +ardrossan_PN 1.865462821325971e-5 +arduous_A 1.0773191989054437e-5 +arduousness_N 3.729715012475897e-6 +are_N 7.459430024951794e-6 +area_1_N 1.3874539846410335e-3 +area_2_N 1.118914503742769e-5 +area_3_N 7.459430024951794e-6 +area_4_N 3.729715012475897e-6 +area_5_N 3.729715012475897e-6 +area_6_N 3.729715012475897e-6 +areal_A 1.0773191989054437e-5 +areaway_N 3.729715012475897e-6 +areca_N 3.729715012475897e-6 +areflexia_N 3.729715012475897e-6 +arena_N 4.1026865137234865e-5 +arenaceous_A 1.0773191989054437e-5 +arenavirus_N 3.729715012475897e-6 +arenicolous_A 1.0773191989054437e-5 +areola_N 3.729715012475897e-6 +areolar_A 1.0773191989054437e-5 +arete_N 3.729715012475897e-6 +arethusa_N 3.729715012475897e-6 +argali_N 3.729715012475897e-6 +argent_A 1.0773191989054437e-5 +argent_N 3.729715012475897e-6 +argentic_A 1.0773191989054437e-5 +argentiferous_A 1.0773191989054437e-5 +argentina_PN 2.052009103458568e-4 +argentine_N 3.729715012475897e-6 +argentine_PN 1.865462821325971e-5 +argentinian_A 2.1546383978108874e-5 +argentinian_N 3.729715012475897e-6 +argentinosaur_N 3.729715012475897e-6 +argentite_N 3.729715012475897e-6 +argentous_A 1.0773191989054437e-5 +argil_N 3.729715012475897e-6 +argillaceous_A 1.0773191989054437e-5 +argillite_N 3.729715012475897e-6 +arginine_N 3.729715012475897e-6 +argon_N 3.729715012475897e-6 +argonaut_N 3.729715012475897e-6 +argosy_N 3.729715012475897e-6 +argot_N 3.729715012475897e-6 +arguable_A 4.309276795621775e-5 +argue_V 5.669705628883749e-4 +argue_V2 6.439461017112868e-5 +argue_VS 7.855368798013053e-3 +argue_down_V2 1.609865254278217e-5 +argue_out_V2 1.609865254278217e-5 +argument_N 2.4243147581093328e-4 +argumentation_N 3.729715012475897e-6 +argumentative_A 1.0773191989054437e-5 +argus_N 3.729715012475897e-6 +argus_eyed_A 1.0773191989054437e-5 +argyle_N 3.729715012475897e-6 +argyll_N 3.729715012475897e-6 +argyrodite_N 3.729715012475897e-6 +aria_N 7.459430024951794e-6 +arianist_N 3.729715012475897e-6 +arid_A 1.0773191989054437e-5 +aridity_N 3.729715012475897e-6 +aries_PN 1.865462821325971e-5 +arietta_N 3.729715012475897e-6 +aright_Adv 8.668966832532898e-6 +aril_N 3.729715012475897e-6 +ariled_A 1.0773191989054437e-5 +ariose_A 1.0773191989054437e-5 +arioso_N 3.729715012475897e-6 +arise_V 4.762552728262349e-4 +arise_VS 3.4656038814763474e-4 +arista_N 3.729715012475897e-6 +aristocracy_N 7.459430024951794e-6 +aristocrat_N 3.729715012475897e-6 +aristocratic_A 2.1546383978108874e-5 +aristocratically_Adv 8.668966832532898e-6 +arithmancy_N 3.729715012475897e-6 +arithmetic_N 7.459430024951794e-6 +arithmetical_A 1.0773191989054437e-5 +arithmetician_N 3.729715012475897e-6 +arity_N 3.729715012475897e-6 +arizona_PN 6.156027310375705e-4 +ark_N 3.729715012475897e-6 +arkansas_PN 1.865462821325971e-4 +arm_N 2.349720457859815e-4 +arm_V 6.803646754660499e-5 +arm_V2 1.9318383051338602e-4 +arm_hole_N 3.729715012475897e-6 +armada_N 3.729715012475897e-6 +armadale_PN 1.865462821325971e-5 +armadillo_N 1.118914503742769e-5 +armageddon_PN 1.865462821325971e-5 +armagh_PN 1.865462821325971e-5 +armament_N 3.729715012475897e-6 +armamentarium_N 3.729715012475897e-6 +armature_N 3.729715012475897e-6 +armband_N 3.729715012475897e-6 +armchair_N 3.729715012475897e-6 +armenian_N 3.729715012475897e-6 +armet_N 3.729715012475897e-6 +armful_N 3.729715012475897e-6 +armhole_N 3.729715012475897e-6 +armiger_N 3.729715012475897e-6 +armilla_N 3.729715012475897e-6 +armillary_A 1.0773191989054437e-5 +arming_N 3.729715012475897e-6 +armistice_N 3.729715012475897e-6 +armless_A 1.0773191989054437e-5 +armlet_N 3.729715012475897e-6 +armlike_A 1.0773191989054437e-5 +armoire_N 3.729715012475897e-6 +armor_N 3.729715012475897e-6 +armored_A 1.0773191989054437e-5 +armorer_N 3.729715012475897e-6 +armorial_A 1.0773191989054437e-5 +armory_N 3.729715012475897e-6 +armour_N 3.729715012475897e-6 +armour_plate_N 3.729715012475897e-6 +armoured_A 1.0773191989054437e-5 +armourer_N 3.729715012475897e-6 +armoury_N 3.729715012475897e-6 +armpit_N 7.459430024951794e-6 +armrest_N 3.729715012475897e-6 +arms_race_N 3.729715012475897e-6 +arms_runner_N 3.729715012475897e-6 +army_N 9.697259032437332e-5 +armyworm_N 3.729715012475897e-6 +arnhem_PN 1.865462821325971e-5 +arnica_N 3.729715012475897e-6 +arnold_PN 1.865462821325971e-5 +aroid_A 1.0773191989054437e-5 +aroma_N 1.4918860049903587e-5 +aromatherapy_N 3.729715012475897e-6 +aromatic_A 1.0773191989054437e-5 +arose_V2 1.609865254278217e-5 +around_AdN 3.6741214057507986e-2 +around_Adv 5.808207777797043e-4 +around_Prep 2.1453874170533353e-3 +arousal_N 3.729715012475897e-6 +arouse_V2 1.609865254278217e-4 +arouse_V2V 9.350163627863488e-4 +arpeggio_N 7.459430024951794e-6 +arpent_N 3.729715012475897e-6 +arquebus_N 3.729715012475897e-6 +arr_PN 1.865462821325971e-5 +arrack_N 3.729715012475897e-6 +arraign_V2 1.609865254278217e-5 +arraignment_N 7.459430024951794e-6 +arrange_V 9.071529006213997e-5 +arrange_V2 5.956501440829402e-4 +arrangement_N 2.2005318573607791e-4 +arranger_N 3.729715012475897e-6 +arrant_A 1.0773191989054437e-5 +arras_N 3.729715012475897e-6 +array_N 7.832401526199384e-5 +array_V2 1.609865254278217e-5 +arrears_N 3.729715012475897e-6 +arrest_N 7.459430024951794e-5 +arrest_V2 4.0246631356955425e-4 +arrester_N 3.729715012475897e-6 +arresting_A 1.0773191989054437e-5 +arrhythmic_A 1.0773191989054437e-5 +arriere_pensee_N 3.729715012475897e-6 +arrival_N 3.356743511228307e-5 +arrive_V 8.617952555903298e-4 +arrive_V2 4.8295957628346505e-5 +arroba_N 3.729715012475897e-6 +arrogance_N 7.459430024951794e-6 +arrogant_A 7.541234392338106e-5 +arrogate_V2 1.609865254278217e-5 +arrogator_N 3.729715012475897e-6 +arrow_N 1.118914503742769e-5 +arrowhead_N 3.729715012475897e-6 +arrowroot_N 3.729715012475897e-6 +arrowsmith_N 3.729715012475897e-6 +arrowworm_N 3.729715012475897e-6 +arroyo_N 3.729715012475897e-6 +arse_N 3.729715012475897e-6 +arsehole_N 3.729715012475897e-6 +arsenal_N 3.356743511228307e-5 +arsenate_N 3.729715012475897e-6 +arsenic_N 7.459430024951794e-6 +arsenical_A 1.0773191989054437e-5 +arsenical_N 3.729715012475897e-6 +arsenide_N 7.459430024951794e-6 +arsenious_A 1.0773191989054437e-5 +arsenopyrite_N 3.729715012475897e-6 +arsine_N 3.729715012475897e-6 +arson_N 1.118914503742769e-5 +arsonist_N 3.729715012475897e-6 +art_N 4.475658014971076e-5 +art_PN 1.865462821325971e-5 +artefact_N 3.729715012475897e-6 +artemisia_N 3.729715012475897e-6 +arterial_A 1.0773191989054437e-5 +arteriectasis_N 3.729715012475897e-6 +arteriogram_N 3.729715012475897e-6 +arteriography_N 3.729715012475897e-6 +arteriolar_A 1.0773191989054437e-5 +arteriole_N 3.729715012475897e-6 +arteriolosclerosis_N 3.729715012475897e-6 +arteriosclerosis_N 3.729715012475897e-6 +arteriosclerotic_A 1.0773191989054437e-5 +arteriovenous_A 1.0773191989054437e-5 +arteritis_N 3.729715012475897e-6 +artery_N 5.967544019961435e-5 +artesian_A 1.0773191989054437e-5 +artful_A 2.1546383978108874e-5 +artfulness_N 3.729715012475897e-6 +arthralgia_N 3.729715012475897e-6 +arthralgic_A 1.0773191989054437e-5 +arthritic_A 2.1546383978108874e-5 +arthritic_N 3.729715012475897e-6 +arthritis_N 1.118914503742769e-5 +arthrocentesis_N 3.729715012475897e-6 +arthrodesis_N 3.729715012475897e-6 +arthrogram_N 3.729715012475897e-6 +arthrography_N 3.729715012475897e-6 +arthromere_N 3.729715012475897e-6 +arthromeric_A 1.0773191989054437e-5 +arthropathy_N 3.729715012475897e-6 +arthroplasty_N 3.729715012475897e-6 +arthropod_N 3.729715012475897e-6 +arthropodal_A 1.0773191989054437e-5 +arthroscope_N 3.729715012475897e-6 +arthroscopy_N 3.729715012475897e-6 +arthrospore_N 3.729715012475897e-6 +arthrosporic_A 1.0773191989054437e-5 +arthur_PN 1.865462821325971e-5 +artichoke_N 3.729715012475897e-6 +article_N 4.960520966592943e-4 +article_V2 1.609865254278217e-5 +articular_A 1.0773191989054437e-5 +articulate_A 1.0773191989054437e-5 +articulate_V 2.2678822515534993e-5 +articulate_V2 6.439461017112868e-5 +articulation_N 3.729715012475897e-6 +articulator_N 3.729715012475897e-6 +articulatory_A 1.0773191989054437e-5 +artie_PN 1.865462821325971e-5 +artifact_N 1.4918860049903587e-5 +artifactual_A 1.0773191989054437e-5 +artifice_N 3.729715012475897e-6 +artificer_N 3.729715012475897e-6 +artificial_A 1.4005149585770768e-4 +artificiality_N 3.729715012475897e-6 +artillery_N 1.4918860049903587e-5 +artilleryman_N 3.729715012475897e-6 +artiodactyl_A 1.0773191989054437e-5 +artisan_N 3.729715012475897e-6 +artist_N 1.268103104241805e-4 +artiste_N 3.729715012475897e-6 +artistic_A 1.0773191989054437e-4 +artistically_Adv 8.668966832532898e-6 +artistry_N 7.459430024951794e-6 +artless_A 1.0773191989054437e-5 +artlessness_N 3.729715012475897e-6 +artwork_N 3.729715012475897e-6 +arty_A 1.0773191989054437e-5 +arty_crafty_A 1.0773191989054437e-5 +arum_N 3.729715012475897e-6 +arundinaceous_A 1.0773191989054437e-5 +aryan_A 1.0773191989054437e-5 +aryan_N 3.729715012475897e-6 +arytenoid_N 3.729715012475897e-6 +as_Prep 4.380581749239136e-2 +as_Subj 2.971887550200803e-2 +as_for_Prep 2.694207453973956e-4 +as_long_as_Subj 2.0080321285140562e-2 +as_of_Prep 7.084767749338921e-4 +as_opposed_to_Prep 7.982836900663574e-5 +as_per_Prep 9.978546125829467e-6 +as_regards_Prep 9.978546125829467e-6 +as_well_Adv 1.8204830348319086e-4 +as_well_as_Conj 7.007568173627517e-3 +asafetida_N 3.729715012475897e-6 +asana_N 3.729715012475897e-6 +asap_PN 1.865462821325971e-5 +asarabacca_N 3.729715012475897e-6 +asbestos_N 1.305400254366564e-4 +asbestosis_N 7.459430024951794e-6 +ascariasis_N 3.729715012475897e-6 +ascend_V 6.803646754660499e-5 +ascend_V2 1.609865254278217e-5 +ascendable_A 1.0773191989054437e-5 +ascendancy_N 3.729715012475897e-6 +ascendant_A 1.0773191989054437e-5 +ascendant_N 3.729715012475897e-6 +ascendency_N 7.459430024951794e-6 +ascendent_N 3.729715012475897e-6 +ascender_N 3.729715012475897e-6 +ascension_N 3.729715012475897e-6 +ascensional_A 1.0773191989054437e-5 +ascent_N 7.459430024951794e-6 +ascertain_V2 1.609865254278217e-5 +ascertainable_A 1.0773191989054437e-5 +ascetic_A 1.0773191989054437e-5 +ascetic_N 3.729715012475897e-6 +ascetically_Adv 8.668966832532898e-6 +asceticism_N 3.729715012475897e-6 +ascidian_N 3.729715012475897e-6 +ascites_N 3.729715012475897e-6 +ascitic_A 1.0773191989054437e-5 +asclepiad_N 3.729715012475897e-6 +asclepiadaceous_A 1.0773191989054437e-5 +ascocarp_N 3.729715012475897e-6 +ascocarpous_A 1.0773191989054437e-5 +ascolichen_N 3.729715012475897e-6 +ascoma_N 3.729715012475897e-6 +ascomycete_N 3.729715012475897e-6 +ascomycetous_A 1.0773191989054437e-5 +ascorbic_A 1.0773191989054437e-5 +ascospore_N 3.729715012475897e-6 +ascosporic_A 1.0773191989054437e-5 +ascot_N 3.729715012475897e-6 +ascot_PN 1.865462821325971e-5 +ascribable_A 1.0773191989054437e-5 +ascribe_V2 4.8295957628346505e-5 +ascription_N 3.729715012475897e-6 +ascus_N 3.729715012475897e-6 +asdic_N 3.729715012475897e-6 +asepsis_N 3.729715012475897e-6 +aseptic_A 1.0773191989054437e-5 +asexual_A 1.0773191989054437e-5 +asexuality_N 3.729715012475897e-6 +ash_N 7.459430024951794e-6 +ash_bin_N 3.729715012475897e-6 +ash_can_N 3.729715012475897e-6 +ash_key_N 3.729715012475897e-6 +ash_pan_N 3.729715012475897e-6 +ashamed_A 2.1546383978108874e-5 +ashbourne_PN 1.865462821325971e-5 +ashby_PN 1.865462821325971e-5 +ashby_de_la_zouch_PN 1.865462821325971e-5 +ashby_woulds_PN 1.865462821325971e-5 +ashcake_N 3.729715012475897e-6 +ashcan_N 3.729715012475897e-6 +ashen_A 1.0773191989054437e-5 +ashford_PN 1.865462821325971e-5 +ashington_PN 1.865462821325971e-5 +ashlar_N 3.729715012475897e-6 +ashore_Adv 3.4675867330131594e-5 +ashram_N 3.729715012475897e-6 +ashton_in_makerfield_PN 1.865462821325971e-5 +ashton_under_lyne_PN 1.865462821325971e-5 +ashtray_N 7.459430024951794e-6 +ashy_A 1.0773191989054437e-5 +asian_A 6.463915193432663e-5 +asian_N 7.459430024951794e-6 +asiatic_A 1.0773191989054437e-5 +asiatic_N 3.729715012475897e-6 +aside_Adv 2.2539313764585535e-4 +aside_N 3.729715012475897e-6 +aside_from_Prep 1.0976400738412413e-4 +asinine_A 1.0773191989054437e-5 +asininity_N 3.729715012475897e-6 +ask_V 5.125413888510909e-3 +ask_V2 9.337218474813658e-4 +ask_V2V 5.142589995324918e-3 +ask_VQ 6.666666666666667e-2 +ask_VS 2.1371223935770806e-3 +ask_VV 1.1531808571977706e-3 +ask_about_V2 1.609865254278217e-5 +ask_after_V2 1.609865254278217e-5 +ask_around_V 2.2678822515534993e-5 +ask_around_V2 1.609865254278217e-5 +ask_for_V2 3.219730508556434e-5 +ask_in_V2 1.609865254278217e-5 +ask_out_V2 1.609865254278217e-5 +ask_over_V2 1.609865254278217e-5 +ask_round_V2 1.609865254278217e-5 +askance_A 1.0773191989054437e-5 +askance_Adv 8.668966832532898e-6 +askern_PN 1.865462821325971e-5 +askew_A 1.0773191989054437e-5 +askew_Adv 8.668966832532898e-6 +asking_N 1.4918860049903587e-5 +aslant_A 1.0773191989054437e-5 +aslant_Adv 8.668966832532898e-6 +asleep_A 3.231957596716331e-5 +asleep_Adv 8.668966832532898e-6 +asocial_A 1.0773191989054437e-5 +asp_N 3.729715012475897e-6 +asparaginase_N 3.729715012475897e-6 +asparagine_N 3.729715012475897e-6 +asparagus_N 3.729715012475897e-6 +aspartame_N 3.729715012475897e-6 +aspect_N 1.5664803052398767e-4 +aspectual_A 1.0773191989054437e-5 +aspen_N 7.459430024951794e-6 +asper_N 3.729715012475897e-6 +aspergill_N 3.729715012475897e-6 +aspergillosis_N 3.729715012475897e-6 +asperity_N 3.729715012475897e-6 +asperse_V2 1.609865254278217e-5 +aspersion_N 1.118914503742769e-5 +aspersorium_N 3.729715012475897e-6 +asphalt_N 1.4918860049903587e-5 +asphalt_V2 1.609865254278217e-5 +asphaltic_A 1.0773191989054437e-5 +aspheric_A 1.0773191989054437e-5 +asphodel_N 3.729715012475897e-6 +asphyxia_N 3.729715012475897e-6 +asphyxiate_V2 1.609865254278217e-5 +asphyxiating_A 1.0773191989054437e-5 +asphyxiation_N 3.729715012475897e-6 +aspic_N 3.729715012475897e-6 +aspidistra_N 3.729715012475897e-6 +aspirant_A 1.0773191989054437e-5 +aspirant_N 3.729715012475897e-6 +aspirate_N 3.729715012475897e-6 +aspirate_V2 1.609865254278217e-5 +aspiration_N 2.6108005087331277e-5 +aspirator_N 3.729715012475897e-6 +aspire_V 1.3607293509320997e-4 +aspire_VV 1.9219680953296174e-4 +aspirin_N 7.459430024951794e-6 +aspull_PN 1.865462821325971e-5 +ass_N 7.459430024951794e-6 +assagai_N 3.729715012475897e-6 +assail_V2 6.439461017112868e-5 +assailability_N 3.729715012475897e-6 +assailable_A 1.0773191989054437e-5 +assailant_N 7.459430024951794e-6 +assassin_N 7.459430024951794e-6 +assassinate_V2 9.659191525669301e-5 +assassination_N 8.951316029942152e-5 +assault_N 5.2216010174662554e-5 +assault_V2 1.609865254278217e-5 +assaultive_A 1.0773191989054437e-5 +assay_N 3.729715012475897e-6 +assay_V2 1.609865254278217e-5 +assayer_N 3.729715012475897e-6 +assegai_N 3.729715012475897e-6 +assemblage_N 7.459430024951794e-6 +assemble_V 2.0410940263981494e-4 +assemble_V2 2.092824830561682e-4 +assembler_N 3.729715012475897e-6 +assembly_N 1.6410746054893946e-4 +assemblyman_N 3.729715012475897e-6 +assemblywoman_N 3.729715012475897e-6 +assent_N 1.118914503742769e-5 +assent_V 2.2678822515534993e-5 +assenter_N 3.729715012475897e-6 +assentient_A 1.0773191989054437e-5 +assert_V 1.3607293509320997e-4 +assert_V2 1.609865254278217e-4 +assert_VS 1.6172818113556287e-3 +asserter_N 3.729715012475897e-6 +assertion_N 3.729715012475897e-5 +assertive_A 2.1546383978108874e-5 +assertiveness_N 3.729715012475897e-6 +assess_V2 4.3466361865511857e-4 +assessable_A 1.0773191989054437e-5 +assessee_N 3.729715012475897e-6 +assessment_N 9.697259032437332e-5 +assessor_N 3.729715012475897e-6 +asset_N 1.7455066258387196e-3 +assets_N 3.729715012475897e-6 +asseverate_V2 1.609865254278217e-5 +asseveration_N 3.729715012475897e-6 +asshole_N 3.729715012475897e-6 +assibilation_N 3.729715012475897e-6 +assiduity_N 3.729715012475897e-6 +assiduous_A 2.1546383978108874e-5 +assign_V2 3.541703559412077e-4 +assign_V2V 4.675081813931744e-4 +assignable_A 1.0773191989054437e-5 +assignation_N 3.729715012475897e-6 +assignee_N 3.729715012475897e-6 +assignment_N 2.237829007485538e-5 +assignor_N 3.729715012475897e-6 +assimilable_A 1.0773191989054437e-5 +assimilate_V 4.5357645031069986e-5 +assimilate_V2 4.8295957628346505e-5 +assimilation_N 3.729715012475897e-6 +assimilative_A 1.0773191989054437e-5 +assist_N 3.729715012475897e-6 +assist_V 2.9482469270195494e-4 +assist_V2 4.185649661123364e-4 +assistance_N 2.1259375571112613e-4 +assistant_N 1.2308059541170458e-4 +assistive_A 1.0773191989054437e-5 +assize_N 3.729715012475897e-6 +assizes_N 3.729715012475897e-6 +assoc_N 3.729715012475897e-6 +associability_N 3.729715012475897e-6 +associable_A 1.0773191989054437e-5 +associate_A 2.046906477920343e-4 +associate_N 1.6410746054893946e-4 +associate_V 2.2678822515534994e-4 +associate_V2 7.888339745963262e-4 +associateship_N 3.729715012475897e-6 +association_N 2.8345834094816813e-4 +associational_A 1.0773191989054437e-5 +associationism_N 3.729715012475897e-6 +associative_A 1.0773191989054437e-5 +assonance_N 3.729715012475897e-6 +assonant_A 1.0773191989054437e-5 +assorted_A 7.541234392338106e-5 +assortment_N 2.237829007485538e-5 +asst_N 3.729715012475897e-6 +assuage_V2 4.8295957628346505e-5 +assuasive_A 1.0773191989054437e-5 +assume_V 3.401823377330249e-4 +assume_V2 9.337218474813658e-4 +assume_VS 3.06128342863744e-3 +assumption_N 1.6410746054893946e-4 +assumptive_A 1.0773191989054437e-5 +assurance_N 8.578344528694562e-5 +assure_V2 3.3807170339842556e-4 +assure_V2S 0.28 +assuredly_Adv 8.668966832532898e-6 +assuredness_N 3.729715012475897e-6 +assurgent_A 1.0773191989054437e-5 +assuring_A 1.0773191989054437e-5 +astasia_N 3.729715012475897e-6 +astatic_A 1.0773191989054437e-5 +astatine_N 3.729715012475897e-6 +aster_N 3.729715012475897e-6 +astereognosis_N 3.729715012475897e-6 +asteriated_A 1.0773191989054437e-5 +asterion_N 3.729715012475897e-6 +asterisk_N 3.729715012475897e-6 +asterisked_A 1.0773191989054437e-5 +asterism_N 3.729715012475897e-6 +asterismal_A 1.0773191989054437e-5 +astern_Adv 8.668966832532898e-6 +asternal_A 1.0773191989054437e-5 +asteroid_A 1.0773191989054437e-5 +asteroid_N 7.459430024951794e-6 +asteroidal_A 1.0773191989054437e-5 +asthenia_N 3.729715012475897e-6 +asthenic_A 1.0773191989054437e-5 +asthenosphere_N 3.729715012475897e-6 +asthma_N 1.4918860049903587e-5 +asthmatic_A 1.0773191989054437e-5 +asthmatic_N 3.729715012475897e-6 +astigmatic_A 1.0773191989054437e-5 +astigmatism_N 3.729715012475897e-6 +astilbe_N 3.729715012475897e-6 +astir_A 1.0773191989054437e-5 +astir_Adv 8.668966832532898e-6 +astomatal_A 1.0773191989054437e-5 +astomatous_A 1.0773191989054437e-5 +aston_PN 1.865462821325971e-5 +astonish_V2 1.609865254278217e-5 +astonishing_A 4.309276795621775e-5 +astonishment_N 1.118914503742769e-5 +astound_V2 4.8295957628346505e-5 +astounding_A 1.0773191989054437e-5 +astragalar_A 1.0773191989054437e-5 +astrakhan_N 3.729715012475897e-6 +astral_A 1.0773191989054437e-5 +astrantia_N 3.729715012475897e-6 +astraphobia_N 3.729715012475897e-6 +astray_A 1.0773191989054437e-5 +astray_Adv 1.7337933665065797e-5 +astride_A 1.0773191989054437e-5 +astride_Adv 8.668966832532898e-6 +astride_Prep 2.99356383774884e-5 +astringency_N 7.459430024951794e-6 +astringent_A 1.0773191989054437e-5 +astringent_N 3.729715012475897e-6 +astrocyte_N 3.729715012475897e-6 +astrocytic_A 1.0773191989054437e-5 +astrodome_N 3.729715012475897e-6 +astrodynamics_N 3.729715012475897e-6 +astrogator_N 3.729715012475897e-6 +astroglia_N 3.729715012475897e-6 +astrolabe_N 3.729715012475897e-6 +astrolatry_N 3.729715012475897e-6 +astrologer_N 3.729715012475897e-6 +astrological_A 1.0773191989054437e-5 +astrology_N 3.729715012475897e-6 +astrometry_N 3.729715012475897e-6 +astronaut_N 2.6108005087331277e-5 +astronautic_A 1.0773191989054437e-5 +astronautics_N 3.729715012475897e-6 +astronomer_N 1.118914503742769e-5 +astronomic_A 1.0773191989054437e-5 +astronomical_A 4.309276795621775e-5 +astronomy_N 3.729715012475897e-6 +astrophysical_A 1.0773191989054437e-5 +astrophysicist_N 3.729715012475897e-6 +astrophysics_N 3.729715012475897e-6 +astute_A 3.231957596716331e-5 +astuteness_N 3.729715012475897e-6 +astylar_A 1.0773191989054437e-5 +asunder_Adv 8.668966832532898e-6 +asylum_N 1.118914503742769e-5 +asymmetric_A 1.0773191989054437e-5 +asymmetrical_A 1.0773191989054437e-5 +asymmetry_N 3.729715012475897e-6 +asymptomatic_A 1.0773191989054437e-5 +asymptote_N 3.729715012475897e-6 +asymptotic_A 1.0773191989054437e-5 +asymptotically_Adv 8.668966832532898e-6 +asynchronism_N 3.729715012475897e-6 +asynchronous_A 1.0773191989054437e-5 +asynclitism_N 3.729715012475897e-6 +asyndetic_A 1.0773191989054437e-5 +asyndeton_N 3.729715012475897e-6 +asynergic_A 1.0773191989054437e-5 +asynergy_N 3.729715012475897e-6 +asystole_N 3.729715012475897e-6 +at_N 3.729715012475897e-6 +at_Prep 5.4462904754777226e-2 +at_all_Adv 4.3344834162664496e-4 +at_home_N 3.729715012475897e-6 +at_least_AdN 0.2763578274760383 +at_the_behest_of_Prep 5.98712767549768e-5 +atabrine_N 3.729715012475897e-6 +ataractic_A 1.0773191989054437e-5 +ataraxia_N 3.729715012475897e-6 +atavism_N 3.729715012475897e-6 +atavist_N 3.729715012475897e-6 +atavistic_A 1.0773191989054437e-5 +ataxia_N 3.729715012475897e-6 +ataxic_A 1.0773191989054437e-5 +atelectasis_N 3.729715012475897e-6 +ateleiosis_N 3.729715012475897e-6 +ateleiotic_A 1.0773191989054437e-5 +atelier_N 3.729715012475897e-6 +atenolol_N 3.729715012475897e-6 +athanor_N 3.729715012475897e-6 +atheism_N 3.729715012475897e-6 +atheist_A 1.0773191989054437e-5 +atheist_N 3.729715012475897e-6 +atheistic_A 1.0773191989054437e-5 +athenaeum_N 3.729715012475897e-6 +athenian_A 2.1546383978108874e-5 +athenian_N 3.729715012475897e-6 +athens_PN 5.596388463977913e-5 +atherogenesis_N 3.729715012475897e-6 +atheroma_N 3.729715012475897e-6 +atheromatous_A 1.0773191989054437e-5 +atherosclerosis_N 3.729715012475897e-6 +atherosclerotic_A 1.0773191989054437e-5 +atherstone_PN 1.865462821325971e-5 +athetosis_N 3.729715012475897e-6 +athirst_A 1.0773191989054437e-5 +athlete_N 5.967544019961435e-5 +athletic_A 8.61855359124355e-5 +athleticism_N 3.729715012475897e-6 +athletics_N 2.9837720099807175e-5 +athlone_PN 1.865462821325971e-5 +athwart_Adv 8.668966832532898e-6 +athwart_Prep 9.978546125829467e-6 +atilt_A 1.0773191989054437e-5 +atlanta_PN 1.865462821325971e-5 +atlantic_PN 1.865462821325971e-5 +atlas_N 7.459430024951794e-6 +atmometer_N 3.729715012475897e-6 +atmosphere_N 7.459430024951794e-5 +atmospheric_A 7.541234392338106e-5 +atmospherics_N 3.729715012475897e-6 +atole_N 3.729715012475897e-6 +atoll_N 7.459430024951794e-6 +atom_N 2.6108005087331277e-5 +atomic_A 2.1546383978108874e-5 +atomism_N 3.729715012475897e-6 +atomistic_A 1.0773191989054437e-5 +atomization_N 3.729715012475897e-6 +atomize_V2 1.609865254278217e-5 +atomizer_N 3.729715012475897e-6 +atonal_A 2.1546383978108874e-5 +atonalistic_A 1.0773191989054437e-5 +atonality_N 3.729715012475897e-6 +atone_V 4.5357645031069986e-5 +atonement_N 3.729715012475897e-6 +atonic_A 1.0773191989054437e-5 +atonicity_N 3.729715012475897e-6 +atop_Adv 8.668966832532898e-6 +atop_Prep 6.984982288080626e-5 +atopognosia_N 3.729715012475897e-6 +atorvastatin_N 3.729715012475897e-6 +atrabilious_A 1.0773191989054437e-5 +atrazine_N 3.729715012475897e-6 +atresia_N 3.729715012475897e-6 +atrial_A 1.0773191989054437e-5 +atrioventricular_A 1.0773191989054437e-5 +atrium_N 3.729715012475897e-6 +atrocious_A 2.1546383978108874e-5 +atrocity_N 7.459430024951794e-6 +atrophic_A 1.0773191989054437e-5 +atrophy_N 3.729715012475897e-6 +atrophy_V 2.2678822515534993e-5 +atrophy_V2 1.609865254278217e-5 +atropine_N 3.729715012475897e-6 +attach_V 1.5875175760874494e-4 +attach_V2 5.634528389973759e-4 +attachable_A 1.0773191989054437e-5 +attache_N 3.729715012475897e-6 +attachment_N 7.459430024951794e-6 +attack_N 2.0886404069865022e-4 +attack_V2 4.185649661123364e-4 +attacker_N 1.118914503742769e-5 +attain_V 6.803646754660499e-5 +attain_V2 3.219730508556434e-5 +attainable_A 2.1546383978108874e-5 +attainder_N 3.729715012475897e-6 +attainment_N 3.729715012475897e-6 +attar_N 3.729715012475897e-6 +attempt_N 4.6248466154701117e-4 +attempt_V2 2.8977574577007903e-4 +attempt_VV 5.765904285988853e-3 +attend_V 2.7214587018641994e-4 +attend_V2 5.473541864545937e-4 +attendance_N 4.1026865137234865e-5 +attendant_A 3.231957596716331e-5 +attendant_N 7.459430024951794e-5 +attention_N 3.1329606104797534e-4 +attentional_A 1.0773191989054437e-5 +attentive_A 1.0773191989054437e-5 +attentiveness_N 3.729715012475897e-6 +attenuate_A 1.0773191989054437e-5 +attenuate_V2 1.609865254278217e-5 +attenuation_N 3.729715012475897e-6 +attenuator_N 3.729715012475897e-6 +attest_V 4.5357645031069986e-5 +attest_V2 1.609865254278217e-5 +attest_VS 2.3104025876508982e-4 +attestation_N 3.729715012475897e-6 +attester_N 3.729715012475897e-6 +attic_A 3.231957596716331e-5 +attic_N 1.118914503742769e-5 +attire_N 3.729715012475897e-6 +attire_V2 1.609865254278217e-5 +attitude_N 1.7902632059884304e-4 +attitudinal_A 1.0773191989054437e-5 +attitudinize_V 2.2678822515534993e-5 +attorney_N 7.23564712420324e-4 +attorneyship_N 3.729715012475897e-6 +attosecond_N 3.729715012475897e-6 +attract_V2 1.7225558220776921e-3 +attractable_A 1.0773191989054437e-5 +attraction_N 4.475658014971076e-5 +attractive_A 4.95566831496504e-4 +attractiveness_N 3.729715012475897e-6 +attractor_N 3.729715012475897e-6 +attributable_A 7.541234392338106e-5 +attribute_N 2.237829007485538e-5 +attribute_V2 1.4649773813931774e-3 +attribution_N 3.729715012475897e-6 +attributive_A 1.0773191989054437e-5 +attrited_A 1.0773191989054437e-5 +attrition_N 1.4918860049903587e-5 +attritional_A 1.0773191989054437e-5 +attune_V2 1.609865254278217e-5 +atypical_A 1.0773191989054437e-5 +atypicality_N 3.729715012475897e-6 +au_fait_A 1.0773191989054437e-5 +au_fond_Adv 8.668966832532898e-6 +au_pair_N 3.729715012475897e-6 +aubergine_N 3.729715012475897e-6 +aubrietia_N 3.729715012475897e-6 +auburn_A 1.0773191989054437e-5 +auckland_PN 1.865462821325971e-5 +auction_N 5.147006717216737e-4 +auction_V2 3.3807170339842556e-4 +auction_off_V2 1.609865254278217e-5 +auctioneer_N 1.118914503742769e-5 +audacious_A 3.231957596716331e-5 +audacity_N 7.459430024951794e-6 +audibility_N 3.729715012475897e-6 +audible_A 2.1546383978108874e-5 +audible_N 3.729715012475897e-6 +audience_N 2.7226919591074043e-4 +audile_N 3.729715012475897e-6 +audio_N 3.729715012475897e-6 +audio_lingual_A 1.0773191989054437e-5 +audiocassette_N 3.729715012475897e-6 +audiogram_N 3.729715012475897e-6 +audiology_N 3.729715012475897e-6 +audiometer_N 3.729715012475897e-6 +audiometric_A 1.0773191989054437e-5 +audiometry_N 3.729715012475897e-6 +audiotape_N 3.729715012475897e-6 +audiovisual_A 1.0773191989054437e-5 +audiovisual_N 3.729715012475897e-6 +audit_N 1.0070230533684921e-4 +audit_V2 1.2878922034225736e-4 +audition_N 7.459430024951794e-6 +audition_V 6.803646754660499e-5 +audition_V2 1.609865254278217e-5 +auditor_N 5.594572518713845e-5 +auditorium_N 3.729715012475897e-6 +auditory_A 1.0773191989054437e-5 +audley_PN 1.865462821325971e-5 +audrey_PN 1.865462821325971e-5 +aug_PN 1.865462821325971e-5 +augend_N 3.729715012475897e-6 +auger_N 3.729715012475897e-6 +aught_N 3.729715012475897e-6 +augite_N 3.729715012475897e-6 +augitic_A 1.0773191989054437e-5 +augment_V 4.5357645031069986e-5 +augment_V2 4.8295957628346505e-5 +augmentation_N 3.729715012475897e-6 +augmentative_A 1.0773191989054437e-5 +augsburg_PN 1.865462821325971e-5 +augur_N 3.729715012475897e-6 +augur_V 2.2678822515534993e-5 +augur_V2 1.609865254278217e-5 +augury_N 3.729715012475897e-6 +august_A 2.1546383978108874e-5 +august_N 3.729715012475897e-6 +august_PN 4.589038540461889e-3 +augustan_A 1.0773191989054437e-5 +auk_N 3.729715012475897e-6 +auklet_N 3.729715012475897e-6 +auld_A 1.0773191989054437e-5 +auld_lang_syne_N 3.729715012475897e-6 +aunt_N 1.118914503742769e-5 +auntie_N 3.729715012475897e-6 +aunty_N 3.729715012475897e-6 +aura_N 7.459430024951794e-6 +aural_A 2.1546383978108874e-5 +aureate_A 1.0773191989054437e-5 +aureole_N 3.729715012475897e-6 +auricle_N 3.729715012475897e-6 +auricula_N 3.729715012475897e-6 +auricular_A 1.0773191989054437e-5 +auriculare_N 3.729715012475897e-6 +auriculate_A 1.0773191989054437e-5 +auriferous_A 1.0773191989054437e-5 +auriform_A 1.0773191989054437e-5 +aurochs_N 3.729715012475897e-6 +aurora_N 3.729715012475897e-6 +auroral_A 1.0773191989054437e-5 +aurous_A 1.0773191989054437e-5 +auscultation_N 3.729715012475897e-6 +auscultatory_A 1.0773191989054437e-5 +auspice_N 3.729715012475897e-6 +auspices_N 3.729715012475897e-6 +auspicious_A 3.231957596716331e-5 +auspiciousness_N 3.729715012475897e-6 +aussie_N 3.729715012475897e-6 +austenite_N 3.729715012475897e-6 +austenitic_A 1.0773191989054437e-5 +austere_A 5.3865959945272184e-5 +austereness_N 3.729715012475897e-6 +austerity_N 3.356743511228307e-5 +austral_A 1.0773191989054437e-5 +austral_N 3.729715012475897e-6 +australia_PN 7.275305003171287e-4 +australian_A 6.140719433761029e-4 +australian_N 3.729715012475897e-6 +australopithecine_A 1.0773191989054437e-5 +australopithecine_N 3.729715012475897e-6 +austria_PN 7.461851285303884e-5 +austrian_A 4.309276795621775e-5 +austrian_N 3.729715012475897e-6 +autacoid_N 3.729715012475897e-6 +autacoidal_A 1.0773191989054437e-5 +autarchic_A 1.0773191989054437e-5 +autarchy_N 3.729715012475897e-6 +autarkic_A 1.0773191989054437e-5 +autarky_N 3.729715012475897e-6 +auteur_N 3.729715012475897e-6 +authentic_A 3.231957596716331e-5 +authentically_Adv 8.668966832532898e-6 +authenticate_V2 1.609865254278217e-5 +authentication_N 3.729715012475897e-6 +authenticity_N 1.4918860049903587e-5 +author_N 2.16323470723602e-4 +authore_V2 3.219730508556434e-5 +authoress_N 3.729715012475897e-6 +authorial_A 1.0773191989054437e-5 +authoritarian_A 4.309276795621775e-5 +authoritarian_N 3.729715012475897e-6 +authoritarianism_N 3.729715012475897e-6 +authoritative_A 2.1546383978108874e-5 +authority_N 4.438360864846317e-4 +authorization_N 5.594572518713845e-5 +authorize_V2 5.151568813690294e-4 +authorize_V2V 3.7400654511453952e-3 +authorizer_N 3.729715012475897e-6 +authorship_N 7.459430024951794e-6 +autism_N 3.729715012475897e-6 +autistic_A 1.0773191989054437e-5 +auto_N 7.94429297657366e-4 +auto_changer_N 3.729715012475897e-6 +auto_da_fe_N 3.729715012475897e-6 +autoantibody_N 3.729715012475897e-6 +autobahn_N 3.729715012475897e-6 +autobiographer_N 3.729715012475897e-6 +autobiographic_A 1.0773191989054437e-5 +autobiographical_A 1.0773191989054437e-5 +autobiography_N 1.118914503742769e-5 +autocatalysis_N 3.729715012475897e-6 +autocatalytic_A 1.0773191989054437e-5 +autochthon_N 3.729715012475897e-6 +autochthonal_A 1.0773191989054437e-5 +autochthonous_A 1.0773191989054437e-5 +autoclave_N 3.729715012475897e-6 +autocracy_N 3.729715012475897e-6 +autocrat_N 7.459430024951794e-6 +autocratic_A 3.231957596716331e-5 +autocratically_Adv 8.668966832532898e-6 +autodidact_N 3.729715012475897e-6 +autodidactic_A 1.0773191989054437e-5 +autoecious_A 1.0773191989054437e-5 +autoerotic_A 1.0773191989054437e-5 +autoeroticism_N 3.729715012475897e-6 +autofluorescence_N 3.729715012475897e-6 +autofluorescent_A 1.0773191989054437e-5 +autofocus_N 3.729715012475897e-6 +autogamous_A 1.0773191989054437e-5 +autogamy_N 3.729715012475897e-6 +autogenetic_A 1.0773191989054437e-5 +autogenous_A 1.0773191989054437e-5 +autogiro_N 3.729715012475897e-6 +autograft_N 3.729715012475897e-6 +autograph_N 1.8648575062379485e-5 +autograph_V2 8.049326271391085e-5 +autographic_A 1.0773191989054437e-5 +autogyro_N 3.729715012475897e-6 +autoicous_A 1.0773191989054437e-5 +autoimmune_A 1.0773191989054437e-5 +autoimmunity_N 3.729715012475897e-6 +autoinjector_N 3.729715012475897e-6 +autoloader_N 3.729715012475897e-6 +autologous_A 1.0773191989054437e-5 +autolysis_N 3.729715012475897e-6 +autolytic_A 1.0773191989054437e-5 +automat_N 3.729715012475897e-6 +automate_V2 2.4147978814173252e-4 +automatic_A 2.3701022375919762e-4 +automatic_N 3.729715012475897e-6 +automatically_Adv 1.4737243615305928e-4 +automation_N 1.8648575062379485e-5 +automatism_N 3.729715012475897e-6 +automaton_N 3.729715012475897e-6 +automobile_N 1.305400254366564e-4 +automotive_A 4.309276795621775e-5 +automysophobia_N 3.729715012475897e-6 +autonomic_A 1.0773191989054437e-5 +autonomous_A 4.309276795621775e-5 +autonomy_N 1.8648575062379485e-5 +autophyte_N 3.729715012475897e-6 +autopilot_N 3.729715012475897e-6 +autoplastic_A 1.0773191989054437e-5 +autoplasty_N 3.729715012475897e-6 +autopsy_N 3.729715012475897e-6 +autoradiograph_N 3.729715012475897e-6 +autoradiographic_A 1.0773191989054437e-5 +autoradiography_N 3.729715012475897e-6 +autoregulation_N 3.729715012475897e-6 +autosemantic_A 1.0773191989054437e-5 +autosexing_N 3.729715012475897e-6 +autosomal_A 1.0773191989054437e-5 +autosome_N 3.729715012475897e-6 +autostrada_N 3.729715012475897e-6 +autosuggestion_N 3.729715012475897e-6 +autotelic_A 1.0773191989054437e-5 +autotelism_N 3.729715012475897e-6 +autotomic_A 1.0773191989054437e-5 +autotomy_N 3.729715012475897e-6 +autotrophic_A 1.0773191989054437e-5 +autotype_N 3.729715012475897e-6 +autotypic_A 1.0773191989054437e-5 +autumn_N 5.967544019961435e-5 +autumnal_A 1.0773191989054437e-5 +auxesis_N 3.729715012475897e-6 +auxetic_A 1.0773191989054437e-5 +auxiliary_A 4.309276795621775e-5 +auxiliary_N 3.729715012475897e-6 +auxin_N 3.729715012475897e-6 +auxinic_A 1.0773191989054437e-5 +avadavat_N 3.729715012475897e-6 +avail_N 1.118914503742769e-5 +avail_V 2.2678822515534993e-5 +avail_V2 1.609865254278217e-5 +availability_N 5.2216010174662554e-5 +available_A 1.9607209420079074e-3 +avalanche_N 1.118914503742769e-5 +avant_garde_N 3.729715012475897e-6 +avaram_N 3.729715012475897e-6 +avarice_N 3.729715012475897e-6 +avaricious_A 3.231957596716331e-5 +avascular_A 1.0773191989054437e-5 +avatar_N 3.729715012475897e-6 +ave_PN 1.865462821325971e-5 +aveley_PN 1.865462821325971e-5 +avellan_A 1.0773191989054437e-5 +avenge_V2 3.219730508556434e-5 +avenger_N 3.729715012475897e-6 +avens_N 3.729715012475897e-6 +avenue_N 1.8648575062379485e-5 +aver_V2 1.609865254278217e-5 +average_A 2.660978421296446e-3 +average_N 8.242670177571732e-4 +average_V 3.628611602485599e-4 +average_V2 3.541703559412077e-4 +averageness_N 3.729715012475897e-6 +averr_VS 1.1552012938254491e-4 +averse_A 1.0773191989054437e-5 +aversion_N 3.729715012475897e-6 +aversive_A 1.0773191989054437e-5 +avert_V2 1.609865254278217e-4 +averting_N 3.729715012475897e-6 +avian_A 1.0773191989054437e-5 +aviary_N 3.729715012475897e-6 +aviation_N 4.848629516218666e-5 +aviator_N 3.729715012475897e-6 +aviatrix_N 3.729715012475897e-6 +avid_A 3.231957596716331e-5 +avidity_N 3.729715012475897e-6 +avifauna_N 3.729715012475897e-6 +avifaunal_A 1.0773191989054437e-5 +avignon_PN 1.865462821325971e-5 +avionic_A 1.0773191989054437e-5 +avionics_N 3.729715012475897e-6 +avirulent_A 1.0773191989054437e-5 +avitaminosis_N 3.729715012475897e-6 +avitaminotic_A 1.0773191989054437e-5 +avo_N 3.729715012475897e-6 +avocado_A 1.0773191989054437e-5 +avocado_N 3.729715012475897e-6 +avocation_N 3.729715012475897e-6 +avocational_A 1.0773191989054437e-5 +avocet_N 3.729715012475897e-6 +avoid_V2 1.7547531271632564e-3 +avoid_VV 1.8258696905631366e-3 +avoidable_A 1.0773191989054437e-5 +avoidance_N 1.4918860049903587e-5 +avoirdupois_N 3.729715012475897e-6 +avon_PN 1.865462821325971e-5 +avouch_V 2.2678822515534993e-5 +avouch_V2 1.609865254278217e-5 +avow_V2 1.609865254278217e-5 +avowal_N 3.729715012475897e-6 +avowedly_Adv 8.668966832532898e-6 +avower_N 3.729715012475897e-6 +avulsion_N 3.729715012475897e-6 +avuncular_A 3.231957596716331e-5 +await_V2 4.3466361865511857e-4 +awake_A 3.231957596716331e-5 +awake_V 4.5357645031069986e-5 +awaken_V2 1.609865254278217e-5 +awakening_N 3.729715012475897e-6 +award_N 1.4545888548655997e-4 +award_V2 7.888339745963262e-4 +award_V3 3.1746031746031746e-3 +aware_A 9.695872790148993e-5 +aware_of_A2 0.189873417721519 +awareness_N 3.356743511228307e-5 +awash_A 2.1546383978108874e-5 +away_A 1.0773191989054437e-5 +away_Adv 1.4043726268703296e-3 +awayness_N 3.729715012475897e-6 +awe_N 3.729715012475897e-6 +awe_V2 1.609865254278217e-5 +awe_inspiring_A 1.0773191989054437e-5 +awe_stricken_A 1.0773191989054437e-5 +awe_struck_A 1.0773191989054437e-5 +aweary_A 1.0773191989054437e-5 +aweigh_A 1.0773191989054437e-5 +aweigh_Adv 8.668966832532898e-6 +aweless_A 1.0773191989054437e-5 +awesome_A 4.309276795621775e-5 +awful_A 1.6159787983581657e-4 +awfulness_N 3.729715012475897e-6 +awheel_A 1.0773191989054437e-5 +awhile_Adv 2.6006900497598697e-5 +awkward_A 5.3865959945272184e-5 +awkwardness_N 3.729715012475897e-6 +awl_N 3.729715012475897e-6 +awlwort_N 3.729715012475897e-6 +awn_N 3.729715012475897e-6 +awned_A 1.0773191989054437e-5 +awning_N 3.729715012475897e-6 +awninged_A 1.0773191989054437e-5 +awnless_A 1.0773191989054437e-5 +awol_PN 1.865462821325971e-5 +awry_A 2.1546383978108874e-5 +awry_Adv 2.6006900497598697e-5 +ax_N 1.118914503742769e-5 +ax_V2 1.609865254278217e-5 +axe_N 3.729715012475897e-6 +axe_V2 1.609865254278217e-5 +axenic_A 1.0773191989054437e-5 +axial_A 1.0773191989054437e-5 +axil_N 3.729715012475897e-6 +axile_A 1.0773191989054437e-5 +axillary_A 1.0773191989054437e-5 +axiological_A 1.0773191989054437e-5 +axiology_N 3.729715012475897e-6 +axiom_N 1.4918860049903587e-5 +axiomatic_A 2.1546383978108874e-5 +axiomatically_Adv 8.668966832532898e-6 +axis_N 3.729715012475897e-6 +axle_N 7.459430024951794e-6 +axletree_N 3.729715012475897e-6 +axolemma_N 3.729715012475897e-6 +axolotl_N 3.729715012475897e-6 +axon_N 3.729715012475897e-6 +axonal_A 1.0773191989054437e-5 +axseed_N 3.729715012475897e-6 +ay_Adv 8.668966832532898e-6 +ayah_N 3.729715012475897e-6 +ayapana_N 3.729715012475897e-6 +ayatollah_N 3.729715012475897e-6 +aycliffe_PN 1.865462821325971e-5 +aye_Adv 8.668966832532898e-6 +ayin_N 3.729715012475897e-6 +aylesbury_PN 1.865462821325971e-5 +aylesford_PN 1.865462821325971e-5 +ayr_PN 1.865462821325971e-5 +azadirachtin_N 3.729715012475897e-6 +azalea_N 3.729715012475897e-6 +azathioprine_N 3.729715012475897e-6 +azide_N 3.729715012475897e-6 +azido_A 1.0773191989054437e-5 +azimuth_N 3.729715012475897e-6 +azimuthal_A 1.0773191989054437e-5 +azithromycin_N 3.729715012475897e-6 +azo_A 1.0773191989054437e-5 +azoic_A 1.0773191989054437e-5 +azonal_A 1.0773191989054437e-5 +azonic_A 1.0773191989054437e-5 +azote_N 3.729715012475897e-6 +azotemic_A 1.0773191989054437e-5 +azotic_A 1.0773191989054437e-5 +azoturia_N 3.729715012475897e-6 +aztreonam_N 3.729715012475897e-6 +azure_A 2.1546383978108874e-5 +azure_N 3.729715012475897e-6 +azurite_N 3.729715012475897e-6 +azygous_A 1.0773191989054437e-5 +azymia_N 3.729715012475897e-6 +b_ed_N 2.6108005087331277e-5 +ba_N 3.729715012475897e-6 +baa_N 3.729715012475897e-6 +baa_V 2.2678822515534993e-5 +baa_lamb_N 3.729715012475897e-6 +baas_N 3.729715012475897e-6 +baba_N 3.729715012475897e-6 +babassu_N 3.729715012475897e-6 +babbitting_N 3.729715012475897e-6 +babble_N 3.729715012475897e-6 +babble_V 2.2678822515534993e-5 +babble_V2 1.609865254278217e-5 +babbler_N 3.729715012475897e-6 +babe_N 3.729715012475897e-6 +babel_N 7.459430024951794e-6 +babelike_A 1.0773191989054437e-5 +babirusa_N 3.729715012475897e-6 +babka_N 3.729715012475897e-6 +baboo_N 3.729715012475897e-6 +baboon_N 3.729715012475897e-6 +baboonish_A 1.0773191989054437e-5 +babs_PN 1.865462821325971e-5 +babu_N 3.729715012475897e-6 +babushka_N 3.729715012475897e-6 +baby_N 9.697259032437332e-5 +baby_V2 1.609865254278217e-5 +baby_faced_A 2.1546383978108874e-5 +baby_farmer_N 3.729715012475897e-6 +baby_minder_N 3.729715012475897e-6 +baby_talk_N 3.729715012475897e-6 +babyhood_N 3.729715012475897e-6 +babyish_A 1.0773191989054437e-5 +babyminder_N 3.729715012475897e-6 +babysit_V 2.2678822515534993e-5 +babysitter_N 3.729715012475897e-6 +babysitting_N 3.729715012475897e-6 +baccalaureate_N 1.118914503742769e-5 +baccarat_N 3.729715012475897e-6 +baccate_A 1.0773191989054437e-5 +bacchanal_A 1.0773191989054437e-5 +bacchanal_N 3.729715012475897e-6 +bacchanalian_A 1.0773191989054437e-5 +bacchant_N 3.729715012475897e-6 +bacchante_N 3.729715012475897e-6 +bacchantic_A 1.0773191989054437e-5 +baccivorous_A 1.0773191989054437e-5 +baccy_N 3.729715012475897e-6 +bachelor_N 1.118914503742769e-5 +bachelorhood_N 3.729715012475897e-6 +bacillar_A 1.0773191989054437e-5 +bacillus_N 1.118914503742769e-5 +bacitracin_N 3.729715012475897e-6 +back_Adv 3.1988487612046395e-3 +back_N 2.7599891092321637e-4 +back_V 1.0205470131990748e-3 +back_V2 1.4810760339359595e-3 +back_away_V 2.2678822515534993e-5 +back_breaking_A 1.0773191989054437e-5 +back_down_N 3.729715012475897e-6 +back_down_V 2.2678822515534993e-5 +back_formation_N 3.729715012475897e-6 +back_into_V3 1.5873015873015873e-3 +back_off_V 2.2678822515534993e-5 +back_out_V 2.2678822515534993e-5 +back_out_of_V2 1.609865254278217e-5 +back_out_of_V3 1.5873015873015873e-3 +back_to_Prep 8.98069151324652e-5 +back_up_N 3.729715012475897e-6 +back_up_V 2.2678822515534993e-5 +back_up_V2 3.219730508556434e-5 +backache_N 3.729715012475897e-6 +backband_N 3.729715012475897e-6 +backbeat_N 3.729715012475897e-6 +backbench_N 3.729715012475897e-6 +backbencher_N 3.729715012475897e-6 +backbend_N 3.729715012475897e-6 +backbite_V 2.2678822515534993e-5 +backbite_V2 1.609865254278217e-5 +backbiter_N 3.729715012475897e-6 +backblast_N 3.729715012475897e-6 +backboard_N 3.729715012475897e-6 +backbone_N 1.4918860049903587e-5 +backchat_N 3.729715012475897e-6 +backcloth_N 3.729715012475897e-6 +backdate_V2 1.609865254278217e-5 +backdoor_N 3.729715012475897e-6 +backdrop_N 3.729715012475897e-5 +backer_N 5.2216010174662554e-5 +backfield_N 3.729715012475897e-6 +backfire_N 3.729715012475897e-6 +backfire_V 1.8143058012427994e-4 +backflow_N 3.729715012475897e-6 +backgammon_N 3.729715012475897e-6 +background_N 8.578344528694562e-5 +backgrounder_N 3.729715012475897e-6 +backhand_A 1.0773191989054437e-5 +backhand_N 3.729715012475897e-6 +backhanded_A 1.0773191989054437e-5 +backhander_N 3.729715012475897e-6 +backhoe_N 3.729715012475897e-6 +backing_N 6.713487022456614e-5 +backlash_N 2.6108005087331277e-5 +backless_A 1.0773191989054437e-5 +backlighting_N 3.729715012475897e-6 +backlog_N 1.0070230533684921e-4 +backmost_A 1.0773191989054437e-5 +backpack_N 3.729715012475897e-6 +backpacker_N 3.729715012475897e-6 +backpedal_V 2.2678822515534993e-5 +backpedaling_V 2.2678822515534993e-5 +backplate_N 3.729715012475897e-6 +backroom_N 3.729715012475897e-6 +backsaw_N 3.729715012475897e-6 +backscratcher_N 3.729715012475897e-6 +backseat_N 7.459430024951794e-6 +backsheesh_N 3.729715012475897e-6 +backside_N 7.459430024951794e-6 +backslapper_N 3.729715012475897e-6 +backslide_V 2.2678822515534993e-5 +backsliding_N 3.729715012475897e-6 +backspace_V 2.2678822515534993e-5 +backspin_N 3.729715012475897e-6 +backstage_Adv 1.7337933665065797e-5 +backstair_A 1.0773191989054437e-5 +backstairs_N 3.729715012475897e-6 +backstay_N 3.729715012475897e-6 +backstitch_N 3.729715012475897e-6 +backstop_N 3.729715012475897e-6 +backstroke_N 3.729715012475897e-6 +backstroker_N 3.729715012475897e-6 +backswept_A 1.0773191989054437e-5 +backswimmer_N 3.729715012475897e-6 +backsword_N 3.729715012475897e-6 +backtalk_N 3.729715012475897e-6 +backup_N 3.729715012475897e-6 +backward_A 1.0773191989054437e-5 +backward_Adv 2.6006900497598697e-5 +backwards_A 1.0773191989054437e-5 +backwards_Adv 1.7337933665065797e-5 +backwash_N 3.729715012475897e-6 +backwater_N 7.459430024951794e-6 +backwoods_N 3.729715012475897e-6 +backwoodsman_N 3.729715012475897e-6 +backworth_PN 1.865462821325971e-5 +backyard_N 3.729715012475897e-6 +bacon_N 1.118914503742769e-5 +bacteremia_N 3.729715012475897e-6 +bacteremic_A 1.0773191989054437e-5 +bacteria_N 3.729715012475897e-6 +bacterial_A 4.309276795621775e-5 +bactericidal_A 1.0773191989054437e-5 +bactericide_N 3.729715012475897e-6 +bacteriochlorophyll_N 3.729715012475897e-6 +bacteriological_A 1.0773191989054437e-5 +bacteriologist_N 3.729715012475897e-6 +bacteriology_N 3.729715012475897e-6 +bacteriolysis_N 3.729715012475897e-6 +bacteriolytic_A 1.0773191989054437e-5 +bacteriophage_N 3.729715012475897e-6 +bacteriophagic_A 1.0773191989054437e-5 +bacteriostasis_N 3.729715012475897e-6 +bacteriostat_N 3.729715012475897e-6 +bacteriostatic_A 1.0773191989054437e-5 +bacterium_N 7.086458523704203e-5 +bacteroid_N 3.729715012475897e-6 +bacteroidal_A 1.0773191989054437e-5 +bacup_PN 1.865462821325971e-5 +bad_A 2.1761847817889962e-3 +bad_N 7.459430024951794e-6 +badajoz_PN 1.865462821325971e-5 +badalona_PN 1.865462821325971e-5 +baddeleyite_N 3.729715012475897e-6 +badge_N 1.118914503742769e-5 +badger_N 3.729715012475897e-6 +badger_V2 1.609865254278217e-5 +badgering_N 3.729715012475897e-6 +badinage_N 3.729715012475897e-6 +badlands_N 3.729715012475897e-6 +badly_behaved_A 1.0773191989054437e-5 +badminton_N 3.729715012475897e-6 +badness_N 3.729715012475897e-6 +baedeker_N 3.729715012475897e-6 +baffle_N 3.729715012475897e-6 +baffle_V2 1.609865254278217e-5 +baffled_N 3.729715012475897e-6 +baffling_A 1.0773191989054437e-5 +bag_N 9.697259032437332e-5 +bag_V 2.2678822515534993e-5 +bag_V2 1.609865254278217e-5 +bag_out_V2 1.609865254278217e-5 +bagasse_N 3.729715012475897e-6 +bagassosis_N 3.729715012475897e-6 +bagatelle_N 3.729715012475897e-6 +bagel_N 3.729715012475897e-6 +baggage_N 1.118914503742769e-5 +baggageman_N 3.729715012475897e-6 +bagger_N 3.729715012475897e-6 +baggy_A 1.0773191989054437e-5 +baghdad_PN 1.865462821325971e-5 +bagman_N 3.729715012475897e-6 +bagnio_N 3.729715012475897e-6 +bagpipe_N 7.459430024951794e-6 +baguet_N 3.729715012475897e-6 +bahamas_PN 1.865462821325971e-5 +bahamian_A 1.0773191989054437e-5 +bahamian_N 3.729715012475897e-6 +bahasa_N 3.729715012475897e-6 +bahrain_PN 1.865462821325971e-5 +bahraini_A 1.0773191989054437e-5 +bahraini_N 3.729715012475897e-6 +baht_N 3.729715012475897e-6 +bail_N 7.459430024951794e-6 +bail_V 2.4946704767088494e-4 +bail_V2 4.8295957628346505e-5 +bail_out_V 2.2678822515534993e-5 +bail_out_V2 1.609865254278217e-5 +bail_out_of_V3 1.5873015873015873e-3 +bail_out_on_V2 1.609865254278217e-5 +bail_up_V 2.2678822515534993e-5 +bailable_A 1.0773191989054437e-5 +bailee_N 3.729715012475897e-6 +bailey_N 3.729715012475897e-6 +bailey_PN 1.865462821325971e-5 +bailiff_N 1.118914503742769e-5 +bailiffship_N 3.729715012475897e-6 +bailiwick_N 3.729715012475897e-6 +bailment_N 3.729715012475897e-6 +bailor_N 3.729715012475897e-6 +bairn_N 3.729715012475897e-6 +bait_N 7.459430024951794e-6 +bait_V 2.2678822515534993e-5 +bait_V2 1.609865254278217e-5 +baiting_N 3.729715012475897e-6 +baiza_N 3.729715012475897e-6 +baize_N 3.729715012475897e-6 +bake_V 2.2678822515534993e-5 +bake_V2 3.219730508556434e-5 +bakelite_N 3.729715012475897e-6 +baker_N 1.118914503742769e-5 +bakery_N 2.6108005087331277e-5 +baking_N 3.729715012475897e-6 +baking_hot_A 1.0773191989054437e-5 +baking_powder_N 3.729715012475897e-6 +baklava_N 3.729715012475897e-6 +baksheesh_N 7.459430024951794e-6 +baku_PN 1.865462821325971e-5 +balaclava_N 3.729715012475897e-6 +balagan_N 3.729715012475897e-6 +balalaika_N 3.729715012475897e-6 +balance_N 2.5735033586083686e-4 +balance_V 1.3607293509320997e-4 +balance_V2 1.609865254278217e-4 +balance_sheet_N 3.729715012475897e-6 +balance_wheel_N 3.729715012475897e-6 +balancer_N 3.729715012475897e-6 +balanitis_N 3.729715012475897e-6 +balanoposthitis_N 3.729715012475897e-6 +balas_N 3.729715012475897e-6 +balata_N 3.729715012475897e-6 +balboa_N 3.729715012475897e-6 +balbriggan_N 3.729715012475897e-6 +balconied_A 1.0773191989054437e-5 +balcony_N 1.118914503742769e-5 +bald_A 3.231957596716331e-5 +bald_head_N 3.729715012475897e-6 +bald_pate_N 3.729715012475897e-6 +baldachin_N 3.729715012475897e-6 +balderdash_N 3.729715012475897e-6 +baldhead_N 3.729715012475897e-6 +balding_A 1.0773191989054437e-5 +baldness_N 3.729715012475897e-6 +baldock_PN 1.865462821325971e-5 +baldric_N 3.729715012475897e-6 +bale_N 1.118914503742769e-5 +bale_V2 1.609865254278217e-5 +baleful_A 1.0773191989054437e-5 +balk_N 3.729715012475897e-6 +balk_V 3.855399827640949e-4 +balk_V2 1.609865254278217e-5 +balker_N 3.729715012475897e-6 +balkiness_N 3.729715012475897e-6 +balkline_N 3.729715012475897e-6 +ball_N 7.832401526199384e-5 +ball_V 2.2678822515534993e-5 +ball_V2 1.609865254278217e-5 +ball_cartridge_N 3.729715012475897e-6 +ball_dress_N 3.729715012475897e-6 +ball_up_V2 1.609865254278217e-5 +ballade_N 3.729715012475897e-6 +ballast_N 3.729715012475897e-6 +ballast_V2 1.609865254278217e-5 +ballbearing_N 3.729715012475897e-6 +ballcock_N 3.729715012475897e-6 +balldress_N 3.729715012475897e-6 +ballerina_N 3.729715012475897e-6 +ballet_N 3.729715012475897e-6 +ballet_dancer_N 3.729715012475897e-6 +ballet_skirt_N 3.729715012475897e-6 +balletic_A 1.0773191989054437e-5 +balletomane_N 3.729715012475897e-6 +balletomania_N 3.729715012475897e-6 +ballgame_N 3.729715012475897e-6 +ballistic_A 3.231957596716331e-5 +ballistics_N 3.729715012475897e-6 +ballistocardiogram_N 3.729715012475897e-6 +ballistocardiograph_N 3.729715012475897e-6 +ballock_N 3.729715012475897e-6 +balloon_N 7.086458523704203e-5 +balloon_V 3.175035152174899e-4 +balloon_V2 3.219730508556434e-5 +balloonfish_N 3.729715012475897e-6 +ballooning_N 3.729715012475897e-6 +balloonist_N 1.4918860049903587e-5 +ballot_N 7.086458523704203e-5 +ballot_V 1.5875175760874494e-4 +ballot_box_N 3.729715012475897e-6 +ballottement_N 3.729715012475897e-6 +ballpark_N 3.729715012475897e-6 +ballpen_N 3.729715012475897e-6 +ballplayer_N 7.459430024951794e-6 +ballpoint_N 3.729715012475897e-6 +ballpoint_pen_N 3.729715012475897e-6 +ballroom_N 1.4918860049903587e-5 +balls_up_N 3.729715012475897e-6 +balls_up_V2 1.609865254278217e-5 +ballup_N 3.729715012475897e-6 +bally_A 1.0773191989054437e-5 +bally_Adv 8.668966832532898e-6 +ballyhoo_N 3.729715012475897e-6 +balm_N 7.459430024951794e-6 +balminess_N 3.729715012475897e-6 +balmoral_N 3.729715012475897e-6 +balmy_A 2.1546383978108874e-5 +baloney_N 7.459430024951794e-6 +balsa_N 3.729715012475897e-6 +balsam_N 3.729715012475897e-6 +balsamic_A 1.0773191989054437e-5 +balsamroot_N 3.729715012475897e-6 +baltimore_PN 1.865462821325971e-5 +baluster_N 3.729715012475897e-6 +balustrade_N 3.729715012475897e-6 +bambino_N 3.729715012475897e-6 +bamboo_N 3.729715012475897e-6 +bamboozle_V2 1.609865254278217e-5 +ban_N 1.9767489566122252e-4 +ban_V2 9.498205000241479e-4 +banal_A 3.231957596716331e-5 +banality_N 3.729715012475897e-6 +banana_N 1.8648575062379485e-5 +banausic_A 1.0773191989054437e-5 +banbury_PN 1.865462821325971e-5 +band_N 7.459430024951794e-5 +band_V 6.803646754660499e-5 +band_V2 1.609865254278217e-5 +band_saw_N 3.729715012475897e-6 +bandage_N 1.118914503742769e-5 +bandage_V2 1.609865254278217e-5 +bandanna_N 3.729715012475897e-6 +bandbox_N 3.729715012475897e-6 +bandeau_N 3.729715012475897e-6 +banderilla_N 3.729715012475897e-6 +banderillero_N 3.729715012475897e-6 +bandicoot_N 3.729715012475897e-6 +bandit_N 3.729715012475897e-6 +banditry_N 3.729715012475897e-6 +bandleader_N 3.729715012475897e-6 +bandmaster_N 3.729715012475897e-6 +bandoleer_N 3.729715012475897e-6 +bandolier_N 3.729715012475897e-6 +bandoneon_N 3.729715012475897e-6 +bandsaw_N 3.729715012475897e-6 +bandsman_N 3.729715012475897e-6 +bandstand_N 3.729715012475897e-6 +bandung_PN 1.865462821325971e-5 +bandwagon_N 2.6108005087331277e-5 +bandwidth_N 3.729715012475897e-6 +bandy_A 1.0773191989054437e-5 +bandy_V2 3.219730508556434e-5 +bandy_legged_A 1.0773191989054437e-5 +bane_N 7.459430024951794e-6 +baneberry_N 3.729715012475897e-6 +baneful_A 1.0773191989054437e-5 +bang_Adv 8.668966832532898e-6 +bang_N 2.9837720099807175e-5 +bang_V 4.5357645031069986e-5 +bang_V2 1.609865254278217e-5 +bang_about_V 2.2678822515534993e-5 +bang_around_V 2.2678822515534993e-5 +bang_on_V 2.2678822515534993e-5 +bang_on_about_V2 1.609865254278217e-5 +bang_out_V2 1.609865254278217e-5 +bang_up_V2 1.609865254278217e-5 +bangalore_PN 1.865462821325971e-5 +banger_N 3.729715012475897e-6 +banging_N 3.729715012475897e-6 +bangkok_PN 1.1192776927955825e-4 +bangladesh_PN 1.865462821325971e-5 +bangladeshi_A 1.0773191989054437e-5 +bangladeshi_N 3.729715012475897e-6 +bangle_N 3.729715012475897e-6 +bangor_PN 1.865462821325971e-5 +banian_N 3.729715012475897e-6 +banian_tree_N 3.729715012475897e-6 +banish_V2 6.439461017112868e-5 +banishment_N 7.459430024951794e-6 +banister_N 3.729715012475897e-6 +banjo_N 3.729715012475897e-6 +bank_N 3.643931567188951e-3 +bank_V 4.989340953417699e-4 +bank_V2 4.8295957628346505e-5 +bank_bill_N 3.729715012475897e-6 +bank_book_N 3.729715012475897e-6 +bank_draft_N 3.729715012475897e-6 +bank_on_V2 1.609865254278217e-5 +bank_rate_N 3.729715012475897e-6 +bankable_A 1.0773191989054437e-5 +bankbook_N 3.729715012475897e-6 +banker_N 5.445383918214809e-4 +banking_N 6.415109821458542e-4 +banknote_N 3.729715012475897e-6 +bankroll_N 3.729715012475897e-6 +bankrupt_A 6.463915193432663e-5 +bankrupt_N 3.729715012475897e-6 +bankrupt_V2 4.8295957628346505e-5 +bankruptcy_N 4.69944091571963e-4 +banksia_N 3.729715012475897e-6 +banner_A 1.0773191989054437e-5 +banner_N 1.4918860049903587e-5 +bannerlike_Adv 8.668966832532898e-6 +banning_order_N 3.729715012475897e-6 +bannister_N 3.729715012475897e-6 +bannock_N 3.729715012475897e-6 +bannockburn_PN 1.865462821325971e-5 +banns_N 3.729715012475897e-6 +banquet_N 1.118914503742769e-5 +banquet_V 2.2678822515534993e-5 +banquet_V2 1.609865254278217e-5 +banquette_N 3.729715012475897e-6 +banshee_N 7.459430024951794e-6 +bant_V 2.2678822515534993e-5 +bantam_A 1.0773191989054437e-5 +bantam_N 3.729715012475897e-6 +bantamweight_N 3.729715012475897e-6 +banteng_N 3.729715012475897e-6 +banter_N 7.459430024951794e-6 +banter_V 2.2678822515534993e-5 +banter_V2 1.609865254278217e-5 +banteringly_Adv 8.668966832532898e-6 +banting_N 3.729715012475897e-6 +bantry_PN 1.865462821325971e-5 +bantu_A 1.0773191989054437e-5 +bantu_N 3.729715012475897e-6 +banyan_N 3.729715012475897e-6 +banzai_N 3.729715012475897e-6 +baobab_N 3.729715012475897e-6 +bap_N 3.729715012475897e-6 +baptism_N 7.459430024951794e-6 +baptismal_A 1.0773191989054437e-5 +baptist_A 1.0773191989054437e-5 +baptist_N 3.729715012475897e-6 +baptize_V2 1.609865254278217e-5 +bar_N 1.305400254366564e-4 +bar_Prep 9.978546125829467e-6 +bar_V2 6.117487966257224e-4 +baracaldo_PN 1.865462821325971e-5 +barb_N 7.459430024951794e-6 +barbadian_A 1.0773191989054437e-5 +barbadian_N 3.729715012475897e-6 +barbados_PN 1.865462821325971e-5 +barbara_PN 1.865462821325971e-5 +barbarian_A 1.0773191989054437e-5 +barbarian_N 3.729715012475897e-6 +barbaric_A 1.0773191989054437e-5 +barbarism_N 3.729715012475897e-6 +barbarity_N 3.729715012475897e-6 +barbarization_N 3.729715012475897e-6 +barbarize_V2 1.609865254278217e-5 +barbarous_A 1.0773191989054437e-5 +barbasco_N 3.729715012475897e-6 +barbecue_N 7.459430024951794e-6 +barbecue_V2 1.609865254278217e-5 +barbecuing_N 3.729715012475897e-6 +barbed_A 1.0773191989054437e-5 +barbel_N 3.729715012475897e-6 +barbell_N 3.729715012475897e-6 +barber_N 1.118914503742769e-5 +barberry_N 3.729715012475897e-6 +barbershop_N 3.729715012475897e-6 +barbet_N 3.729715012475897e-6 +barbette_N 3.729715012475897e-6 +barbican_N 3.729715012475897e-6 +barbital_N 3.729715012475897e-6 +barbitone_N 3.729715012475897e-6 +barbiturate_N 3.729715012475897e-6 +barbu_N 3.729715012475897e-6 +barcarole_N 3.729715012475897e-6 +barcarolle_N 3.729715012475897e-6 +barcelona_PN 3.730925642651942e-5 +bard_N 3.729715012475897e-6 +bardic_A 1.0773191989054437e-5 +bardolatry_N 3.729715012475897e-6 +bare_A 3.986081035950142e-4 +bare_V2 3.219730508556434e-5 +bareback_A 1.0773191989054437e-5 +bareback_Adv 8.668966832532898e-6 +barebacked_A 1.0773191989054437e-5 +barebacked_Adv 8.668966832532898e-6 +bareboat_N 3.729715012475897e-6 +bareboating_N 3.729715012475897e-6 +barefaced_A 1.0773191989054437e-5 +barefoot_A 1.0773191989054437e-5 +barefoot_Adv 8.668966832532898e-6 +barefooted_A 1.0773191989054437e-5 +barefooted_Adv 8.668966832532898e-6 +barehanded_A 1.0773191989054437e-5 +bareheaded_A 1.0773191989054437e-5 +barelegged_A 1.0773191989054437e-5 +bareness_N 3.729715012475897e-6 +bargain_N 1.8275603561131894e-4 +bargain_V 4.082188052796299e-4 +bargain_V2 1.609865254278217e-5 +bargain_down_V2 1.609865254278217e-5 +bargain_for_V2 1.609865254278217e-5 +bargain_on_V2 1.609865254278217e-5 +bargainer_N 3.729715012475897e-6 +bargaining_N 3.729715012475897e-6 +barge_N 3.356743511228307e-5 +barge_V 4.5357645031069986e-5 +barge_in_V 2.2678822515534993e-5 +barge_into_V2 1.609865254278217e-5 +bargee_N 3.729715012475897e-6 +bargello_N 3.729715012475897e-6 +bargepole_N 3.729715012475897e-6 +bargoed_PN 1.865462821325971e-5 +bari_PN 1.865462821325971e-5 +baric_A 1.0773191989054437e-5 +barilla_N 3.729715012475897e-6 +baritone_A 1.0773191989054437e-5 +baritone_N 7.459430024951794e-6 +barium_N 3.729715012475897e-6 +bark_N 3.729715012475897e-6 +bark_V 4.5357645031069986e-5 +bark_V2 1.609865254278217e-5 +barker_N 3.729715012475897e-6 +barking_PN 1.865462821325971e-5 +barky_A 1.0773191989054437e-5 +barley_N 7.459430024951794e-6 +barley_sugar_N 3.729715012475897e-6 +barley_water_N 3.729715012475897e-6 +barleycorn_N 3.729715012475897e-6 +barm_N 3.729715012475897e-6 +barmaid_N 3.729715012475897e-6 +barman_N 3.729715012475897e-6 +barmbrack_N 3.729715012475897e-6 +barmy_A 1.0773191989054437e-5 +barn_N 2.237829007485538e-5 +barn_door_N 3.729715012475897e-6 +barnacle_N 7.459430024951794e-6 +barnard_castle_PN 1.865462821325971e-5 +barnburner_N 3.729715012475897e-6 +barndoor_N 3.729715012475897e-6 +barnet_PN 1.865462821325971e-5 +barnful_N 3.729715012475897e-6 +barnoldswick_PN 1.865462821325971e-5 +barnsley_PN 1.865462821325971e-5 +barnstaple_PN 1.865462821325971e-5 +barnstorm_V 2.2678822515534993e-5 +barnstormer_N 3.729715012475897e-6 +barnyard_N 7.459430024951794e-6 +barograph_N 3.729715012475897e-6 +barographic_A 1.0773191989054437e-5 +barometer_N 5.594572518713845e-5 +barometric_A 1.0773191989054437e-5 +baron_N 1.118914503742769e-5 +baronage_N 3.729715012475897e-6 +baronduki_N 3.729715012475897e-6 +baroness_N 3.729715012475897e-6 +baronet_N 3.729715012475897e-6 +baronetage_N 3.729715012475897e-6 +baronetcy_N 3.729715012475897e-6 +barong_N 3.729715012475897e-6 +baronial_A 1.0773191989054437e-5 +barony_N 3.729715012475897e-6 +baroque_A 2.1546383978108874e-5 +baroque_N 3.729715012475897e-6 +baroreceptor_N 3.729715012475897e-6 +barosaur_N 3.729715012475897e-6 +barouche_N 3.729715012475897e-6 +barque_N 3.729715012475897e-6 +barrack_N 3.729715012475897e-6 +barrack_V 2.2678822515534993e-5 +barrack_V2 1.609865254278217e-5 +barracking_N 3.729715012475897e-6 +barracouta_N 3.729715012475897e-6 +barracuda_N 3.729715012475897e-6 +barrage_N 2.6108005087331277e-5 +barramundi_N 3.729715012475897e-6 +barranquilla_PN 1.865462821325971e-5 +barrator_N 3.729715012475897e-6 +barratry_N 3.729715012475897e-6 +barrel_N 3.543229261852102e-4 +barrel_V2 1.609865254278217e-5 +barreled_A 1.0773191989054437e-5 +barrelfish_N 3.729715012475897e-6 +barrelhouse_N 3.729715012475897e-6 +barrels_N 3.729715012475897e-6 +barren_A 2.1546383978108874e-5 +barren_N 3.729715012475897e-6 +barrenness_N 3.729715012475897e-6 +barrenwort_N 3.729715012475897e-6 +barrette_N 3.729715012475897e-6 +barrhead_PN 1.865462821325971e-5 +barricade_N 7.459430024951794e-6 +barricade_V2 1.609865254278217e-5 +barrier_N 1.6783717556141534e-4 +barring_N 3.729715012475897e-6 +barrio_N 3.729715012475897e-6 +barrister_N 3.729715012475897e-6 +barroom_N 3.729715012475897e-6 +barrow_N 3.729715012475897e-6 +barrow_boy_N 3.729715012475897e-6 +barrow_in_furness_PN 1.865462821325971e-5 +barrow_man_N 3.729715012475897e-6 +barry_PN 1.865462821325971e-5 +bart_PN 1.865462821325971e-5 +bartender_N 1.118914503742769e-5 +barter_N 3.729715012475897e-6 +barter_V 4.5357645031069986e-5 +barter_V2 3.219730508556434e-5 +barterer_N 3.729715012475897e-6 +bartholomew_PN 1.865462821325971e-5 +bartlett_N 3.729715012475897e-6 +barton_upon_humber_PN 1.865462821325971e-5 +bartonia_N 3.729715012475897e-6 +barycenter_N 3.729715012475897e-6 +barye_N 3.729715012475897e-6 +baryon_N 3.729715012475897e-6 +baryta_N 3.729715012475897e-6 +barytic_A 1.0773191989054437e-5 +bas_relief_N 3.729715012475897e-6 +basal_A 1.0773191989054437e-5 +basalt_N 3.729715012475897e-6 +basaltic_A 1.0773191989054437e-5 +bascule_N 3.729715012475897e-6 +base_A 1.508246878467621e-4 +base_N 4.1772808139730044e-4 +base_V 2.1998457840068943e-3 +base_V2 5.135470161147512e-3 +baseball_N 2.275126157610297e-4 +baseboard_N 3.729715012475897e-6 +basel_PN 1.865462821325971e-5 +baseless_A 3.231957596716331e-5 +baseline_N 3.729715012475897e-6 +basement_N 2.9837720099807175e-5 +baseness_N 3.729715012475897e-6 +basenji_N 3.729715012475897e-6 +bash_N 7.459430024951794e-6 +bash_V2 6.439461017112868e-5 +bash_about_V2 1.609865254278217e-5 +bash_in_V2 1.609865254278217e-5 +bash_out_V2 1.609865254278217e-5 +bash_up_V2 1.609865254278217e-5 +bashful_A 1.0773191989054437e-5 +basic_A 5.386595994527219e-4 +basic_N 3.729715012475897e-6 +basically_Adv 2.1672417081332248e-4 +basics_N 3.729715012475897e-6 +basidial_A 1.0773191989054437e-5 +basidiocarp_N 3.729715012475897e-6 +basidiolichen_N 3.729715012475897e-6 +basidiomycete_N 3.729715012475897e-6 +basidiomycetous_A 1.0773191989054437e-5 +basidiospore_N 3.729715012475897e-6 +basidiosporous_A 1.0773191989054437e-5 +basidium_N 3.729715012475897e-6 +basifixed_A 1.0773191989054437e-5 +basil_N 3.729715012475897e-6 +basil_PN 1.865462821325971e-5 +basilar_A 1.0773191989054437e-5 +basildon_PN 1.865462821325971e-5 +basileus_N 3.729715012475897e-6 +basilica_N 3.729715012475897e-6 +basilican_A 1.0773191989054437e-5 +basilisk_N 3.729715012475897e-6 +basin_N 3.729715012475897e-6 +basinal_A 1.0773191989054437e-5 +basined_A 1.0773191989054437e-5 +basinet_N 3.729715012475897e-6 +basingstoke_PN 1.865462821325971e-5 +basipetal_A 1.0773191989054437e-5 +basis_N 6.415109821458542e-4 +basiscopic_A 1.0773191989054437e-5 +bask_V 2.2678822515534993e-5 +basket_N 2.0886404069865022e-4 +basketball_N 7.459430024951794e-5 +basketry_N 3.729715012475897e-6 +basketweaver_N 3.729715012475897e-6 +basophil_N 3.729715012475897e-6 +basophilia_N 3.729715012475897e-6 +basophilic_A 1.0773191989054437e-5 +bass_A 1.0773191989054437e-5 +bass_N 1.8648575062379485e-5 +bassarisk_N 3.729715012475897e-6 +basset_N 3.729715012475897e-6 +bassine_N 3.729715012475897e-6 +bassinet_N 3.729715012475897e-6 +bassist_N 3.729715012475897e-6 +bassoon_N 7.459430024951794e-6 +bassoonist_N 3.729715012475897e-6 +basswood_N 3.729715012475897e-6 +bast_N 3.729715012475897e-6 +bastard_N 3.729715012475897e-6 +bastardization_N 3.729715012475897e-6 +bastardize_V2 1.609865254278217e-5 +bastardly_A 1.0773191989054437e-5 +bastardy_N 3.729715012475897e-6 +baste_N 3.729715012475897e-6 +baste_V2 1.609865254278217e-5 +baster_N 3.729715012475897e-6 +bastille_N 3.729715012475897e-6 +bastinado_N 3.729715012475897e-6 +bastinado_V2 1.609865254278217e-5 +basting_N 3.729715012475897e-6 +bastion_N 1.8648575062379485e-5 +bastioned_A 1.0773191989054437e-5 +bastnasite_N 3.729715012475897e-6 +basuco_N 3.729715012475897e-6 +bat_N 3.729715012475897e-5 +bat_V 6.803646754660499e-5 +bat_V2 3.219730508556434e-5 +bat_in_V 2.2678822515534993e-5 +batch_N 3.729715012475897e-5 +bate_V2 3.219730508556434e-5 +batfish_N 3.729715012475897e-6 +bath_N 1.4918860049903587e-5 +bath_PN 1.865462821325971e-5 +bath_V 2.2678822515534993e-5 +bath_V2 1.609865254278217e-5 +bath_chair_N 3.729715012475897e-6 +bathe_N 3.729715012475897e-6 +bathe_V 2.2678822515534993e-5 +bathe_V2 1.609865254278217e-5 +bather_N 3.729715012475897e-6 +bathetic_A 1.0773191989054437e-5 +bathgate_PN 1.865462821325971e-5 +bathhouse_N 3.729715012475897e-6 +bathing_N 7.459430024951794e-6 +bathing_cap_N 3.729715012475897e-6 +bathing_costume_N 3.729715012475897e-6 +bathing_machine_N 3.729715012475897e-6 +bathing_suit_N 3.729715012475897e-6 +batholith_N 3.729715012475897e-6 +batholithic_A 1.0773191989054437e-5 +bathos_N 3.729715012475897e-6 +bathrobe_N 3.729715012475897e-6 +bathroom_N 1.4918860049903587e-5 +bathtub_N 7.459430024951794e-6 +bathyal_A 1.0773191989054437e-5 +bathymeter_N 3.729715012475897e-6 +bathymetric_A 1.0773191989054437e-5 +bathymetry_N 3.729715012475897e-6 +bathyscaphe_N 3.729715012475897e-6 +bathysphere_N 3.729715012475897e-6 +batik_N 3.729715012475897e-6 +batiste_N 3.729715012475897e-6 +batley_PN 1.865462821325971e-5 +batman_N 3.729715012475897e-6 +baton_N 3.729715012475897e-6 +batrachomyomachia_N 3.729715012475897e-6 +bats_A 1.0773191989054437e-5 +batsman_N 3.729715012475897e-6 +battalion_N 7.459430024951794e-6 +batten_N 3.729715012475897e-6 +batten_V 2.2678822515534993e-5 +batten_V2 1.609865254278217e-5 +batter_N 1.118914503742769e-5 +batter_V 1.1339411257767497e-4 +batter_V2 2.575784406845147e-4 +battering_N 3.729715012475897e-6 +battery_N 7.832401526199384e-5 +batting_N 1.4918860049903587e-5 +battle_N 3.655120712226379e-4 +battle_V 1.1339411257767497e-4 +battle_V2 1.7708517797060386e-4 +battle_axe_N 3.729715012475897e-6 +battle_cruiser_N 3.729715012475897e-6 +battledore_N 3.729715012475897e-6 +battledress_N 3.729715012475897e-6 +battlefield_N 1.118914503742769e-5 +battlefront_N 3.729715012475897e-6 +battleful_A 1.0773191989054437e-5 +battleground_N 7.459430024951794e-6 +battlement_N 3.729715012475897e-6 +battlemented_A 1.0773191989054437e-5 +battleship_N 3.729715012475897e-6 +battue_N 3.729715012475897e-6 +batty_A 1.0773191989054437e-5 +batwing_A 1.0773191989054437e-5 +batwing_N 3.729715012475897e-6 +bauble_N 3.729715012475897e-6 +baud_N 3.729715012475897e-6 +baulk_N 3.729715012475897e-6 +baulk_V 2.2678822515534993e-5 +baulk_V2 1.609865254278217e-5 +bauxite_N 3.729715012475897e-6 +bauxitic_A 1.0773191989054437e-5 +bawbee_N 3.729715012475897e-6 +bawd_N 3.729715012475897e-6 +bawdry_N 3.729715012475897e-6 +bawdy_A 1.0773191989054437e-5 +bawdy_N 3.729715012475897e-6 +bawl_V 2.2678822515534993e-5 +bawl_V2 1.609865254278217e-5 +bawl_out_V2 1.609865254278217e-5 +bawler_N 3.729715012475897e-6 +bay_A 1.0773191989054437e-5 +bay_N 5.967544019961435e-5 +bay_V 2.2678822515534993e-5 +bay_wreath_N 3.729715012475897e-6 +baya_N 3.729715012475897e-6 +bayat_N 3.729715012475897e-6 +bayberry_N 3.729715012475897e-6 +bayonet_N 3.729715012475897e-6 +bayonet_V2 1.609865254278217e-5 +bayou_N 3.729715012475897e-6 +bazaar_N 3.729715012475897e-6 +bazooka_N 3.729715012475897e-6 +bbc_PN 1.865462821325971e-5 +bdellium_N 3.729715012475897e-6 +beach_N 6.340515521209024e-5 +beach_V2 3.219730508556434e-5 +beachcomber_N 3.729715012475897e-6 +beachfront_N 3.729715012475897e-6 +beachhead_N 3.729715012475897e-6 +beachwear_N 3.729715012475897e-6 +beacon_N 3.729715012475897e-6 +beacon_fire_N 3.729715012475897e-6 +beacon_light_N 3.729715012475897e-6 +beaconsfield_PN 1.865462821325971e-5 +bead_N 3.729715012475897e-6 +beaded_A 1.0773191989054437e-5 +beading_N 3.729715012475897e-6 +beadle_N 3.729715012475897e-6 +beads_N 3.729715012475897e-6 +beadsman_N 3.729715012475897e-6 +beady_A 1.0773191989054437e-5 +beagle_N 3.729715012475897e-6 +beagling_N 3.729715012475897e-6 +beak_N 3.729715012475897e-6 +beaked_A 1.0773191989054437e-5 +beaker_N 3.729715012475897e-6 +beakless_A 1.0773191989054437e-5 +beaklike_A 1.0773191989054437e-5 +beam_N 1.118914503742769e-5 +beam_V 4.5357645031069986e-5 +beam_V2 3.219730508556434e-5 +beamish_A 1.0773191989054437e-5 +beamy_A 1.0773191989054437e-5 +bean_N 1.8648575062379485e-5 +beanbag_N 3.729715012475897e-6 +beanball_N 3.729715012475897e-6 +beanfeast_N 3.729715012475897e-6 +beanie_N 3.729715012475897e-6 +beano_N 3.729715012475897e-6 +beanstalk_N 3.729715012475897e-6 +bear_N 8.205373027446973e-5 +bear_V 2.4946704767088494e-4 +bear_V2 7.888339745963262e-4 +bear_down_on_V2 1.609865254278217e-5 +bear_on_V2 1.609865254278217e-5 +bear_out_V2 1.609865254278217e-5 +bear_up_V 2.2678822515534993e-5 +bear_up_under_V2 1.609865254278217e-5 +bear_with_V2 1.609865254278217e-5 +bearable_A 2.1546383978108874e-5 +bearberry_N 3.729715012475897e-6 +beard_N 3.729715012475897e-6 +beard_V2 3.219730508556434e-5 +beardless_A 1.0773191989054437e-5 +bearer_N 1.118914503742769e-5 +bearing_N 5.967544019961435e-5 +bearish_A 2.6932979972636094e-4 +bearnaise_N 3.729715012475897e-6 +bearsden_PN 1.865462821325971e-5 +bearskin_N 3.729715012475897e-6 +beast_N 1.4918860049903587e-5 +beastliness_N 3.729715012475897e-6 +beastly_A 1.0773191989054437e-5 +beastly_Adv 8.668966832532898e-6 +beat_N 2.237829007485538e-5 +beat_V 3.401823377330249e-4 +beat_V2 4.185649661123364e-4 +beat_back_V 2.2678822515534993e-5 +beat_down_V 2.2678822515534993e-5 +beat_down_V2 1.609865254278217e-5 +beat_out_V2 1.609865254278217e-5 +beat_up_V2 1.609865254278217e-5 +beatable_A 1.0773191989054437e-5 +beaten_A 2.1546383978108874e-5 +beater_N 3.729715012475897e-6 +beatific_A 2.1546383978108874e-5 +beatification_N 3.729715012475897e-6 +beatify_V2 1.609865254278217e-5 +beating_N 2.6108005087331277e-5 +beatitude_N 3.729715012475897e-6 +beatnik_N 3.729715012475897e-6 +beatrice_PN 1.865462821325971e-5 +beau_N 3.729715012475897e-6 +beaugregory_N 3.729715012475897e-6 +beaujolais_N 3.729715012475897e-6 +beaumaris_PN 1.865462821325971e-5 +beauteous_A 1.0773191989054437e-5 +beautician_N 3.729715012475897e-6 +beautification_N 3.729715012475897e-6 +beautiful_A 1.72371071824871e-4 +beautify_V2 1.609865254278217e-5 +beauty_N 6.340515521209024e-5 +beauty_parlour_N 3.729715012475897e-6 +beauty_salon_N 3.729715012475897e-6 +beauty_sleep_N 3.729715012475897e-6 +beauty_spot_N 3.729715012475897e-6 +beaver_N 3.729715012475897e-6 +beaver_V 2.2678822515534993e-5 +beaver_away_V 2.2678822515534993e-5 +beaver_away_at_V2 1.609865254278217e-5 +bebington_PN 1.865462821325971e-5 +becalmed_A 1.0773191989054437e-5 +because_Subj 3.93574297188755e-2 +because_of_Prep 1.1275757122187298e-3 +beccles_PN 1.865462821325971e-5 +beck_N 3.729715012475897e-6 +becket_N 3.729715012475897e-6 +beckon_V 2.2678822515534993e-5 +beckon_V2 1.609865254278217e-5 +become_V 2.812173991926339e-3 +become_V2 3.622196822125988e-3 +become_VA 0.1486220472440945 +become_VS 1.1552012938254491e-4 +becomingly_Adv 8.668966832532898e-6 +becomingness_N 3.729715012475897e-6 +bed_N 5.2216010174662554e-5 +bed_V2 1.609865254278217e-5 +bed_down_V 2.2678822515534993e-5 +bed_out_V2 1.609865254278217e-5 +bedaubed_A 1.0773191989054437e-5 +bedbug_N 3.729715012475897e-6 +bedclothes_N 3.729715012475897e-6 +beddau_PN 1.865462821325971e-5 +bedder_N 3.729715012475897e-6 +bedding_N 7.459430024951794e-6 +bedecked_A 1.0773191989054437e-5 +bedevil_V2 4.8295957628346505e-5 +bedevilment_N 3.729715012475897e-6 +bedewed_A 1.0773191989054437e-5 +bedfast_A 1.0773191989054437e-5 +bedfellow_N 1.118914503742769e-5 +bedford_PN 1.865462821325971e-5 +bedfordshire_PN 1.865462821325971e-5 +bedimmed_A 1.0773191989054437e-5 +bedlam_N 1.118914503742769e-5 +bedlamite_N 3.729715012475897e-6 +bedless_A 1.0773191989054437e-5 +bedlington_PN 1.865462821325971e-5 +bedouin_N 3.729715012475897e-6 +bedpan_N 7.459430024951794e-6 +bedpost_N 3.729715012475897e-6 +bedraggled_A 1.0773191989054437e-5 +bedrest_N 3.729715012475897e-6 +bedridden_A 2.1546383978108874e-5 +bedrock_N 1.118914503742769e-5 +bedroll_N 3.729715012475897e-6 +bedroom_N 1.4918860049903587e-5 +bedroomed_A 1.0773191989054437e-5 +bedside_N 7.459430024951794e-6 +bedsit_N 3.729715012475897e-6 +bedsitter_N 3.729715012475897e-6 +bedsitting_room_N 3.729715012475897e-6 +bedsore_N 3.729715012475897e-6 +bedspread_N 3.729715012475897e-6 +bedspring_N 3.729715012475897e-6 +bedstead_N 3.729715012475897e-6 +bedstraw_N 3.729715012475897e-6 +bedtime_N 3.729715012475897e-6 +beduin_N 3.729715012475897e-6 +bedwas_PN 1.865462821325971e-5 +bedwetter_N 3.729715012475897e-6 +bee_N 1.4918860049903587e-5 +beebread_N 3.729715012475897e-6 +beech_N 3.729715012475897e-6 +beechen_A 1.0773191989054437e-5 +beechnut_N 3.729715012475897e-6 +beef_N 5.967544019961435e-5 +beef_V 2.0410940263981494e-4 +beef_up_V2 1.609865254278217e-5 +beefcake_N 3.729715012475897e-6 +beefeater_N 3.729715012475897e-6 +beefsteak_N 3.729715012475897e-6 +beefwood_N 3.729715012475897e-6 +beefy_A 2.1546383978108874e-5 +beehive_N 3.729715012475897e-6 +beekeeper_N 3.729715012475897e-6 +beekeeping_N 3.729715012475897e-6 +beeline_N 3.729715012475897e-6 +beep_N 1.118914503742769e-5 +beeper_N 3.729715012475897e-6 +beer_N 1.7156689057389125e-4 +beery_A 1.0773191989054437e-5 +beeswax_N 7.459430024951794e-6 +beeswax_V2 1.609865254278217e-5 +beet_N 7.459430024951794e-6 +beetle_A 1.0773191989054437e-5 +beetle_N 3.729715012475897e-6 +beetle_V 2.2678822515534993e-5 +beetle_browed_A 1.0773191989054437e-5 +beetroot_N 3.729715012475897e-6 +befall_V 2.2678822515534993e-5 +befall_V2 6.439461017112868e-5 +befit_V2 1.609865254278217e-5 +befitting_A 2.1546383978108874e-5 +befogged_A 1.0773191989054437e-5 +before_Adv 5.894897446122371e-4 +before_Prep 6.306441151524223e-3 +before_Subj 9.63855421686747e-3 +beforehand_A 1.0773191989054437e-5 +beforehand_Adv 3.4675867330131594e-5 +befoul_V2 1.609865254278217e-5 +befoulment_N 3.729715012475897e-6 +befriend_V2 3.219730508556434e-5 +beg_V 9.071529006213997e-5 +beg_V2 4.8295957628346505e-5 +beget_V2 3.219730508556434e-5 +begetter_N 3.729715012475897e-6 +beggar_N 7.459430024951794e-6 +beggar_V2 1.609865254278217e-5 +beggarly_A 1.0773191989054437e-5 +beggarman_N 3.729715012475897e-6 +beggarweed_N 3.729715012475897e-6 +beggarwoman_N 3.729715012475897e-6 +beggary_N 3.729715012475897e-6 +begin_V 5.919172676554633e-3 +begin_V2 1.529371991564306e-3 +begin_ing_VV 1.8354795310397846e-2 +begin_to_VV 1.1531808571977706e-3 +begin_with_V 2.2678822515534993e-5 +beginner_N 3.729715012475897e-6 +beginning_N 1.9021546563627073e-4 +begonia_N 3.729715012475897e-6 +begrimed_A 1.0773191989054437e-5 +begrudge_V2 1.609865254278217e-5 +beguile_V2 1.609865254278217e-5 +beguilement_N 3.729715012475897e-6 +beguiling_A 1.0773191989054437e-5 +beguine_N 3.729715012475897e-6 +begum_N 3.729715012475897e-6 +behalf_N 2.6108005087331277e-5 +behave_V 4.308976277951649e-4 +behaved_A 1.0773191989054437e-5 +behavior_N 3.729715012475897e-6 +behavioral_A 1.0773191989054437e-5 +behaviorism_N 3.729715012475897e-6 +behaviorist_N 3.729715012475897e-6 +behavioristic_A 1.0773191989054437e-5 +behaviour_N 7.459430024951794e-6 +behaviourism_N 3.729715012475897e-6 +behaviourist_N 3.729715012475897e-6 +behead_V2 3.219730508556434e-5 +behest_N 3.729715012475897e-6 +behind_Adv 1.0402760199039479e-4 +behind_N 7.459430024951794e-6 +behind_Prep 9.579404280796288e-4 +behindhand_A 1.0773191989054437e-5 +behither_Prep 9.978546125829467e-6 +behold_V2 1.609865254278217e-5 +beholden_A 2.1546383978108874e-5 +beholder_N 3.729715012475897e-6 +behove_V2 1.609865254278217e-5 +beige_A 1.0773191989054437e-5 +beige_N 3.729715012475897e-6 +being_N 8.578344528694562e-5 +beirut_PN 1.1192776927955825e-4 +beith_PN 1.865462821325971e-5 +bejewelled_A 1.0773191989054437e-5 +belabour_V2 1.609865254278217e-5 +belated_A 4.309276795621775e-5 +belay_N 3.729715012475897e-6 +belay_V2 1.609865254278217e-5 +belaying_pin_N 3.729715012475897e-6 +belch_N 7.459430024951794e-6 +belch_V 2.2678822515534993e-5 +belch_V2 1.609865254278217e-5 +belching_N 3.729715012475897e-6 +beldam_N 3.729715012475897e-6 +beldame_N 3.729715012475897e-6 +beleaguer_V2 1.1269056779947518e-4 +belem_PN 1.865462821325971e-5 +belemnite_N 3.729715012475897e-6 +belemnitic_A 1.0773191989054437e-5 +belfast_PN 1.865462821325971e-5 +belfry_N 1.8648575062379485e-5 +belgian_A 1.0773191989054437e-4 +belgian_N 3.729715012475897e-6 +belgium_PN 2.052009103458568e-4 +belgrade_PN 1.865462821325971e-5 +belie_V2 4.8295957628346505e-5 +belief_N 1.118914503742769e-4 +believable_A 2.1546383978108874e-5 +believe_V 9.525105456524698e-4 +believe_V2 1.7708517797060386e-4 +believe_V2V 3.2725572697522207e-3 +believe_VS 1.8425460636515914e-2 +believer_N 7.459430024951794e-6 +believing_N 3.729715012475897e-6 +belike_Adv 8.668966832532898e-6 +belinda_PN 1.865462821325971e-5 +belittle_V2 3.219730508556434e-5 +belittling_A 1.0773191989054437e-5 +belittling_N 3.729715012475897e-6 +bell_N 1.3799945546160818e-4 +bell_V2 1.609865254278217e-5 +bell_bottomed_A 1.0773191989054437e-5 +bell_buoy_N 3.729715012475897e-6 +bell_flower_N 3.729715012475897e-6 +bell_founder_N 3.729715012475897e-6 +bell_foundry_N 3.729715012475897e-6 +bell_metal_N 3.729715012475897e-6 +bell_push_N 3.729715012475897e-6 +bell_ringer_N 3.729715012475897e-6 +bell_tent_N 3.729715012475897e-6 +bella_PN 1.865462821325971e-5 +belladonna_N 3.729715012475897e-6 +bellarmine_N 3.729715012475897e-6 +bellbird_N 3.729715012475897e-6 +bellboy_N 3.729715012475897e-6 +belle_N 3.729715012475897e-6 +belle_PN 1.865462821325971e-5 +belletristic_A 1.0773191989054437e-5 +bellhop_N 3.729715012475897e-6 +bellicose_A 1.0773191989054437e-5 +bellicosity_N 3.729715012475897e-6 +belligerence_N 3.729715012475897e-6 +belligerency_N 3.729715012475897e-6 +belligerent_A 1.0773191989054437e-5 +belligerent_N 3.729715012475897e-6 +bellow_N 3.729715012475897e-6 +bellow_V 2.2678822515534993e-5 +bellow_V2 1.609865254278217e-5 +bellows_N 3.729715012475897e-6 +bellpull_N 3.729715012475897e-6 +bellshill_PN 1.865462821325971e-5 +bellwether_N 4.848629516218666e-5 +bellwort_N 3.729715012475897e-6 +belly_N 1.118914503742769e-5 +belly_V 2.2678822515534993e-5 +belly_V2 1.609865254278217e-5 +bellyache_N 3.729715012475897e-6 +bellyache_V 2.2678822515534993e-5 +bellyband_N 3.729715012475897e-6 +bellyflop_N 3.729715012475897e-6 +bellyful_N 3.729715012475897e-6 +bellyland_V 2.2678822515534993e-5 +bellylaugh_N 3.729715012475897e-6 +bellylaugh_V 2.2678822515534993e-5 +bellyless_A 1.0773191989054437e-5 +belo_horizonte_PN 1.865462821325971e-5 +belong_V 6.803646754660498e-4 +belong_to_V2 1.609865254278217e-5 +belong_with_V2 1.609865254278217e-5 +belonging_N 3.729715012475897e-6 +beloved_A 4.309276795621775e-5 +beloved_N 3.729715012475897e-6 +below_Adv 2.4273107131092116e-4 +below_Prep 1.776181210397645e-3 +belowground_A 1.0773191989054437e-5 +belper_PN 1.865462821325971e-5 +belt_N 5.594572518713845e-5 +belt_V2 1.609865254278217e-5 +belt_out_V2 1.609865254278217e-5 +belt_up_V 2.2678822515534993e-5 +belting_N 3.729715012475897e-6 +beltlike_A 1.0773191989054437e-5 +beltway_N 3.729715012475897e-6 +beluga_N 3.729715012475897e-6 +belvedere_N 3.729715012475897e-6 +bemoan_V2 4.8295957628346505e-5 +bemused_A 2.1546383978108874e-5 +ben_N 3.729715012475897e-6 +ben_PN 1.865462821325971e-5 +bench_N 8.205373027446973e-5 +benchmark_N 3.729715012475897e-6 +bend_N 3.729715012475897e-6 +bend_V 9.071529006213997e-5 +bend_V2 4.8295957628346505e-5 +bend_down_V 2.2678822515534993e-5 +bend_over_V 2.2678822515534993e-5 +bend_over_backwards_V 2.2678822515534993e-5 +bendability_N 3.729715012475897e-6 +bendable_A 1.0773191989054437e-5 +bender_N 3.729715012475897e-6 +bending_N 3.729715012475897e-6 +beneath_Adv 8.668966832532898e-6 +beneath_Prep 1.3969964576161252e-4 +benedick_N 3.729715012475897e-6 +benedictine_A 1.0773191989054437e-5 +benedictine_N 3.729715012475897e-6 +benediction_N 3.729715012475897e-6 +benedictory_A 1.0773191989054437e-5 +benefaction_N 3.729715012475897e-6 +benefactor_N 1.118914503742769e-5 +benefactress_N 3.729715012475897e-6 +benefic_A 1.0773191989054437e-5 +benefice_N 3.729715012475897e-6 +beneficed_A 1.0773191989054437e-5 +beneficence_N 3.729715012475897e-6 +beneficent_A 1.0773191989054437e-5 +beneficial_A 1.72371071824871e-4 +beneficiary_A 1.0773191989054437e-5 +beneficiary_N 8.578344528694562e-5 +benefit_N 6.042138320210953e-4 +benefit_V 1.3607293509320995e-3 +benefit_V2 3.3807170339842556e-4 +benevolence_N 3.729715012475897e-6 +benevolent_A 2.1546383978108874e-5 +bengali_A 1.0773191989054437e-5 +bengali_N 3.729715012475897e-6 +benighted_A 2.1546383978108874e-5 +benign_A 8.61855359124355e-5 +benignant_A 1.0773191989054437e-5 +benignity_N 3.729715012475897e-6 +benin_PN 1.865462821325971e-5 +beninese_A 1.0773191989054437e-5 +beninese_N 3.729715012475897e-6 +benison_N 3.729715012475897e-6 +benjamin_PN 1.865462821325971e-5 +bennet_N 3.729715012475897e-6 +benny_PN 1.865462821325971e-5 +bent_A 2.1546383978108874e-5 +bent_N 1.118914503742769e-5 +benthic_A 1.0773191989054437e-5 +benthos_N 3.729715012475897e-6 +bentonite_N 3.729715012475897e-6 +bentonitic_A 1.0773191989054437e-5 +bentwood_N 3.729715012475897e-6 +benumbed_A 1.0773191989054437e-5 +benzedrine_N 3.729715012475897e-6 +benzene_N 3.729715012475897e-6 +benzenoid_A 1.0773191989054437e-5 +benzine_N 3.729715012475897e-6 +benzoate_N 3.729715012475897e-6 +benzocaine_N 3.729715012475897e-6 +benzodiazepine_N 3.729715012475897e-6 +benzofuran_N 3.729715012475897e-6 +benzoic_A 1.0773191989054437e-5 +benzoin_N 3.729715012475897e-6 +benzol_N 3.729715012475897e-6 +benzyl_N 3.729715012475897e-6 +benzylic_A 1.0773191989054437e-5 +beograd_PN 1.865462821325971e-5 +bequeath_V2 3.219730508556434e-5 +bequest_N 1.118914503742769e-5 +berate_V2 3.219730508556434e-5 +berating_N 3.729715012475897e-6 +bereave_V2 1.609865254278217e-5 +bereaved_N 3.729715012475897e-6 +bereavement_N 3.729715012475897e-6 +bereft_A 1.0773191989054437e-5 +beret_N 7.459430024951794e-6 +berg_N 3.729715012475897e-6 +bergamo_PN 1.865462821325971e-5 +bergamot_N 3.729715012475897e-6 +bergen_PN 1.865462821325971e-5 +bergenia_N 3.729715012475897e-6 +beri_beri_N 3.729715012475897e-6 +beriberi_N 3.729715012475897e-6 +berk_N 3.729715012475897e-6 +berkelium_N 3.729715012475897e-6 +berkhamsted_PN 1.865462821325971e-5 +berkshire_PN 1.865462821325971e-5 +berlin_N 3.729715012475897e-6 +berlin_PN 1.3058239749281798e-4 +berm_N 3.729715012475897e-6 +bermuda_PN 1.865462821325971e-5 +bermudan_A 1.0773191989054437e-5 +bermudan_N 3.729715012475897e-6 +bern_PN 1.865462821325971e-5 +bernard_PN 1.865462821325971e-5 +bernie_PN 1.865462821325971e-5 +beroe_N 3.729715012475897e-6 +berried_A 1.0773191989054437e-5 +berry_N 1.118914503742769e-5 +berserk_A 1.0773191989054437e-5 +berserker_N 3.729715012475897e-6 +bert_PN 1.865462821325971e-5 +berth_N 3.729715012475897e-6 +berth_V 2.2678822515534993e-5 +berth_V2 1.609865254278217e-5 +bertha_PN 1.865462821325971e-5 +bertie_PN 1.865462821325971e-5 +berwick_upon_tweed_PN 1.865462821325971e-5 +beryl_N 3.729715012475897e-6 +beryl_PN 1.865462821325971e-5 +beryllium_N 3.729715012475897e-6 +beseech_V2 1.609865254278217e-5 +beseeching_A 1.0773191989054437e-5 +beseem_V2 1.609865254278217e-5 +beset_V2 4.8295957628346505e-5 +beshrew_V2 1.609865254278217e-5 +beside_Prep 4.9892730629147335e-5 +besides_Adv 2.6006900497598697e-5 +besides_Prep 3.7918475278151976e-4 +besiege_V2 1.2878922034225736e-4 +besieger_N 3.729715012475897e-6 +besmear_V2 1.609865254278217e-5 +besmirch_V2 1.609865254278217e-5 +besom_N 3.729715012475897e-6 +besotted_A 1.0773191989054437e-5 +bespangled_A 1.0773191989054437e-5 +bespattered_A 1.0773191989054437e-5 +bespeak_V2 1.609865254278217e-5 +bespectacled_A 1.0773191989054437e-5 +bespoke_A 1.0773191989054437e-5 +besprent_A 1.0773191989054437e-5 +bess_PN 1.865462821325971e-5 +bessie_PN 1.865462821325971e-5 +best_A 1.0773191989054437e-5 +best_Adv 1.4737243615305928e-4 +best_N 3.729715012475897e-6 +best_V2 6.439461017112868e-5 +best_seller_N 3.729715012475897e-6 +bestial_A 1.0773191989054437e-5 +bestiality_N 3.729715012475897e-6 +bestiary_N 3.729715012475897e-6 +bestir_V2 1.609865254278217e-5 +bestow_V2 6.439461017112868e-5 +bestowal_N 3.729715012475897e-6 +bestrew_V2 1.609865254278217e-5 +bestride_V2 1.609865254278217e-5 +bestubbled_A 1.0773191989054437e-5 +bet_N 1.268103104241805e-4 +bet_V 2.2678822515534994e-4 +bet_V2 4.8295957628346505e-5 +bet_VS 7.508808409865419e-4 +beta_A 1.0773191989054437e-5 +beta_N 4.475658014971076e-5 +betaine_N 3.729715012475897e-6 +betake_V2 1.609865254278217e-5 +betatron_N 3.729715012475897e-6 +bete_noire_N 3.729715012475897e-6 +betel_N 3.729715012475897e-6 +betel_nut_N 3.729715012475897e-6 +beth_N 3.729715012475897e-6 +bethel_N 3.729715012475897e-6 +bethink_V2 1.609865254278217e-5 +bethune_PN 1.865462821325971e-5 +betide_V2 1.609865254278217e-5 +betimes_Adv 8.668966832532898e-6 +betoken_V2 1.609865254278217e-5 +betray_V2 4.8295957628346505e-5 +betrayal_N 3.729715012475897e-6 +betrayer_N 7.459430024951794e-6 +betroth_V2 1.609865254278217e-5 +betrothal_N 3.729715012475897e-6 +betrothed_N 3.729715012475897e-6 +betsy_PN 1.865462821325971e-5 +better_A 1.0773191989054437e-5 +better_Adv 3.0341383913865146e-4 +better_N 7.459430024951794e-6 +better_V2 3.219730508556434e-5 +bettering_A 1.0773191989054437e-5 +betterment_N 7.459430024951794e-6 +bettong_N 3.729715012475897e-6 +bettor_N 3.729715012475897e-6 +betty_PN 1.865462821325971e-5 +betulaceous_A 1.0773191989054437e-5 +between_Adv 1.7337933665065797e-5 +between_Prep 5.9272563987427035e-3 +betwixen_Prep 9.978546125829467e-6 +betwixt_Prep 9.978546125829467e-6 +bevatron_N 3.729715012475897e-6 +bevel_N 3.729715012475897e-6 +bevel_V2 1.609865254278217e-5 +beverage_N 3.729715012475897e-5 +beverley_PN 1.865462821325971e-5 +bevy_N 7.459430024951794e-6 +bewail_V2 1.609865254278217e-5 +beware_V 6.803646754660499e-5 +beware_V2 3.219730508556434e-5 +bewdley_PN 1.865462821325971e-5 +bewilder_V2 4.8295957628346505e-5 +bewilderedly_Adv 8.668966832532898e-6 +bewildering_A 1.0773191989054437e-5 +bewilderment_N 3.729715012475897e-6 +bewitch_V2 3.219730508556434e-5 +bewitchery_N 3.729715012475897e-6 +bewitching_A 1.0773191989054437e-5 +bexhill_PN 1.865462821325971e-5 +bexley_PN 1.865462821325971e-5 +bey_N 3.729715012475897e-6 +beyond_Adv 1.7337933665065797e-5 +beyond_Prep 8.880906051988225e-4 +bezant_N 3.729715012475897e-6 +bezel_N 3.729715012475897e-6 +bezique_N 3.729715012475897e-6 +bhakti_N 3.729715012475897e-6 +bhang_N 3.729715012475897e-6 +bhutan_PN 1.865462821325971e-5 +bhutani_A 1.0773191989054437e-5 +bhutani_N 3.729715012475897e-6 +bialy_N 3.729715012475897e-6 +biannually_Adv 8.668966832532898e-6 +bias_A 1.0773191989054437e-5 +bias_N 6.713487022456614e-5 +bias_V2 3.219730508556434e-5 +biauricular_A 1.0773191989054437e-5 +biaxial_A 1.0773191989054437e-5 +bib_N 3.729715012475897e-6 +bib_V 2.2678822515534993e-5 +bibbed_A 1.0773191989054437e-5 +bible_N 7.459430024951794e-6 +bibless_A 1.0773191989054437e-5 +biblical_A 1.0773191989054437e-5 +bibliographer_N 3.729715012475897e-6 +bibliographic_A 1.0773191989054437e-5 +bibliography_N 3.729715012475897e-6 +bibliolatrous_A 1.0773191989054437e-5 +bibliolatry_N 3.729715012475897e-6 +bibliomania_N 3.729715012475897e-6 +bibliomaniacal_A 1.0773191989054437e-5 +bibliophile_N 3.729715012475897e-6 +bibliophilic_A 1.0773191989054437e-5 +bibliopole_N 3.729715012475897e-6 +bibliopolic_A 1.0773191989054437e-5 +bibliotheca_N 3.729715012475897e-6 +bibliothecal_A 1.0773191989054437e-5 +bibliotic_A 1.0773191989054437e-5 +bibliotics_N 3.729715012475897e-6 +bibliotist_N 3.729715012475897e-6 +bibulous_A 1.0773191989054437e-5 +bicameral_A 2.1546383978108874e-5 +bicapsular_A 1.0773191989054437e-5 +bicarbonate_N 3.729715012475897e-6 +bicentenary_N 3.729715012475897e-6 +bicentennial_A 2.1546383978108874e-5 +bicentennial_N 7.459430024951794e-6 +bicentric_A 1.0773191989054437e-5 +bicephalous_A 1.0773191989054437e-5 +biceps_N 3.729715012475897e-6 +bicester_PN 1.865462821325971e-5 +bichromate_N 3.729715012475897e-6 +bichromated_A 1.0773191989054437e-5 +bicipital_A 1.0773191989054437e-5 +bicker_N 3.729715012475897e-6 +bicker_V 1.3607293509320997e-4 +bicolor_A 1.0773191989054437e-5 +biconcave_A 1.0773191989054437e-5 +biconvex_A 1.0773191989054437e-5 +bicorn_A 1.0773191989054437e-5 +bicorn_N 3.729715012475897e-6 +bicuspid_A 1.0773191989054437e-5 +bicycle_N 4.1026865137234865e-5 +bicycle_V 4.5357645031069986e-5 +bicyclic_A 1.0773191989054437e-5 +bicycling_N 3.729715012475897e-6 +bicylindrical_A 1.0773191989054437e-5 +bid_N 1.8573980762129965e-3 +bid_V 2.7441375243797343e-3 +bid_V2 2.8977574577007903e-4 +bid_up_V 2.2678822515534993e-5 +biddable_A 1.0773191989054437e-5 +bidder_N 1.8648575062379482e-4 +bidding_N 3.729715012475897e-6 +biddulph_PN 1.865462821325971e-5 +bide_V2 1.609865254278217e-5 +bideford_PN 1.865462821325971e-5 +bidentate_A 1.0773191989054437e-5 +bidet_N 3.729715012475897e-6 +bidirectional_A 1.0773191989054437e-5 +bielefeld_PN 1.865462821325971e-5 +biennial_A 3.231957596716331e-5 +biennial_N 3.729715012475897e-6 +bier_N 3.729715012475897e-6 +biface_A 1.0773191989054437e-5 +biff_N 3.729715012475897e-6 +biff_V2 1.609865254278217e-5 +bifid_A 1.0773191989054437e-5 +bifilar_A 1.0773191989054437e-5 +biflagellate_A 1.0773191989054437e-5 +bifocal_A 1.0773191989054437e-5 +bifocals_N 3.729715012475897e-6 +bifoliate_A 1.0773191989054437e-5 +biform_A 1.0773191989054437e-5 +bifurcate_A 1.0773191989054437e-5 +bifurcate_V 2.2678822515534993e-5 +bifurcate_V2 3.219730508556434e-5 +bifurcation_N 3.729715012475897e-6 +big_A 6.560873921334152e-3 +big_boned_A 1.0773191989054437e-5 +big_up_V2 1.609865254278217e-5 +bigamist_N 3.729715012475897e-6 +bigamous_A 1.0773191989054437e-5 +bigamy_N 3.729715012475897e-6 +bigeminal_A 1.0773191989054437e-5 +bigeneric_A 1.0773191989054437e-5 +bigeye_N 3.729715012475897e-6 +biggin_N 3.729715012475897e-6 +biggish_A 1.0773191989054437e-5 +biggleswade_PN 1.865462821325971e-5 +bighead_N 3.729715012475897e-6 +bigheaded_A 1.0773191989054437e-5 +bigheartedness_N 3.729715012475897e-6 +bighorn_N 3.729715012475897e-6 +bight_N 3.729715012475897e-6 +bigmouthed_A 1.0773191989054437e-5 +bignoniaceous_A 1.0773191989054437e-5 +bignoniad_N 3.729715012475897e-6 +bigos_N 3.729715012475897e-6 +bigot_N 3.729715012475897e-6 +bigoted_A 1.0773191989054437e-5 +bigotry_N 1.4918860049903587e-5 +bigram_N 3.729715012475897e-6 +bigwig_N 3.729715012475897e-6 +bijou_A 1.0773191989054437e-5 +bijou_N 3.729715012475897e-6 +bike_N 2.0886404069865022e-4 +bike_V 9.071529006213997e-5 +bikini_N 7.459430024951794e-6 +bilabial_A 1.0773191989054437e-5 +bilabial_N 3.729715012475897e-6 +bilabiate_A 1.0773191989054437e-5 +bilateral_A 6.463915193432663e-5 +bilateralism_N 3.729715012475897e-6 +bilaterality_N 3.729715012475897e-6 +bilbao_PN 1.865462821325971e-5 +bilberry_N 3.729715012475897e-6 +bile_N 3.729715012475897e-6 +bile_duct_N 3.729715012475897e-6 +bilge_N 7.459430024951794e-6 +bilge_water_N 3.729715012475897e-6 +bilges_N 3.729715012475897e-6 +bilgy_A 1.0773191989054437e-5 +bilharzia_N 3.729715012475897e-6 +biliary_A 1.0773191989054437e-5 +bilimbi_N 3.729715012475897e-6 +bilinear_A 1.0773191989054437e-5 +bilingual_A 2.1546383978108874e-5 +bilingual_N 3.729715012475897e-6 +bilingualism_N 3.729715012475897e-6 +bilious_A 2.1546383978108874e-5 +biliousness_N 3.729715012475897e-6 +bilirubin_N 3.729715012475897e-6 +bilk_V2 1.609865254278217e-5 +bill_N 2.2191804324231588e-3 +bill_PN 1.865462821325971e-5 +bill_V 4.535764503106999e-4 +bill_V2 1.609865254278217e-4 +bill_poster_N 3.729715012475897e-6 +bill_sticker_N 3.729715012475897e-6 +billabong_N 3.729715012475897e-6 +billboard_N 3.729715012475897e-6 +billericay_PN 1.865462821325971e-5 +billet_N 7.459430024951794e-6 +billet_V2 1.609865254278217e-5 +billet_doux_N 3.729715012475897e-6 +billfish_N 3.729715012475897e-6 +billfold_N 3.729715012475897e-6 +billhook_N 3.729715012475897e-6 +billiard_A 1.0773191989054437e-5 +billiard_marker_N 3.729715012475897e-6 +billiard_player_N 3.729715012475897e-6 +billiard_room_N 3.729715012475897e-6 +billiard_table_N 3.729715012475897e-6 +billiards_N 3.729715012475897e-6 +billingsgate_N 3.729715012475897e-6 +billington_PN 1.865462821325971e-5 +billion_A 1.0773191989054437e-5 +billion_N 1.5664803052398767e-4 +billionaire_N 7.459430024951794e-6 +billionth_A 1.0773191989054437e-5 +billionth_N 3.729715012475897e-6 +billow_N 3.729715012475897e-6 +billow_V 4.5357645031069986e-5 +billowy_A 1.0773191989054437e-5 +billy_N 3.729715012475897e-6 +billy_PN 1.865462821325971e-5 +billy_goat_N 3.729715012475897e-6 +billy_ho_N 3.729715012475897e-6 +billy_o_N 3.729715012475897e-6 +billyo_N 3.729715012475897e-6 +bilobate_A 1.0773191989054437e-5 +bilocation_N 3.729715012475897e-6 +bilocular_A 1.0773191989054437e-5 +biltong_N 3.729715012475897e-6 +bimbo_N 3.729715012475897e-6 +bimester_N 3.729715012475897e-6 +bimestrial_A 1.0773191989054437e-5 +bimetal_A 1.0773191989054437e-5 +bimetal_N 3.729715012475897e-6 +bimetallic_A 1.0773191989054437e-5 +bimetallism_N 3.729715012475897e-6 +bimetallist_N 3.729715012475897e-6 +bimetallistic_A 1.0773191989054437e-5 +bimillenial_A 1.0773191989054437e-5 +bimillennium_N 3.729715012475897e-6 +bimodal_A 1.0773191989054437e-5 +bimolecular_A 1.0773191989054437e-5 +bimonthly_A 1.0773191989054437e-5 +bimonthly_Adv 8.668966832532898e-6 +bimonthly_N 3.729715012475897e-6 +bimorphemic_A 1.0773191989054437e-5 +bimotored_A 1.0773191989054437e-5 +bin_N 7.459430024951794e-6 +binary_A 1.0773191989054437e-5 +binary_N 3.729715012475897e-6 +binate_A 1.0773191989054437e-5 +binaural_A 1.0773191989054437e-5 +bind_N 1.8648575062379485e-5 +bind_V 1.5875175760874494e-4 +bind_V2 9.659191525669301e-5 +bindable_A 1.0773191989054437e-5 +binder_N 1.118914503742769e-5 +bindery_N 3.729715012475897e-6 +binding_N 3.729715012475897e-6 +bindweed_N 3.729715012475897e-6 +bine_N 3.729715012475897e-6 +binge_N 4.1026865137234865e-5 +bingley_PN 1.865462821325971e-5 +bingo_N 3.729715012475897e-6 +binnacle_N 3.729715012475897e-6 +binocular_A 1.0773191989054437e-5 +binoculars_N 3.729715012475897e-6 +binomial_A 1.0773191989054437e-5 +binomial_N 3.729715012475897e-6 +binturong_N 3.729715012475897e-6 +binucleate_A 1.0773191989054437e-5 +bioassay_N 3.729715012475897e-6 +biocatalyst_N 3.729715012475897e-6 +biocatalytic_A 1.0773191989054437e-5 +biochemical_A 1.0773191989054437e-5 +biochemist_N 3.729715012475897e-6 +biochemistry_N 3.729715012475897e-6 +biochip_N 3.729715012475897e-6 +bioclimatic_A 1.0773191989054437e-5 +bioclimatology_N 3.729715012475897e-6 +biodegradable_A 3.231957596716331e-5 +biodiversity_N 3.729715012475897e-6 +bioelectricity_N 3.729715012475897e-6 +bioethics_N 3.729715012475897e-6 +biofeedback_N 3.729715012475897e-6 +biogenesis_N 3.729715012475897e-6 +biogenetic_A 1.0773191989054437e-5 +biogenic_A 1.0773191989054437e-5 +biogenous_A 1.0773191989054437e-5 +biogeographic_A 1.0773191989054437e-5 +biogeography_N 3.729715012475897e-6 +biograph_N 3.729715012475897e-6 +biographer_N 1.4918860049903587e-5 +biographic_A 1.0773191989054437e-5 +biographical_A 1.0773191989054437e-5 +biography_N 1.8648575062379485e-5 +biohazard_N 3.729715012475897e-6 +biological_A 7.541234392338106e-5 +biologism_N 3.729715012475897e-6 +biologist_N 1.4918860049903587e-5 +biologistic_A 1.0773191989054437e-5 +biology_N 1.118914503742769e-5 +bioluminescence_N 3.729715012475897e-6 +bioluminescent_A 1.0773191989054437e-5 +biomass_N 3.729715012475897e-6 +biome_N 3.729715012475897e-6 +biomedical_A 1.0773191989054437e-5 +biomedicine_N 3.729715012475897e-6 +biometrics_N 3.729715012475897e-6 +bionic_A 1.0773191989054437e-5 +bionics_N 3.729715012475897e-6 +biont_N 3.729715012475897e-6 +biophysicist_N 3.729715012475897e-6 +biophysics_N 3.729715012475897e-6 +biopiracy_N 3.729715012475897e-6 +biopsy_N 3.729715012475897e-6 +bioremediation_N 3.729715012475897e-6 +biosafety_N 3.729715012475897e-6 +bioscope_N 3.729715012475897e-6 +biosphere_N 3.729715012475897e-6 +biosynthesis_N 3.729715012475897e-6 +biosynthetic_A 1.0773191989054437e-5 +biosystematic_A 1.0773191989054437e-5 +biosystematics_N 3.729715012475897e-6 +biota_N 3.729715012475897e-6 +biotechnology_N 7.459430024951794e-6 +bioterrorism_N 3.729715012475897e-6 +biotic_A 1.0773191989054437e-5 +biotin_N 3.729715012475897e-6 +biotite_N 3.729715012475897e-6 +biotitic_A 1.0773191989054437e-5 +biotype_N 3.729715012475897e-6 +biotypic_A 1.0773191989054437e-5 +bioweapon_N 3.729715012475897e-6 +biparous_A 1.0773191989054437e-5 +bipartisan_A 1.2927830386865325e-4 +bipartite_A 1.0773191989054437e-5 +biped_N 7.459430024951794e-6 +bipedal_A 1.0773191989054437e-5 +bipedalism_N 3.729715012475897e-6 +bipinnate_A 1.0773191989054437e-5 +bipinnatifid_A 1.0773191989054437e-5 +biplane_N 3.729715012475897e-6 +bipolar_A 1.0773191989054437e-5 +biprism_N 3.729715012475897e-6 +biquadrate_N 3.729715012475897e-6 +biquadratic_A 1.0773191989054437e-5 +biquadratic_N 3.729715012475897e-6 +biracial_A 1.0773191989054437e-5 +biradial_A 1.0773191989054437e-5 +birch_A 1.0773191989054437e-5 +birch_N 3.729715012475897e-6 +birch_V2 1.609865254278217e-5 +birch_rod_N 3.729715012475897e-6 +bird's_eye_A 2.1546383978108874e-5 +bird_N 3.729715012475897e-5 +bird_fancier_N 3.729715012475897e-6 +birdbath_N 3.729715012475897e-6 +birdcage_N 7.459430024951794e-6 +birdcall_N 3.729715012475897e-6 +birdhouse_N 3.729715012475897e-6 +birdie_N 3.729715012475897e-6 +birdlime_N 3.729715012475897e-6 +birdnesting_N 3.729715012475897e-6 +birdwatcher_N 3.729715012475897e-6 +birefringent_A 1.0773191989054437e-5 +biretta_N 3.729715012475897e-6 +birkenhead_PN 1.865462821325971e-5 +birling_N 3.729715012475897e-6 +biro_N 3.729715012475897e-6 +birr_N 3.729715012475897e-6 +birstall_PN 1.865462821325971e-5 +birth_N 5.967544019961435e-5 +birth_control_N 3.729715012475897e-6 +birthday_N 2.9837720099807175e-5 +birthmark_N 3.729715012475897e-6 +birthplace_N 1.118914503742769e-5 +birthrate_N 3.729715012475897e-6 +birthright_N 3.729715012475897e-6 +birthwort_N 3.729715012475897e-6 +birtley_PN 1.865462821325971e-5 +biryani_N 3.729715012475897e-6 +biscuit_N 1.118914503742769e-5 +bise_N 3.729715012475897e-6 +bisect_V2 1.609865254278217e-5 +bisection_N 3.729715012475897e-6 +bisectional_A 1.0773191989054437e-5 +biserrate_A 1.0773191989054437e-5 +bisexual_A 1.0773191989054437e-5 +bisexual_N 3.729715012475897e-6 +bisexuality_N 3.729715012475897e-6 +bishop's_cleeve_PN 1.865462821325971e-5 +bishop's_stortford_PN 1.865462821325971e-5 +bishop_N 1.8648575062379485e-5 +bishop_auckland_PN 1.865462821325971e-5 +bishopbriggs_PN 1.865462821325971e-5 +bishopric_N 3.729715012475897e-6 +bishopry_N 3.729715012475897e-6 +bismuth_N 3.729715012475897e-6 +bismuthal_A 1.0773191989054437e-5 +bismuthic_A 1.0773191989054437e-5 +bison_N 3.729715012475897e-6 +bisontine_A 1.0773191989054437e-5 +bisque_N 3.729715012475897e-6 +bister_N 3.729715012475897e-6 +bistered_A 1.0773191989054437e-5 +bistro_N 3.729715012475897e-6 +bistroic_A 1.0773191989054437e-5 +bit_N 2.275126157610297e-4 +bitartrate_N 3.729715012475897e-6 +bitch_N 7.459430024951794e-6 +bitch_V 2.2678822515534993e-5 +bitch_up_V2 1.609865254278217e-5 +bitchery_N 3.729715012475897e-6 +bitchy_A 2.1546383978108874e-5 +bite_N 1.8648575062379485e-5 +bite_V 9.071529006213997e-5 +bite_V2 9.659191525669301e-5 +biter_N 3.729715012475897e-6 +bitewing_N 3.729715012475897e-6 +biting_A 2.1546383978108874e-5 +bitmap_N 3.729715012475897e-6 +bitok_N 3.729715012475897e-6 +bitter_A 3.2319575967163313e-4 +bitter_N 3.729715012475897e-6 +bitter_sweet_A 1.0773191989054437e-5 +bittercress_N 3.729715012475897e-6 +bitterish_A 1.0773191989054437e-5 +bittern_N 3.729715012475897e-6 +bitterness_N 1.4918860049903587e-5 +bitternut_N 3.729715012475897e-6 +bitterroot_N 3.729715012475897e-6 +bitters_N 3.729715012475897e-6 +bittersweet_A 1.0773191989054437e-5 +bittersweet_N 3.729715012475897e-6 +bitthead_N 3.729715012475897e-6 +bitty_A 1.0773191989054437e-5 +bitumastic_N 3.729715012475897e-6 +bitumen_N 3.729715012475897e-6 +bituminoid_A 1.0773191989054437e-5 +bituminous_A 1.0773191989054437e-5 +bivalent_A 1.0773191989054437e-5 +bivalve_A 1.0773191989054437e-5 +bivalve_N 3.729715012475897e-6 +bivariate_A 1.0773191989054437e-5 +bivouac_N 3.729715012475897e-6 +bivouac_V 2.2678822515534993e-5 +biweekly_N 3.729715012475897e-6 +biz_N 1.118914503742769e-5 +bizarre_A 7.541234392338106e-5 +bizonal_A 1.0773191989054437e-5 +blab_V 4.5357645031069986e-5 +blab_V2 1.609865254278217e-5 +blabber_V 2.2678822515534993e-5 +blabber_V2 1.609865254278217e-5 +blabbermouth_N 3.729715012475897e-6 +blabbermouthed_A 1.0773191989054437e-5 +black_A 1.4974736864785667e-3 +black_N 2.5735033586083686e-4 +black_V2 3.219730508556434e-5 +black_beetle_N 3.729715012475897e-6 +black_lead_N 3.729715012475897e-6 +black_lead_V2 1.609865254278217e-5 +black_out_V 2.2678822515534993e-5 +blackamoor_N 3.729715012475897e-6 +blackball_V2 1.609865254278217e-5 +blackberry_N 3.729715012475897e-6 +blackbird_N 3.729715012475897e-6 +blackboard_N 7.459430024951794e-6 +blackbuck_N 3.729715012475897e-6 +blackburn_PN 1.865462821325971e-5 +blackcap_N 3.729715012475897e-6 +blackcock_N 3.729715012475897e-6 +blackcurrant_N 3.729715012475897e-6 +blacken_V 4.5357645031069986e-5 +blacken_V2 4.8295957628346505e-5 +blackening_N 3.729715012475897e-6 +blackface_N 3.729715012475897e-6 +blackfish_N 3.729715012475897e-6 +blackfly_N 3.729715012475897e-6 +blackguard_N 3.729715012475897e-6 +blackguard_V2 1.609865254278217e-5 +blackguardly_A 1.0773191989054437e-5 +blackhall_PN 1.865462821325971e-5 +blackhead_N 3.729715012475897e-6 +blackheart_N 3.729715012475897e-6 +blacking_N 3.729715012475897e-6 +blackish_A 1.0773191989054437e-5 +blackjack_N 3.729715012475897e-6 +blackleg_N 3.729715012475897e-6 +blackleg_V 2.2678822515534993e-5 +blackleg_V2 1.609865254278217e-5 +blacklist_N 3.729715012475897e-6 +blacklist_V2 1.609865254278217e-5 +blackmail_N 3.729715012475897e-6 +blackmail_V2 6.439461017112868e-5 +blackmailer_N 3.729715012475897e-6 +blackness_N 3.729715012475897e-6 +blackout_N 7.459430024951794e-6 +blackpoll_N 3.729715012475897e-6 +blackpool_PN 1.865462821325971e-5 +blackshirt_N 3.729715012475897e-6 +blacksmith_N 3.729715012475897e-6 +blacksnake_N 3.729715012475897e-6 +blackthorn_N 3.729715012475897e-6 +blacktop_N 3.729715012475897e-6 +blackwash_N 3.729715012475897e-6 +blackwater_A 1.0773191989054437e-5 +blackwater_N 3.729715012475897e-6 +blackwood_N 3.729715012475897e-6 +blackwood_PN 1.865462821325971e-5 +bladder_N 1.4918860049903587e-5 +bladderpod_N 3.729715012475897e-6 +bladderwort_N 3.729715012475897e-6 +bladderwrack_N 3.729715012475897e-6 +bladdery_A 1.0773191989054437e-5 +blade_N 1.118914503742769e-5 +bladed_A 1.0773191989054437e-5 +blae_A 1.0773191989054437e-5 +blaeberry_N 3.729715012475897e-6 +blaenau_ffestiniog_PN 1.865462821325971e-5 +blaenavon_PN 1.865462821325971e-5 +blaengwrach_PN 1.865462821325971e-5 +blah_N 3.729715012475897e-6 +blahs_N 3.729715012475897e-6 +blain_N 3.729715012475897e-6 +blaina_PN 1.865462821325971e-5 +blairgowrie_PN 1.865462821325971e-5 +blame_N 5.594572518713845e-5 +blame_V 3.401823377330249e-4 +blame_V2 1.046412415280841e-3 +blameless_A 1.0773191989054437e-5 +blamelessness_N 3.729715012475897e-6 +blameworthiness_N 3.729715012475897e-6 +blameworthy_A 1.0773191989054437e-5 +blanc_N 3.729715012475897e-6 +blanch_V 2.2678822515534993e-5 +blanch_V2 1.609865254278217e-5 +blancmange_N 3.729715012475897e-6 +bland_A 2.1546383978108874e-5 +blandishment_N 3.729715012475897e-6 +blandness_N 7.459430024951794e-6 +blank_A 1.0773191989054437e-4 +blank_N 7.459430024951794e-6 +blank_out_V 2.2678822515534993e-5 +blank_out_V2 1.609865254278217e-5 +blanket_N 3.356743511228307e-5 +blanket_V2 4.8295957628346505e-5 +blankness_N 3.729715012475897e-6 +blanquillo_N 3.729715012475897e-6 +blantyre_PN 1.865462821325971e-5 +blare_N 3.729715012475897e-6 +blare_V 4.5357645031069986e-5 +blare_V2 1.609865254278217e-5 +blare_out_V 2.2678822515534993e-5 +blarney_N 7.459430024951794e-6 +blase_A 1.0773191989054437e-5 +blaspheme_V 2.2678822515534993e-5 +blaspheme_V2 1.609865254278217e-5 +blasphemer_N 3.729715012475897e-6 +blasphemous_A 2.1546383978108874e-5 +blasphemy_N 3.729715012475897e-6 +blast_N 4.1026865137234865e-5 +blast_V 9.071529006213997e-5 +blast_V2 4.8295957628346505e-5 +blast_away_V 2.2678822515534993e-5 +blast_furnace_N 3.729715012475897e-6 +blast_off_N 3.729715012475897e-6 +blast_off_V 2.2678822515534993e-5 +blastema_N 3.729715012475897e-6 +blastemal_A 1.0773191989054437e-5 +blaster_N 3.729715012475897e-6 +blastocoel_N 3.729715012475897e-6 +blastocoelic_A 1.0773191989054437e-5 +blastocyst_N 3.729715012475897e-6 +blastocyte_N 3.729715012475897e-6 +blastoderm_N 3.729715012475897e-6 +blastodermatic_A 1.0773191989054437e-5 +blastoff_N 3.729715012475897e-6 +blastogenesis_N 3.729715012475897e-6 +blastogenetic_A 1.0773191989054437e-5 +blastoma_N 3.729715012475897e-6 +blastomere_N 3.729715012475897e-6 +blastomeric_A 1.0773191989054437e-5 +blastomycete_N 3.729715012475897e-6 +blastomycosis_N 3.729715012475897e-6 +blastomycotic_A 1.0773191989054437e-5 +blastoporal_A 1.0773191989054437e-5 +blastopore_N 3.729715012475897e-6 +blastospheric_A 1.0773191989054437e-5 +blastula_N 3.729715012475897e-6 +blatancy_N 3.729715012475897e-6 +blatant_A 3.231957596716331e-5 +blather_N 3.729715012475897e-6 +blather_V 2.2678822515534993e-5 +blaxploitation_N 3.729715012475897e-6 +blaze_N 7.459430024951794e-6 +blaze_V 9.071529006213997e-5 +blaze_V2 1.609865254278217e-5 +blaze_away_V 2.2678822515534993e-5 +blazer_N 3.729715012475897e-6 +blazon_N 3.729715012475897e-6 +blazon_V2 1.609865254278217e-5 +blazonry_N 3.729715012475897e-6 +bldg_PN 1.865462821325971e-5 +bldgs_PN 1.865462821325971e-5 +bleach_N 1.4918860049903587e-5 +bleach_V 2.2678822515534993e-5 +bleach_V2 3.219730508556434e-5 +bleacher_N 3.729715012475897e-6 +bleachers_N 3.729715012475897e-6 +bleaching_powder_N 3.729715012475897e-6 +bleak_A 1.2927830386865325e-4 +bleakness_N 3.729715012475897e-6 +bleary_A 1.0773191989054437e-5 +bleary_eyed_A 1.0773191989054437e-5 +bleat_N 3.729715012475897e-6 +bleat_V 2.2678822515534993e-5 +bleat_V2 1.609865254278217e-5 +blebbed_A 1.0773191989054437e-5 +blebby_A 1.0773191989054437e-5 +bleed_V 2.0410940263981494e-4 +bleed_V2 1.609865254278217e-5 +bleed_VS 1.1552012938254491e-4 +bleed_off_V 2.2678822515534993e-5 +bleeding_N 3.729715012475897e-6 +bleep_N 3.729715012475897e-6 +bleep_V 2.2678822515534993e-5 +blemish_N 1.118914503742769e-5 +blemish_V2 1.609865254278217e-5 +blench_V 2.2678822515534993e-5 +blend_N 2.237829007485538e-5 +blend_V 9.071529006213997e-5 +blend_V2 4.8295957628346505e-5 +blender_N 3.729715012475897e-6 +blenny_N 3.729715012475897e-6 +blepharism_N 3.729715012475897e-6 +blepharitis_N 3.729715012475897e-6 +blepharospasm_N 3.729715012475897e-6 +bless_V2 8.049326271391085e-5 +blessedly_Adv 8.668966832532898e-6 +blessedness_N 3.729715012475897e-6 +blessing_N 4.1026865137234865e-5 +bletchley_PN 1.865462821325971e-5 +blether_N 3.729715012475897e-6 +blether_V 2.2678822515534993e-5 +bletia_N 3.729715012475897e-6 +bleu_N 3.729715012475897e-6 +blewits_N 3.729715012475897e-6 +blidworth_PN 1.865462821325971e-5 +blight_N 3.729715012475897e-6 +blight_V2 3.219730508556434e-5 +blighter_N 3.729715012475897e-6 +blighty_N 3.729715012475897e-6 +blimp_N 3.729715012475897e-6 +blimpish_A 1.0773191989054437e-5 +blind_A 8.61855359124355e-5 +blind_N 7.459430024951794e-6 +blind_V2 1.609865254278217e-5 +blindfold_A 1.0773191989054437e-5 +blindfold_N 7.459430024951794e-6 +blindfold_V2 3.219730508556434e-5 +blindman's_buff_N 3.729715012475897e-6 +blindness_N 7.459430024951794e-6 +blindworm_N 3.729715012475897e-6 +bling_N 3.729715012475897e-6 +blini_N 3.729715012475897e-6 +blink_N 1.4918860049903587e-5 +blink_V 4.5357645031069986e-5 +blink_V2 3.219730508556434e-5 +blinker_N 3.729715012475897e-6 +blinks_N 3.729715012475897e-6 +blintz_N 3.729715012475897e-6 +blip_N 2.237829007485538e-5 +bliss_N 3.729715012475897e-6 +bliss_out_V 2.2678822515534993e-5 +blissful_A 1.0773191989054437e-5 +blister_N 3.729715012475897e-6 +blister_V 2.2678822515534993e-5 +blister_V2 1.609865254278217e-5 +blithe_A 3.231957596716331e-5 +blithering_A 1.0773191989054437e-5 +blithesome_A 1.0773191989054437e-5 +blitz_N 1.4918860049903587e-5 +blitz_V2 1.609865254278217e-5 +blizzard_N 3.729715012475897e-6 +bloat_N 3.729715012475897e-6 +bloated_A 8.61855359124355e-5 +bloater_N 3.729715012475897e-6 +blob_N 3.729715012475897e-6 +bloc_N 1.08161735361801e-4 +block_N 2.349720457859815e-4 +block_V2 1.432780076307613e-3 +block_in_V2 1.609865254278217e-5 +block_off_V2 1.609865254278217e-5 +block_out_V2 1.609865254278217e-5 +block_up_V2 1.609865254278217e-5 +blockade_N 1.4918860049903587e-5 +blockade_V2 1.609865254278217e-5 +blockade_runner_N 3.729715012475897e-6 +blockading_A 1.0773191989054437e-5 +blockage_N 3.729715012475897e-6 +blockbuster_N 2.237829007485538e-5 +blocker_N 3.729715012475897e-6 +blockhead_N 3.729715012475897e-6 +blockheaded_A 1.0773191989054437e-5 +blockhouse_N 3.729715012475897e-6 +blocking_N 3.729715012475897e-6 +blockish_A 1.0773191989054437e-5 +blogger_N 3.729715012475897e-6 +bloke_N 3.729715012475897e-6 +blolly_N 3.729715012475897e-6 +blonde_A 8.61855359124355e-5 +blonde_N 7.459430024951794e-6 +blood_N 1.6783717556141534e-4 +blood_V2 3.219730508556434e-5 +blood_bath_N 3.729715012475897e-6 +blood_donor_N 3.729715012475897e-6 +blood_group_N 3.729715012475897e-6 +blood_heat_N 3.729715012475897e-6 +blood_letting_N 3.729715012475897e-6 +blood_money_N 3.729715012475897e-6 +blood_poisoning_N 3.729715012475897e-6 +blood_pressure_N 3.729715012475897e-6 +blood_relation_N 3.729715012475897e-6 +blood_transfusion_N 3.729715012475897e-6 +blood_type_N 3.729715012475897e-6 +blood_vessel_N 3.729715012475897e-6 +bloodbath_N 3.729715012475897e-6 +bloodberry_N 3.729715012475897e-6 +bloodcurdling_A 1.0773191989054437e-5 +bloodguilt_N 3.729715012475897e-6 +bloodguilty_A 1.0773191989054437e-5 +bloodhound_N 3.729715012475897e-6 +bloodiness_N 3.729715012475897e-6 +bloodleaf_N 3.729715012475897e-6 +bloodless_A 1.0773191989054437e-5 +bloodletting_N 3.729715012475897e-6 +bloodlust_N 3.729715012475897e-6 +bloodmobile_N 3.729715012475897e-6 +bloodroot_N 3.729715012475897e-6 +bloodshed_N 3.729715012475897e-6 +bloodshot_A 1.0773191989054437e-5 +bloodstain_N 3.729715012475897e-6 +bloodstained_A 1.0773191989054437e-5 +bloodstock_N 3.729715012475897e-6 +bloodstone_N 3.729715012475897e-6 +bloodstream_N 3.729715012475897e-6 +bloodsucker_N 3.729715012475897e-6 +bloodsucking_A 1.0773191989054437e-5 +bloodthirstiness_N 3.729715012475897e-6 +bloodthirsty_A 1.0773191989054437e-5 +bloodworm_N 3.729715012475897e-6 +bloodwort_N 3.729715012475897e-6 +bloody_A 8.61855359124355e-5 +bloody_Adv 8.668966832532898e-6 +bloody_minded_A 2.1546383978108874e-5 +bloom_N 3.729715012475897e-6 +bloom_V 4.5357645031069986e-5 +bloomer_N 3.729715012475897e-6 +bloomers_N 3.729715012475897e-6 +blooming_N 3.729715012475897e-6 +blossom_N 7.459430024951794e-6 +blossom_V 6.803646754660499e-5 +blossoming_N 3.729715012475897e-6 +blot_N 3.729715012475897e-6 +blot_V2 4.8295957628346505e-5 +blot_out_V 2.2678822515534993e-5 +blotch_N 3.729715012475897e-6 +blotched_A 1.0773191989054437e-5 +blotchy_A 1.0773191989054437e-5 +blotter_N 3.729715012475897e-6 +blotting_paper_N 3.729715012475897e-6 +blotto_A 1.0773191989054437e-5 +blouse_N 3.729715012475897e-6 +blow_N 1.2308059541170458e-4 +blow_V 2.4946704767088494e-4 +blow_V2 4.8295957628346505e-5 +blow_away_V 2.2678822515534993e-5 +blow_away_V2 1.609865254278217e-5 +blow_down_V2 1.609865254278217e-5 +blow_dry_V2 1.609865254278217e-5 +blow_in_V 2.2678822515534993e-5 +blow_off_V 2.2678822515534993e-5 +blow_off_V2 1.609865254278217e-5 +blow_out_V2 1.609865254278217e-5 +blow_over_V 2.2678822515534993e-5 +blow_up_N 3.729715012475897e-6 +blow_up_V 2.2678822515534993e-5 +blow_up_V2 1.609865254278217e-5 +blowback_N 3.729715012475897e-6 +blower_N 3.729715012475897e-6 +blowfish_N 3.729715012475897e-6 +blowfly_N 3.729715012475897e-6 +blowgun_N 3.729715012475897e-6 +blowhole_N 3.729715012475897e-6 +blowing_N 3.729715012475897e-6 +blowing_up_N 3.729715012475897e-6 +blowlamp_N 3.729715012475897e-6 +blowout_N 3.729715012475897e-6 +blowpipe_N 3.729715012475897e-6 +blowsy_A 1.0773191989054437e-5 +blowtorch_N 7.459430024951794e-6 +blowtube_N 3.729715012475897e-6 +blowy_A 1.0773191989054437e-5 +blowzy_A 1.0773191989054437e-5 +blubber_N 3.729715012475897e-6 +blubber_V 2.2678822515534993e-5 +blubber_V2 1.609865254278217e-5 +blubberer_N 3.729715012475897e-6 +blubbery_A 1.0773191989054437e-5 +blucher_N 3.729715012475897e-6 +bludgeon_N 3.729715012475897e-6 +bludgeon_V2 4.8295957628346505e-5 +bludgeoner_N 3.729715012475897e-6 +blue_A 3.770617196169053e-4 +blue_N 3.729715012475897e-5 +blue_V2 1.609865254278217e-5 +blue_collar_A 8.61855359124355e-5 +blue_jacket_N 3.729715012475897e-6 +blue_pencil_V2 1.609865254278217e-5 +bluebell_N 3.729715012475897e-6 +blueberry_N 3.729715012475897e-6 +bluebird_N 3.729715012475897e-6 +bluebonnet_N 3.729715012475897e-6 +bluebottle_N 3.729715012475897e-6 +bluecoat_N 3.729715012475897e-6 +bluefin_N 3.729715012475897e-6 +bluefish_N 3.729715012475897e-6 +bluegill_N 3.729715012475897e-6 +bluegrass_N 3.729715012475897e-6 +bluehead_N 3.729715012475897e-6 +bluejacket_N 3.729715012475897e-6 +bluepoint_N 3.729715012475897e-6 +blueprint_N 3.356743511228307e-5 +blues_N 3.729715012475897e-6 +bluestem_N 3.729715012475897e-6 +bluestocking_N 3.729715012475897e-6 +bluestone_N 3.729715012475897e-6 +bluethroat_N 3.729715012475897e-6 +bluetick_N 3.729715012475897e-6 +bluetongue_N 3.729715012475897e-6 +blueweed_N 3.729715012475897e-6 +bluewing_N 3.729715012475897e-6 +bluff_A 1.0773191989054437e-5 +bluff_N 3.729715012475897e-6 +bluff_V 2.2678822515534993e-5 +bluff_V2 1.609865254278217e-5 +bluffer_N 3.729715012475897e-6 +bluffness_N 3.729715012475897e-6 +bluing_N 3.729715012475897e-6 +bluish_A 2.1546383978108874e-5 +blunder_N 1.4918860049903587e-5 +blunder_V 9.071529006213997e-5 +blunder_V2 1.609865254278217e-5 +blunderbuss_N 3.729715012475897e-6 +blunderer_N 3.729715012475897e-6 +blunt_A 6.463915193432663e-5 +blunt_V2 1.4488787288503951e-4 +bluntness_N 3.729715012475897e-6 +blur_N 3.729715012475897e-6 +blur_V 4.5357645031069986e-5 +blur_V2 6.439461017112868e-5 +blurb_N 3.729715012475897e-6 +blurt_V2 1.609865254278217e-5 +blurt_out_V2 3.219730508556434e-5 +blush_N 3.729715012475897e-6 +blush_V 2.2678822515534993e-5 +blushful_A 1.0773191989054437e-5 +bluster_N 3.729715012475897e-6 +bluster_V 2.2678822515534993e-5 +bluster_V2 1.609865254278217e-5 +blustery_A 1.0773191989054437e-5 +blvd_N 3.729715012475897e-6 +blyth_PN 1.865462821325971e-5 +bma_N 3.729715012475897e-6 +bmus_N 3.729715012475897e-6 +bo'ness_PN 1.865462821325971e-5 +bo'sn_N 3.729715012475897e-6 +bo'sun_N 3.729715012475897e-6 +boa_N 7.459430024951794e-6 +boa_constrictor_N 3.729715012475897e-6 +boar_N 3.729715012475897e-6 +board_N 1.480696859952931e-3 +board_V 2.2678822515534993e-5 +board_V2 4.8295957628346505e-5 +board_out_V2 1.609865254278217e-5 +board_up_V2 1.609865254278217e-5 +boarder_N 3.729715012475897e-6 +boarding_N 3.729715012475897e-6 +boarding_card_N 3.729715012475897e-6 +boarding_house_N 3.729715012475897e-6 +boarding_school_N 3.729715012475897e-6 +boardroom_N 2.237829007485538e-5 +boards_N 3.729715012475897e-6 +boardwalk_N 3.729715012475897e-6 +boarfish_N 3.729715012475897e-6 +boarhound_N 3.729715012475897e-6 +boast_N 1.118914503742769e-5 +boast_V 2.0410940263981494e-4 +boast_V2 1.1269056779947518e-4 +boast_VS 4.6208051753017965e-4 +boaster_N 3.729715012475897e-6 +boastful_A 1.0773191989054437e-5 +boastfulness_N 3.729715012475897e-6 +boat_N 6.340515521209024e-5 +boat_V 4.5357645031069986e-5 +boat_hook_N 3.729715012475897e-6 +boat_house_N 3.729715012475897e-6 +boat_race_N 3.729715012475897e-6 +boat_train_N 3.729715012475897e-6 +boatbill_N 3.729715012475897e-6 +boatbuilder_N 3.729715012475897e-6 +boater_N 7.459430024951794e-6 +boathouse_N 3.729715012475897e-6 +boating_N 3.729715012475897e-6 +boatload_N 3.729715012475897e-6 +boatman_N 3.729715012475897e-6 +boatmanship_N 3.729715012475897e-6 +boatswain_N 3.729715012475897e-6 +boatyard_N 3.729715012475897e-6 +bob_N 3.729715012475897e-6 +bob_PN 1.865462821325971e-5 +bob_V 2.2678822515534993e-5 +bob_V2 1.609865254278217e-5 +bobbin_N 3.729715012475897e-6 +bobble_N 3.729715012475897e-6 +bobby_N 3.729715012475897e-6 +bobby_PN 1.865462821325971e-5 +bobby_soxer_N 3.729715012475897e-6 +bobbysoxer_N 3.729715012475897e-6 +bobcat_N 3.729715012475897e-6 +bobolink_N 3.729715012475897e-6 +bobsled_N 3.729715012475897e-6 +bobsledding_N 3.729715012475897e-6 +bobsleigh_N 3.729715012475897e-6 +bobtail_A 1.0773191989054437e-5 +bobtail_N 3.729715012475897e-6 +bobwhite_N 3.729715012475897e-6 +bocce_N 3.729715012475897e-6 +bocconia_N 3.729715012475897e-6 +boche_A 1.0773191989054437e-5 +bochum_PN 1.865462821325971e-5 +bock_N 3.729715012475897e-6 +bodacious_A 1.0773191989054437e-5 +bode_V 1.1339411257767497e-4 +bode_V2 3.219730508556434e-5 +bodega_N 3.729715012475897e-6 +bodice_N 3.729715012475897e-6 +bodied_A 1.0773191989054437e-5 +bodiless_A 1.0773191989054437e-5 +bodily_A 1.0773191989054437e-5 +bodily_Adv 8.668966832532898e-6 +boding_N 3.729715012475897e-6 +bodkin_N 3.729715012475897e-6 +bodmin_PN 1.865462821325971e-5 +body_N 1.6037774553646355e-4 +body_servant_N 3.729715012475897e-6 +body_snatcher_N 3.729715012475897e-6 +bodybuilder_N 3.729715012475897e-6 +bodybuilding_N 3.729715012475897e-6 +bodyguard_N 3.729715012475897e-6 +bodywork_N 3.729715012475897e-6 +boer_A 1.0773191989054437e-5 +boer_N 3.729715012475897e-6 +boffin_N 3.729715012475897e-6 +boffo_A 1.0773191989054437e-5 +bog_N 3.729715012475897e-6 +bog_V 1.3607293509320997e-4 +bog_V2 1.609865254278217e-5 +bog_down_V 2.2678822515534993e-5 +bog_in_V 2.2678822515534993e-5 +bog_into_V2 1.609865254278217e-5 +bog_off_V 2.2678822515534993e-5 +bogey_N 3.729715012475897e-6 +bogeyman_N 3.729715012475897e-6 +boggle_V 2.2678822515534993e-5 +boggy_A 1.0773191989054437e-5 +bogie_N 3.729715012475897e-6 +bognor_PN 1.865462821325971e-5 +bognor_regis_PN 1.865462821325971e-5 +bogota_PN 1.865462821325971e-5 +bogus_A 5.3865959945272184e-5 +bogy_N 3.729715012475897e-6 +bohemia_N 3.729715012475897e-6 +bohemian_A 1.0773191989054437e-5 +bohemian_N 3.729715012475897e-6 +bohemianism_N 3.729715012475897e-6 +bohrium_N 3.729715012475897e-6 +boil_N 7.459430024951794e-6 +boil_V 9.071529006213997e-5 +boil_V2 1.609865254278217e-5 +boil_down_V2 1.609865254278217e-5 +boil_down_to_V2 1.609865254278217e-5 +boil_over_V 2.2678822515534993e-5 +boil_up_V 2.2678822515534993e-5 +boil_up_V2 1.609865254278217e-5 +boiler_N 6.713487022456614e-5 +boilerplate_N 3.729715012475897e-6 +boilersuit_N 3.729715012475897e-6 +boiling_Adv 8.668966832532898e-6 +boiling_N 3.729715012475897e-6 +boiling_point_N 3.729715012475897e-6 +boisterous_A 1.0773191989054437e-5 +boisterousness_N 3.729715012475897e-6 +bola_N 3.729715012475897e-6 +bold_A 2.1546383978108874e-4 +boldface_N 3.729715012475897e-6 +boldness_N 3.729715012475897e-6 +boldon_PN 1.865462821325971e-5 +bole_N 3.729715012475897e-6 +bolero_N 3.729715012475897e-6 +bolete_N 3.729715012475897e-6 +bolide_N 3.729715012475897e-6 +bolivar_N 3.729715012475897e-6 +bolivia_N 3.729715012475897e-6 +bolivia_PN 7.461851285303884e-5 +bolivian_A 1.0773191989054437e-5 +bolivian_N 3.729715012475897e-6 +boliviano_N 3.729715012475897e-6 +boll_N 3.729715012475897e-6 +bollard_N 3.729715012475897e-6 +bollington_PN 1.865462821325971e-5 +bollock_N 3.729715012475897e-6 +bollworm_N 3.729715012475897e-6 +bolo_N 3.729715012475897e-6 +bologna_N 3.729715012475897e-6 +bologna_PN 1.865462821325971e-5 +bologram_N 3.729715012475897e-6 +bolographic_A 1.0773191989054437e-5 +bolometer_N 3.729715012475897e-6 +bolometric_A 1.0773191989054437e-5 +boloney_N 3.729715012475897e-6 +bolshevik_N 3.729715012475897e-6 +bolshy_A 1.0773191989054437e-5 +bolsover_PN 1.865462821325971e-5 +bolster_N 3.729715012475897e-6 +bolster_V 9.071529006213997e-5 +bolster_V2 6.922420593396333e-4 +bolster_up_V2 1.609865254278217e-5 +bolt_Adv 8.668966832532898e-6 +bolt_N 1.8648575062379485e-5 +bolt_V 4.5357645031069986e-5 +bolt_V2 3.219730508556434e-5 +bolt_hole_N 3.729715012475897e-6 +bolti_N 3.729715012475897e-6 +bolton_PN 1.865462821325971e-5 +bolton_le_sands_PN 1.865462821325971e-5 +bolus_N 3.729715012475897e-6 +bolzano_PN 1.865462821325971e-5 +bomb_N 4.1026865137234865e-5 +bomb_V 1.1339411257767497e-4 +bomb_V2 6.439461017112868e-5 +bomb_proof_A 1.0773191989054437e-5 +bomb_sight_N 3.729715012475897e-6 +bomb_site_N 3.729715012475897e-6 +bombard_V2 8.049326271391085e-5 +bombardier_N 3.729715012475897e-6 +bombardment_N 7.459430024951794e-6 +bombardon_N 3.729715012475897e-6 +bombast_N 7.459430024951794e-6 +bombastic_A 1.0773191989054437e-5 +bombastically_Adv 8.668966832532898e-6 +bombay_PN 1.865462821325971e-5 +bombazine_N 3.729715012475897e-6 +bomber_N 3.729715012475897e-5 +bombie_N 3.729715012475897e-6 +bombing_N 3.729715012475897e-6 +bomblet_N 3.729715012475897e-6 +bombproof_A 1.0773191989054437e-5 +bombshell_N 1.8648575062379485e-5 +bombsight_N 3.729715012475897e-6 +bombycid_N 3.729715012475897e-6 +bon_mot_N 3.729715012475897e-6 +bona_fide_A 3.231957596716331e-5 +bona_fide_Adv 8.668966832532898e-6 +bonanza_N 1.8648575062379485e-5 +bonbon_N 3.729715012475897e-6 +bond_N 4.516684880108311e-3 +bond_V2 3.219730508556434e-5 +bond_holder_N 3.729715012475897e-6 +bondable_A 1.0773191989054437e-5 +bondage_N 3.729715012475897e-6 +bondholder_N 3.729715012475897e-6 +bonding_N 3.729715012475897e-6 +bondman_N 3.729715012475897e-6 +bondsman_N 3.729715012475897e-6 +bonduc_N 3.729715012475897e-6 +bondwoman_N 3.729715012475897e-6 +bone_A 1.0773191989054437e-5 +bone_N 4.1026865137234865e-5 +bone_V2 3.219730508556434e-5 +bone_dry_A 1.0773191989054437e-5 +bone_head_N 3.729715012475897e-6 +bone_idle_A 1.0773191989054437e-5 +bone_lazy_A 1.0773191989054437e-5 +bone_setter_N 3.729715012475897e-6 +bone_up_V 2.2678822515534993e-5 +bone_up_on_V2 1.609865254278217e-5 +bonefish_N 3.729715012475897e-6 +boneless_A 1.0773191989054437e-5 +bonelike_A 1.0773191989054437e-5 +bonemeal_N 3.729715012475897e-6 +boner_N 3.729715012475897e-6 +bones_N 3.729715012475897e-6 +boneset_N 3.729715012475897e-6 +bonesetter_N 3.729715012475897e-6 +boneshaker_N 3.729715012475897e-6 +bonfire_N 1.118914503742769e-5 +bong_N 3.729715012475897e-6 +bongo_N 3.729715012475897e-6 +bonheur_N 3.729715012475897e-6 +bonhomie_N 3.729715012475897e-6 +bonito_N 3.729715012475897e-6 +bonkers_A 1.0773191989054437e-5 +bonn_PN 1.865462821325971e-4 +bonnet_N 1.118914503742769e-5 +bonny_A 1.0773191989054437e-5 +bonnybridge_PN 1.865462821325971e-5 +bonnyrigg_PN 1.865462821325971e-5 +bonsai_N 3.729715012475897e-6 +bonus_N 1.7156689057389125e-4 +bony_A 1.0773191989054437e-5 +bonyness_N 3.729715012475897e-6 +bonzer_A 1.0773191989054437e-5 +boo_N 3.729715012475897e-6 +boo_V 2.2678822515534993e-5 +boo_V2 3.219730508556434e-5 +boob_N 3.729715012475897e-6 +boob_V 2.2678822515534993e-5 +booboisie_N 3.729715012475897e-6 +booby_N 3.729715012475897e-6 +booby_trap_N 3.729715012475897e-6 +boodle_N 3.729715012475897e-6 +booger_N 3.729715012475897e-6 +boogie_N 3.729715012475897e-6 +boogie_woogie_N 3.729715012475897e-6 +book_N 5.333492467840533e-4 +book_V2 1.4488787288503951e-4 +book_end_N 3.729715012475897e-6 +book_in_V2 1.609865254278217e-5 +book_into_V2 1.609865254278217e-5 +book_keeper_N 3.729715012475897e-6 +book_out_V 2.2678822515534993e-5 +book_up_V 2.2678822515534993e-5 +bookable_A 1.0773191989054437e-5 +bookbinder_N 3.729715012475897e-6 +bookbindery_N 3.729715012475897e-6 +bookbinding_N 3.729715012475897e-6 +bookcase_N 3.729715012475897e-6 +bookclub_N 3.729715012475897e-6 +bookdealer_N 3.729715012475897e-6 +bookend_N 3.729715012475897e-6 +booker_N 3.729715012475897e-6 +bookie_N 3.729715012475897e-6 +booking_N 3.729715012475897e-5 +bookish_A 1.0773191989054437e-5 +bookishness_N 3.729715012475897e-6 +bookkeeper_N 7.459430024951794e-6 +bookkeeping_N 1.118914503742769e-5 +booklet_N 2.9837720099807175e-5 +booklouse_N 3.729715012475897e-6 +bookmaker_N 3.729715012475897e-6 +bookmark_N 3.729715012475897e-6 +bookmarker_N 3.729715012475897e-6 +bookmobile_N 3.729715012475897e-6 +bookplate_N 3.729715012475897e-6 +bookseller_N 3.729715012475897e-6 +bookshelf_N 3.729715012475897e-6 +bookshop_N 3.729715012475897e-6 +bookstall_N 3.729715012475897e-6 +bookworm_N 3.729715012475897e-6 +boom_N 1.5664803052398767e-4 +boom_V 4.308976277951649e-4 +boom_V2 3.219730508556434e-5 +boomerang_N 3.729715012475897e-6 +boon_A 1.0773191989054437e-5 +boon_N 1.8648575062379485e-5 +boondoggle_N 3.729715012475897e-6 +boor_N 3.729715012475897e-6 +boorish_A 2.1546383978108874e-5 +boorishness_N 3.729715012475897e-6 +boost_N 1.8648575062379482e-4 +boost_V2 2.7528695848157507e-3 +booster_N 1.4918860049903587e-5 +boot_N 1.4918860049903587e-5 +boot_V2 1.609865254278217e-5 +boot_up_V2 1.609865254278217e-5 +bootblack_N 3.729715012475897e-6 +bootee_N 3.729715012475897e-6 +booth_N 2.9837720099807175e-5 +boothose_N 3.729715012475897e-6 +bootjack_N 3.729715012475897e-6 +bootlace_N 3.729715012475897e-6 +bootle_PN 1.865462821325971e-5 +bootleg_A 1.0773191989054437e-5 +bootleg_N 3.729715012475897e-6 +bootleg_V2 3.219730508556434e-5 +bootlegger_N 3.729715012475897e-6 +bootlegging_N 3.729715012475897e-6 +bootless_A 1.0773191989054437e-5 +bootlicking_A 1.0773191989054437e-5 +bootmaker_N 3.729715012475897e-6 +bootstrap_N 3.729715012475897e-6 +booty_N 3.729715012475897e-6 +booze_N 1.118914503742769e-5 +booze_V 4.5357645031069986e-5 +booze_up_N 3.729715012475897e-6 +boozer_N 3.729715012475897e-6 +boozy_A 1.0773191989054437e-5 +bop_N 3.729715012475897e-6 +bopeep_N 3.729715012475897e-6 +boracic_A 1.0773191989054437e-5 +borage_N 3.729715012475897e-6 +borate_N 3.729715012475897e-6 +borated_A 1.0773191989054437e-5 +borax_N 3.729715012475897e-6 +bordeaux_N 3.729715012475897e-6 +bordeaux_PN 1.865462821325971e-5 +bordelaise_N 3.729715012475897e-6 +border_N 1.08161735361801e-4 +border_V 6.803646754660499e-5 +border_V2 3.219730508556434e-5 +border_on_V2 1.609865254278217e-5 +borderer_N 3.729715012475897e-6 +borderland_N 3.729715012475897e-6 +borderline_A 1.0773191989054437e-5 +borderline_N 3.729715012475897e-6 +borders_PN 1.865462821325971e-5 +bordon_PN 1.865462821325971e-5 +bore_N 7.459430024951794e-6 +bore_V 2.0410940263981494e-4 +bore_V2 3.219730508556434e-5 +bore_hole_N 3.729715012475897e-6 +boreal_A 1.0773191989054437e-5 +boredom_N 1.118914503742769e-5 +borer_N 7.459430024951794e-6 +boric_A 1.0773191989054437e-5 +boring_A 8.61855359124355e-5 +boring_N 3.729715012475897e-6 +boringness_N 3.729715012475897e-6 +boris_PN 1.865462821325971e-5 +bornite_N 3.729715012475897e-6 +boron_N 3.729715012475897e-6 +boronic_A 1.0773191989054437e-5 +borosilicate_N 3.729715012475897e-6 +borough_N 5.2216010174662554e-5 +borrelia_N 3.729715012475897e-6 +borrow_V 1.3607293509320995e-3 +borrow_V2 5.795514915401581e-4 +borrow_VV 4.8049202383240437e-4 +borrower_N 7.459430024951794e-5 +borrowing_N 3.729715012475897e-6 +borsch_N 3.729715012475897e-6 +borstal_N 3.729715012475897e-6 +bortsch_N 3.729715012475897e-6 +borzoi_N 3.729715012475897e-6 +bosc_N 3.729715012475897e-6 +bosh_N 3.729715012475897e-6 +bosk_N 3.729715012475897e-6 +boskopoid_A 1.0773191989054437e-5 +bosky_A 1.0773191989054437e-5 +bosom_N 7.459430024951794e-6 +bosomed_A 1.0773191989054437e-5 +bosomy_A 1.0773191989054437e-5 +boson_N 3.729715012475897e-6 +boss_A 1.0773191989054437e-5 +boss_N 1.0070230533684921e-4 +boss_V2 1.609865254278217e-5 +boss_about_V2 1.609865254278217e-5 +boss_around_V2 1.609865254278217e-5 +boss_eyed_A 1.0773191989054437e-5 +bossism_N 3.729715012475897e-6 +bossy_A 1.0773191989054437e-5 +boston_PN 8.021490131701675e-4 +bot_N 3.729715012475897e-6 +bota_N 3.729715012475897e-6 +botanic_A 1.0773191989054437e-5 +botanical_A 2.1546383978108874e-5 +botanical_N 3.729715012475897e-6 +botanist_N 3.729715012475897e-6 +botanize_V 2.2678822515534993e-5 +botany_N 7.459430024951794e-6 +botch_N 3.729715012475897e-6 +botch_V2 4.8295957628346505e-5 +botch_up_V2 1.609865254278217e-5 +botcher_N 3.729715012475897e-6 +botchy_A 1.0773191989054437e-5 +botfly_N 3.729715012475897e-6 +both7and_DConj 8.809514275417451e-4 +both_Adv 8.668966832532898e-6 +both_Det 3.4826476236847087e-3 +bother_N 3.729715012475897e-6 +bother_V 2.0410940263981494e-4 +bother_V2 1.2878922034225736e-4 +bother_V2V 4.675081813931744e-4 +bother_VV 1.9219680953296174e-4 +bothersome_A 2.1546383978108874e-5 +botonee_A 1.0773191989054437e-5 +botryoid_A 1.0773191989054437e-5 +botswana_PN 1.865462821325971e-5 +bottle_N 9.697259032437332e-5 +bottle_V2 1.7708517797060386e-4 +bottle_away_V 2.2678822515534993e-5 +bottle_fed_A 1.0773191989054437e-5 +bottle_green_A 1.0773191989054437e-5 +bottle_out_V 2.2678822515534993e-5 +bottle_up_V2 1.609865254278217e-5 +bottlebrush_N 3.729715012475897e-6 +bottlecap_N 3.729715012475897e-6 +bottleneck_N 1.118914503742769e-5 +bottler_N 3.729715012475897e-6 +bottom_A 1.0773191989054437e-5 +bottom_N 1.268103104241805e-4 +bottom_V 1.3607293509320997e-4 +bottom_out_V 4.5357645031069986e-5 +bottomed_A 1.0773191989054437e-5 +bottomland_N 3.729715012475897e-6 +bottomless_A 3.231957596716331e-5 +bottomlessness_N 3.729715012475897e-6 +bottommost_A 1.0773191989054437e-5 +bottrop_PN 1.865462821325971e-5 +botuliform_A 1.0773191989054437e-5 +botulin_N 3.729715012475897e-6 +botulinal_A 1.0773191989054437e-5 +botulinus_N 3.729715012475897e-6 +botulism_N 3.729715012475897e-6 +boucle_N 3.729715012475897e-6 +boudoir_N 3.729715012475897e-6 +bouffant_A 1.0773191989054437e-5 +bouffant_N 3.729715012475897e-6 +bougainvillea_N 3.729715012475897e-6 +bough_N 3.729715012475897e-6 +boughed_A 1.0773191989054437e-5 +boughless_A 1.0773191989054437e-5 +boughten_A 1.0773191989054437e-5 +bouillabaisse_N 3.729715012475897e-6 +bouillon_N 3.729715012475897e-6 +boulder_N 3.729715012475897e-6 +boulevard_N 1.118914503742769e-5 +boulevardier_N 3.729715012475897e-6 +boulle_N 3.729715012475897e-6 +bounce_N 1.8648575062379485e-5 +bounce_V 5.216129178573049e-4 +bounce_V2 6.439461017112868e-5 +bounce_back_V 2.2678822515534993e-5 +bounce_into_V2 1.609865254278217e-5 +bounce_off_V2 1.609865254278217e-5 +bouncer_N 3.729715012475897e-6 +bouncy_A 1.0773191989054437e-5 +bound_N 7.459430024951794e-6 +bound_V 6.803646754660499e-5 +bound_V2 1.609865254278217e-5 +bound_V2V 4.675081813931744e-4 +boundary_N 2.6108005087331277e-5 +bounden_A 1.0773191989054437e-5 +bounder_N 3.729715012475897e-6 +boundless_A 1.0773191989054437e-5 +bounteous_A 1.0773191989054437e-5 +bountied_A 1.0773191989054437e-5 +bountiful_A 1.0773191989054437e-5 +bounty_N 7.459430024951794e-6 +bouquet_N 3.729715012475897e-6 +bourbon_N 6.713487022456614e-5 +bourgeois_A 1.0773191989054437e-5 +bourgeois_N 3.729715012475897e-6 +bourgeoisie_N 3.729715012475897e-6 +bourguignon_N 3.729715012475897e-6 +bourn_N 3.729715012475897e-6 +bourne_N 3.729715012475897e-6 +bourne_PN 1.865462821325971e-5 +bournemouth_PN 1.865462821325971e-5 +bourse_N 7.459430024951794e-6 +bourtree_N 3.729715012475897e-6 +boustrophedon_N 3.729715012475897e-6 +boustrophedonic_A 1.0773191989054437e-5 +bout_N 3.356743511228307e-5 +boutique_N 2.6108005087331277e-5 +boutonniere_N 3.729715012475897e-6 +bovid_N 3.729715012475897e-6 +bovine_A 3.231957596716331e-5 +bovine_N 3.729715012475897e-6 +bovril_N 3.729715012475897e-6 +bow_N 7.459430024951794e-6 +bow_V 2.7214587018641994e-4 +bow_V2 1.609865254278217e-5 +bow_wow_N 3.729715012475897e-6 +bowburn_PN 1.865462821325971e-5 +bowdlerization_N 3.729715012475897e-6 +bowdlerize_V2 1.609865254278217e-5 +bowel_N 7.459430024951794e-6 +bowels_N 3.729715012475897e-6 +bower_N 3.729715012475897e-6 +bowerbird_N 3.729715012475897e-6 +bowery_A 1.0773191989054437e-5 +bowfin_N 3.729715012475897e-6 +bowfront_A 1.0773191989054437e-5 +bowhead_N 3.729715012475897e-6 +bowie_knife_N 3.729715012475897e-6 +bowing_N 3.729715012475897e-6 +bowl_N 1.8648575062379485e-5 +bowl_V 3.401823377330249e-4 +bowl_V2 1.609865254278217e-5 +bowl_out_V2 1.609865254278217e-5 +bowl_over_V2 1.609865254278217e-5 +bowleg_N 3.729715012475897e-6 +bowler_N 3.729715012475897e-6 +bowline_N 3.729715012475897e-6 +bowling_N 3.729715012475897e-6 +bowling_green_N 3.729715012475897e-6 +bowls_N 3.729715012475897e-6 +bowman_N 3.729715012475897e-6 +bowsprit_N 3.729715012475897e-6 +bowstring_N 3.729715012475897e-6 +box_N 1.268103104241805e-4 +box_V 2.2678822515534993e-5 +box_V2 1.609865254278217e-5 +box_in_V2 1.609865254278217e-5 +box_kite_N 3.729715012475897e-6 +box_number_N 3.729715012475897e-6 +box_office_N 3.729715012475897e-6 +box_up_V2 1.609865254278217e-5 +boxcar_N 3.729715012475897e-6 +boxcars_N 3.729715012475897e-6 +boxer_N 7.459430024951794e-6 +boxfish_N 3.729715012475897e-6 +boxful_N 3.729715012475897e-6 +boxing_N 3.729715012475897e-6 +boxing_day_N 3.729715012475897e-6 +boxing_day_PN 1.865462821325971e-5 +boxing_glove_N 3.729715012475897e-6 +boxing_match_N 3.729715012475897e-6 +boxlike_A 1.0773191989054437e-5 +boxwood_N 3.729715012475897e-6 +boy_N 9.697259032437332e-5 +boycott_N 1.118914503742769e-5 +boycott_V2 3.219730508556434e-5 +boyfriend_N 7.459430024951794e-6 +boyhood_N 3.729715012475897e-6 +boyish_A 2.1546383978108874e-5 +boyishness_N 3.729715012475897e-6 +boysenberry_N 3.729715012475897e-6 +boza_N 3.729715012475897e-6 +bra_N 1.8648575062379485e-5 +brace_N 3.729715012475897e-6 +brace_V 2.2678822515534994e-4 +brace_V2 6.439461017112868e-5 +brace_up_V 2.2678822515534993e-5 +bracelet_N 3.729715012475897e-6 +bracer_N 3.729715012475897e-6 +bracero_N 3.729715012475897e-6 +brachial_A 1.0773191989054437e-5 +brachiate_A 1.0773191989054437e-5 +brachiation_N 3.729715012475897e-6 +brachiopod_A 1.0773191989054437e-5 +brachiopod_N 3.729715012475897e-6 +brachium_N 3.729715012475897e-6 +brachycephalic_A 1.0773191989054437e-5 +brachycephalic_N 3.729715012475897e-6 +brachycephaly_N 3.729715012475897e-6 +brachydactylic_A 1.0773191989054437e-5 +brachydactyly_N 3.729715012475897e-6 +brachypterous_A 1.0773191989054437e-5 +brachyuran_N 3.729715012475897e-6 +brachyurous_A 1.0773191989054437e-5 +bracken_N 3.729715012475897e-6 +bracket_N 2.237829007485538e-5 +bracket_V2 1.609865254278217e-5 +brackish_A 1.0773191989054437e-5 +brackishness_N 3.729715012475897e-6 +bracknell_PN 1.865462821325971e-5 +bract_N 3.729715012475897e-6 +bracteal_A 1.0773191989054437e-5 +bracteate_A 1.0773191989054437e-5 +bracteolate_A 1.0773191989054437e-5 +bracteole_N 3.729715012475897e-6 +brad_N 3.729715012475897e-6 +bradawl_N 3.729715012475897e-6 +bradford_PN 1.865462821325971e-5 +bradford_on_avon_PN 1.865462821325971e-5 +bradycardia_N 3.729715012475897e-6 +brae_N 3.729715012475897e-6 +brag_N 3.729715012475897e-6 +brag_V 4.5357645031069986e-5 +braggadocio_N 3.729715012475897e-6 +braggart_N 3.729715012475897e-6 +bragger_N 3.729715012475897e-6 +bragging_N 7.459430024951794e-6 +brahman_N 3.729715012475897e-6 +brahmin_N 3.729715012475897e-6 +brahminic_A 1.0773191989054437e-5 +braid_N 7.459430024951794e-6 +braid_V2 1.609865254278217e-5 +brail_N 3.729715012475897e-6 +braille_N 3.729715012475897e-6 +brain_N 1.4172917047408407e-4 +brain_V2 1.609865254278217e-5 +brain_fag_N 3.729715012475897e-6 +brain_teaser_N 3.729715012475897e-6 +brainchild_N 1.4918860049903587e-5 +brainless_A 1.0773191989054437e-5 +brainsick_A 1.0773191989054437e-5 +brainstem_N 3.729715012475897e-6 +brainstorm_N 3.729715012475897e-6 +brainstorming_N 3.729715012475897e-6 +braintree_PN 1.865462821325971e-5 +brainwash_V2 1.609865254278217e-5 +brainwashing_N 3.729715012475897e-6 +brainwave_N 3.729715012475897e-6 +brainworker_N 3.729715012475897e-6 +brainy_A 1.0773191989054437e-5 +braise_V2 1.609865254278217e-5 +braising_N 3.729715012475897e-6 +brake_N 2.9837720099807175e-5 +brake_V 4.5357645031069986e-5 +brake_V2 1.609865254278217e-5 +brakeman_N 3.729715012475897e-6 +braky_A 1.0773191989054437e-5 +bramble_N 3.729715012475897e-6 +brambling_N 3.729715012475897e-6 +bran_N 2.9837720099807175e-5 +bran_new_A 1.0773191989054437e-5 +branch_N 3.543229261852102e-4 +branch_V 1.3607293509320997e-4 +branch_out_V 2.2678822515534993e-5 +branched_A 1.0773191989054437e-5 +branchial_A 1.0773191989054437e-5 +branchiate_A 1.0773191989054437e-5 +branching_N 3.729715012475897e-6 +branchiopod_A 1.0773191989054437e-5 +branchless_A 1.0773191989054437e-5 +branchlet_N 3.729715012475897e-6 +branchy_A 1.0773191989054437e-5 +brand_N 5.78105826933764e-4 +brand_V2 3.219730508556434e-5 +brand_new_A 1.0773191989054437e-5 +branderburgh_PN 1.865462821325971e-5 +branding_iron_N 3.729715012475897e-6 +brandish_V2 4.8295957628346505e-5 +brandy_N 1.4918860049903587e-5 +brandy_ball_N 3.729715012475897e-6 +brandy_snap_N 3.729715012475897e-6 +brandyball_N 3.729715012475897e-6 +brandysnap_N 3.729715012475897e-6 +brant_N 3.729715012475897e-6 +brash_A 3.231957596716331e-5 +brashness_N 3.729715012475897e-6 +brasilia_PN 1.865462821325971e-5 +brass_N 1.4918860049903587e-5 +brassard_N 3.729715012475897e-6 +brassavola_N 3.729715012475897e-6 +brassbound_A 1.0773191989054437e-5 +brasserie_N 3.729715012475897e-6 +brassie_N 3.729715012475897e-6 +brassiere_1_N 7.459430024951794e-6 +brassiere_2_N 3.729715012475897e-6 +brassiere_N 3.729715012475897e-6 +brassy_A 1.0773191989054437e-5 +brat_N 1.4918860049903587e-5 +bratislava_PN 1.865462821325971e-5 +brattice_N 3.729715012475897e-6 +bratty_A 1.0773191989054437e-5 +bratwurst_N 3.729715012475897e-6 +braunschweig_PN 1.865462821325971e-5 +braunton_PN 1.865462821325971e-5 +bravado_N 3.729715012475897e-6 +brave_A 6.463915193432663e-5 +brave_N 3.729715012475897e-6 +brave_V2 6.439461017112868e-5 +bravery_N 3.729715012475897e-6 +bravo_N 3.729715012475897e-6 +bravura_N 3.729715012475897e-6 +brawl_N 2.237829007485538e-5 +brawl_V 2.2678822515534993e-5 +brawler_N 3.729715012475897e-6 +brawn_N 3.729715012475897e-6 +brawny_A 2.1546383978108874e-5 +bray_N 3.729715012475897e-6 +bray_V2 1.609865254278217e-5 +braze_V2 1.609865254278217e-5 +brazen_A 1.0773191989054437e-5 +brazen_V2 3.219730508556434e-5 +brazen_faced_A 1.0773191989054437e-5 +brazier_N 3.729715012475897e-6 +brazil_PN 7.088758721038689e-4 +brazilian_A 1.9391745580297985e-4 +brazilian_N 7.459430024951794e-6 +brazilwood_N 3.729715012475897e-6 +breach_N 4.475658014971076e-5 +breach_V2 1.2878922034225736e-4 +bread_N 3.729715012475897e-5 +breadbasket_N 3.729715012475897e-6 +breadboard_N 3.729715012475897e-6 +breadcrumb_N 3.729715012475897e-6 +breadfruit_N 3.729715012475897e-6 +breadline_N 3.729715012475897e-6 +breadroot_N 3.729715012475897e-6 +breadstick_N 3.729715012475897e-6 +breadstuff_N 3.729715012475897e-6 +breadth_N 2.237829007485538e-5 +breadthways_Adv 8.668966832532898e-6 +breadthwise_Adv 8.668966832532898e-6 +breadwinner_N 3.729715012475897e-6 +break_N 1.1562116538675279e-4 +break_V 2.1318093164602895e-3 +break_V2 1.0142151101952767e-3 +break_apart_V 2.2678822515534993e-5 +break_away_V 2.2678822515534993e-5 +break_down_V 2.2678822515534993e-5 +break_down_V2 1.609865254278217e-5 +break_in_N 3.729715012475897e-6 +break_in_V 2.2678822515534993e-5 +break_in_V2 1.609865254278217e-5 +break_in_on_V2 1.609865254278217e-5 +break_into_V2 1.609865254278217e-5 +break_off_V2 1.609865254278217e-5 +break_out_V 2.2678822515534993e-5 +break_out_V2 1.609865254278217e-5 +break_out_in_V2 1.609865254278217e-5 +break_out_of_V2 1.609865254278217e-5 +break_through_V2 1.609865254278217e-5 +break_up_N 3.729715012475897e-6 +break_up_V 2.2678822515534993e-5 +break_up_V2 1.609865254278217e-5 +breakable_A 1.0773191989054437e-5 +breakable_N 3.729715012475897e-6 +breakableness_N 3.729715012475897e-6 +breakage_N 7.459430024951794e-6 +breakaway_A 1.0773191989054437e-5 +breakaway_N 3.729715012475897e-6 +breakaways_N 3.729715012475897e-6 +breakax_N 3.729715012475897e-6 +breakdown_N 6.713487022456614e-5 +breaker_N 1.6410746054893946e-4 +breakfast_N 4.475658014971076e-5 +breakfast_V 2.2678822515534993e-5 +breakneck_A 1.0773191989054437e-5 +breakthrough_N 2.9837720099807175e-5 +breakwater_N 3.729715012475897e-6 +bream_N 3.729715012475897e-6 +breast_N 2.6108005087331277e-5 +breast_V2 1.609865254278217e-5 +breast_deep_Adv 8.668966832532898e-6 +breast_fed_A 1.0773191989054437e-5 +breast_high_Adv 8.668966832532898e-6 +breast_plate_N 3.729715012475897e-6 +breastfeed_V 2.2678822515534993e-5 +breastfeed_V2 1.609865254278217e-5 +breastless_A 1.0773191989054437e-5 +breaston_PN 1.865462821325971e-5 +breastplate_N 3.729715012475897e-6 +breaststroke_N 3.729715012475897e-6 +breaststroker_N 3.729715012475897e-6 +breastwork_N 3.729715012475897e-6 +breath_N 3.356743511228307e-5 +breathalyser_N 3.729715012475897e-6 +breathalyzer_N 3.729715012475897e-6 +breathe_V 1.8143058012427994e-4 +breathe_V2 4.8295957628346505e-5 +breather_N 1.118914503742769e-5 +breathing_N 1.4918860049903587e-5 +breathing_space_N 3.729715012475897e-6 +breathless_A 2.1546383978108874e-5 +breathtaking_A 5.3865959945272184e-5 +breccia_N 3.729715012475897e-6 +brecknock_PN 1.865462821325971e-5 +breda_PN 1.865462821325971e-5 +breech_N 3.729715012475897e-6 +breech_block_N 3.729715012475897e-6 +breechblock_N 3.729715012475897e-6 +breechcloth_N 3.729715012475897e-6 +breeched_A 1.0773191989054437e-5 +breeches_N 3.729715012475897e-6 +breeches_buoy_N 3.729715012475897e-6 +breechloader_N 3.729715012475897e-6 +breed_N 3.356743511228307e-5 +breed_V 1.5875175760874494e-4 +breed_V2 1.1269056779947518e-4 +breeder_N 2.237829007485538e-5 +breeding_N 1.8648575062379485e-5 +breedsall_PN 1.865462821325971e-5 +breeze_N 1.118914503742769e-5 +breeze_V 2.2678822515534993e-5 +breeze_along_V 2.2678822515534993e-5 +breeze_in_V 2.2678822515534993e-5 +breeze_into_V2 1.609865254278217e-5 +breeze_through_V2 1.609865254278217e-5 +breeziness_N 3.729715012475897e-6 +breezy_A 4.309276795621775e-5 +bregma_N 3.729715012475897e-6 +bregmatic_A 1.0773191989054437e-5 +bremen_PN 3.730925642651942e-5 +bremerhaven_PN 1.865462821325971e-5 +bren_N 3.729715012475897e-6 +bren_gun_N 3.729715012475897e-6 +brenda_PN 1.865462821325971e-5 +brent_PN 1.865462821325971e-5 +brentwood_PN 1.865462821325971e-5 +brescia_PN 1.865462821325971e-5 +brest_PN 1.865462821325971e-5 +brethren_N 3.729715012475897e-6 +breve_N 3.729715012475897e-6 +brevet_N 3.729715012475897e-6 +breviary_N 3.729715012475897e-6 +brevity_N 3.729715012475897e-6 +brew_N 1.118914503742769e-5 +brew_V 5.896493854039099e-4 +brew_V2 4.8295957628346505e-5 +brewer_N 3.356743511228307e-5 +brewery_N 2.237829007485538e-5 +brewing_N 3.729715012475897e-6 +brewpub_N 3.729715012475897e-6 +brian_PN 1.865462821325971e-5 +briar_N 3.729715012475897e-6 +briard_N 3.729715012475897e-6 +briarroot_N 3.729715012475897e-6 +briarwood_N 3.729715012475897e-6 +bribable_A 1.0773191989054437e-5 +bribe_N 5.2216010174662554e-5 +bribe_V 1.8143058012427994e-4 +bribe_V2 9.659191525669301e-5 +briber_N 3.729715012475897e-6 +bribery_N 3.729715012475897e-5 +bric_a_brac_N 3.729715012475897e-6 +brick_N 7.086458523704203e-5 +brick_V2 1.609865254278217e-5 +brick_field_N 3.729715012475897e-6 +brick_in_V2 1.609865254278217e-5 +brick_up_V2 1.609865254278217e-5 +brickbat_N 3.729715012475897e-6 +bricket_wood_PN 1.865462821325971e-5 +brickkiln_N 3.729715012475897e-6 +bricklayer_N 3.729715012475897e-6 +bricklaying_N 3.729715012475897e-6 +brickwork_N 3.729715012475897e-6 +brickyard_N 3.729715012475897e-6 +bridal_A 1.0773191989054437e-5 +bridal_N 3.729715012475897e-6 +bride_N 7.459430024951794e-6 +bridecake_N 3.729715012475897e-6 +bridegroom_N 3.729715012475897e-6 +bridesmaid_N 3.729715012475897e-6 +bridge_N 1.9021546563627073e-4 +bridge_V2 6.439461017112868e-5 +bridgeable_A 1.0773191989054437e-5 +bridgehead_N 3.729715012475897e-6 +bridgend_PN 1.865462821325971e-5 +bridget_PN 1.865462821325971e-5 +bridgnorth_PN 1.865462821325971e-5 +bridgwater_PN 1.865462821325971e-5 +bridle_N 3.729715012475897e-6 +bridle_V 2.2678822515534993e-5 +bridle_V2 1.609865254278217e-5 +bridle_path_N 3.729715012475897e-6 +bridle_road_N 3.729715012475897e-6 +bridlington_PN 1.865462821325971e-5 +bridoon_N 3.729715012475897e-6 +bridport_PN 1.865462821325971e-5 +brief_A 3.6628852762785085e-4 +brief_N 7.459430024951794e-5 +brief_V2 8.049326271391085e-5 +briefcase_N 2.237829007485538e-5 +briefing_N 3.729715012475897e-5 +briefless_A 1.0773191989054437e-5 +briefness_N 3.729715012475897e-6 +brier_N 3.729715012475897e-6 +brig_N 3.729715012475897e-6 +brig_PN 1.865462821325971e-5 +brigade_N 2.237829007485538e-5 +brigadier_N 3.729715012475897e-6 +brigand_N 3.729715012475897e-6 +brigandine_N 3.729715012475897e-6 +brigantine_N 3.729715012475897e-6 +brighouse_PN 1.865462821325971e-5 +bright_A 2.8010299171541536e-4 +bright_Adv 8.668966832532898e-6 +brighten_V 2.2678822515534993e-5 +brighten_V2 6.439461017112868e-5 +brighten_up_V 2.2678822515534993e-5 +brighten_up_V2 1.609865254278217e-5 +brightlingsea_PN 1.865462821325971e-5 +brightness_N 3.729715012475897e-6 +brighton_PN 1.865462821325971e-5 +brill_N 3.729715012475897e-6 +brilliance_N 3.729715012475897e-6 +brilliancy_N 3.729715012475897e-6 +brilliant_A 1.0773191989054437e-4 +brilliantine_N 3.729715012475897e-6 +brim_N 7.459430024951794e-6 +brim_V 4.5357645031069986e-5 +brimful_A 1.0773191989054437e-5 +brimfull_A 1.0773191989054437e-5 +brimless_A 1.0773191989054437e-5 +brimstone_N 7.459430024951794e-6 +brindled_A 1.0773191989054437e-5 +brine_N 7.459430024951794e-6 +bring_V2 4.282241576380057e-3 +bring_V2V 9.350163627863488e-4 +bring_V3 4.761904761904762e-3 +bring_about_V2 3.219730508556434e-5 +bring_along_V2 1.609865254278217e-5 +bring_around_V2 1.609865254278217e-5 +bring_away_V2 1.609865254278217e-5 +bring_back_V2 1.609865254278217e-5 +bring_down_V2 3.219730508556434e-5 +bring_forth_V 2.2678822515534993e-5 +bring_forth_V2 1.609865254278217e-5 +bring_forward_V2 1.609865254278217e-5 +bring_in_V2 3.219730508556434e-5 +bring_off_V2 1.609865254278217e-5 +bring_on_V2 1.609865254278217e-5 +bring_out_V2 1.609865254278217e-5 +bring_out_in_V3 1.5873015873015873e-3 +bring_over_V2 1.609865254278217e-5 +bring_round_V2 1.609865254278217e-5 +bring_to_V2 1.609865254278217e-5 +bring_up_V2 1.609865254278217e-5 +brininess_N 3.729715012475897e-6 +brink_N 1.8648575062379485e-5 +brinkmanship_N 3.729715012475897e-6 +briny_A 1.0773191989054437e-5 +brioche_N 3.729715012475897e-6 +briquet_N 3.729715012475897e-6 +briquette_N 3.729715012475897e-6 +brisance_N 3.729715012475897e-6 +brisant_A 1.0773191989054437e-5 +brisbane_PN 1.865462821325971e-5 +brisk_A 1.72371071824871e-4 +brisket_N 3.729715012475897e-6 +brisling_N 3.729715012475897e-6 +bristle_N 3.729715012475897e-6 +bristle_V 6.803646754660499e-5 +bristlegrass_N 3.729715012475897e-6 +bristlelike_A 1.0773191989054437e-5 +bristletail_N 3.729715012475897e-6 +bristly_A 1.0773191989054437e-5 +bristol_PN 1.865462821325971e-5 +brit_N 3.729715012475897e-6 +britain_PN 2.760884975562437e-3 +britannic_A 1.0773191989054437e-5 +britches_N 3.729715012475897e-6 +british_A 3.878349116059597e-4 +britisher_N 3.729715012475897e-6 +briton_A 1.0773191989054437e-5 +briton_N 3.729715012475897e-6 +brittle_A 2.1546383978108874e-5 +brittle_N 3.729715012475897e-6 +brittlebush_N 3.729715012475897e-6 +brittleness_N 3.729715012475897e-6 +brixham_PN 1.865462821325971e-5 +brno_PN 1.865462821325971e-5 +broach_V 2.2678822515534993e-5 +broach_V2 1.609865254278217e-5 +broad_A 1.3681953826099136e-3 +broad_N 3.729715012475897e-6 +broad_minded_A 1.0773191989054437e-5 +broad_mindedness_N 3.729715012475897e-6 +broadax_N 3.729715012475897e-6 +broadband_A 1.0773191989054437e-5 +broadbill_N 3.729715012475897e-6 +broadcast_Adv 8.668966832532898e-6 +broadcast_N 1.08161735361801e-4 +broadcast_V 2.0410940263981494e-4 +broadcast_V2 1.1269056779947518e-4 +broadcaster_N 3.729715012475897e-6 +broadcasting_N 6.713487022456614e-5 +broadcloth_N 3.729715012475897e-6 +broaden_V 1.3607293509320997e-4 +broaden_V2 1.7708517797060386e-4 +broadening_N 3.729715012475897e-6 +broadleaf_A 1.0773191989054437e-5 +broadloom_A 1.0773191989054437e-5 +broadloom_N 3.729715012475897e-6 +broadness_N 3.729715012475897e-6 +broadsheet_N 3.729715012475897e-6 +broadside_A 1.0773191989054437e-5 +broadside_Adv 8.668966832532898e-6 +broadside_N 7.459430024951794e-6 +broadsword_N 3.729715012475897e-6 +broadtail_N 3.729715012475897e-6 +broadways_Adv 8.668966832532898e-6 +broadwise_Adv 8.668966832532898e-6 +brocade_N 3.729715012475897e-6 +brocade_V2 1.609865254278217e-5 +broccoli_N 3.729715012475897e-6 +brochette_N 3.729715012475897e-6 +brochure_N 2.237829007485538e-5 +brocket_N 3.729715012475897e-6 +brodiaea_N 3.729715012475897e-6 +brogan_N 3.729715012475897e-6 +brogue_N 3.729715012475897e-6 +broil_N 3.729715012475897e-6 +broil_V 2.2678822515534993e-5 +broil_V2 1.609865254278217e-5 +broiler_N 7.459430024951794e-6 +broke_A 2.1546383978108874e-5 +broken_hearted_A 1.0773191989054437e-5 +brokenhearted_A 1.0773191989054437e-5 +broker_N 7.422132874827035e-4 +brokerage_N 6.11673262046047e-4 +brolly_N 3.729715012475897e-6 +brome_N 3.729715012475897e-6 +bromic_A 1.0773191989054437e-5 +bromide_N 3.729715012475897e-6 +bromidic_A 1.0773191989054437e-5 +bromine_N 3.729715012475897e-6 +bromley_PN 1.865462821325971e-5 +bromoform_N 3.729715012475897e-6 +bromsgrove_PN 1.865462821325971e-5 +bronchial_A 1.0773191989054437e-5 +bronchiolar_A 1.0773191989054437e-5 +bronchiole_N 3.729715012475897e-6 +bronchiolitis_N 3.729715012475897e-6 +bronchitic_A 1.0773191989054437e-5 +bronchitis_N 3.729715012475897e-6 +bronchodilator_N 3.729715012475897e-6 +bronchopneumonia_N 3.729715012475897e-6 +bronchoscope_N 3.729715012475897e-6 +bronchoscopic_A 1.0773191989054437e-5 +bronchospasm_N 3.729715012475897e-6 +bronchus_N 3.729715012475897e-6 +bronco_N 7.459430024951794e-6 +bronze_A 1.0773191989054437e-5 +bronze_N 1.118914503742769e-5 +bronze_V 2.2678822515534993e-5 +bronze_V2 1.609865254278217e-5 +brooch_N 7.459430024951794e-6 +brood_N 7.459430024951794e-6 +brood_V 2.2678822515534993e-5 +brood_hen_N 3.729715012475897e-6 +brood_mare_N 3.729715012475897e-6 +brooding_N 3.729715012475897e-6 +broodmare_N 3.729715012475897e-6 +broody_A 1.0773191989054437e-5 +brook_N 3.729715012475897e-6 +brook_V2 1.609865254278217e-5 +brooklet_N 3.729715012475897e-6 +brooklime_N 3.729715012475897e-6 +brookweed_N 3.729715012475897e-6 +broom_N 3.729715012475897e-6 +broomcorn_N 3.729715012475897e-6 +broomstick_N 3.729715012475897e-6 +broomweed_N 3.729715012475897e-6 +bros_PN 1.865462821325971e-5 +broth_N 7.459430024951794e-6 +brothel_N 3.729715012475897e-6 +brother_N 1.4545888548655997e-4 +brother_in_law_N 3.729715012475897e-6 +brotherhood_N 3.729715012475897e-6 +brotherly_A 2.1546383978108874e-5 +brotherly_Adv 8.668966832532898e-6 +brotula_N 3.729715012475897e-6 +brougham_N 3.729715012475897e-6 +brought_V 2.2678822515534993e-5 +broughton_PN 1.865462821325971e-5 +brouhaha_N 7.459430024951794e-6 +brow_N 1.8648575062379485e-5 +browbeat_V2 3.219730508556434e-5 +brown_A 4.309276795621775e-5 +brown_N 3.729715012475897e-6 +brown_V 2.2678822515534993e-5 +brown_V2 1.609865254278217e-5 +brownie_N 3.729715012475897e-6 +brownish_A 1.0773191989054437e-5 +brownstone_N 3.729715012475897e-6 +browntail_N 3.729715012475897e-6 +browse_N 3.729715012475897e-6 +browse_V 2.2678822515534993e-5 +browser_N 3.729715012475897e-6 +broxburn_PN 1.865462821325971e-5 +bruce_PN 1.865462821325971e-5 +brucellosis_N 3.729715012475897e-6 +brucine_N 3.729715012475897e-6 +bruges_PN 1.865462821325971e-5 +bruin_N 3.729715012475897e-6 +bruise_N 7.459430024951794e-6 +bruise_V 6.803646754660499e-5 +bruise_V2 1.609865254278217e-5 +bruiser_N 3.729715012475897e-6 +bruit_V2 1.609865254278217e-5 +brumal_A 1.0773191989054437e-5 +brumous_A 1.0773191989054437e-5 +brunch_N 7.459430024951794e-6 +brunei_PN 5.596388463977913e-5 +bruneian_A 1.0773191989054437e-5 +bruneian_N 3.729715012475897e-6 +brunet_A 1.0773191989054437e-5 +brunet_N 3.729715012475897e-6 +brunette_N 3.729715012475897e-6 +brunswick_PN 1.865462821325971e-5 +brunt_N 2.6108005087331277e-5 +brush_N 2.237829007485538e-5 +brush_V 2.0410940263981494e-4 +brush_V2 3.219730508556434e-5 +brush_aside_V 2.2678822515534993e-5 +brush_off_N 3.729715012475897e-6 +brush_off_V2 1.609865254278217e-5 +brush_up_N 3.729715012475897e-6 +brush_up_V2 1.609865254278217e-5 +brushlike_A 1.0773191989054437e-5 +brushwood_N 3.729715012475897e-6 +brushwork_N 3.729715012475897e-6 +brusque_A 1.0773191989054437e-5 +brusqueness_N 3.729715012475897e-6 +brussels_PN 3.917471924784539e-4 +brut_A 1.0773191989054437e-5 +brutal_A 7.541234392338106e-5 +brutality_N 1.118914503742769e-5 +brutalization_N 3.729715012475897e-6 +brutalize_V2 1.609865254278217e-5 +brute_N 3.729715012475897e-6 +brutish_A 2.1546383978108874e-5 +bruxism_N 3.729715012475897e-6 +bryan_PN 1.865462821325971e-5 +bryanthus_N 3.729715012475897e-6 +bryony_N 3.729715012475897e-6 +bryophyte_N 3.729715012475897e-6 +bryophytic_A 1.0773191989054437e-5 +bryozoan_N 3.729715012475897e-6 +bsc_N 3.729715012475897e-6 +bst_PN 1.865462821325971e-5 +bt_PN 1.865462821325971e-5 +bubaline_A 1.0773191989054437e-5 +bubble_N 1.4918860049903587e-5 +bubble_V 2.2678822515534993e-5 +bubble_over_V 2.2678822515534993e-5 +bubbler_N 3.729715012475897e-6 +bubbliness_N 3.729715012475897e-6 +bubbly_A 1.0773191989054437e-5 +bubbly_N 3.729715012475897e-6 +bubo_N 3.729715012475897e-6 +bubonic_A 1.0773191989054437e-5 +bucarest_PN 1.865462821325971e-5 +buccal_A 1.0773191989054437e-5 +buccaneer_N 7.459430024951794e-6 +buck_N 2.9837720099807175e-5 +buck_V 6.803646754660499e-5 +buck_V2 1.2878922034225736e-4 +buck_up_V2 1.609865254278217e-5 +buckboard_N 3.729715012475897e-6 +bucket_N 1.4918860049903587e-5 +bucket_V 2.2678822515534993e-5 +bucket_down_V 2.2678822515534993e-5 +bucketful_N 3.729715012475897e-6 +buckeye_N 3.729715012475897e-6 +buckhaven_PN 1.865462821325971e-5 +buckie_PN 1.865462821325971e-5 +buckingham_PN 1.865462821325971e-5 +buckinghamshire_PN 1.865462821325971e-5 +buckle_N 7.459430024951794e-6 +buckle_V 1.3607293509320997e-4 +buckle_V2 6.439461017112868e-5 +buckle_down_V 2.2678822515534993e-5 +buckle_under_V 2.2678822515534993e-5 +buckle_up_V 4.5357645031069986e-5 +buckler_N 3.729715012475897e-6 +buckley_PN 1.865462821325971e-5 +buckleya_N 3.729715012475897e-6 +buckminsterfullerene_N 3.729715012475897e-6 +buckram_N 3.729715012475897e-6 +bucksaw_N 3.729715012475897e-6 +bucksburn_PN 1.865462821325971e-5 +buckshee_A 1.0773191989054437e-5 +buckshot_N 7.459430024951794e-6 +buckskin_N 3.729715012475897e-6 +buckskins_N 3.729715012475897e-6 +buckthorn_N 3.729715012475897e-6 +bucktooth_N 3.729715012475897e-6 +buckwheat_N 3.729715012475897e-6 +bucolic_A 1.0773191989054437e-5 +bucolics_N 3.729715012475897e-6 +bud_N 7.459430024951794e-6 +bud_V 1.3607293509320997e-4 +budapest_PN 1.865462821325971e-5 +buddhism_N 3.729715012475897e-6 +buddhist_N 3.729715012475897e-6 +budding_N 3.729715012475897e-6 +buddy_N 1.4918860049903587e-5 +budge_V 1.8143058012427994e-4 +budge_V2 1.609865254278217e-5 +budge_up_V 2.2678822515534993e-5 +budgerigar_N 3.729715012475897e-6 +budget_N 7.757807225949866e-4 +budget_V 6.803646754660499e-5 +budget_V2 9.659191525669301e-5 +budgetary_A 1.0773191989054437e-4 +budgie_N 3.729715012475897e-6 +buenos_aires_PN 1.865462821325971e-5 +buff_A 1.0773191989054437e-5 +buff_N 1.118914503742769e-5 +buff_V2 3.219730508556434e-5 +buff_up_V2 1.609865254278217e-5 +buff_up_on_V2 1.609865254278217e-5 +buffalo_N 3.729715012475897e-6 +buffalo_PN 1.865462821325971e-5 +buffalofish_N 3.729715012475897e-6 +buffer_N 1.8648575062379485e-5 +buffer_V2 4.8295957628346505e-5 +buffet_N 1.8648575062379485e-5 +buffet_V 2.2678822515534993e-5 +buffet_V2 9.659191525669301e-5 +bufflehead_N 3.729715012475897e-6 +buffoon_N 3.729715012475897e-6 +buffoonery_N 3.729715012475897e-6 +buffoonish_A 1.0773191989054437e-5 +bufo_N 3.729715012475897e-6 +bug_N 7.832401526199384e-5 +bug_V2 1.609865254278217e-5 +bug_hunter_N 3.729715012475897e-6 +bug_off_V 2.2678822515534993e-5 +bug_out_V 2.2678822515534993e-5 +bugaboo_N 7.459430024951794e-6 +bugbane_N 3.729715012475897e-6 +bugbear_N 3.729715012475897e-6 +bugger_N 3.729715012475897e-6 +bugger_V 2.2678822515534993e-5 +bugger_V2 1.609865254278217e-5 +bugger_all_N 3.729715012475897e-6 +buggery_N 3.729715012475897e-6 +bugginess_N 3.729715012475897e-6 +buggy_A 1.0773191989054437e-5 +buggy_N 3.729715012475897e-6 +bugle_N 3.729715012475897e-6 +bugler_N 3.729715012475897e-6 +bugleweed_N 3.729715012475897e-6 +bugloss_N 3.729715012475897e-6 +buhl_N 3.729715012475897e-6 +build_N 3.729715012475897e-6 +build_V 2.2678822515534995e-3 +build_V2 3.992465830609978e-3 +build_up_N 3.729715012475897e-6 +build_up_V2 3.219730508556434e-5 +builder_N 7.086458523704203e-5 +building_N 8.876721729692634e-4 +building_society_N 3.729715012475897e-6 +buildup_N 1.118914503742769e-5 +built_in_A 5.3865959945272184e-5 +built_up_A 1.0773191989054437e-5 +bulb_N 1.8648575062379485e-5 +bulbaceous_A 1.0773191989054437e-5 +bulbar_A 1.0773191989054437e-5 +bulbed_A 1.0773191989054437e-5 +bulbil_N 3.729715012475897e-6 +bulblike_A 1.0773191989054437e-5 +bulbous_A 1.0773191989054437e-5 +bulbul_N 3.729715012475897e-6 +bulgaria_PN 1.1192776927955825e-4 +bulgarianFem_N 3.729715012475897e-6 +bulgarianMasc_N 7.459430024951794e-6 +bulgarian_A 4.309276795621775e-5 +bulge_N 3.729715012475897e-6 +bulge_V 4.5357645031069986e-5 +bulge_V2 1.609865254278217e-5 +bulgur_N 3.729715012475897e-6 +bulimarexia_N 3.729715012475897e-6 +bulimia_N 3.729715012475897e-6 +bulimic_A 1.0773191989054437e-5 +bulimic_N 3.729715012475897e-6 +bulk_N 1.08161735361801e-4 +bulk_V 2.2678822515534993e-5 +bulk_out_V2 1.609865254278217e-5 +bulk_up_V 2.2678822515534993e-5 +bulkhead_N 7.459430024951794e-6 +bulkiness_N 3.729715012475897e-6 +bulkington_PN 1.865462821325971e-5 +bulky_A 2.1546383978108874e-5 +bull's_eye_N 3.729715012475897e-6 +bull_N 3.356743511228307e-5 +bull_headed_A 1.0773191989054437e-5 +bull_neck_N 3.729715012475897e-6 +bull_terrier_N 3.729715012475897e-6 +bulla_N 3.729715012475897e-6 +bullace_N 3.729715012475897e-6 +bullate_A 1.0773191989054437e-5 +bullbrier_N 3.729715012475897e-6 +bulldog_N 3.729715012475897e-6 +bulldoze_V2 3.219730508556434e-5 +bulldozer_N 1.4918860049903587e-5 +bullet_N 5.2216010174662554e-5 +bullet_headed_A 1.0773191989054437e-5 +bullethead_N 3.729715012475897e-6 +bulletin_N 2.6108005087331277e-5 +bulletproof_A 1.0773191989054437e-5 +bullfight_N 3.729715012475897e-6 +bullfighter_N 7.459430024951794e-6 +bullfighting_N 3.729715012475897e-6 +bullfinch_N 3.729715012475897e-6 +bullfrog_N 3.729715012475897e-6 +bullhead_N 3.729715012475897e-6 +bullheaded_A 1.0773191989054437e-5 +bullhorn_N 3.729715012475897e-6 +bullion_N 2.6108005087331277e-5 +bullish_A 1.0773191989054437e-5 +bullnecked_A 1.0773191989054437e-5 +bullnose_N 3.729715012475897e-6 +bullock_N 3.729715012475897e-6 +bullocky_A 1.0773191989054437e-5 +bullpen_N 3.729715012475897e-6 +bullring_N 3.729715012475897e-6 +bullshit_N 3.729715012475897e-6 +bullshit_V 2.2678822515534993e-5 +bullshot_N 3.729715012475897e-6 +bullterrier_N 3.729715012475897e-6 +bully_A 1.0773191989054437e-5 +bully_N 7.459430024951794e-6 +bully_V 2.2678822515534993e-5 +bully_V2 4.8295957628346505e-5 +bullyboy_N 3.729715012475897e-6 +bullying_N 3.729715012475897e-6 +bulrush_N 3.729715012475897e-6 +bulwark_N 7.459430024951794e-6 +bum_A 1.0773191989054437e-5 +bum_N 7.459430024951794e-6 +bum_V 2.2678822515534993e-5 +bum_V2 1.609865254278217e-5 +bumblebee_N 3.729715012475897e-6 +bumbling_A 1.0773191989054437e-5 +bumboat_N 3.729715012475897e-6 +bumf_N 3.729715012475897e-6 +bummer_N 3.729715012475897e-6 +bump_Adv 8.668966832532898e-6 +bump_N 1.118914503742769e-5 +bump_V 6.803646754660499e-5 +bump_V2 3.219730508556434e-5 +bump_into_V2 1.609865254278217e-5 +bump_off_V2 1.609865254278217e-5 +bump_up_V2 1.609865254278217e-5 +bumper_N 1.118914503742769e-5 +bumpiness_N 3.729715012475897e-6 +bumpkin_N 3.729715012475897e-6 +bumpkinly_A 1.0773191989054437e-5 +bumptious_A 1.0773191989054437e-5 +bumptiousness_N 3.729715012475897e-6 +bumpy_A 4.309276795621775e-5 +bun_N 3.729715012475897e-6 +buna_N 3.729715012475897e-6 +bunch_N 4.1026865137234865e-5 +bunch_V 2.2678822515534993e-5 +bunch_V2 1.609865254278217e-5 +bunchberry_N 3.729715012475897e-6 +bunchgrass_N 3.729715012475897e-6 +bunchy_A 1.0773191989054437e-5 +bunco_N 3.729715012475897e-6 +bundle_N 1.4918860049903587e-5 +bundle_V 2.2678822515534993e-5 +bundle_V2 6.439461017112868e-5 +bundle_off_V2 1.609865254278217e-5 +bundle_out_V2 1.609865254278217e-5 +bundle_up_V 2.2678822515534993e-5 +bundle_up_V2 1.609865254278217e-5 +bundling_N 3.729715012475897e-6 +bunfight_N 3.729715012475897e-6 +bung_N 3.729715012475897e-6 +bung_V2 1.609865254278217e-5 +bung_hole_N 3.729715012475897e-6 +bungaloid_A 1.0773191989054437e-5 +bungalow_N 3.729715012475897e-6 +bungee_N 3.729715012475897e-6 +bunghole_N 3.729715012475897e-6 +bungle_N 3.729715012475897e-6 +bungle_V 4.5357645031069986e-5 +bungle_V2 1.609865254278217e-5 +bungler_N 3.729715012475897e-6 +bunion_N 3.729715012475897e-6 +bunk_N 3.729715012475897e-6 +bunk_V 2.2678822515534993e-5 +bunk_off_V 2.2678822515534993e-5 +bunker_N 3.729715012475897e-6 +bunker_V 2.2678822515534993e-5 +bunker_V2 1.609865254278217e-5 +bunkmate_N 3.729715012475897e-6 +bunkum_N 3.729715012475897e-6 +bunny_N 1.4918860049903587e-5 +bunsen_N 3.729715012475897e-6 +bunt_N 3.729715012475897e-6 +buntal_N 3.729715012475897e-6 +bunter_N 3.729715012475897e-6 +bunting_N 3.729715012475897e-6 +bunyavirus_N 3.729715012475897e-6 +buoy_N 3.729715012475897e-6 +buoy_V 9.071529006213997e-5 +buoy_V2 2.8977574577007903e-4 +buoy_up_V2 1.609865254278217e-5 +buoyancy_N 7.459430024951794e-6 +buoyant_A 4.309276795621775e-5 +bur_N 3.729715012475897e-6 +burberry_N 3.729715012475897e-6 +burble_V 2.2678822515534993e-5 +burble_VS 1.1552012938254491e-4 +burbot_N 3.729715012475897e-6 +burden_N 1.4545888548655997e-4 +burden_V2 1.1269056779947518e-4 +burdenless_A 1.0773191989054437e-5 +burdensome_A 4.309276795621775e-5 +burdensomeness_N 3.729715012475897e-6 +burdock_N 3.729715012475897e-6 +bureau_N 1.305400254366564e-4 +bureaucracy_N 9.697259032437332e-5 +bureaucrat_N 8.578344528694562e-5 +bureaucratic_A 1.2927830386865325e-4 +bureaucratically_Adv 8.668966832532898e-6 +burette_N 3.729715012475897e-6 +burg_N 7.459430024951794e-6 +burgeon_V 1.3607293509320997e-4 +burgess_N 3.729715012475897e-6 +burgess_PN 1.865462821325971e-5 +burgh_N 3.729715012475897e-6 +burgher_N 7.459430024951794e-6 +burglar_N 3.729715012475897e-6 +burglar_alarm_N 3.729715012475897e-6 +burglar_proof_A 1.0773191989054437e-5 +burglarious_A 1.0773191989054437e-5 +burglarproof_A 1.0773191989054437e-5 +burglary_N 2.9837720099807175e-5 +burgle_V 2.2678822515534993e-5 +burgle_V2 1.609865254278217e-5 +burgomaster_N 3.729715012475897e-6 +burgoo_N 3.729715012475897e-6 +burgos_PN 1.865462821325971e-5 +burgrass_N 3.729715012475897e-6 +burgrave_N 3.729715012475897e-6 +burgundy_N 3.729715012475897e-6 +burial_N 1.4918860049903587e-5 +burial_ground_N 3.729715012475897e-6 +burin_N 3.729715012475897e-6 +burke_V2 1.609865254278217e-5 +burl_N 3.729715012475897e-6 +burlap_N 7.459430024951794e-6 +burled_A 1.0773191989054437e-5 +burlesque_A 1.0773191989054437e-5 +burlesque_N 3.729715012475897e-6 +burlesque_V2 1.609865254278217e-5 +burley_PN 1.865462821325971e-5 +burly_A 2.1546383978108874e-5 +burma_PN 1.865462821325971e-5 +burmese_A 1.0773191989054437e-5 +burmese_N 3.729715012475897e-6 +burn_N 1.8648575062379485e-5 +burn_V 4.535764503106999e-4 +burn_V2 1.1269056779947518e-4 +burn_down_V 2.2678822515534993e-5 +burn_down_V2 1.609865254278217e-5 +burn_off_V2 1.609865254278217e-5 +burn_out_V 2.2678822515534993e-5 +burn_up_N 3.729715012475897e-6 +burn_up_V 2.2678822515534993e-5 +burn_up_V2 1.609865254278217e-5 +burnable_A 1.0773191989054437e-5 +burner_N 2.237829007485538e-5 +burnham_on_sea_PN 1.865462821325971e-5 +burning_N 3.729715012475897e-6 +burnish_V 2.2678822515534993e-5 +burnish_V2 3.219730508556434e-5 +burnley_PN 1.865462821325971e-5 +burnous_N 3.729715012475897e-6 +burnouse_N 3.729715012475897e-6 +burntisland_PN 1.865462821325971e-5 +burntwood_PN 1.865462821325971e-5 +burnup_N 3.729715012475897e-6 +burp_N 3.729715012475897e-6 +burp_V 2.2678822515534993e-5 +burp_V2 1.609865254278217e-5 +burqa_N 3.729715012475897e-6 +burr_N 3.729715012475897e-6 +burr_drill_N 3.729715012475897e-6 +burrawong_N 3.729715012475897e-6 +burrfish_N 3.729715012475897e-6 +burrito_N 3.729715012475897e-6 +burrlike_A 1.0773191989054437e-5 +burro_N 3.729715012475897e-6 +burrow_N 3.729715012475897e-6 +burrow_V 2.2678822515534993e-5 +burrow_V2 1.609865254278217e-5 +burry_port_PN 1.865462821325971e-5 +bursa_N 3.729715012475897e-6 +bursal_A 1.0773191989054437e-5 +bursar_N 3.729715012475897e-6 +bursary_N 3.729715012475897e-6 +burscough_PN 1.865462821325971e-5 +bursiform_A 1.0773191989054437e-5 +bursitis_N 3.729715012475897e-6 +burst_N 6.340515521209024e-5 +burst_V 9.071529006213997e-5 +burst_V2 3.219730508556434e-5 +burst_into_V2 1.609865254278217e-5 +burthen_N 3.729715012475897e-6 +burthen_V2 1.609865254278217e-5 +burton_N 3.729715012475897e-6 +burton_upon_trent_PN 1.865462821325971e-5 +burundi_PN 1.865462821325971e-5 +burundian_A 1.0773191989054437e-5 +burundian_N 3.729715012475897e-6 +bury_PN 1.865462821325971e-5 +bury_V 9.071529006213997e-5 +bury_V2 2.092824830561682e-4 +bury_st__edmunds_PN 1.865462821325971e-5 +burying_N 3.729715012475897e-6 +burying_ground_N 3.729715012475897e-6 +bus_N 1.2308059541170458e-4 +bus_V 2.2678822515534993e-5 +bus_V2 1.609865254278217e-5 +busbar_N 3.729715012475897e-6 +busboy_N 3.729715012475897e-6 +busby_N 3.729715012475897e-6 +bush_N 7.459430024951794e-6 +bushbuck_N 3.729715012475897e-6 +bushel_N 9.697259032437332e-5 +bushing_N 3.729715012475897e-6 +bushman_N 3.729715012475897e-6 +bushtit_N 3.729715012475897e-6 +bushwhacker_N 3.729715012475897e-6 +bushwhacking_A 1.0773191989054437e-5 +bushy_A 2.1546383978108874e-5 +business_N 4.964250681605419e-3 +businesslike_A 4.309276795621775e-5 +businessman_N 1.8648575062379482e-4 +businessmen_N 3.729715012475897e-6 +businessperson_N 3.729715012475897e-6 +businesswoman_N 3.729715012475897e-6 +busker_N 3.729715012475897e-6 +buskin_N 3.729715012475897e-6 +busload_N 1.118914503742769e-5 +busman_N 3.729715012475897e-6 +buspirone_N 3.729715012475897e-6 +bust_N 2.9837720099807175e-5 +bust_V 4.5357645031069986e-5 +bust_V2 6.439461017112868e-5 +bust_up_N 3.729715012475897e-6 +bust_up_V 2.2678822515534993e-5 +bustard_N 3.729715012475897e-6 +buster_N 7.459430024951794e-6 +bustier_N 3.729715012475897e-6 +bustle_N 7.459430024951794e-6 +bustle_V 2.2678822515534993e-5 +bustle_V2 1.609865254278217e-5 +busy_A 5.063400234855585e-4 +busy_V2 1.609865254278217e-5 +busybody_N 3.729715012475897e-6 +busyness_N 3.729715012475897e-6 +busywork_N 3.729715012475897e-6 +but_Adv 6.935173466026319e-5 +but_PConj 1.0972933430870519e-2 +but_Prep 1.197425535099536e-4 +but_Subj 9.558232931726908e-2 +butacaine_N 3.729715012475897e-6 +butadiene_N 3.729715012475897e-6 +butane_N 7.459430024951794e-6 +butanone_N 3.729715012475897e-6 +butch_A 1.0773191989054437e-5 +butch_N 3.729715012475897e-6 +butcher_N 1.8648575062379485e-5 +butcher_V2 1.609865254278217e-5 +butcherbird_N 3.729715012475897e-6 +butchery_N 3.729715012475897e-6 +buteonine_A 1.0773191989054437e-5 +buteonine_N 3.729715012475897e-6 +butler_N 2.9837720099807175e-5 +butt_N 1.118914503742769e-5 +butt_V 4.5357645031069986e-5 +butt_V2 1.609865254278217e-5 +butt_in_V 2.2678822515534993e-5 +butt_out_V 2.2678822515534993e-5 +butte_N 3.729715012475897e-6 +butter_N 2.6108005087331277e-5 +butter_V2 1.609865254278217e-5 +butter_up_V2 1.609865254278217e-5 +butterbean_N 3.729715012475897e-6 +butterbur_N 3.729715012475897e-6 +buttercrunch_N 3.729715012475897e-6 +buttercup_N 3.729715012475897e-6 +butterfat_N 3.729715012475897e-6 +butterfingers_N 3.729715012475897e-6 +butterfish_N 3.729715012475897e-6 +butterfly_N 1.4918860049903587e-5 +buttermilk_N 3.729715012475897e-6 +butternut_N 3.729715012475897e-6 +butterscotch_N 3.729715012475897e-6 +butterweed_N 3.729715012475897e-6 +butterwort_N 3.729715012475897e-6 +buttery_A 1.0773191989054437e-5 +buttery_N 3.729715012475897e-6 +buttinsky_N 3.729715012475897e-6 +buttock_N 3.729715012475897e-6 +buttocks_N 3.729715012475897e-6 +button_N 3.356743511228307e-5 +button_V 2.2678822515534993e-5 +button_V2 1.609865254278217e-5 +buttoned_up_A 2.1546383978108874e-5 +buttonhole_N 3.729715012475897e-6 +buttonhole_V2 1.609865254278217e-5 +buttonhook_N 3.729715012475897e-6 +buttonwood_N 3.729715012475897e-6 +buttony_A 1.0773191989054437e-5 +buttress_N 3.729715012475897e-6 +buttress_V2 9.659191525669301e-5 +butty_N 3.729715012475897e-6 +butut_N 3.729715012475897e-6 +butyl_N 3.729715012475897e-6 +butylene_N 3.729715012475897e-6 +butyraceous_A 1.0773191989054437e-5 +butyric_A 1.0773191989054437e-5 +butyrin_N 3.729715012475897e-6 +buxom_A 1.0773191989054437e-5 +buxomness_N 3.729715012475897e-6 +buxton_PN 1.865462821325971e-5 +buy_N 2.498909058358851e-4 +buy_V 1.1339411257767497e-2 +buy_V2 9.707487483297647e-3 +buy_back_V2 3.219730508556434e-5 +buy_in_V2 1.609865254278217e-5 +buy_into_V2 1.609865254278217e-5 +buy_off_V2 1.609865254278217e-5 +buy_out_V2 1.609865254278217e-5 +buy_up_V2 3.219730508556434e-5 +buyer_N 8.802127429443117e-4 +buying_N 3.729715012475897e-6 +buyout_N 3.729715012475897e-6 +buzz_N 1.118914503742769e-5 +buzz_V 1.1339411257767497e-4 +buzz_V2 3.219730508556434e-5 +buzz_around_V2 1.609865254278217e-5 +buzz_off_V 2.2678822515534993e-5 +buzzard_N 3.729715012475897e-6 +buzzer_N 7.459430024951794e-6 +buzzword_N 7.459430024951794e-6 +bvm_N 3.729715012475897e-6 +by_Adv 5.2013800995197394e-5 +by_Prep 5.667814199471137e-2 +by_election_N 3.729715012475897e-6 +by_means_of_Prep 1.9957092251658934e-5 +by_virtue_of_Prep 2.99356383774884e-5 +bye_Interj 7.633587786259542e-3 +bye_bye_Interj 7.633587786259542e-3 +bye_law_N 3.729715012475897e-6 +bygone_A 2.1546383978108874e-5 +bygone_N 3.729715012475897e-6 +bylaw_N 7.459430024951794e-6 +bypass_N 7.459430024951794e-6 +bypass_V2 4.8295957628346505e-5 +bypath_N 3.729715012475897e-6 +byplay_N 3.729715012475897e-6 +byproduct_N 3.729715012475897e-6 +byroad_N 3.729715012475897e-6 +byssus_N 3.729715012475897e-6 +bystander_N 7.459430024951794e-6 +byte_N 3.729715012475897e-6 +byway_N 3.729715012475897e-6 +byword_N 3.729715012475897e-6 +c_in_c_PN 1.865462821325971e-5 +c_of_e_N 3.356743511228307e-5 +ca'canny_N 3.729715012475897e-6 +cab_N 1.4918860049903587e-5 +cab_rank_N 3.729715012475897e-6 +cabal_N 7.459430024951794e-6 +cabala_N 3.729715012475897e-6 +cabalist_N 3.729715012475897e-6 +cabalistic_A 1.0773191989054437e-5 +cabana_N 3.729715012475897e-6 +cabaret_N 3.729715012475897e-6 +cabbage_N 3.729715012475897e-6 +cabbageworm_N 3.729715012475897e-6 +cabby_N 3.729715012475897e-6 +caber_N 3.729715012475897e-6 +cabin_N 3.729715012475897e-6 +cabinet_N 6.340515521209024e-5 +cabinet_maker_N 3.729715012475897e-6 +cabinetmaker_N 3.729715012475897e-6 +cabinetmaking_N 3.729715012475897e-6 +cabinetwork_N 3.729715012475897e-6 +cable's_length_N 3.729715012475897e-6 +cable_N 2.9091777097311995e-4 +cable_V 2.2678822515534993e-5 +cable_V2 1.609865254278217e-5 +cable_car_N 3.729715012475897e-6 +cable_length_N 3.729715012475897e-6 +cable_railway_N 3.729715012475897e-6 +cablegram_N 3.729715012475897e-6 +cabman_N 3.729715012475897e-6 +cabochon_N 3.729715012475897e-6 +caboodle_N 3.729715012475897e-6 +caboose_N 3.729715012475897e-6 +cabotage_N 3.729715012475897e-6 +cabstand_N 3.729715012475897e-6 +cacao_N 3.729715012475897e-6 +cacao_bean_N 3.729715012475897e-6 +cacao_tree_N 3.729715012475897e-6 +cache_N 1.4918860049903587e-5 +cache_V2 1.609865254278217e-5 +cachectic_A 1.0773191989054437e-5 +cachet_N 1.4918860049903587e-5 +cachexia_N 3.729715012475897e-6 +cachinnation_N 3.729715012475897e-6 +cachou_N 3.729715012475897e-6 +cacique_N 3.729715012475897e-6 +cackle_N 3.729715012475897e-6 +cackle_V 2.2678822515534993e-5 +cackler_N 3.729715012475897e-6 +cackly_A 1.0773191989054437e-5 +cacodemon_N 3.729715012475897e-6 +cacodemonic_A 1.0773191989054437e-5 +cacodyl_N 3.729715012475897e-6 +cacodylic_A 1.0773191989054437e-5 +cacogenesis_N 3.729715012475897e-6 +cacophonous_A 1.0773191989054437e-5 +cacophony_N 3.729715012475897e-6 +cactus_N 3.729715012475897e-6 +cacuminal_A 1.0773191989054437e-5 +cad_N 3.729715012475897e-6 +cadaster_N 3.729715012475897e-6 +cadastral_A 1.0773191989054437e-5 +cadaver_N 3.729715012475897e-6 +cadaverine_N 3.729715012475897e-6 +cadaverous_A 1.0773191989054437e-5 +caddie_N 3.729715012475897e-6 +caddish_A 1.0773191989054437e-5 +caddisworm_N 3.729715012475897e-6 +caddy_N 3.729715012475897e-6 +cadence_N 3.729715012475897e-6 +cadenced_A 1.0773191989054437e-5 +cadenza_N 3.729715012475897e-6 +cadet_N 1.8648575062379485e-5 +cadetship_N 3.729715012475897e-6 +cadge_V 2.2678822515534993e-5 +cadge_V2 3.219730508556434e-5 +cadger_N 3.729715012475897e-6 +cadiz_PN 1.865462821325971e-5 +cadmium_N 7.459430024951794e-6 +cadre_N 3.729715012475897e-6 +caducean_A 1.0773191989054437e-5 +caduceus_N 3.729715012475897e-6 +caducous_A 1.0773191989054437e-5 +caecilian_A 1.0773191989054437e-5 +caecilian_N 3.729715012475897e-6 +caen_PN 1.865462821325971e-5 +caerleon_PN 1.865462821325971e-5 +caernarfon_PN 1.865462821325971e-5 +caerphilly_PN 1.865462821325971e-5 +caesar_N 3.729715012475897e-6 +caesarian_A 1.0773191989054437e-5 +caespitose_A 1.0773191989054437e-5 +caesura_N 3.729715012475897e-6 +caesural_A 1.0773191989054437e-5 +cafe_N 3.729715012475897e-6 +cafe_au_lait_N 3.729715012475897e-6 +cafeteria_N 3.356743511228307e-5 +caff_N 3.729715012475897e-6 +caffeine_N 3.729715012475897e-6 +caffeinic_A 1.0773191989054437e-5 +caffeinism_N 3.729715012475897e-6 +caftan_N 3.729715012475897e-6 +cage_N 1.118914503742769e-5 +cage_V2 1.609865254278217e-5 +cagey_A 1.0773191989054437e-5 +cagily_Adv 8.668966832532898e-6 +cagliari_PN 1.865462821325971e-5 +cagoule_N 3.729715012475897e-6 +cahoot_N 3.729715012475897e-6 +caiman_N 3.729715012475897e-6 +cairn_N 3.729715012475897e-6 +cairned_A 1.0773191989054437e-5 +cairngorm_N 3.729715012475897e-6 +cairo_PN 1.865462821325971e-5 +caisson_N 3.729715012475897e-6 +caitiff_A 1.0773191989054437e-5 +caitiff_N 3.729715012475897e-6 +cajole_V2 1.609865254278217e-5 +cajolery_N 3.729715012475897e-6 +cake_N 1.4918860049903587e-5 +cake_V 4.5357645031069986e-5 +cake_V2 1.609865254278217e-5 +cakewalk_N 3.729715012475897e-6 +calaba_N 3.729715012475897e-6 +calabash_N 3.729715012475897e-6 +caladenia_N 3.729715012475897e-6 +caladium_N 3.729715012475897e-6 +calamint_N 3.729715012475897e-6 +calamitous_A 2.1546383978108874e-5 +calamity_N 2.6108005087331277e-5 +calamus_N 3.729715012475897e-6 +calando_A 1.0773191989054437e-5 +calanthe_N 3.729715012475897e-6 +calash_N 3.729715012475897e-6 +calcaneal_A 1.0773191989054437e-5 +calcareous_A 1.0773191989054437e-5 +calced_A 1.0773191989054437e-5 +calceolaria_N 3.729715012475897e-6 +calceolate_A 1.0773191989054437e-5 +calceus_N 3.729715012475897e-6 +calcic_A 1.0773191989054437e-5 +calcicolous_A 1.0773191989054437e-5 +calciferous_A 1.0773191989054437e-5 +calcific_A 1.0773191989054437e-5 +calcification_N 3.729715012475897e-6 +calcifugous_A 1.0773191989054437e-5 +calcify_V 2.2678822515534993e-5 +calcify_V2 1.609865254278217e-5 +calcimine_N 3.729715012475897e-6 +calcination_N 3.729715012475897e-6 +calcine_V 2.2678822515534993e-5 +calcine_V2 1.609865254278217e-5 +calcite_N 3.729715012475897e-6 +calcitic_A 1.0773191989054437e-5 +calcitonin_N 3.729715012475897e-6 +calcium_N 1.118914503742769e-5 +calculable_A 1.0773191989054437e-5 +calculate_V 2.0410940263981494e-4 +calculate_V2 5.312555339118116e-4 +calculate_VS 4.6208051753017965e-4 +calculatingly_Adv 8.668966832532898e-6 +calculation_N 1.118914503742769e-4 +calculator_N 2.237829007485538e-5 +calculous_A 1.0773191989054437e-5 +calculus_N 3.729715012475897e-6 +calcutta_PN 1.865462821325971e-5 +caldera_N 3.729715012475897e-6 +caldicot_PN 1.865462821325971e-5 +caldron_N 3.729715012475897e-6 +calefacient_A 1.0773191989054437e-5 +calefaction_N 3.729715012475897e-6 +calefactory_A 1.0773191989054437e-5 +calendar_N 4.1026865137234865e-5 +calender_N 3.729715012475897e-6 +calender_V2 1.609865254278217e-5 +calendric_A 1.0773191989054437e-5 +calendula_N 3.729715012475897e-6 +calf_N 1.118914503742769e-5 +calf_love_N 3.729715012475897e-6 +cali_PN 1.865462821325971e-5 +calibrate_V2 3.219730508556434e-5 +calibration_N 3.729715012475897e-6 +calibre_N 3.729715012475897e-6 +caliche_N 3.729715012475897e-6 +calico_A 1.0773191989054437e-5 +calico_N 3.729715012475897e-6 +calif_N 3.729715012475897e-6 +california_PN 2.7795396037756967e-3 +californian_A 1.0773191989054437e-5 +californian_N 1.8648575062379485e-5 +californium_N 3.729715012475897e-6 +caliginous_A 1.0773191989054437e-5 +caliper_N 3.729715012475897e-6 +caliph_N 3.729715012475897e-6 +caliphate_N 3.729715012475897e-6 +calisaya_N 3.729715012475897e-6 +calisthenic_A 1.0773191989054437e-5 +calisthenics_N 3.729715012475897e-6 +calk_N 3.729715012475897e-6 +calk_V2 1.609865254278217e-5 +call_N 5.40808676809005e-4 +call_V 3.923436295187554e-3 +call_V2 8.693272373102371e-4 +call_V2A 0.255 +call_V2V 1.8700327255726976e-3 +call_V3 0.4603174603174603 +call_after_V2 1.609865254278217e-5 +call_around_V 2.2678822515534993e-5 +call_back_V2 1.609865254278217e-5 +call_box_N 3.729715012475897e-6 +call_for_V2V 1.6362786348761104e-2 +call_forth_V2 1.609865254278217e-5 +call_girl_N 3.729715012475897e-6 +call_in_V 2.2678822515534993e-5 +call_in_V2 1.609865254278217e-5 +call_off_V2 1.609865254278217e-5 +call_on_V 2.2678822515534993e-5 +call_on_V2 1.609865254278217e-5 +call_out_V2 1.609865254278217e-5 +call_over_N 3.729715012475897e-6 +call_over_V 2.2678822515534993e-5 +call_round_V 2.2678822515534993e-5 +call_up_N 3.729715012475897e-6 +call_up_V2 1.609865254278217e-5 +callable_A 2.1546383978108874e-5 +caller_A 1.0773191989054437e-5 +caller_N 5.967544019961435e-5 +calliandra_N 3.729715012475897e-6 +calligrapher_N 3.729715012475897e-6 +calligraphic_A 1.0773191989054437e-5 +calligraphy_N 3.729715012475897e-6 +calling_N 2.6108005087331277e-5 +calliope_N 3.729715012475897e-6 +calliopsis_N 3.729715012475897e-6 +callipygian_A 1.0773191989054437e-5 +callisthenics_N 3.729715012475897e-6 +callithump_N 3.729715012475897e-6 +callithumpian_A 1.0773191989054437e-5 +callosity_N 3.729715012475897e-6 +callosotomy_N 3.729715012475897e-6 +callous_A 1.0773191989054437e-5 +calloused_A 1.0773191989054437e-5 +callousness_N 3.729715012475897e-6 +callow_A 1.0773191989054437e-5 +callowness_N 3.729715012475897e-6 +callus_N 3.729715012475897e-6 +calm_A 1.0773191989054437e-4 +calm_N 2.237829007485538e-5 +calm_V 9.071529006213997e-5 +calm_V2 1.2878922034225736e-4 +calm_down_V2 1.609865254278217e-5 +calme_down_V 2.2678822515534993e-5 +calmness_N 7.459430024951794e-6 +calne_PN 1.865462821325971e-5 +calomel_N 3.729715012475897e-6 +calor_PN 1.865462821325971e-5 +caloric_A 1.0773191989054437e-5 +calorie_N 7.459430024951794e-6 +calorifacient_A 1.0773191989054437e-5 +calorific_A 1.0773191989054437e-5 +calorimeter_N 3.729715012475897e-6 +calorimetric_A 1.0773191989054437e-5 +calorimetry_N 3.729715012475897e-6 +calosoma_N 3.729715012475897e-6 +calpac_N 3.729715012475897e-6 +calque_N 3.729715012475897e-6 +caltrop_N 3.729715012475897e-6 +calumet_N 3.729715012475897e-6 +calumniate_V2 1.609865254278217e-5 +calumniatory_A 1.0773191989054437e-5 +calumny_N 3.729715012475897e-6 +calvaria_N 3.729715012475897e-6 +calvary_N 3.729715012475897e-6 +calve_V 2.2678822515534993e-5 +calverton_PN 1.865462821325971e-5 +calving_N 3.729715012475897e-6 +calvinism_N 3.729715012475897e-6 +calvinist_N 3.729715012475897e-6 +calyceal_A 1.0773191989054437e-5 +calycular_A 1.0773191989054437e-5 +calyculate_A 1.0773191989054437e-5 +calyculus_N 3.729715012475897e-6 +calypso_N 3.729715012475897e-6 +calyptra_N 3.729715012475897e-6 +calyptrate_A 1.0773191989054437e-5 +calyx_N 3.729715012475897e-6 +cam_N 3.729715012475897e-6 +camail_N 3.729715012475897e-6 +camaraderie_N 7.459430024951794e-6 +camas_N 3.729715012475897e-6 +camber_N 3.729715012475897e-6 +camber_V 2.2678822515534993e-5 +camber_V2 1.609865254278217e-5 +cambial_A 1.0773191989054437e-5 +cambium_N 3.729715012475897e-6 +cambodia_PN 2.238555385591165e-4 +cambodian_A 6.463915193432663e-5 +cambodian_N 3.729715012475897e-6 +cambourne_PN 1.865462821325971e-5 +cambric_N 3.729715012475897e-6 +cambridge_PN 1.865462821325971e-5 +cambridgeshire_PN 1.865462821325971e-5 +cambuslang_PN 1.865462821325971e-5 +camcorder_N 3.729715012475897e-6 +camden_PN 1.865462821325971e-5 +camel_N 3.729715012475897e-6 +camel_hair_N 3.729715012475897e-6 +camellia_N 3.729715012475897e-6 +camelpox_N 3.729715012475897e-6 +camembert_N 3.729715012475897e-6 +cameo_N 7.459430024951794e-6 +camera_N 9.324287531189741e-5 +cameraman_N 3.729715012475897e-6 +cameroon_PN 1.865462821325971e-5 +cameroonian_A 1.0773191989054437e-5 +cameroonian_N 3.729715012475897e-6 +camion_N 3.729715012475897e-6 +camise_N 3.729715012475897e-6 +camisole_N 3.729715012475897e-6 +camlet_N 3.729715012475897e-6 +camomile_N 3.729715012475897e-6 +camouflage_N 7.459430024951794e-6 +camouflage_V2 3.219730508556434e-5 +camp_A 1.0773191989054437e-5 +camp_N 5.594572518713845e-5 +camp_V 4.5357645031069986e-5 +camp_V2 1.609865254278217e-5 +camp_bed_N 3.729715012475897e-6 +camp_chair_N 3.729715012475897e-6 +camp_fire_N 3.729715012475897e-6 +camp_follower_N 3.729715012475897e-6 +camp_out_V 2.2678822515534993e-5 +camp_stool_N 3.729715012475897e-6 +campaign_N 6.191326920709988e-4 +campaign_V 1.5875175760874494e-4 +campaigner_N 7.459430024951794e-6 +campaigning_N 3.729715012475897e-6 +campanile_N 3.729715012475897e-6 +campanula_N 3.729715012475897e-6 +campanulate_A 1.0773191989054437e-5 +campbeltown_PN 1.865462821325971e-5 +camper_N 7.459430024951794e-6 +campestral_A 1.0773191989054437e-5 +campfire_N 3.729715012475897e-6 +camphor_N 3.729715012475897e-6 +camphoraceous_A 1.0773191989054437e-5 +camphorated_A 1.0773191989054437e-5 +camphoric_A 1.0773191989054437e-5 +camping_N 3.729715012475897e-6 +campion_N 3.729715012475897e-6 +campmate_N 3.729715012475897e-6 +campsite_N 3.729715012475897e-6 +campstool_N 3.729715012475897e-6 +campus_N 4.475658014971076e-5 +campylotropous_A 1.0773191989054437e-5 +camshaft_N 3.729715012475897e-6 +camwood_N 3.729715012475897e-6 +can_N 6.340515521209024e-5 +can_V2 8.049326271391085e-5 +can_VV 0.23178935229675188 +canada_PN 2.462410924150282e-3 +canadian_A 5.3865959945272184e-5 +canadian_N 3.729715012475897e-6 +canal_N 2.6108005087331277e-5 +canalicular_A 1.0773191989054437e-5 +canaliculate_A 1.0773191989054437e-5 +canaliculus_N 3.729715012475897e-6 +canalization_N 3.729715012475897e-6 +canalize_V2 1.609865254278217e-5 +canape_N 3.729715012475897e-6 +canard_N 3.729715012475897e-6 +canary_A 1.0773191989054437e-5 +canary_N 3.729715012475897e-6 +canary_bird_N 3.729715012475897e-6 +canary_wine_N 3.729715012475897e-6 +canasta_N 3.729715012475897e-6 +canavanine_N 3.729715012475897e-6 +canberra_PN 1.865462821325971e-5 +cancan_N 3.729715012475897e-6 +cancel_V 2.7214587018641994e-4 +cancel_V2 6.117487966257224e-4 +cancel_out_V2 1.609865254278217e-5 +cancellate_A 1.0773191989054437e-5 +cancellation_N 4.1026865137234865e-5 +cancer_N 4.214577964097763e-4 +cancer_PN 1.865462821325971e-5 +cancerous_A 4.309276795621775e-5 +cancerweed_N 3.729715012475897e-6 +cancroid_A 1.0773191989054437e-5 +cancroid_N 3.729715012475897e-6 +candelabrum_N 3.729715012475897e-6 +candelilla_N 3.729715012475897e-6 +candescent_A 1.0773191989054437e-5 +candid_A 4.309276795621775e-5 +candida_N 3.729715012475897e-6 +candidacy_N 3.729715012475897e-6 +candidateFem_N 3.729715012475897e-6 +candidateMasc_N 3.319446361103548e-4 +candidature_N 3.729715012475897e-6 +candidiasis_N 3.729715012475897e-6 +candle_N 1.118914503742769e-5 +candle_power_N 3.729715012475897e-6 +candlelight_N 7.459430024951794e-6 +candlemaker_N 3.729715012475897e-6 +candlenut_N 3.729715012475897e-6 +candlepin_N 3.729715012475897e-6 +candlepins_N 3.729715012475897e-6 +candlepower_N 3.729715012475897e-6 +candlesnuffer_N 3.729715012475897e-6 +candlestick_N 3.729715012475897e-6 +candlewick_N 3.729715012475897e-6 +candlewood_N 3.729715012475897e-6 +candor_N 3.729715012475897e-6 +candour_N 3.729715012475897e-6 +candy_N 5.594572518713845e-5 +candy_V 2.2678822515534993e-5 +candy_V2 1.609865254278217e-5 +candy_floss_N 3.729715012475897e-6 +candytuft_N 3.729715012475897e-6 +cane_N 7.459430024951794e-6 +cane_V2 1.609865254278217e-5 +canebrake_N 3.729715012475897e-6 +canella_N 3.729715012475897e-6 +canescent_A 1.0773191989054437e-5 +canfield_N 3.729715012475897e-6 +cangue_N 3.729715012475897e-6 +canicular_A 1.0773191989054437e-5 +canine_A 2.1546383978108874e-5 +canine_N 3.729715012475897e-6 +canistel_N 3.729715012475897e-6 +canister_N 3.729715012475897e-6 +canker_N 3.729715012475897e-6 +canker_V2 1.609865254278217e-5 +cankerous_A 1.0773191989054437e-5 +cankerworm_N 3.729715012475897e-6 +canna_N 3.729715012475897e-6 +cannabin_N 3.729715012475897e-6 +cannabis_N 3.729715012475897e-6 +cannelloni_N 3.729715012475897e-6 +cannery_N 3.729715012475897e-6 +cannes_PN 1.865462821325971e-5 +cannibal_N 3.729715012475897e-6 +cannibalic_A 1.0773191989054437e-5 +cannibalism_N 3.729715012475897e-6 +cannibalistic_A 1.0773191989054437e-5 +cannibalize_V2 1.609865254278217e-5 +cannikin_N 3.729715012475897e-6 +cannock_PN 1.865462821325971e-5 +cannon_N 7.459430024951794e-6 +cannon_fodder_N 3.729715012475897e-6 +cannonade_N 3.729715012475897e-6 +cannonball_N 3.729715012475897e-6 +cannula_N 3.729715012475897e-6 +cannulation_N 3.729715012475897e-6 +canny_A 2.1546383978108874e-5 +canoe_N 3.729715012475897e-6 +canoe_V2 1.609865254278217e-5 +canoeist_N 3.729715012475897e-6 +canon_1_N 3.729715012475897e-6 +canon_2_N 3.729715012475897e-6 +canon_N 3.729715012475897e-6 +canonic_A 1.0773191989054437e-5 +canonical_A 1.0773191989054437e-5 +canonist_A 1.0773191989054437e-5 +canonist_N 3.729715012475897e-6 +canonization_N 3.729715012475897e-6 +canonize_V2 1.609865254278217e-5 +canopied_A 1.0773191989054437e-5 +canopy_N 3.729715012475897e-6 +canorous_A 1.0773191989054437e-5 +cant_N 7.459430024951794e-6 +cant_V 2.2678822515534993e-5 +cant_V2 1.609865254278217e-5 +cantab_PN 1.865462821325971e-5 +cantabile_A 1.0773191989054437e-5 +cantala_N 3.729715012475897e-6 +cantaloup_N 3.729715012475897e-6 +cantaloupe_N 3.729715012475897e-6 +cantankerous_A 1.0773191989054437e-5 +cantata_N 3.729715012475897e-6 +canteen_N 3.729715012475897e-6 +canter_N 3.729715012475897e-6 +canter_V 2.2678822515534993e-5 +canter_V2 1.609865254278217e-5 +canterbury_PN 1.865462821325971e-5 +canthus_N 3.729715012475897e-6 +canticle_N 3.729715012475897e-6 +cantilever_N 3.729715012475897e-6 +cantillation_N 3.729715012475897e-6 +cantle_N 3.729715012475897e-6 +canto_N 3.729715012475897e-6 +canton_N 3.729715012475897e-6 +canton_PN 1.865462821325971e-5 +cantonal_A 1.0773191989054437e-5 +cantonment_N 3.729715012475897e-6 +cantor_N 3.729715012475897e-6 +canty_A 1.0773191989054437e-5 +canuck_N 3.729715012475897e-6 +canvas_N 2.237829007485538e-5 +canvasback_N 3.729715012475897e-6 +canvass_N 3.729715012475897e-6 +canvass_V 4.5357645031069986e-5 +canvass_V2 1.609865254278217e-5 +canvasser_N 3.729715012475897e-6 +canvey_PN 1.865462821325971e-5 +canvey_island_PN 1.865462821325971e-5 +canyon_N 7.459430024951794e-6 +canyonside_N 3.729715012475897e-6 +cap_N 8.951316029942152e-5 +cap_V2 5.312555339118116e-4 +cap_a_pie_Adv 8.668966832532898e-6 +cap_off_V2 1.609865254278217e-5 +capability_N 7.086458523704203e-5 +capable_A 1.9391745580297985e-4 +capacious_A 1.0773191989054437e-5 +capaciousness_N 3.729715012475897e-6 +capacitance_N 3.729715012475897e-6 +capacitive_A 1.0773191989054437e-5 +capacitor_N 3.729715012475897e-6 +capacity_N 4.512955165095835e-4 +caparison_N 3.729715012475897e-6 +caparison_V2 1.609865254278217e-5 +cape_N 3.729715012475897e-6 +cape_town_PN 1.865462821325971e-5 +capelin_N 3.729715012475897e-6 +caper_N 3.729715012475897e-6 +caper_V 2.2678822515534993e-5 +capercaillie_N 3.729715012475897e-6 +capful_N 3.729715012475897e-6 +capillarity_N 3.729715012475897e-6 +capillary_A 1.0773191989054437e-5 +capillary_N 3.729715012475897e-6 +capital_A 1.0773191989054437e-4 +capital_N 1.6522637505268223e-3 +capitalism_A 1.0773191989054437e-5 +capitalism_N 4.848629516218666e-5 +capitalist_A 1.0773191989054437e-5 +capitalist_N 4.848629516218666e-5 +capitalistic_A 5.3865959945272184e-5 +capitalization_N 4.848629516218666e-5 +capitalize_V 2.9482469270195494e-4 +capitalize_V2 1.4488787288503951e-4 +capitate_A 1.0773191989054437e-5 +capitate_N 3.729715012475897e-6 +capitation_N 3.729715012475897e-6 +capitol_N 7.459430024951794e-6 +capitular_A 1.0773191989054437e-5 +capitulate_V 4.5357645031069986e-5 +capitulate_V2 1.609865254278217e-5 +capitulation_N 3.729715012475897e-6 +capitulum_N 3.729715012475897e-6 +capo_N 3.729715012475897e-6 +capon_N 3.729715012475897e-6 +capote_N 3.729715012475897e-6 +cappuccino_N 3.729715012475897e-6 +capriccio_N 3.729715012475897e-6 +caprice_N 3.729715012475897e-6 +capricious_A 3.231957596716331e-5 +capriciousness_N 7.459430024951794e-6 +capricorn_PN 1.865462821325971e-5 +caprifig_N 3.729715012475897e-6 +caprine_A 1.0773191989054437e-5 +capriole_N 3.729715012475897e-6 +capsaicin_N 3.729715012475897e-6 +capsicum_N 3.729715012475897e-6 +capsid_N 3.729715012475897e-6 +capsize_V 2.2678822515534993e-5 +capsize_V2 1.609865254278217e-5 +capsizing_N 3.729715012475897e-6 +capstan_N 3.729715012475897e-6 +capstone_N 3.729715012475897e-6 +capsular_A 1.0773191989054437e-5 +capsulate_A 1.0773191989054437e-5 +capsule_N 1.118914503742769e-5 +capt_PN 1.865462821325971e-5 +captain_N 1.8648575062379485e-5 +captain_V2 3.219730508556434e-5 +captainship_N 3.729715012475897e-6 +caption_N 3.729715012475897e-6 +captious_A 1.0773191989054437e-5 +captivate_V2 3.219730508556434e-5 +captivation_N 3.729715012475897e-6 +captive_A 2.1546383978108874e-5 +captive_N 1.118914503742769e-5 +captivity_N 3.729715012475897e-6 +captopril_N 3.729715012475897e-6 +captor_N 3.729715012475897e-6 +capture_N 7.459430024951794e-6 +capture_V2 4.0246631356955425e-4 +capuchin_N 3.729715012475897e-6 +capulin_N 3.729715012475897e-6 +caput_N 3.729715012475897e-6 +capybara_N 3.729715012475897e-6 +car_N 1.4732374299279791e-3 +car_ferry_N 3.729715012475897e-6 +carabao_N 3.729715012475897e-6 +carabiner_N 3.729715012475897e-6 +caracal_N 3.729715012475897e-6 +caracara_N 3.729715012475897e-6 +caracas_PN 1.865462821325971e-5 +caracolito_N 3.729715012475897e-6 +carafe_N 3.729715012475897e-6 +carambola_N 3.729715012475897e-6 +caramel_A 1.0773191989054437e-5 +caramel_N 3.729715012475897e-6 +carancha_N 3.729715012475897e-6 +caranday_N 3.729715012475897e-6 +carangid_A 1.0773191989054437e-5 +carapace_N 3.729715012475897e-6 +carat_N 1.4918860049903587e-5 +caravan_N 3.729715012475897e-6 +caravanning_N 3.729715012475897e-6 +caravansary_N 3.729715012475897e-6 +caravanserai_N 3.729715012475897e-6 +caraway_N 3.729715012475897e-6 +carbamate_N 3.729715012475897e-6 +carbide_N 7.459430024951794e-6 +carbine_N 3.729715012475897e-6 +carbineer_N 3.729715012475897e-6 +carbocyclic_A 1.0773191989054437e-5 +carbohydrate_N 3.729715012475897e-6 +carbolated_A 1.0773191989054437e-5 +carbolic_A 1.0773191989054437e-5 +carbomycin_N 3.729715012475897e-6 +carbon_N 6.713487022456614e-5 +carbon_paper_N 3.729715012475897e-6 +carbonaceous_A 1.0773191989054437e-5 +carbonado_N 3.729715012475897e-6 +carbonara_N 3.729715012475897e-6 +carbonate_N 3.729715012475897e-6 +carbonated_A 1.0773191989054437e-5 +carbonation_N 3.729715012475897e-6 +carbonic_A 1.0773191989054437e-5 +carboniferous_A 1.0773191989054437e-5 +carbonization_N 3.729715012475897e-6 +carbonize_V2 1.609865254278217e-5 +carbonyl_A 1.0773191989054437e-5 +carbonyl_N 3.729715012475897e-6 +carborundum_N 3.729715012475897e-6 +carboxyl_A 1.0773191989054437e-5 +carboxyl_N 3.729715012475897e-6 +carboy_N 3.729715012475897e-6 +carbuncle_N 3.729715012475897e-6 +carbuncled_A 1.0773191989054437e-5 +carburetor_N 3.729715012475897e-6 +carburettor_N 3.729715012475897e-6 +carcase_N 3.729715012475897e-6 +carcass_N 7.459430024951794e-6 +carcinogen_N 3.729715012475897e-6 +carcinogenic_A 1.0773191989054437e-5 +carcinoid_N 3.729715012475897e-6 +carcinoma_N 3.729715012475897e-6 +carcinomatous_A 1.0773191989054437e-5 +carcinosarcoma_N 3.729715012475897e-6 +card_N 3.7297150124758965e-4 +card_V2 1.609865254278217e-5 +card_sharper_N 3.729715012475897e-6 +cardamom_N 3.729715012475897e-6 +cardboard_A 1.0773191989054437e-5 +cardboard_N 1.118914503742769e-5 +cardcase_N 3.729715012475897e-6 +cardenden_PN 1.865462821325971e-5 +cardholder_N 3.729715012475897e-6 +cardia_N 3.729715012475897e-6 +cardiac_A 5.3865959945272184e-5 +cardiff_PN 1.865462821325971e-5 +cardigan_N 7.459430024951794e-6 +cardigan_PN 1.865462821325971e-5 +cardinal_A 1.0773191989054437e-5 +cardinal_N 7.459430024951794e-6 +cardinalate_N 3.729715012475897e-6 +cardinalfish_N 3.729715012475897e-6 +cardinality_N 3.729715012475897e-6 +cardinalship_N 3.729715012475897e-6 +cardiograph_N 3.729715012475897e-6 +cardiographic_A 1.0773191989054437e-5 +cardiography_N 3.729715012475897e-6 +cardioid_N 3.729715012475897e-6 +cardiologic_A 1.0773191989054437e-5 +cardiologist_N 3.729715012475897e-6 +cardiology_N 3.729715012475897e-6 +cardiomegaly_N 3.729715012475897e-6 +cardiomyopathy_N 3.729715012475897e-6 +cardiopulmonary_A 1.0773191989054437e-5 +cardiospasm_N 3.729715012475897e-6 +cardiovascular_A 5.3865959945272184e-5 +carditis_N 3.729715012475897e-6 +cardoon_N 3.729715012475897e-6 +cardroom_N 3.729715012475897e-6 +cardsharp_N 3.729715012475897e-6 +care_N 4.512955165095835e-4 +care_V 7.030434979815848e-4 +care_for_V2 1.609865254278217e-5 +careen_V 1.3607293509320997e-4 +careen_V2 1.609865254278217e-5 +career_N 2.0886404069865022e-4 +career_V 2.2678822515534993e-5 +careerism_N 3.729715012475897e-6 +careerist_N 3.729715012475897e-6 +carefree_A 3.231957596716331e-5 +carefreeness_N 3.729715012475897e-6 +careful_A 4.632472555293408e-4 +carefulness_N 3.729715012475897e-6 +caregiver_N 3.729715012475897e-6 +careladen_A 1.0773191989054437e-5 +careless_A 3.231957596716331e-5 +carelessness_N 3.729715012475897e-6 +caress_N 3.729715012475897e-6 +caress_V2 1.609865254278217e-5 +caressing_A 1.0773191989054437e-5 +caressing_N 3.729715012475897e-6 +caret_N 3.729715012475897e-6 +caretaker_N 7.459430024951794e-6 +careworn_A 1.0773191989054437e-5 +carful_N 3.729715012475897e-6 +cargo_N 8.951316029942152e-5 +carhop_N 3.729715012475897e-6 +caribou_N 7.459430024951794e-6 +caricature_N 1.118914503742769e-5 +caricature_V2 3.219730508556434e-5 +caricaturist_N 3.729715012475897e-6 +caries_N 3.729715012475897e-6 +carillon_N 7.459430024951794e-6 +carillonneur_N 3.729715012475897e-6 +carina_N 3.729715012475897e-6 +carinal_A 1.0773191989054437e-5 +carinate_N 3.729715012475897e-6 +carioca_N 3.729715012475897e-6 +carious_A 1.0773191989054437e-5 +carissa_N 3.729715012475897e-6 +carjacking_N 3.729715012475897e-6 +carl_PN 1.865462821325971e-5 +carlisle_PN 1.865462821325971e-5 +carload_N 3.729715012475897e-6 +carlow_PN 1.865462821325971e-5 +carluke_PN 1.865462821325971e-5 +carmarthen_PN 1.865462821325971e-5 +carmelite_A 2.1546383978108874e-5 +carmelite_N 3.729715012475897e-6 +carminative_A 1.0773191989054437e-5 +carminative_N 3.729715012475897e-6 +carmine_A 1.0773191989054437e-5 +carmine_N 3.729715012475897e-6 +carnage_N 1.4918860049903587e-5 +carnal_A 1.0773191989054437e-5 +carnallite_N 3.729715012475897e-6 +carnassial_A 1.0773191989054437e-5 +carnation_A 1.0773191989054437e-5 +carnation_N 3.729715012475897e-6 +carnauba_N 3.729715012475897e-6 +carnelian_N 3.729715012475897e-6 +carnforth_PN 1.865462821325971e-5 +carnival_N 1.118914503742769e-5 +carnivore_N 7.459430024951794e-6 +carnivorous_A 1.0773191989054437e-5 +carnosaur_N 3.729715012475897e-6 +carnotite_N 3.729715012475897e-6 +carnoustie_PN 1.865462821325971e-5 +carob_N 3.729715012475897e-6 +caroche_N 3.729715012475897e-6 +carol_N 3.729715012475897e-6 +carol_PN 1.865462821325971e-5 +carol_V2 1.609865254278217e-5 +carole_PN 1.865462821325971e-5 +caroler_N 3.729715012475897e-6 +carolina_PN 1.865462821325971e-5 +caroline_PN 1.865462821325971e-5 +caroling_N 3.729715012475897e-6 +caroller_N 3.729715012475897e-6 +carolyn_PN 1.865462821325971e-5 +carom_N 3.729715012475897e-6 +carotene_N 3.729715012475897e-6 +carotenemia_N 3.729715012475897e-6 +carotenoid_N 3.729715012475897e-6 +carotid_A 1.0773191989054437e-5 +carousal_N 3.729715012475897e-6 +carouse_N 3.729715012475897e-6 +carouse_V2 1.609865254278217e-5 +carousel_N 3.729715012475897e-6 +carp_N 7.459430024951794e-6 +carp_V 6.803646754660499e-5 +carp_V2 1.609865254278217e-5 +carpal_A 1.0773191989054437e-5 +carpal_N 3.729715012475897e-6 +carpel_N 3.729715012475897e-6 +carpellary_A 1.0773191989054437e-5 +carpellate_A 1.0773191989054437e-5 +carpenter_N 1.118914503742769e-5 +carpenteria_N 3.729715012475897e-6 +carpentry_N 7.459430024951794e-6 +carper_N 3.729715012475897e-6 +carpet_N 6.340515521209024e-5 +carpet_V2 3.219730508556434e-5 +carpet_beater_N 3.729715012475897e-6 +carpet_knight_N 3.729715012475897e-6 +carpet_sweeper_N 3.729715012475897e-6 +carpetbag_A 1.0773191989054437e-5 +carpetbag_N 3.729715012475897e-6 +carpetbagger_N 7.459430024951794e-6 +carpetweed_N 3.729715012475897e-6 +carpophagous_A 1.0773191989054437e-5 +carpophore_N 3.729715012475897e-6 +carport_N 3.729715012475897e-6 +carpospore_N 3.729715012475897e-6 +carposporic_A 1.0773191989054437e-5 +carposporous_A 1.0773191989054437e-5 +carrack_N 3.729715012475897e-6 +carrageenin_N 3.729715012475897e-6 +carrel_N 3.729715012475897e-6 +carriage_N 3.729715012475897e-6 +carriageway_N 3.729715012475897e-6 +carrie_PN 1.865462821325971e-5 +carried_away_V 2.2678822515534993e-5 +carrier_N 5.07241241696722e-4 +carrier_bag_N 3.729715012475897e-6 +carrier_pigeon_N 3.729715012475897e-6 +carrion_N 3.729715012475897e-6 +carrion_crow_N 3.729715012475897e-6 +carron_PN 1.865462821325971e-5 +carrot_N 1.118914503742769e-5 +carroty_A 1.0773191989054437e-5 +carry_N 4.1026865137234865e-5 +carry_V 8.164376105592598e-4 +carry_V2 2.3504032712461966e-3 +carry_forward_V2 1.609865254278217e-5 +carry_off_V2 1.609865254278217e-5 +carry_on_V 2.2678822515534993e-5 +carry_on_V2 1.609865254278217e-5 +carry_on_about_V2 1.609865254278217e-5 +carry_on_with_V2 1.609865254278217e-5 +carry_out_V 2.2678822515534993e-5 +carry_out_V2 4.3466361865511857e-4 +carry_over_V2 1.609865254278217e-5 +carry_through_V2 1.609865254278217e-5 +carryall_N 3.729715012475897e-6 +carrycot_N 3.729715012475897e-6 +carsick_A 1.0773191989054437e-5 +carsickness_N 3.729715012475897e-6 +cart_N 2.237829007485538e-5 +cart_V2 6.439461017112868e-5 +cart_off_V2 1.609865254278217e-5 +cart_out_V 2.2678822515534993e-5 +cart_track_N 3.729715012475897e-6 +cartage_N 3.729715012475897e-6 +cartagena_PN 1.865462821325971e-5 +carte_blanche_N 3.729715012475897e-6 +cartel_N 2.237829007485538e-5 +carter_N 3.729715012475897e-6 +carthorse_N 3.729715012475897e-6 +cartilage_N 1.118914503742769e-5 +cartilaginification_N 3.729715012475897e-6 +cartilaginous_A 1.0773191989054437e-5 +cartload_N 3.729715012475897e-6 +cartographer_N 3.729715012475897e-6 +cartographic_A 1.0773191989054437e-5 +cartography_N 3.729715012475897e-6 +carton_N 1.118914503742769e-5 +cartoon_N 2.9837720099807175e-5 +cartoon_V2 1.609865254278217e-5 +cartoonistFem_N 3.729715012475897e-6 +cartoonistMasc_N 1.4918860049903587e-5 +cartouche_N 3.729715012475897e-6 +cartridge_N 2.237829007485538e-5 +cartridge_belt_N 3.729715012475897e-6 +cartridge_paper_N 3.729715012475897e-6 +cartroad_N 3.729715012475897e-6 +cartwheel_N 3.729715012475897e-6 +cartwright_N 3.729715012475897e-6 +caruncle_N 3.729715012475897e-6 +caruncular_A 1.0773191989054437e-5 +carunculate_A 1.0773191989054437e-5 +carve_V 1.8143058012427994e-4 +carve_V2 1.609865254278217e-5 +carve_out_V2 1.609865254278217e-5 +carve_up_V2 1.609865254278217e-5 +carvedilol_N 3.729715012475897e-6 +carver_N 3.729715012475897e-6 +carving_N 3.729715012475897e-6 +carving_fork_N 3.729715012475897e-6 +carving_knife_N 3.729715012475897e-6 +caryatid_N 3.729715012475897e-6 +caryophyllaceous_A 1.0773191989054437e-5 +casaba_N 3.729715012475897e-6 +casablanca_PN 1.865462821325971e-5 +cascade_N 1.118914503742769e-5 +cascade_V 6.803646754660499e-5 +cascara_N 3.729715012475897e-6 +cascarilla_N 3.729715012475897e-6 +case_N 2.0811809769615505e-3 +case_V2 3.219730508556434e-5 +case_hardened_A 1.0773191989054437e-5 +case_history_N 3.729715012475897e-6 +case_law_N 3.729715012475897e-6 +casebook_A 1.0773191989054437e-5 +casebook_N 3.729715012475897e-6 +casein_N 3.729715012475897e-6 +casement_N 3.729715012475897e-6 +caseous_A 1.0773191989054437e-5 +casern_N 3.729715012475897e-6 +casework_N 3.729715012475897e-6 +caseworm_N 3.729715012475897e-6 +cash_N 1.6112368853895874e-3 +cash_V 2.9482469270195494e-4 +cash_V2 1.609865254278217e-5 +cash_in_V2 1.609865254278217e-5 +cash_in_on_V2 1.609865254278217e-5 +cash_out_V2 1.609865254278217e-5 +cash_up_V 2.2678822515534993e-5 +cashable_A 1.0773191989054437e-5 +cashbox_N 3.729715012475897e-6 +cashew_N 3.729715012475897e-6 +cashier_N 7.459430024951794e-6 +cashier_V2 1.609865254278217e-5 +cashmere_N 3.729715012475897e-6 +casing_N 1.118914503742769e-5 +casino_N 1.7529660558636716e-4 +cask_N 3.729715012475897e-6 +casket_N 7.459430024951794e-6 +caspase_N 3.729715012475897e-6 +casque_N 3.729715012475897e-6 +casquet_N 3.729715012475897e-6 +cassareep_N 3.729715012475897e-6 +cassava_N 3.729715012475897e-6 +casserole_N 3.729715012475897e-6 +cassette_N 2.6108005087331277e-5 +cassia_N 3.729715012475897e-6 +cassiri_N 3.729715012475897e-6 +cassiterite_N 3.729715012475897e-6 +cassock_N 3.729715012475897e-6 +cassocked_A 1.0773191989054437e-5 +cassowary_N 3.729715012475897e-6 +cast_N 6.713487022456614e-5 +cast_V 2.2678822515534994e-4 +cast_V2 4.990582288262473e-4 +cast_about_for_V2 1.609865254278217e-5 +cast_around_V 2.2678822515534993e-5 +cast_around_for_V2 1.609865254278217e-5 +cast_aside_V2 1.609865254278217e-5 +cast_iron_A 3.231957596716331e-5 +cast_off_A 1.0773191989054437e-5 +cast_off_V 2.2678822515534993e-5 +cast_off_V2 1.609865254278217e-5 +cast_out_V2 1.609865254278217e-5 +cast_round_for_V2 1.609865254278217e-5 +cast_up_V2 1.609865254278217e-5 +castaway_N 3.729715012475897e-6 +caste_N 3.729715012475897e-6 +castellated_A 1.0773191989054437e-5 +caster_N 1.118914503742769e-5 +castigate_V2 8.049326271391085e-5 +castigation_N 3.729715012475897e-6 +casting_N 3.356743511228307e-5 +castle_N 1.4918860049903587e-5 +castle_V 4.5357645031069986e-5 +castleford_PN 1.865462821325971e-5 +castor_N 3.729715012475897e-6 +castor_oil_N 1.118914503742769e-5 +castrate_V2 1.609865254278217e-5 +castration_N 3.729715012475897e-6 +castrato_N 3.729715012475897e-6 +casual_A 1.0773191989054437e-4 +casualness_N 3.729715012475897e-6 +casualty_N 6.340515521209024e-5 +casuarina_N 3.729715012475897e-6 +casuist_N 3.729715012475897e-6 +casuistic_A 1.0773191989054437e-5 +casuistical_A 1.0773191989054437e-5 +casuistry_N 7.459430024951794e-6 +casus_belli_N 3.729715012475897e-6 +cat_N 1.8648575062379485e-5 +cat_nap_N 3.729715012475897e-6 +cat_o'_nine_tails_N 3.729715012475897e-6 +cat_sleep_N 3.729715012475897e-6 +catabiosis_N 3.729715012475897e-6 +catabolic_A 1.0773191989054437e-5 +catabolism_N 3.729715012475897e-6 +catachresis_N 3.729715012475897e-6 +catachrestic_A 1.0773191989054437e-5 +cataclinal_A 1.0773191989054437e-5 +cataclysm_N 7.459430024951794e-6 +cataclysmal_A 1.0773191989054437e-5 +cataclysmic_A 1.0773191989054437e-5 +catacomb_N 3.729715012475897e-6 +catacorner_A 1.0773191989054437e-5 +catadromous_A 1.0773191989054437e-5 +catafalque_N 3.729715012475897e-6 +catalan_A 1.0773191989054437e-5 +catalan_N 3.729715012475897e-6 +catalase_N 3.729715012475897e-6 +catalatic_A 1.0773191989054437e-5 +catalectic_A 1.0773191989054437e-5 +catalectic_N 3.729715012475897e-6 +catalepsy_N 3.729715012475897e-6 +cataleptic_A 1.0773191989054437e-5 +cataleptic_N 3.729715012475897e-6 +catalexis_N 3.729715012475897e-6 +catalog_N 3.729715012475897e-6 +catalog_V2 1.609865254278217e-5 +cataloger_N 3.729715012475897e-6 +catalogue_N 7.459430024951794e-6 +catalogue_V2 1.609865254278217e-5 +catalpa_N 3.729715012475897e-6 +catalufa_N 3.729715012475897e-6 +catalysis_N 3.729715012475897e-6 +catalyst_N 4.475658014971076e-5 +catalytic_A 3.231957596716331e-5 +catalytically_Adv 8.668966832532898e-6 +catamaran_N 7.459430024951794e-6 +catamite_N 3.729715012475897e-6 +catananche_N 3.729715012475897e-6 +catania_PN 1.865462821325971e-5 +cataphasia_N 3.729715012475897e-6 +cataphatic_A 1.0773191989054437e-5 +cataphatism_N 3.729715012475897e-6 +cataphyll_N 3.729715012475897e-6 +cataplasia_N 3.729715012475897e-6 +cataplastic_A 1.0773191989054437e-5 +catapult_N 3.729715012475897e-6 +catapult_V2 4.8295957628346505e-5 +catapultic_A 1.0773191989054437e-5 +cataract_N 2.237829007485538e-5 +catarrh_N 3.729715012475897e-6 +catarrhal_A 1.0773191989054437e-5 +catarrhine_A 1.0773191989054437e-5 +catastrophe_N 7.832401526199384e-5 +catastrophic_A 1.508246878467621e-4 +catastrophically_Adv 8.668966832532898e-6 +catatonia_N 3.729715012475897e-6 +catatonic_A 1.0773191989054437e-5 +catbird_N 3.729715012475897e-6 +catboat_N 3.729715012475897e-6 +catcall_N 3.729715012475897e-6 +catcall_V 2.2678822515534993e-5 +catch_N 2.237829007485538e-5 +catch_V 8.391164330747948e-4 +catch_V2 8.049326271391085e-4 +catch_VS 1.1552012938254491e-4 +catch_at_V2 1.609865254278217e-5 +catch_crop_N 3.729715012475897e-6 +catch_on_V 4.5357645031069986e-5 +catch_out_V2 1.609865254278217e-5 +catch_up_V 2.2678822515534993e-5 +catch_up_V2 1.609865254278217e-5 +catch_up_in_V2 1.609865254278217e-5 +catch_up_on_V2 1.609865254278217e-5 +catch_up_with_V2 1.609865254278217e-5 +catchall_N 3.729715012475897e-6 +catcher_N 1.4918860049903587e-5 +catching_N 3.729715012475897e-6 +catchment_N 3.729715012475897e-6 +catchment_area_N 3.729715012475897e-6 +catchment_basin_N 3.729715012475897e-6 +catchpenny_A 1.0773191989054437e-5 +catchphrase_N 3.729715012475897e-6 +catchup_N 3.729715012475897e-6 +catchword_N 3.729715012475897e-6 +catchy_A 1.0773191989054437e-5 +catechesis_N 3.729715012475897e-6 +catechetical_A 1.0773191989054437e-5 +catechin_N 3.729715012475897e-6 +catechism_N 3.729715012475897e-6 +catechismal_A 1.0773191989054437e-5 +catechist_N 3.729715012475897e-6 +catechistic_A 1.0773191989054437e-5 +catechize_V2 1.609865254278217e-5 +catecholamine_N 3.729715012475897e-6 +catechu_N 3.729715012475897e-6 +catechumen_N 3.729715012475897e-6 +categorem_N 3.729715012475897e-6 +categorematic_A 1.0773191989054437e-5 +categorial_A 1.0773191989054437e-5 +categoric_A 1.0773191989054437e-5 +categorical_A 2.1546383978108874e-5 +categorization_N 3.729715012475897e-6 +categorize_V2 4.8295957628346505e-5 +category_N 2.0140461067369843e-4 +catena_N 3.729715012475897e-6 +catenary_N 3.729715012475897e-6 +catenulate_A 1.0773191989054437e-5 +cater_V 3.175035152174899e-4 +cater_for_V2 1.609865254278217e-5 +cater_to_V2 1.609865254278217e-5 +caterer_N 7.459430024951794e-6 +catering_N 3.729715012475897e-6 +caterpillar_N 3.729715012475897e-6 +caterwaul_N 3.729715012475897e-6 +caterwaul_V 2.2678822515534993e-5 +catfish_N 1.4918860049903587e-5 +catgut_N 3.729715012475897e-6 +cath_PN 1.865462821325971e-5 +catharsis_N 7.459430024951794e-6 +cathartic_A 1.0773191989054437e-5 +cathartic_N 3.729715012475897e-6 +cathectic_A 1.0773191989054437e-5 +cathedra_N 3.729715012475897e-6 +cathedral_A 1.0773191989054437e-5 +cathedral_N 3.729715012475897e-6 +catherine_PN 1.865462821325971e-5 +catheter_N 3.729715012475897e-6 +catheterization_N 3.729715012475897e-6 +cathexis_N 3.729715012475897e-6 +cathode_N 1.8648575062379485e-5 +cathodic_A 1.0773191989054437e-5 +catholic_A 2.1546383978108874e-5 +catholic_N 7.459430024951794e-6 +catholicism_N 3.729715012475897e-6 +catholicity_N 3.729715012475897e-6 +cathy_PN 1.865462821325971e-5 +cation_N 3.729715012475897e-6 +cationic_A 1.0773191989054437e-5 +catkin_N 3.729715012475897e-6 +catkinate_A 1.0773191989054437e-5 +catling_N 3.729715012475897e-6 +catmint_N 3.729715012475897e-6 +catoptric_A 1.0773191989054437e-5 +catoptrics_N 3.729715012475897e-6 +catostomid_N 3.729715012475897e-6 +catsup_N 7.459430024951794e-6 +cattail_N 3.729715012475897e-6 +cattalo_N 3.729715012475897e-6 +cattiness_N 3.729715012475897e-6 +cattish_A 1.0773191989054437e-5 +cattle_N 3.729715012475897e-6 +cattle_cake_N 3.729715012475897e-6 +cattleman_N 3.729715012475897e-6 +cattleship_N 3.729715012475897e-6 +cattleya_N 3.729715012475897e-6 +catty_A 1.0773191989054437e-5 +catty_N 3.729715012475897e-6 +catwalk_N 3.729715012475897e-6 +caucasian_A 1.0773191989054437e-5 +caucasian_N 3.729715012475897e-6 +caucus_N 3.729715012475897e-6 +cauda_N 3.729715012475897e-6 +caudal_A 1.0773191989054437e-5 +caudate_A 1.0773191989054437e-5 +caudex_N 3.729715012475897e-6 +caul_N 3.729715012475897e-6 +cauldron_N 3.729715012475897e-6 +caulescent_A 1.0773191989054437e-5 +cauliflower_N 3.729715012475897e-6 +cauline_A 1.0773191989054437e-5 +caulk_N 3.729715012475897e-6 +caulk_V2 1.609865254278217e-5 +causal_A 1.0773191989054437e-5 +causalgia_N 3.729715012475897e-6 +causality_N 3.729715012475897e-6 +causation_N 3.729715012475897e-6 +causative_A 1.0773191989054437e-5 +cause_N 2.2005318573607791e-4 +cause_V2 3.0909412882141763e-3 +cause_V2V 2.6180458158017766e-2 +cause_VS 3.4656038814763474e-4 +causeless_A 1.0773191989054437e-5 +causerie_N 3.729715012475897e-6 +causeway_N 3.729715012475897e-6 +causing_N 3.729715012475897e-6 +caustic_A 4.309276795621775e-5 +caustic_N 3.729715012475897e-6 +caustically_Adv 8.668966832532898e-6 +cauterize_V2 1.609865254278217e-5 +cautery_N 3.729715012475897e-6 +caution_N 7.086458523704203e-5 +caution_V 1.8143058012427994e-4 +caution_V2 1.609865254278217e-5 +caution_V2V 1.402524544179523e-3 +caution_VS 1.3284814878992664e-3 +cautionary_A 2.1546383978108874e-5 +cautious_A 5.602059834308307e-4 +cavalcade_N 3.729715012475897e-6 +cavalier_A 3.231957596716331e-5 +cavalier_N 3.729715012475897e-6 +cavalry_N 3.729715012475897e-6 +cavalryman_N 3.729715012475897e-6 +cavan_PN 1.865462821325971e-5 +cave_N 1.118914503742769e-5 +cave_V 6.803646754660499e-5 +cave_V2 1.609865254278217e-5 +cave_dweller_N 3.729715012475897e-6 +cave_in_N 3.729715012475897e-6 +cave_in_V 2.2678822515534993e-5 +caveat_N 1.8648575062379485e-5 +caveman_N 3.729715012475897e-6 +cavern_N 3.729715012475897e-6 +cavernous_A 3.231957596716331e-5 +cavetto_N 3.729715012475897e-6 +caviar_N 3.729715012475897e-6 +caviare_N 3.729715012475897e-6 +cavil_V 2.2678822515534993e-5 +cavity_N 3.729715012475897e-6 +cavort_V 2.2678822515534993e-5 +cavy_N 3.729715012475897e-6 +caw_N 3.729715012475897e-6 +caw_V 2.2678822515534993e-5 +caw_V2 1.609865254278217e-5 +cayenne_N 3.729715012475897e-6 +cayenne_pepper_N 3.729715012475897e-6 +cayman_N 3.729715012475897e-6 +cayuse_N 3.729715012475897e-6 +cbi_N 3.729715012475897e-6 +cc_N 3.729715012475897e-6 +cd_N 2.4616119082340916e-4 +cdr_PN 1.865462821325971e-5 +cdre_PN 1.865462821325971e-5 +cease_N 4.1026865137234865e-5 +cease_V 1.1339411257767497e-4 +cease_V2 9.659191525669301e-5 +cease_V2V 4.675081813931744e-4 +cease_fire_N 3.729715012475897e-6 +ceaseless_A 3.231957596716331e-5 +cecal_A 1.0773191989054437e-5 +cecil_PN 1.865462821325971e-5 +cecilia_PN 1.865462821325971e-5 +cecily_PN 1.865462821325971e-5 +cecropia_N 3.729715012475897e-6 +cecum_N 3.729715012475897e-6 +cedar_N 1.118914503742769e-5 +cedarn_A 1.0773191989054437e-5 +cede_V2 8.049326271391085e-5 +cedi_N 3.729715012475897e-6 +cedilla_N 3.729715012475897e-6 +cedric_PN 1.865462821325971e-5 +cefadroxil_N 3.729715012475897e-6 +cefn_mawr_PN 1.865462821325971e-5 +cefoperazone_N 3.729715012475897e-6 +cefotaxime_N 3.729715012475897e-6 +ceftazidime_N 3.729715012475897e-6 +ceftriaxone_N 3.729715012475897e-6 +cefuroxime_N 3.729715012475897e-6 +ceibo_N 3.729715012475897e-6 +ceilidh_N 3.729715012475897e-6 +ceiling_N 2.051343256861743e-4 +ceilinged_A 1.0773191989054437e-5 +celandine_N 3.729715012475897e-6 +celebrant_N 3.729715012475897e-6 +celebrate_V2 2.575784406845147e-4 +celebrated_A 1.0773191989054437e-5 +celebration_N 4.475658014971076e-5 +celebratory_A 1.0773191989054437e-5 +celebrity_N 3.356743511228307e-5 +celecoxib_N 3.729715012475897e-6 +celeriac_N 3.729715012475897e-6 +celerity_N 3.729715012475897e-6 +celery_N 3.729715012475897e-6 +celesta_N 3.729715012475897e-6 +celestial_A 1.0773191989054437e-5 +celestite_N 3.729715012475897e-6 +celia_PN 1.865462821325971e-5 +celiac_A 1.0773191989054437e-5 +celibacy_N 3.729715012475897e-6 +celibate_A 1.0773191989054437e-5 +celibate_N 3.729715012475897e-6 +celiocentesis_N 3.729715012475897e-6 +celioma_N 3.729715012475897e-6 +celioscopy_N 3.729715012475897e-6 +cell_N 2.4616119082340916e-4 +cellar_N 1.118914503742769e-5 +cellarage_N 3.729715012475897e-6 +cellblock_N 3.729715012475897e-6 +cellist_N 7.459430024951794e-6 +cello_N 3.729715012475897e-6 +cellophane_N 3.729715012475897e-6 +cellular_A 3.3396895166068756e-4 +cellularity_N 3.729715012475897e-6 +cellulite_N 3.729715012475897e-6 +cellulitis_N 3.729715012475897e-6 +celluloid_A 1.0773191989054437e-5 +celluloid_N 7.459430024951794e-6 +cellulose_N 3.729715012475897e-6 +cellulosic_N 3.729715012475897e-6 +cellulosid_A 1.0773191989054437e-5 +celom_N 3.729715012475897e-6 +celt_N 3.729715012475897e-6 +celtic_A 1.0773191989054437e-5 +celtic_N 3.729715012475897e-6 +celtuce_N 3.729715012475897e-6 +cement_N 4.848629516218666e-5 +cement_V2 6.439461017112868e-5 +cement_mixer_N 3.729715012475897e-6 +cementite_N 3.729715012475897e-6 +cementitious_A 1.0773191989054437e-5 +cementum_N 3.729715012475897e-6 +cemetery_N 2.6108005087331277e-5 +cenobite_N 3.729715012475897e-6 +cenobitic_A 1.0773191989054437e-5 +cenogenesis_N 3.729715012475897e-6 +cenogenetic_A 1.0773191989054437e-5 +cenotaph_N 3.729715012475897e-6 +censer_N 3.729715012475897e-6 +censor_N 3.729715012475897e-6 +censor_V2 8.049326271391085e-5 +censorial_A 1.0773191989054437e-5 +censoring_N 3.729715012475897e-6 +censorious_A 1.0773191989054437e-5 +censorship_N 2.9837720099807175e-5 +censure_N 3.729715012475897e-6 +censure_V2 1.609865254278217e-5 +census_N 1.8648575062379485e-5 +cent_N 3.718525867438469e-3 +centas_N 3.729715012475897e-6 +centaur_N 3.729715012475897e-6 +centaury_N 3.729715012475897e-6 +centavo_N 3.729715012475897e-6 +centenarian_A 1.0773191989054437e-5 +centenarian_N 1.118914503742769e-5 +centenary_A 2.1546383978108874e-5 +centenary_N 3.729715012475897e-6 +centennial_A 5.3865959945272184e-5 +centennial_N 4.475658014971076e-5 +center_A 1.0773191989054437e-5 +center_V 1.5875175760874494e-4 +center_V2 1.609865254278217e-5 +centerboard_N 3.729715012475897e-6 +centered_A 1.0773191989054437e-5 +centerfold_N 3.729715012475897e-6 +centering_N 3.729715012475897e-6 +centerline_N 3.729715012475897e-6 +centerpiece_N 3.356743511228307e-5 +centesimal_A 1.0773191989054437e-5 +centesimo_N 3.729715012475897e-6 +centesis_N 3.729715012475897e-6 +centigrade_A 1.0773191989054437e-5 +centiliter_N 3.729715012475897e-6 +centime_N 3.729715012475897e-6 +centimeter_N 3.729715012475897e-6 +centimetre_N 3.729715012475897e-6 +centimo_N 3.729715012475897e-6 +centipede_N 3.729715012475897e-6 +centner_N 3.729715012475897e-6 +central_A 9.37267703047736e-4 +central_N 7.459430024951794e-6 +centralism_N 3.729715012475897e-6 +centralist_A 1.0773191989054437e-5 +centrality_N 3.729715012475897e-6 +centralization_N 3.729715012475897e-6 +centralize_V 2.2678822515534993e-5 +centralize_V2 4.8295957628346505e-5 +centre_N 2.6108005087331277e-5 +centre_V 2.2678822515534993e-5 +centre_V2 1.609865254278217e-5 +centre_bit_N 3.729715012475897e-6 +centre_board_N 3.729715012475897e-6 +centrepiece_N 3.729715012475897e-6 +centrex_N 3.729715012475897e-6 +centric_A 1.0773191989054437e-5 +centrifugal_A 3.231957596716331e-5 +centrifugation_N 3.729715012475897e-6 +centrifuge_N 3.729715012475897e-6 +centriole_N 3.729715012475897e-6 +centripetal_A 1.0773191989054437e-5 +centrism_N 3.729715012475897e-6 +centrist_A 1.0773191989054437e-5 +centrist_N 3.729715012475897e-6 +centroid_N 3.729715012475897e-6 +centroidal_A 1.0773191989054437e-5 +centromere_N 3.729715012475897e-6 +centromeric_A 1.0773191989054437e-5 +centrosome_N 3.729715012475897e-6 +centrosomic_A 1.0773191989054437e-5 +centrum_N 3.729715012475897e-6 +centurion_N 7.459430024951794e-6 +century_N 2.387017607984574e-4 +cephalexin_N 3.729715012475897e-6 +cephalhematoma_N 3.729715012475897e-6 +cephalic_A 1.0773191989054437e-5 +cephalochordate_N 3.729715012475897e-6 +cephaloglycin_N 3.729715012475897e-6 +cephalometry_N 3.729715012475897e-6 +cephalopod_A 1.0773191989054437e-5 +cephalopod_N 3.729715012475897e-6 +cephaloridine_N 3.729715012475897e-6 +cephalosporin_N 3.729715012475897e-6 +cephalothin_N 3.729715012475897e-6 +ceramic_A 8.61855359124355e-5 +ceramic_N 3.729715012475897e-6 +ceramics_N 1.4918860049903587e-5 +ceras_N 3.729715012475897e-6 +cerate_N 3.729715012475897e-6 +ceratodus_N 3.729715012475897e-6 +ceratopsian_N 3.729715012475897e-6 +ceratosaur_N 3.729715012475897e-6 +ceratozamia_N 3.729715012475897e-6 +cercaria_N 3.729715012475897e-6 +cercarial_A 1.0773191989054437e-5 +cere_N 3.729715012475897e-6 +cereal_A 1.0773191989054437e-5 +cereal_N 5.967544019961435e-5 +cerebellar_A 1.0773191989054437e-5 +cerebellum_N 3.729715012475897e-6 +cerebral_A 1.0773191989054437e-5 +cerebration_N 3.729715012475897e-6 +cerebrospinal_A 1.0773191989054437e-5 +cerebrovascular_A 1.0773191989054437e-5 +cerebrum_N 3.729715012475897e-6 +cerecloth_N 3.729715012475897e-6 +ceremonial_A 3.231957596716331e-5 +ceremonial_N 3.729715012475897e-6 +ceremonious_A 1.0773191989054437e-5 +ceremoniousness_N 3.729715012475897e-6 +ceremony_N 2.237829007485538e-5 +ceresin_N 3.729715012475897e-6 +ceric_A 1.0773191989054437e-5 +ceriman_N 3.729715012475897e-6 +cerise_A 1.0773191989054437e-5 +cerise_N 3.729715012475897e-6 +cerium_N 3.729715012475897e-6 +cerivastatin_N 3.729715012475897e-6 +cernuous_A 1.0773191989054437e-5 +cero_N 3.729715012475897e-6 +cerous_A 1.0773191989054437e-5 +cert_N 3.729715012475897e-6 +certain_A 3.932215076004869e-3 +certainty_N 2.237829007485538e-5 +certifiable_A 1.0773191989054437e-5 +certificate_N 2.53620620848361e-4 +certificate_V2 1.609865254278217e-5 +certification_N 7.459430024951794e-6 +certificatory_A 1.0773191989054437e-5 +certify_V 4.5357645031069986e-5 +certify_V2 8.049326271391085e-5 +certiorari_N 3.729715012475897e-6 +certitude_N 3.729715012475897e-6 +cerulean_A 1.0773191989054437e-5 +cerumen_N 3.729715012475897e-6 +ceruminous_A 1.0773191989054437e-5 +cerussite_N 3.729715012475897e-6 +cervical_A 2.1546383978108874e-5 +cervicitis_N 3.729715012475897e-6 +cervine_A 1.0773191989054437e-5 +cervix_N 7.459430024951794e-6 +cesarean_A 1.0773191989054437e-5 +cesium_N 3.729715012475897e-6 +cessation_N 1.8648575062379485e-5 +cession_N 3.729715012475897e-6 +cesspit_N 3.729715012475897e-6 +cesspool_N 3.729715012475897e-6 +cetacean_A 1.0773191989054437e-5 +cetacean_N 3.729715012475897e-6 +cetrimide_N 3.729715012475897e-6 +ceylon_PN 1.865462821325971e-5 +cf_PN 1.865462821325971e-5 +cf__Adv 8.668966832532898e-6 +cgs_N 3.729715012475897e-6 +chabazite_N 3.729715012475897e-6 +chachalaca_N 3.729715012475897e-6 +chachka_N 3.729715012475897e-6 +chacma_N 3.729715012475897e-6 +chad_N 3.729715012475897e-6 +chad_PN 1.865462821325971e-5 +chadian_A 1.0773191989054437e-5 +chadian_N 3.729715012475897e-6 +chador_N 3.729715012475897e-6 +chaenactis_N 3.729715012475897e-6 +chaeta_N 3.729715012475897e-6 +chaetal_A 1.0773191989054437e-5 +chaetodon_N 3.729715012475897e-6 +chaetognathan_A 1.0773191989054437e-5 +chafe_N 3.729715012475897e-6 +chafe_V 6.803646754660499e-5 +chafe_V2 1.609865254278217e-5 +chafeweed_N 3.729715012475897e-6 +chaff_N 3.729715012475897e-6 +chaff_V2 1.609865254278217e-5 +chaffinch_N 3.729715012475897e-6 +chaffweed_N 3.729715012475897e-6 +chaffy_A 1.0773191989054437e-5 +chafing_N 3.729715012475897e-6 +chafing_dish_N 3.729715012475897e-6 +chagrin_N 3.729715012475897e-6 +chagrin_V2 1.609865254278217e-5 +chain_N 5.855652569587158e-4 +chain_V2 4.8295957628346505e-5 +chain_armour_N 3.729715012475897e-6 +chain_gang_N 3.729715012475897e-6 +chain_letter_N 3.729715012475897e-6 +chain_mail_N 3.729715012475897e-6 +chain_smoker_N 3.729715012475897e-6 +chain_stitch_N 3.729715012475897e-6 +chain_store_N 3.729715012475897e-6 +chair_N 8.578344528694562e-5 +chair_V2 1.609865254278217e-4 +chair_lift_N 3.729715012475897e-6 +chairlift_N 3.729715012475897e-6 +chairman_N 2.1408564171611646e-3 +chairmanship_N 1.4918860049903587e-5 +chaise_N 3.729715012475897e-6 +chaise_longue_N 3.729715012475897e-6 +chaja_N 3.729715012475897e-6 +chalaza_N 3.729715012475897e-6 +chalazion_N 3.729715012475897e-6 +chalcedony_N 3.729715012475897e-6 +chalcocite_N 3.729715012475897e-6 +chalcopyrite_N 3.729715012475897e-6 +chaldron_N 3.729715012475897e-6 +chalet_N 3.729715012475897e-6 +chalfont_PN 1.865462821325971e-5 +chalfont_st_giles_PN 1.865462821325971e-5 +chalfont_st_peter_PN 1.865462821325971e-5 +chalice_N 3.729715012475897e-6 +chalk_N 1.118914503742769e-5 +chalk_V2 8.049326271391085e-5 +chalk_out_V2 1.609865254278217e-5 +chalk_up_V2 1.609865254278217e-5 +chalk_up_to_V3 1.5873015873015873e-3 +chalkpit_N 3.729715012475897e-6 +chalky_A 1.0773191989054437e-5 +challah_N 3.729715012475897e-6 +challenge_N 2.1259375571112613e-4 +challenge_V 2.4946704767088494e-4 +challenge_V2 6.439461017112868e-4 +challengeable_A 1.0773191989054437e-5 +challenger_N 1.4918860049903587e-5 +challis_N 3.729715012475897e-6 +chalybeate_A 1.0773191989054437e-5 +chamber_N 9.324287531189741e-5 +chambered_A 1.0773191989054437e-5 +chamberlain_N 3.729715012475897e-6 +chambermaid_N 3.729715012475897e-6 +chamberpot_N 3.729715012475897e-6 +chambray_N 3.729715012475897e-6 +chameleon_N 3.729715012475897e-6 +chammy_leather_N 3.729715012475897e-6 +chamois_N 3.729715012475897e-6 +chamois_leather_N 3.729715012475897e-6 +chamomile_N 3.729715012475897e-6 +chamosite_N 3.729715012475897e-6 +champ_N 1.118914503742769e-5 +champ_V 2.2678822515534993e-5 +champ_V2 1.609865254278217e-5 +champagne_N 2.6108005087331277e-5 +champerty_N 3.729715012475897e-6 +champion_A 2.1546383978108874e-5 +champion_Adv 8.668966832532898e-6 +champion_N 5.2216010174662554e-5 +champion_V2 8.049326271391085e-5 +championship_N 2.9837720099807175e-5 +champleve_A 1.0773191989054437e-5 +chanar_N 3.729715012475897e-6 +chance_N 4.102686513723486e-4 +chance_V 2.2678822515534993e-5 +chance_V2 1.609865254278217e-5 +chance_upon_V2 1.609865254278217e-5 +chancel_N 3.729715012475897e-6 +chancellery_N 3.729715012475897e-6 +chancellor_N 3.356743511228307e-5 +chancellorship_N 3.729715012475897e-6 +chancery_N 3.729715012475897e-6 +chancre_N 3.729715012475897e-6 +chancroid_N 3.729715012475897e-6 +chancroidal_A 1.0773191989054437e-5 +chancrous_A 1.0773191989054437e-5 +chancy_A 1.0773191989054437e-5 +chandelier_N 1.118914503742769e-5 +chandelle_N 3.729715012475897e-6 +chandler_N 3.729715012475897e-6 +chandlery_N 3.729715012475897e-6 +chanfron_N 3.729715012475897e-6 +changchun_PN 1.865462821325971e-5 +change_N 1.51799401007769e-3 +change_V 2.9709257495350843e-3 +change_V2 2.366501923788979e-3 +change_over_V2 1.609865254278217e-5 +changeable_A 1.0773191989054437e-5 +changeableness_N 3.729715012475897e-6 +changeful_A 1.0773191989054437e-5 +changeless_A 1.0773191989054437e-5 +changelessness_N 3.729715012475897e-6 +changeling_N 3.729715012475897e-6 +changeover_N 7.459430024951794e-6 +changer_N 3.729715012475897e-6 +changsha_PN 1.865462821325971e-5 +channel_N 9.697259032437332e-5 +channel_V2 9.659191525669301e-5 +channelization_N 3.729715012475897e-6 +channels_N 3.729715012475897e-6 +chant_N 7.459430024951794e-6 +chant_V 9.071529006213997e-5 +chant_V2 4.8295957628346505e-5 +chanter_N 3.729715012475897e-6 +chanterelle_N 3.729715012475897e-6 +chantey_N 3.729715012475897e-6 +chantlike_A 1.0773191989054437e-5 +chantry_N 3.729715012475897e-6 +chaos_N 4.848629516218666e-5 +chaotic_A 8.61855359124355e-5 +chaotically_Adv 8.668966832532898e-6 +chap_N 7.459430024951794e-6 +chap_V 2.2678822515534993e-5 +chap_V2 1.609865254278217e-5 +chapatti_N 3.729715012475897e-6 +chapel_N 3.729715012475897e-6 +chapelgoer_N 3.729715012475897e-6 +chaperon_N 3.729715012475897e-6 +chaperon_V2 1.609865254278217e-5 +chapfallen_A 1.0773191989054437e-5 +chaplain_N 3.729715012475897e-6 +chaplaincy_N 3.729715012475897e-6 +chaplet_N 3.729715012475897e-6 +chapleted_A 1.0773191989054437e-5 +chapman_N 7.459430024951794e-6 +chapter_N 2.2005318573607791e-4 +chapterhouse_N 3.729715012475897e-6 +char_N 3.729715012475897e-6 +char_V 2.2678822515534993e-5 +char_V2 3.219730508556434e-5 +charabanc_1_N 3.729715012475897e-6 +charabanc_2_N 3.729715012475897e-6 +characin_N 3.729715012475897e-6 +character_N 2.0886404069865022e-4 +characteristic_A 6.463915193432663e-5 +characteristic_N 1.8648575062379485e-5 +characteristically_Adv 2.6006900497598697e-5 +characterization_N 1.118914503742769e-5 +characterize_V2 2.4147978814173252e-4 +characterless_A 2.1546383978108874e-5 +charade_N 3.729715012475897e-6 +charades_N 3.729715012475897e-6 +charcoal_A 1.0773191989054437e-5 +charcoal_N 3.729715012475897e-6 +charcoal_burner_N 3.729715012475897e-6 +charcuterie_N 3.729715012475897e-6 +chard_N 3.729715012475897e-6 +chard_PN 1.865462821325971e-5 +charge_N 1.4023728446909372e-3 +charge_V 8.617952555903298e-4 +charge_V2 1.432780076307613e-3 +charge_VS 1.8483220701207186e-3 +charge_account_N 3.729715012475897e-6 +charge_d'affaires_N 3.729715012475897e-6 +charge_off_V 2.2678822515534993e-5 +charge_sheet_N 3.729715012475897e-6 +charge_up_V2 1.609865254278217e-5 +charge_with_V3 1.5873015873015873e-3 +chargeable_A 1.0773191989054437e-5 +charger_N 7.459430024951794e-6 +chariot_N 3.729715012475897e-6 +charioteer_N 3.729715012475897e-6 +charisma_N 7.459430024951794e-6 +charismatic_A 2.1546383978108874e-5 +charitable_A 1.1850511187959881e-4 +charitableness_N 3.729715012475897e-6 +charity_N 1.9021546563627073e-4 +charivari_N 3.729715012475897e-6 +charlady_N 3.729715012475897e-6 +charlatan_N 7.459430024951794e-6 +charlatanism_N 3.729715012475897e-6 +charles_PN 1.865462821325971e-5 +charleston_N 3.729715012475897e-6 +charlie_PN 1.865462821325971e-5 +charlock_N 3.729715012475897e-6 +charlotte_N 3.729715012475897e-6 +charlotte_PN 1.865462821325971e-5 +charm_N 1.8648575062379485e-5 +charm_V 1.1339411257767497e-4 +charm_V2 1.609865254278217e-5 +charmer_N 3.729715012475897e-6 +charmingly_Adv 8.668966832532898e-6 +charnel_A 1.0773191989054437e-5 +charnel_house_N 3.729715012475897e-6 +chart_N 5.594572518713845e-5 +chart_V2 9.659191525669301e-5 +chartaceous_A 1.0773191989054437e-5 +charter_N 7.832401526199384e-5 +charter_V2 1.609865254278217e-4 +charter_party_N 3.729715012475897e-6 +charterhouse_N 3.729715012475897e-6 +chartism_N 3.729715012475897e-6 +chartist_N 3.729715012475897e-6 +chartless_A 1.0773191989054437e-5 +chartreuse_A 1.0773191989054437e-5 +chartreuse_N 3.729715012475897e-6 +charwoman_N 3.729715012475897e-6 +chary_A 2.1546383978108874e-5 +charybdis_PN 1.865462821325971e-5 +chas_PN 1.865462821325971e-5 +chase_N 1.4918860049903587e-5 +chase_V 6.803646754660499e-5 +chase_V2 1.2878922034225736e-4 +chase_down_V2 1.609865254278217e-5 +chase_off_V2 1.609865254278217e-5 +chase_up_V2 1.609865254278217e-5 +chaser_N 1.4918860049903587e-5 +chasm_N 3.729715012475897e-6 +chasse_N 3.729715012475897e-6 +chassis_N 2.237829007485538e-5 +chaste_A 2.1546383978108874e-5 +chasten_V2 3.219730508556434e-5 +chasteness_N 3.729715012475897e-6 +chastise_V2 8.049326271391085e-5 +chastisement_N 3.729715012475897e-6 +chastity_N 3.729715012475897e-6 +chasuble_N 3.729715012475897e-6 +chat_N 3.729715012475897e-6 +chat_V 9.071529006213997e-5 +chat_V2 1.609865254278217e-5 +chat_up_V2 1.609865254278217e-5 +chateau_N 3.729715012475897e-6 +chatelaine_N 3.729715012475897e-6 +chatham_PN 1.865462821325971e-5 +chattel_N 3.729715012475897e-6 +chatter_N 1.118914503742769e-5 +chatter_V 2.2678822515534993e-5 +chatterbox_N 3.729715012475897e-6 +chatterer_N 3.729715012475897e-6 +chatty_A 1.0773191989054437e-5 +chauffeur_N 1.4918860049903587e-5 +chauffeur_V2 3.219730508556434e-5 +chauffeuse_N 3.729715012475897e-6 +chaulmoogra_N 3.729715012475897e-6 +chauvinism_N 1.118914503742769e-5 +chauvinist_N 3.729715012475897e-6 +chauvinistic_A 1.0773191989054437e-5 +chaw_N 3.729715012475897e-6 +chaw_V2 1.609865254278217e-5 +chaw_bacon_N 3.729715012475897e-6 +cheadle_PN 1.865462821325971e-5 +cheap_A 9.157213190696271e-4 +cheapen_V 2.2678822515534993e-5 +cheapen_V2 3.219730508556434e-5 +cheapjack_A 1.0773191989054437e-5 +cheapjack_N 3.729715012475897e-6 +cheapness_N 3.729715012475897e-6 +cheapskate_N 3.729715012475897e-6 +cheat_N 3.729715012475897e-6 +cheat_V 4.082188052796299e-4 +cheat_V2 8.049326271391085e-5 +cheat_on_V2 1.609865254278217e-5 +cheat_out_of_V3 1.5873015873015873e-3 +chebab_N 3.729715012475897e-6 +check_N 1.8275603561131894e-4 +check_V 4.535764503106999e-4 +check_V2 2.092824830561682e-4 +check_back_V 2.2678822515534993e-5 +check_by_V2 1.609865254278217e-5 +check_for_V2 1.609865254278217e-5 +check_in_V 2.2678822515534993e-5 +check_in_V2 1.609865254278217e-5 +check_into_V2 1.609865254278217e-5 +check_off_V2 1.609865254278217e-5 +check_on_V2 1.609865254278217e-5 +check_out_V 2.2678822515534993e-5 +check_out_V2 1.609865254278217e-5 +check_out_of_V2 1.609865254278217e-5 +check_over_V2 1.609865254278217e-5 +check_through_V2 1.609865254278217e-5 +check_up_on_V2 1.609865254278217e-5 +check_with_V2 1.609865254278217e-5 +checkbook_N 1.8648575062379485e-5 +checker_N 3.729715012475897e-6 +checker_V2 1.609865254278217e-5 +checkerbloom_N 3.729715012475897e-6 +checkerboard_N 3.729715012475897e-6 +checkers_N 3.729715012475897e-6 +checklist_N 3.729715012475897e-6 +checkmate_N 3.729715012475897e-6 +checkmate_V2 1.609865254278217e-5 +checkout_N 7.459430024951794e-6 +checkpoint_N 1.118914503742769e-5 +checkroom_N 3.729715012475897e-6 +checksum_N 3.729715012475897e-6 +checkup_N 3.729715012475897e-6 +cheddar_N 3.729715012475897e-6 +cheek_N 1.118914503742769e-5 +cheek_V2 1.609865254278217e-5 +cheekbone_N 3.729715012475897e-6 +cheekpiece_N 3.729715012475897e-6 +cheeky_A 2.1546383978108874e-5 +cheep_N 3.729715012475897e-6 +cheep_V 2.2678822515534993e-5 +cheer_N 2.6108005087331277e-5 +cheer_V 1.3607293509320997e-4 +cheer_V2 1.1269056779947518e-4 +cheer_on_V2 1.609865254278217e-5 +cheer_up_V 2.2678822515534993e-5 +cheer_up_V2 1.609865254278217e-5 +cheerer_N 3.729715012475897e-6 +cheerful_A 2.1546383978108874e-5 +cheerfulness_N 3.729715012475897e-6 +cheering_N 3.729715012475897e-6 +cheerleader_N 7.459430024951794e-6 +cheerless_A 1.0773191989054437e-5 +cheerlessness_N 3.729715012475897e-6 +cheers_Interj 7.633587786259542e-3 +cheery_A 2.1546383978108874e-5 +cheese_N 2.6108005087331277e-5 +cheeseboard_N 3.729715012475897e-6 +cheeseburger_N 3.729715012475897e-6 +cheesecake_N 3.729715012475897e-6 +cheesecloth_N 3.729715012475897e-6 +cheeselike_A 1.0773191989054437e-5 +cheesemonger_N 3.729715012475897e-6 +cheeseparing_A 1.0773191989054437e-5 +cheetah_N 7.459430024951794e-6 +chef_N 4.475658014971076e-5 +chef_d'oeuvre_N 3.729715012475897e-6 +cheilitis_N 3.729715012475897e-6 +cheilosis_N 3.729715012475897e-6 +chela_N 3.729715012475897e-6 +chelate_A 1.0773191989054437e-5 +chelate_N 3.729715012475897e-6 +chelation_N 3.729715012475897e-6 +chelicera_N 3.729715012475897e-6 +cheliceral_A 1.0773191989054437e-5 +chelicerous_A 1.0773191989054437e-5 +cheliferous_A 1.0773191989054437e-5 +chelmsford_PN 1.865462821325971e-5 +chelonian_A 1.0773191989054437e-5 +chelonian_N 3.729715012475897e-6 +chelsea_PN 1.865462821325971e-5 +cheltenham_PN 1.865462821325971e-5 +chelyabinsk_PN 1.865462821325971e-5 +chemical_A 1.72371071824871e-4 +chemical_N 5.78105826933764e-4 +chemiluminescence_N 3.729715012475897e-6 +chemiluminescent_A 1.0773191989054437e-5 +chemise_N 3.729715012475897e-6 +chemisorption_N 3.729715012475897e-6 +chemisorptive_A 1.0773191989054437e-5 +chemist_N 3.356743511228307e-5 +chemistry_N 3.356743511228307e-5 +chemoreceptive_A 1.0773191989054437e-5 +chemoreceptor_N 3.729715012475897e-6 +chemosis_N 3.729715012475897e-6 +chemosurgery_N 3.729715012475897e-6 +chemosynthesis_N 3.729715012475897e-6 +chemotaxis_N 3.729715012475897e-6 +chemotherapeutic_A 1.0773191989054437e-5 +chemotherapy_N 3.729715012475897e-6 +chengchow_PN 1.865462821325971e-5 +chengtu_PN 1.865462821325971e-5 +chenille_N 7.459430024951794e-6 +chepstow_PN 1.865462821325971e-5 +cheque_N 3.729715012475897e-6 +chequebook_N 3.729715012475897e-6 +chequer_V2 1.609865254278217e-5 +cherimoya_N 3.729715012475897e-6 +cherish_V2 8.049326271391085e-5 +cheroot_N 3.729715012475897e-6 +cherry_A 3.231957596716331e-5 +cherry_N 1.118914503742769e-5 +cherrystone_N 3.729715012475897e-6 +chert_N 3.729715012475897e-6 +cherty_A 1.0773191989054437e-5 +cherub_N 7.459430024951794e-6 +cherubic_A 1.0773191989054437e-5 +chervil_N 3.729715012475897e-6 +chesham_PN 1.865462821325971e-5 +cheshire_PN 1.865462821325971e-5 +chess_N 1.4918860049903587e-5 +chessboard_N 3.729715012475897e-6 +chessman_N 3.729715012475897e-6 +chest_N 2.237829007485538e-5 +chester_PN 1.865462821325971e-5 +chester_le_street_PN 1.865462821325971e-5 +chesterfield_N 3.729715012475897e-6 +chesterfield_PN 1.865462821325971e-5 +chestnut_A 1.0773191989054437e-5 +chestnut_N 3.729715012475897e-6 +chetrum_N 3.729715012475897e-6 +cheval_glass_N 3.729715012475897e-6 +chevron_N 3.729715012475897e-6 +chevrotain_N 3.729715012475897e-6 +chew_N 7.459430024951794e-6 +chew_V 1.3607293509320997e-4 +chew_V2 4.8295957628346505e-5 +chew_off_V2 1.609865254278217e-5 +chew_on_V2 1.609865254278217e-5 +chew_out_V2 1.609865254278217e-5 +chew_over_V2 1.609865254278217e-5 +chew_up_V2 1.609865254278217e-5 +chewable_A 1.0773191989054437e-5 +chewer_N 3.729715012475897e-6 +chewing_gum_N 3.729715012475897e-6 +chewink_N 3.729715012475897e-6 +chewy_A 1.0773191989054437e-5 +chez_Prep 9.978546125829467e-6 +chi_N 3.729715012475897e-6 +chianti_N 3.729715012475897e-6 +chiaroscuro_N 3.729715012475897e-6 +chiasma_N 3.729715012475897e-6 +chiasmal_A 1.0773191989054437e-5 +chiasmus_N 3.729715012475897e-6 +chic_A 4.309276795621775e-5 +chic_N 3.729715012475897e-6 +chicago_PN 2.238555385591165e-3 +chicane_N 3.729715012475897e-6 +chicanery_N 7.459430024951794e-6 +chichester_PN 1.865462821325971e-5 +chichi_A 1.0773191989054437e-5 +chichi_N 3.729715012475897e-6 +chichipe_N 3.729715012475897e-6 +chick_N 3.729715012475897e-6 +chickadee_N 3.729715012475897e-6 +chicken_A 1.0773191989054437e-5 +chicken_N 7.459430024951794e-5 +chicken_hearted_A 1.0773191989054437e-5 +chicken_out_V 2.2678822515534993e-5 +chicken_run_N 3.729715012475897e-6 +chickenfeed_N 3.729715012475897e-6 +chickenpox_N 3.729715012475897e-6 +chickenshit_N 3.729715012475897e-6 +chickeree_N 3.729715012475897e-6 +chickpea_N 3.729715012475897e-6 +chickweed_N 3.729715012475897e-6 +chicle_N 3.729715012475897e-6 +chicory_N 3.729715012475897e-6 +chide_V 4.5357645031069986e-5 +chide_V2 6.439461017112868e-5 +chiding_N 3.729715012475897e-6 +chief_A 4.266184027665557e-3 +chief_N 1.122644218755245e-3 +chieftain_N 3.729715012475897e-6 +chieftaincy_N 3.729715012475897e-6 +chiffon_N 3.729715012475897e-6 +chiffonier_N 3.729715012475897e-6 +chigetai_N 3.729715012475897e-6 +chignon_N 3.729715012475897e-6 +chigoe_N 3.729715012475897e-6 +chilblain_N 3.729715012475897e-6 +chilblained_A 1.0773191989054437e-5 +child's_play_N 3.729715012475897e-6 +child_N 6.079435470335711e-4 +child_bearing_N 3.729715012475897e-6 +childbearing_A 1.0773191989054437e-5 +childbirth_N 3.729715012475897e-6 +childcare_N 3.729715012475897e-6 +childhood_N 2.6108005087331277e-5 +childish_A 2.1546383978108874e-5 +childishness_N 3.729715012475897e-6 +childless_A 1.0773191989054437e-5 +childlessness_N 3.729715012475897e-6 +childlike_A 1.0773191989054437e-5 +chile_PN 1.4923702570607768e-4 +chilean_A 4.309276795621775e-5 +chilean_N 3.729715012475897e-6 +chili_N 3.729715012475897e-6 +chill_A 1.0773191989054437e-5 +chill_N 1.118914503742769e-5 +chill_V 1.5875175760874494e-4 +chill_V2 3.219730508556434e-5 +chill_out_V 2.2678822515534993e-5 +chilli_N 3.729715012475897e-6 +chilliness_N 3.729715012475897e-6 +chilly_A 4.309276795621775e-5 +chilly_N 3.729715012475897e-6 +chimaera_N 3.729715012475897e-6 +chime_N 3.729715012475897e-6 +chime_V 4.5357645031069986e-5 +chime_V2 1.609865254278217e-5 +chime_in_V 2.2678822515534993e-5 +chimera_N 3.729715012475897e-6 +chimeric_A 1.0773191989054437e-5 +chimerical_A 1.0773191989054437e-5 +chimney_N 1.118914503742769e-5 +chimney_sweep_N 3.729715012475897e-6 +chimneybreast_N 3.729715012475897e-6 +chimneypiece_N 3.729715012475897e-6 +chimneypot_N 3.729715012475897e-6 +chimneystack_N 3.729715012475897e-6 +chimneysweep_N 3.729715012475897e-6 +chimneysweeper_N 3.729715012475897e-6 +chimp_N 3.729715012475897e-6 +chimpanzee_N 7.459430024951794e-6 +chin_N 1.118914503742769e-5 +chin_strap_N 3.729715012475897e-6 +chin_wagging_N 3.729715012475897e-6 +china_N 1.4918860049903587e-5 +china_PN 3.1339775398276314e-3 +china_closet_N 3.729715012475897e-6 +chinaberry_N 3.729715012475897e-6 +chinaware_N 3.729715012475897e-6 +chincapin_N 3.729715012475897e-6 +chincherinchee_N 3.729715012475897e-6 +chinchilla_N 3.729715012475897e-6 +chinchow_PN 1.865462821325971e-5 +chine_N 3.729715012475897e-6 +chinese_A 9.695872790148993e-5 +chinese_N 7.459430024951794e-6 +chink_N 3.729715012475897e-6 +chink_V 2.2678822515534993e-5 +chink_V2 1.609865254278217e-5 +chinless_A 1.0773191989054437e-5 +chino_N 3.729715012475897e-6 +chinoiserie_N 3.729715012475897e-6 +chinook_N 3.729715012475897e-6 +chintz_N 3.729715012475897e-6 +chip_N 4.69944091571963e-4 +chip_V 6.803646754660499e-5 +chip_V2 1.609865254278217e-5 +chip_away_V 2.2678822515534993e-5 +chip_away_at_V2 1.609865254278217e-5 +chip_in_V 2.2678822515534993e-5 +chipboard_N 3.729715012475897e-6 +chipmunk_N 3.729715012475897e-6 +chipolata_N 3.729715012475897e-6 +chipotle_N 3.729715012475897e-6 +chippendale_N 3.729715012475897e-6 +chippenham_PN 1.865462821325971e-5 +chipper_A 1.0773191989054437e-5 +chips_N 3.729715012475897e-6 +chiralgia_N 3.729715012475897e-6 +chiromantic_A 1.0773191989054437e-5 +chiropodist_N 3.729715012475897e-6 +chiropody_N 3.729715012475897e-6 +chiropractic_N 3.729715012475897e-6 +chiropractor_N 3.729715012475897e-6 +chirp_N 3.729715012475897e-6 +chirp_V 2.2678822515534993e-5 +chirp_V2 1.609865254278217e-5 +chirpiness_N 3.729715012475897e-6 +chirpy_A 2.1546383978108874e-5 +chirrup_N 3.729715012475897e-6 +chirrup_V 2.2678822515534993e-5 +chirrup_V2 1.609865254278217e-5 +chisel_N 3.729715012475897e-6 +chisel_V2 3.219730508556434e-5 +chiseled_A 1.0773191989054437e-5 +chiseller_N 3.729715012475897e-6 +chit_N 7.459430024951794e-6 +chit_chat_N 3.729715012475897e-6 +chitchat_N 3.729715012475897e-6 +chitin_N 3.729715012475897e-6 +chitinous_A 1.0773191989054437e-5 +chiton_N 3.729715012475897e-6 +chitterlings_N 3.729715012475897e-6 +chivalric_A 1.0773191989054437e-5 +chivalrous_A 1.0773191989054437e-5 +chivalry_N 3.729715012475897e-6 +chive_N 3.729715012475897e-6 +chives_N 3.729715012475897e-6 +chivvy_V2 1.609865254278217e-5 +chivy_V2 1.609865254278217e-5 +chlamydeous_A 1.0773191989054437e-5 +chlamydia_N 3.729715012475897e-6 +chlamydial_A 1.0773191989054437e-5 +chlamydospore_N 3.729715012475897e-6 +chlamys_N 3.729715012475897e-6 +chloasma_N 3.729715012475897e-6 +chloe_PN 1.865462821325971e-5 +chlorambucil_N 3.729715012475897e-6 +chloramine_N 3.729715012475897e-6 +chloramphenicol_N 3.729715012475897e-6 +chlorate_N 3.729715012475897e-6 +chlordiazepoxide_N 3.729715012475897e-6 +chlorella_N 3.729715012475897e-6 +chlorenchyma_N 3.729715012475897e-6 +chlorhexidine_N 3.729715012475897e-6 +chloride_N 1.4918860049903587e-5 +chlorinate_V2 1.609865254278217e-5 +chlorination_N 3.729715012475897e-6 +chlorine_N 2.237829007485538e-5 +chlorinity_N 3.729715012475897e-6 +chlorite_N 3.729715012475897e-6 +chloroacetophenone_N 3.729715012475897e-6 +chlorobenzene_N 3.729715012475897e-6 +chlorobenzylidenemalononitrile_N 3.729715012475897e-6 +chlorofluorocarbon_N 7.459430024951794e-6 +chloroform_N 3.729715012475897e-6 +chlorophyll_N 3.729715012475897e-6 +chlorophyllose_A 1.0773191989054437e-5 +chloropicrin_N 3.729715012475897e-6 +chloroplast_N 3.729715012475897e-6 +chloroprene_N 3.729715012475897e-6 +chloroquine_N 3.729715012475897e-6 +chlorosis_N 3.729715012475897e-6 +chlorothiazide_N 3.729715012475897e-6 +chlorotic_A 1.0773191989054437e-5 +chlorpromazine_N 3.729715012475897e-6 +chlorpyrifos_N 3.729715012475897e-6 +chlortetracycline_N 3.729715012475897e-6 +chlorthalidone_N 3.729715012475897e-6 +choanocyte_N 3.729715012475897e-6 +choc_N 3.729715012475897e-6 +choc_ice_N 3.729715012475897e-6 +chock_Adv 8.668966832532898e-6 +chock_N 3.729715012475897e-6 +chock_V2 1.609865254278217e-5 +chock_a_block_A 1.0773191989054437e-5 +chock_a_block_Adv 8.668966832532898e-6 +chock_full_A 1.0773191989054437e-5 +chocolate_N 2.6108005087331277e-5 +choice_A 2.1546383978108874e-5 +choice_N 2.5735033586083686e-4 +choir_N 7.459430024951794e-6 +choir_school_N 3.729715012475897e-6 +choirboy_N 3.729715012475897e-6 +choirmaster_N 3.729715012475897e-6 +choke_N 3.729715012475897e-6 +choke_V 1.3607293509320997e-4 +choke_V2 4.8295957628346505e-5 +choke_damp_N 3.729715012475897e-6 +choke_off_V2 1.609865254278217e-5 +choke_out_V2 1.609865254278217e-5 +choke_up_V 2.2678822515534993e-5 +choke_up_V2 1.609865254278217e-5 +chokecherry_N 3.729715012475897e-6 +chokedamp_N 3.729715012475897e-6 +chokehold_N 3.729715012475897e-6 +chokepoint_N 3.729715012475897e-6 +choker_N 3.729715012475897e-6 +chokey_N 3.729715012475897e-6 +choking_N 3.729715012475897e-6 +choky_A 1.0773191989054437e-5 +choky_N 3.729715012475897e-6 +cholangiography_N 3.729715012475897e-6 +cholangitis_N 3.729715012475897e-6 +cholecystectomy_N 3.729715012475897e-6 +cholecystitis_N 3.729715012475897e-6 +cholecystokinin_N 3.729715012475897e-6 +cholelithiasis_N 3.729715012475897e-6 +cholelithotomy_N 3.729715012475897e-6 +choler_N 3.729715012475897e-6 +cholera_N 3.729715012475897e-6 +choleraic_A 1.0773191989054437e-5 +choleric_A 1.0773191989054437e-5 +cholesterol_N 3.729715012475897e-6 +choline_N 3.729715012475897e-6 +cholinergic_A 1.0773191989054437e-5 +cholinesterase_N 3.729715012475897e-6 +cholla_N 3.729715012475897e-6 +chomping_N 3.729715012475897e-6 +chon_N 3.729715012475897e-6 +chondrin_N 3.729715012475897e-6 +chondrite_N 3.729715012475897e-6 +chondritic_A 1.0773191989054437e-5 +chondroma_N 3.729715012475897e-6 +chondrosarcoma_N 3.729715012475897e-6 +chondrule_N 3.729715012475897e-6 +choose_V 5.216129178573049e-4 +choose_V2 7.566366695107619e-4 +choose_V2V 1.402524544179523e-3 +choose_VS 2.8880032345636225e-4 +choose_VV 2.0180665000960984e-3 +choose_up_V 2.2678822515534993e-5 +choose_up_V2 1.609865254278217e-5 +choosey_A 1.0773191989054437e-5 +choosy_A 1.0773191989054437e-5 +chop_N 7.459430024951794e-6 +chop_V 1.1339411257767497e-4 +chop_V2 3.219730508556434e-5 +chop_chop_Adv 8.668966832532898e-6 +chop_down_V2 1.609865254278217e-5 +chop_house_N 3.729715012475897e-6 +chop_off_V 2.2678822515534993e-5 +chop_out_V 2.2678822515534993e-5 +chop_suey_N 3.729715012475897e-6 +chop_up_V2 1.609865254278217e-5 +chopine_N 3.729715012475897e-6 +chopper_N 3.729715012475897e-6 +choppiness_N 3.729715012475897e-6 +choppy_A 5.3865959945272184e-5 +chopstick_N 3.729715012475897e-6 +chopwell_PN 1.865462821325971e-5 +choragic_A 1.0773191989054437e-5 +choragus_N 3.729715012475897e-6 +choral_A 1.0773191989054437e-5 +chorale_N 3.729715012475897e-6 +chord_N 1.8648575062379485e-5 +chordal_A 1.0773191989054437e-5 +chordamesoderm_N 3.729715012475897e-6 +chordate_A 1.0773191989054437e-5 +chordate_N 3.729715012475897e-6 +chorditis_N 3.729715012475897e-6 +chordophone_N 3.729715012475897e-6 +chore_N 4.1026865137234865e-5 +chorea_N 3.729715012475897e-6 +choreographer_N 3.729715012475897e-6 +choreographic_A 1.0773191989054437e-5 +choreography_N 3.729715012475897e-6 +choric_A 1.0773191989054437e-5 +chorioallantois_N 3.729715012475897e-6 +choriomeningitis_N 3.729715012475897e-6 +chorion_N 3.729715012475897e-6 +chorionic_A 1.0773191989054437e-5 +chorioretinitis_N 3.729715012475897e-6 +chorister_N 3.729715012475897e-6 +chorizo_N 3.729715012475897e-6 +chorley_PN 1.865462821325971e-5 +choroid_N 3.729715012475897e-6 +chortle_N 3.729715012475897e-6 +chortle_V 4.5357645031069986e-5 +chorus_N 2.9837720099807175e-5 +chorus_V2 1.609865254278217e-5 +chorus_girl_N 3.729715012475897e-6 +chosen_N 3.729715012475897e-6 +chough_N 3.729715012475897e-6 +chow_N 3.729715012475897e-6 +chow_down_V 2.2678822515534993e-5 +chow_down_on_V2 1.609865254278217e-5 +chowchow_N 3.729715012475897e-6 +chowder_N 3.729715012475897e-6 +chrestomathy_N 3.729715012475897e-6 +chris_PN 1.865462821325971e-5 +chrism_N 3.729715012475897e-6 +chrissie_PN 1.865462821325971e-5 +chrissy_PN 1.865462821325971e-5 +christ_PN 1.865462821325971e-5 +christchurch_PN 1.865462821325971e-5 +christella_N 3.729715012475897e-6 +christen_V2 1.609865254278217e-5 +christendom_N 3.729715012475897e-6 +christening_N 3.729715012475897e-6 +christian_A 9.695872790148993e-5 +christian_N 1.118914503742769e-5 +christian_PN 1.865462821325971e-5 +christianity_N 3.729715012475897e-6 +christianly_A 1.0773191989054437e-5 +christina_PN 1.865462821325971e-5 +christine_PN 1.865462821325971e-5 +christless_A 1.0773191989054437e-5 +christlike_A 1.0773191989054437e-5 +christmas_N 3.729715012475897e-6 +christmas_PN 1.865462821325971e-5 +christmas_box_N 3.729715012475897e-6 +christmas_tree_N 3.729715012475897e-6 +christmastide_N 3.729715012475897e-6 +christmastime_N 3.729715012475897e-6 +christopher_PN 1.865462821325971e-5 +chromate_N 3.729715012475897e-6 +chromatic_A 1.0773191989054437e-5 +chromatically_Adv 8.668966832532898e-6 +chromatid_N 3.729715012475897e-6 +chromatin_N 3.729715012475897e-6 +chromatinic_A 1.0773191989054437e-5 +chromatism_N 3.729715012475897e-6 +chromatogram_N 3.729715012475897e-6 +chromatographic_A 1.0773191989054437e-5 +chromatographically_Adv 8.668966832532898e-6 +chromatography_N 3.729715012475897e-6 +chrome_N 3.729715012475897e-6 +chromesthesia_N 3.729715012475897e-6 +chromite_N 3.729715012475897e-6 +chromium_N 3.729715012475897e-6 +chromoblastomycosis_N 3.729715012475897e-6 +chromogen_N 3.729715012475897e-6 +chromolithography_N 3.729715012475897e-6 +chromophore_N 3.729715012475897e-6 +chromoplast_N 3.729715012475897e-6 +chromosomal_A 1.0773191989054437e-5 +chromosome_N 5.594572518713845e-5 +chromosphere_N 3.729715012475897e-6 +chronic_A 4.309276795621775e-5 +chronically_Adv 2.6006900497598697e-5 +chronicle_N 1.8648575062379485e-5 +chronicle_V2 3.219730508556434e-5 +chronicler_N 3.729715012475897e-6 +chronograph_N 3.729715012475897e-6 +chronological_A 1.0773191989054437e-5 +chronology_N 3.729715012475897e-6 +chronometer_N 3.729715012475897e-6 +chronoscope_N 3.729715012475897e-6 +chrysalis_N 3.729715012475897e-6 +chrysanthemum_N 3.729715012475897e-6 +chrysoberyl_N 3.729715012475897e-6 +chrysolite_N 3.729715012475897e-6 +chrysoprase_N 3.729715012475897e-6 +chrysotherapy_N 3.729715012475897e-6 +chrysotile_N 1.118914503742769e-5 +chthonian_A 1.0773191989054437e-5 +chub_N 3.729715012475897e-6 +chubbiness_N 3.729715012475897e-6 +chubby_A 1.0773191989054437e-5 +chuck_N 3.729715012475897e-6 +chuck_V2 3.219730508556434e-5 +chuck_away_V2 1.609865254278217e-5 +chuck_in_V2 1.609865254278217e-5 +chuck_out_V2 1.609865254278217e-5 +chuck_up_V 2.2678822515534993e-5 +chuck_up_V2 1.609865254278217e-5 +chucker_out_N 3.729715012475897e-6 +chuckle_N 7.459430024951794e-6 +chuckle_V 4.5357645031069986e-5 +chuckle_VS 1.1552012938254491e-4 +chuckwalla_N 3.729715012475897e-6 +chufa_N 3.729715012475897e-6 +chuffed_A 1.0773191989054437e-5 +chug_N 3.729715012475897e-6 +chug_V 4.5357645031069986e-5 +chukka_N 3.729715012475897e-6 +chukker_N 3.729715012475897e-6 +chum_N 7.459430024951794e-6 +chum_V 2.2678822515534993e-5 +chumminess_N 3.729715012475897e-6 +chummy_A 1.0773191989054437e-5 +chump_N 3.729715012475897e-6 +chunga_N 3.729715012475897e-6 +chungking_PN 1.865462821325971e-5 +chunk_N 9.324287531189741e-5 +chunky_A 1.0773191989054437e-5 +chunnel_N 3.729715012475897e-6 +church_N 1.4918860049903588e-4 +churchgoer_N 3.729715012475897e-6 +churchgoing_A 1.0773191989054437e-5 +churchly_A 1.0773191989054437e-5 +churchman_N 3.729715012475897e-6 +churchwarden_N 3.729715012475897e-6 +churchyard_N 3.729715012475897e-6 +churidars_N 3.729715012475897e-6 +churl_N 3.729715012475897e-6 +churlish_A 1.0773191989054437e-5 +churn_N 3.729715012475897e-6 +churn_V 6.803646754660499e-5 +churn_V2 1.609865254278217e-5 +churn_out_V2 1.609865254278217e-5 +chute_N 7.459430024951794e-6 +chutney_N 3.729715012475897e-6 +chutzpa_N 3.729715012475897e-6 +chutzpanik_N 3.729715012475897e-6 +chylaceous_A 1.0773191989054437e-5 +chyle_N 3.729715012475897e-6 +chyliferous_A 1.0773191989054437e-5 +chylific_A 1.0773191989054437e-5 +chylomicron_N 3.729715012475897e-6 +chyme_N 3.729715012475897e-6 +cia_N 3.729715012475897e-6 +cicada_N 3.729715012475897e-6 +cicala_N 3.729715012475897e-6 +cicatrice_N 3.729715012475897e-6 +cicatrix_N 3.729715012475897e-6 +cicero_N 3.729715012475897e-6 +cicerone_N 3.729715012475897e-6 +cichlid_N 3.729715012475897e-6 +cid_N 3.729715012475897e-6 +cider_N 3.729715012475897e-6 +ciderpress_N 3.729715012475897e-6 +cif_PN 1.865462821325971e-5 +cigar_N 1.4918860049903587e-5 +cigar_shaped_A 1.0773191989054437e-5 +cigarette_N 1.6783717556141534e-4 +cigarette_case_N 3.729715012475897e-6 +cigarette_holder_N 3.729715012475897e-6 +cigarette_paper_N 3.729715012475897e-6 +cigarillo_N 3.729715012475897e-6 +ciliary_A 1.0773191989054437e-5 +ciliate_A 1.0773191989054437e-5 +ciliate_N 3.729715012475897e-6 +cilium_N 3.729715012475897e-6 +cimetidine_N 3.729715012475897e-6 +cinch_N 3.729715012475897e-6 +cinch_V2 3.219730508556434e-5 +cinchona_N 3.729715012475897e-6 +cinchonine_N 3.729715012475897e-6 +cincinnati_PN 1.865462821325971e-5 +cincture_N 3.729715012475897e-6 +cinder_N 3.729715012475897e-6 +cinder_track_N 3.729715012475897e-6 +cinderella_N 3.729715012475897e-6 +cinderford_PN 1.865462821325971e-5 +cine_camera_N 3.729715012475897e-6 +cine_film_N 3.729715012475897e-6 +cine_projector_N 3.729715012475897e-6 +cinema_N 1.118914503742769e-5 +cinematic_A 2.1546383978108874e-5 +cinematography_N 7.459430024951794e-6 +cineraria_N 3.729715012475897e-6 +cinerary_A 1.0773191989054437e-5 +cingulum_N 3.729715012475897e-6 +cinnabar_N 3.729715012475897e-6 +cinnamon_N 3.729715012475897e-6 +cinquefoil_N 3.729715012475897e-6 +cipher_N 3.729715012475897e-6 +cipher_V 2.2678822515534993e-5 +cipher_V2 1.609865254278217e-5 +ciprofloxacin_N 3.729715012475897e-6 +circa_Prep 9.978546125829467e-6 +circadian_A 1.0773191989054437e-5 +circle_N 8.205373027446973e-5 +circle_V 4.5357645031069986e-5 +circle_V2 3.219730508556434e-5 +circlet_N 3.729715012475897e-6 +circuit_N 2.16323470723602e-4 +circuitous_A 2.1546383978108874e-5 +circuitry_N 3.729715012475897e-6 +circular_A 2.1546383978108874e-5 +circular_N 1.118914503742769e-5 +circularity_N 3.729715012475897e-6 +circularization_N 3.729715012475897e-6 +circularize_V2 1.609865254278217e-5 +circulate_V 2.4946704767088494e-4 +circulate_V2 1.4488787288503951e-4 +circulation_N 1.9021546563627073e-4 +circulative_A 1.0773191989054437e-5 +circulatory_A 1.0773191989054437e-5 +circumcise_V2 1.609865254278217e-5 +circumcision_N 3.729715012475897e-6 +circumduction_N 3.729715012475897e-6 +circumference_N 3.729715012475897e-6 +circumferential_A 1.0773191989054437e-5 +circumflex_N 3.729715012475897e-6 +circumlocution_N 7.459430024951794e-6 +circumlocutious_A 1.0773191989054437e-5 +circumnavigate_V2 1.609865254278217e-5 +circumnavigation_N 3.729715012475897e-6 +circumpolar_A 1.0773191989054437e-5 +circumscribe_V2 1.609865254278217e-5 +circumscription_N 3.729715012475897e-6 +circumspect_A 5.3865959945272184e-5 +circumspection_N 3.729715012475897e-6 +circumstance_N 1.6410746054893946e-4 +circumstances_N 3.729715012475897e-6 +circumstantial_A 2.1546383978108874e-5 +circumvent_V2 9.659191525669301e-5 +circumvention_N 3.729715012475897e-6 +circumvolution_N 3.729715012475897e-6 +circus_N 1.4918860049903587e-5 +cirencester_PN 1.865462821325971e-5 +cirque_N 3.729715012475897e-6 +cirrhosis_N 3.729715012475897e-6 +cirrocumulus_N 3.729715012475897e-6 +cirrostratus_N 3.729715012475897e-6 +cirrus_N 3.729715012475897e-6 +cisalpine_A 1.0773191989054437e-5 +cisco_N 3.729715012475897e-6 +cismontane_A 1.0773191989054437e-5 +cissy_A 1.0773191989054437e-5 +cissy_N 3.729715012475897e-6 +cistern_N 3.729715012475897e-6 +cisterna_N 3.729715012475897e-6 +citadel_N 3.729715012475897e-6 +citation_N 2.6108005087331277e-5 +cite_V2 2.768968237358533e-3 +citified_A 1.0773191989054437e-5 +citizenFem_N 3.729715012475897e-6 +citizenMasc_N 1.7156689057389125e-4 +citizenry_N 3.729715012475897e-6 +citizenship_N 1.4918860049903587e-5 +citrange_N 3.729715012475897e-6 +citrate_N 3.729715012475897e-6 +citric_A 1.0773191989054437e-5 +citrine_N 3.729715012475897e-6 +citron_N 3.729715012475897e-6 +citronwood_N 3.729715012475897e-6 +citrous_A 1.0773191989054437e-5 +citrulline_N 3.729715012475897e-6 +citrus_N 3.729715012475897e-6 +cittern_N 3.729715012475897e-6 +city_N 1.007023053368492e-3 +cityscape_N 3.729715012475897e-6 +citywide_A 1.0773191989054437e-5 +civet_N 3.729715012475897e-6 +civet_cat_N 3.729715012475897e-6 +civic_A 7.541234392338106e-5 +civics_N 1.118914503742769e-5 +civies_N 3.729715012475897e-6 +civil_A 9.91133662993008e-4 +civilian_A 7.541234392338106e-5 +civilian_N 1.8648575062379485e-5 +civility_N 7.459430024951794e-6 +civilization_N 1.8648575062379485e-5 +civilize_V2 4.8295957628346505e-5 +civvy_street_PN 1.865462821325971e-5 +clabber_N 3.729715012475897e-6 +clack_N 3.729715012475897e-6 +clack_V 2.2678822515534993e-5 +clackmannon_PN 1.865462821325971e-5 +clacton_PN 1.865462821325971e-5 +clad_V 4.5357645031069986e-5 +clad_V2 4.8295957628346505e-5 +clade_N 3.729715012475897e-6 +cladistics_N 3.729715012475897e-6 +cladode_N 3.729715012475897e-6 +cladogram_N 3.729715012475897e-6 +clag_up_V2 1.609865254278217e-5 +claim_N 7.534024325201312e-4 +claim_V 2.4946704767088494e-4 +claim_V2 4.8295957628346505e-4 +claim_VS 5.025125628140704e-3 +claim_VV 1.2492792619642513e-3 +claimant_N 3.356743511228307e-5 +clairvoyance_N 3.729715012475897e-6 +clairvoyant_A 1.0773191989054437e-5 +clairvoyant_N 3.729715012475897e-6 +clam_N 3.729715012475897e-6 +clam_V 2.2678822515534993e-5 +clam_up_V 2.2678822515534993e-5 +clamant_A 1.0773191989054437e-5 +clamatorial_A 1.0773191989054437e-5 +clambake_N 3.729715012475897e-6 +clamber_N 3.729715012475897e-6 +clamber_V 4.5357645031069986e-5 +clammy_A 2.1546383978108874e-5 +clammyweed_N 3.729715012475897e-6 +clamor_N 3.729715012475897e-6 +clamorous_A 1.0773191989054437e-5 +clamour_N 3.729715012475897e-6 +clamour_V 2.2678822515534993e-5 +clamour_V2 1.609865254278217e-5 +clamp_N 7.459430024951794e-6 +clamp_V 1.1339411257767497e-4 +clamp_V2 1.609865254278217e-5 +clamp_down_N 3.729715012475897e-6 +clamp_down_V 2.2678822515534993e-5 +clamp_down_on_V2 1.609865254278217e-5 +clampdown_N 3.729715012475897e-6 +clamshell_N 3.729715012475897e-6 +clan_N 1.118914503742769e-5 +clandestine_A 2.1546383978108874e-5 +clang_N 3.729715012475897e-6 +clang_V 6.803646754660499e-5 +clang_V2 1.609865254278217e-5 +clanger_N 3.729715012475897e-6 +clangorous_A 1.0773191989054437e-5 +clangour_N 3.729715012475897e-6 +clank_N 3.729715012475897e-6 +clank_V 4.5357645031069986e-5 +clank_V2 1.609865254278217e-5 +clank_in_V 2.2678822515534993e-5 +clannish_A 2.1546383978108874e-5 +clannishness_N 3.729715012475897e-6 +clansman_N 3.729715012475897e-6 +clap_N 3.729715012475897e-6 +clap_V 2.2678822515534993e-5 +clap_V2 1.609865254278217e-5 +clapboard_N 3.729715012475897e-6 +clapper_N 3.729715012475897e-6 +clapperboard_N 3.729715012475897e-6 +claptrap_N 7.459430024951794e-6 +claque_N 3.729715012475897e-6 +clare_PN 1.865462821325971e-5 +clarence_N 3.729715012475897e-6 +claret_N 3.729715012475897e-6 +clarification_N 2.9837720099807175e-5 +clarify_V 4.5357645031069986e-5 +clarify_V2 1.1269056779947518e-4 +clarinet_N 1.4918860049903587e-5 +clarinetist_N 1.4918860049903587e-5 +clarinettist_N 3.729715012475897e-6 +clarion_A 1.0773191989054437e-5 +clarion_N 3.729715012475897e-6 +clarity_N 7.459430024951794e-6 +clarkston_PN 1.865462821325971e-5 +claro_N 3.729715012475897e-6 +clarrie_PN 1.865462821325971e-5 +clary_N 3.729715012475897e-6 +clash_N 3.356743511228307e-5 +clash_V 1.1339411257767497e-4 +clash_V2 1.609865254278217e-5 +clasp_N 3.729715012475897e-6 +clasp_V 2.2678822515534993e-5 +clasp_V2 1.609865254278217e-5 +clasp_knife_N 3.729715012475897e-6 +class_N 3.767012162600656e-4 +class_V2 3.219730508556434e-5 +class_conscious_A 2.1546383978108874e-5 +class_feeling_N 3.729715012475897e-6 +class_fellow_N 3.729715012475897e-6 +class_list_N 3.729715012475897e-6 +class_warfare_N 3.729715012475897e-6 +classic_A 2.3701022375919762e-4 +classic_N 1.118914503742769e-5 +classical_A 7.541234392338106e-5 +classicism_N 3.729715012475897e-6 +classicist_N 3.729715012475897e-6 +classicistic_A 1.0773191989054437e-5 +classics_N 2.237829007485538e-5 +classifiable_A 1.0773191989054437e-5 +classification_N 2.237829007485538e-5 +classificatory_A 1.0773191989054437e-5 +classifier_N 3.729715012475897e-6 +classify_V2 2.2538113559895037e-4 +classless_A 2.1546383978108874e-5 +classmate_N 1.8648575062379485e-5 +classroom_N 5.2216010174662554e-5 +classwork_N 3.729715012475897e-6 +classy_A 3.231957596716331e-5 +clast_N 3.729715012475897e-6 +clastic_A 1.0773191989054437e-5 +clathrate_A 1.0773191989054437e-5 +clatter_N 3.729715012475897e-6 +clatter_V 2.2678822515534993e-5 +clatter_V2 1.609865254278217e-5 +clattery_A 1.0773191989054437e-5 +claud_PN 1.865462821325971e-5 +claude_PN 1.865462821325971e-5 +clausal_A 1.0773191989054437e-5 +clause_N 7.086458523704203e-5 +claustrophobe_N 3.729715012475897e-6 +claustrophobia_N 3.729715012475897e-6 +claustrophobic_A 2.1546383978108874e-5 +claustrum_N 3.729715012475897e-6 +clavichord_N 3.729715012475897e-6 +clavicle_N 3.729715012475897e-6 +clavier_N 3.729715012475897e-6 +claw_N 3.729715012475897e-6 +claw_V2 1.609865254278217e-5 +claw_back_V2 1.609865254278217e-5 +clawback_N 3.729715012475897e-6 +clawfoot_N 3.729715012475897e-6 +clawhammer_N 3.729715012475897e-6 +clawlike_A 1.0773191989054437e-5 +clay_N 3.729715012475897e-6 +clay_cross_PN 1.865462821325971e-5 +clayey_A 1.0773191989054437e-5 +claymore_N 3.729715012475897e-6 +claystone_N 3.729715012475897e-6 +clean_A 2.47783415748252e-4 +clean_Adv 8.668966832532898e-6 +clean_N 1.118914503742769e-5 +clean_V 6.123282079194448e-4 +clean_V2 8.049326271391085e-5 +clean_bowled_A 1.0773191989054437e-5 +clean_cut_A 1.0773191989054437e-5 +clean_limbed_A 1.0773191989054437e-5 +clean_living_A 1.0773191989054437e-5 +clean_out_V 2.2678822515534993e-5 +clean_out_V2 3.219730508556434e-5 +clean_shaven_A 1.0773191989054437e-5 +clean_up_N 3.729715012475897e-6 +clean_up_V 2.2678822515534993e-5 +clean_up_V2 3.219730508556434e-5 +cleanable_A 1.0773191989054437e-5 +cleaner_N 2.237829007485538e-5 +cleaners_N 3.729715012475897e-6 +cleaning_N 3.729715012475897e-6 +cleanliness_N 7.459430024951794e-6 +cleanly_A 1.0773191989054437e-5 +cleanness_N 3.729715012475897e-6 +cleanse_V2 4.8295957628346505e-5 +cleanser_N 1.118914503742769e-5 +cleansing_A 1.0773191989054437e-5 +cleanup_N 7.459430024951794e-6 +clear_A 2.4562877735044117e-3 +clear_Adv 3.4675867330131594e-5 +clear_N 3.729715012475897e-6 +clear_V 4.762552728262349e-4 +clear_V2 6.439461017112868e-4 +clear_V2V 4.675081813931744e-4 +clear_away_V 2.2678822515534993e-5 +clear_away_V2 1.609865254278217e-5 +clear_cut_Adv 8.668966832532898e-6 +clear_headed_A 1.0773191989054437e-5 +clear_off_V 2.2678822515534993e-5 +clear_out_V 2.2678822515534993e-5 +clear_out_V2 1.609865254278217e-5 +clear_sighted_A 1.0773191989054437e-5 +clear_up_V 2.2678822515534993e-5 +clear_up_V2 1.609865254278217e-5 +clearance_N 7.832401526199384e-5 +clearheaded_A 1.0773191989054437e-5 +clearing_N 4.848629516218666e-5 +clearing_house_N 3.729715012475897e-6 +clearness_N 3.729715012475897e-6 +clearway_N 3.729715012475897e-6 +cleat_N 3.729715012475897e-6 +cleator_moor_PN 1.865462821325971e-5 +cleats_N 3.729715012475897e-6 +cleavable_A 1.0773191989054437e-5 +cleavage_N 3.729715012475897e-6 +cleave_V 2.2678822515534993e-5 +cleave_V2 1.609865254278217e-5 +cleaver_N 3.729715012475897e-6 +cleavers_N 3.729715012475897e-6 +cleethorpes_PN 1.865462821325971e-5 +clef_N 3.729715012475897e-6 +cleft_A 1.0773191989054437e-5 +cleft_N 3.729715012475897e-6 +cleistogamous_A 1.0773191989054437e-5 +cleistogamy_N 3.729715012475897e-6 +cleistothecium_N 3.729715012475897e-6 +clem_PN 1.865462821325971e-5 +clematis_N 3.729715012475897e-6 +clemency_N 3.729715012475897e-6 +clement_A 1.0773191989054437e-5 +clement_PN 1.865462821325971e-5 +clementine_N 3.729715012475897e-6 +clench_V2 1.609865254278217e-5 +clerestory_N 3.729715012475897e-6 +clergy_N 3.729715012475897e-6 +clergyman_N 1.118914503742769e-5 +cleric_N 7.459430024951794e-6 +clerical_A 3.231957596716331e-5 +clericalism_N 3.729715012475897e-6 +clericalist_N 3.729715012475897e-6 +clerihew_N 3.729715012475897e-6 +clerk_N 5.594572518713845e-5 +clerk_V 2.2678822515534993e-5 +clerkship_N 3.729715012475897e-6 +clermont_ferrand_PN 1.865462821325971e-5 +clevedon_PN 1.865462821325971e-5 +cleveland_PN 1.865462821325971e-5 +clever_A 9.695872790148993e-5 +cleverness_N 3.729715012475897e-6 +clevis_N 3.729715012475897e-6 +clew_N 3.729715012475897e-6 +clew_V2 1.609865254278217e-5 +clews_N 3.729715012475897e-6 +cliche_N 3.729715012475897e-6 +cliched_A 1.0773191989054437e-5 +click_N 7.459430024951794e-6 +click_V 2.2678822515534993e-5 +click_through_V2 1.609865254278217e-5 +client_N 8.65293882894408e-4 +clientage_N 3.729715012475897e-6 +clientele_N 1.118914503742769e-5 +cliff_N 1.118914503742769e-5 +cliff_PN 1.865462821325971e-5 +cliff_hanger_N 3.729715012475897e-6 +cliffhanger_N 3.729715012475897e-6 +clifford_PN 1.865462821325971e-5 +climacteric_N 3.729715012475897e-6 +climactic_A 1.0773191989054437e-5 +climate_N 1.1562116538675279e-4 +climatic_A 3.231957596716331e-5 +climatically_Adv 8.668966832532898e-6 +climatologist_N 3.729715012475897e-6 +climatology_N 3.729715012475897e-6 +climax_N 3.729715012475897e-6 +climax_V 2.2678822515534993e-5 +climax_V2 1.609865254278217e-5 +climb_N 5.2216010174662554e-5 +climb_V 1.4514446409942395e-3 +climb_V2 9.176231949385836e-4 +climb_down_N 3.729715012475897e-6 +climb_down_V 2.2678822515534993e-5 +climber_N 7.459430024951794e-6 +clime_N 3.729715012475897e-6 +clinch_N 3.729715012475897e-6 +clinch_V 4.5357645031069986e-5 +clinch_V2 3.219730508556434e-5 +clincher_N 3.729715012475897e-6 +cling_N 3.729715012475897e-6 +cling_V 6.803646754660499e-5 +cling_on_V 2.2678822515534993e-5 +cling_on_to_V2 1.609865254278217e-5 +cling_to_V2 1.609865254278217e-5 +clingfish_N 3.729715012475897e-6 +clinic_N 4.475658014971076e-5 +clinical_A 1.72371071824871e-4 +clinician_N 3.729715012475897e-6 +clinid_N 3.729715012475897e-6 +clink_N 3.729715012475897e-6 +clink_V 2.2678822515534993e-5 +clink_V2 1.609865254278217e-5 +clinker_N 7.459430024951794e-6 +clinker_built_A 1.0773191989054437e-5 +clinocephaly_N 3.729715012475897e-6 +clinodactyly_N 3.729715012475897e-6 +clinometer_N 3.729715012475897e-6 +clinquant_A 1.0773191989054437e-5 +clintonia_N 3.729715012475897e-6 +clip_N 2.237829007485538e-5 +clip_V2 6.439461017112868e-5 +clip_joint_N 3.729715012475897e-6 +clip_on_A 1.0773191989054437e-5 +clipboard_N 3.729715012475897e-6 +clipper_N 3.729715012475897e-6 +clipping_N 1.118914503742769e-5 +clique_N 3.729715012475897e-6 +cliquish_A 1.0773191989054437e-5 +clitheroe_PN 1.865462821325971e-5 +clitoral_A 1.0773191989054437e-5 +clitoridectomy_N 3.729715012475897e-6 +clitoris_N 3.729715012475897e-6 +clive_PN 1.865462821325971e-5 +cloaca_N 3.729715012475897e-6 +cloak_N 3.729715012475897e-6 +cloak_V2 3.219730508556434e-5 +cloakmaker_N 3.729715012475897e-6 +cloakroom_N 3.729715012475897e-6 +clobber_N 3.729715012475897e-6 +clobber_V2 1.4488787288503951e-4 +cloche_N 3.729715012475897e-6 +clock_N 4.1026865137234865e-5 +clock_V 4.5357645031069986e-5 +clock_V2 3.219730508556434e-5 +clock_dial_N 3.729715012475897e-6 +clock_face_N 3.729715012475897e-6 +clock_golf_N 3.729715012475897e-6 +clock_tower_N 3.729715012475897e-6 +clock_watching_N 3.729715012475897e-6 +clocking_N 3.729715012475897e-6 +clocksmith_N 3.729715012475897e-6 +clockwise_A 1.0773191989054437e-5 +clockwise_Adv 8.668966832532898e-6 +clockwork_N 3.729715012475897e-6 +clod_N 3.729715012475897e-6 +cloddish_A 1.0773191989054437e-5 +clodhopper_N 3.729715012475897e-6 +clofibrate_N 3.729715012475897e-6 +clog_N 3.729715012475897e-6 +clog_V 9.071529006213997e-5 +clog_V2 1.609865254278217e-5 +clog_dance_N 3.729715012475897e-6 +clog_up_V2 1.609865254278217e-5 +cloggy_A 1.0773191989054437e-5 +cloisonne_N 3.729715012475897e-6 +cloister_N 3.729715012475897e-6 +cloister_V2 1.609865254278217e-5 +clomiphene_N 3.729715012475897e-6 +clomipramine_N 3.729715012475897e-6 +clonal_A 1.0773191989054437e-5 +clone_N 1.118914503742769e-5 +clone_V2 3.219730508556434e-5 +clonic_A 1.0773191989054437e-5 +clonidine_N 3.729715012475897e-6 +cloning_N 3.729715012475897e-6 +clonus_N 3.729715012475897e-6 +close_A 2.488607349471575e-3 +close_Adv 6.415035456074345e-4 +close_N 4.102686513723486e-4 +close_V 1.2654782963668527e-2 +close_V2 2.092824830561682e-3 +close_V2V 4.675081813931744e-4 +close_VA 1.5748031496062992e-2 +close_VS 9.819210997516316e-4 +close_cropped_A 1.0773191989054437e-5 +close_cut_A 1.0773191989054437e-5 +close_down_N 3.729715012475897e-6 +close_down_V 2.2678822515534993e-5 +close_down_V2 1.609865254278217e-5 +close_fisted_A 1.0773191989054437e-5 +close_fitting_A 1.0773191989054437e-5 +close_grained_A 1.0773191989054437e-5 +close_hauled_A 1.0773191989054437e-5 +close_in_V 2.2678822515534993e-5 +close_in_on_V2 1.609865254278217e-5 +close_in_upon_V2 1.609865254278217e-5 +close_off_V2 1.609865254278217e-5 +close_on_V2 1.609865254278217e-5 +close_out_V2 1.609865254278217e-5 +close_set_A 1.0773191989054437e-5 +close_to_Prep 9.978546125829467e-6 +close_up_N 3.729715012475897e-6 +close_up_V 2.2678822515534993e-5 +close_up_V2 1.609865254278217e-5 +closefisted_A 1.0773191989054437e-5 +closeness_N 1.118914503742769e-5 +closeout_N 3.729715012475897e-6 +closer_N 3.729715012475897e-6 +closet_A 1.0773191989054437e-5 +closet_N 2.237829007485538e-5 +closet_V2 1.609865254278217e-5 +closeup_N 3.729715012475897e-6 +closing_N 3.729715012475897e-6 +clostridium_N 3.729715012475897e-6 +closure_N 2.6108005087331277e-5 +clot_N 7.459430024951794e-6 +clot_V 2.2678822515534993e-5 +clot_V2 1.609865254278217e-5 +cloth_N 1.4918860049903587e-5 +clothe_V2 3.219730508556434e-5 +clothes_basket_N 3.729715012475897e-6 +clothes_hanger_N 3.729715012475897e-6 +clothes_moth_N 3.729715012475897e-6 +clothes_peg_N 3.729715012475897e-6 +clothes_pin_N 3.729715012475897e-6 +clothesbrush_N 3.729715012475897e-6 +clotheshorse_N 3.729715012475897e-6 +clothesless_A 1.0773191989054437e-5 +clothesline_N 3.729715012475897e-6 +clothespin_N 3.729715012475897e-6 +clothier_N 1.118914503742769e-5 +clothing_N 7.832401526199384e-5 +cloud_N 4.848629516218666e-5 +cloud_V 6.803646754660499e-5 +cloud_V2 9.659191525669301e-5 +cloud_bank_N 3.729715012475897e-6 +cloud_capped_A 1.0773191989054437e-5 +cloud_cuckoo_land_N 3.729715012475897e-6 +cloud_over_V 2.2678822515534993e-5 +cloudberry_N 3.729715012475897e-6 +cloudburst_N 3.729715012475897e-6 +cloudiness_N 3.729715012475897e-6 +clouding_N 3.729715012475897e-6 +cloudless_A 1.0773191989054437e-5 +cloudlessness_N 3.729715012475897e-6 +cloudlike_A 1.0773191989054437e-5 +cloudy_A 1.0773191989054437e-5 +clout_N 5.2216010174662554e-5 +clout_V2 1.609865254278217e-5 +clove_N 3.729715012475897e-6 +clove_hitch_N 3.729715012475897e-6 +cloven_A 1.0773191989054437e-5 +clover_N 3.729715012475897e-6 +cloverleaf_N 3.729715012475897e-6 +clowder_N 3.729715012475897e-6 +clown_N 7.459430024951794e-6 +clown_V 2.2678822515534993e-5 +clown_about_V 2.2678822515534993e-5 +clown_around_V 2.2678822515534993e-5 +clowne_PN 1.865462821325971e-5 +clownish_A 1.0773191989054437e-5 +cloy_V 2.2678822515534993e-5 +cloy_V2 1.609865254278217e-5 +cloyingly_Adv 8.668966832532898e-6 +clozapine_N 3.729715012475897e-6 +cloze_A 1.0773191989054437e-5 +club_N 1.7529660558636716e-4 +club_V 4.5357645031069986e-5 +club_V2 3.219730508556434e-5 +club_footed_A 1.0773191989054437e-5 +clubbable_A 1.0773191989054437e-5 +clubbing_N 3.729715012475897e-6 +clubbish_A 1.0773191989054437e-5 +clubfoot_N 3.729715012475897e-6 +clubfooted_A 1.0773191989054437e-5 +clubhouse_N 3.729715012475897e-6 +clubroom_N 3.729715012475897e-6 +cluck_N 3.729715012475897e-6 +cluck_V 2.2678822515534993e-5 +clue_N 5.594572518713845e-5 +clueless_A 1.0773191989054437e-5 +clumber_N 3.729715012475897e-6 +clump_N 1.4918860049903587e-5 +clump_V 2.2678822515534993e-5 +clump_V2 1.609865254278217e-5 +clumsiness_N 3.729715012475897e-6 +clumsy_A 3.231957596716331e-5 +clunch_N 3.729715012475897e-6 +clunk_N 3.729715012475897e-6 +clunk_V 2.2678822515534993e-5 +clunky_A 1.0773191989054437e-5 +clusia_N 3.729715012475897e-6 +cluster_N 1.4918860049903587e-5 +cluster_V 2.2678822515534993e-5 +cluster_V2 3.219730508556434e-5 +clutch_N 7.459430024951794e-6 +clutch_V 9.071529006213997e-5 +clutch_V2 3.219730508556434e-5 +clutch_on_V 2.2678822515534993e-5 +clutter_N 4.1026865137234865e-5 +clutter_V2 4.8295957628346505e-5 +clwyd_PN 1.865462821325971e-5 +clydach_PN 1.865462821325971e-5 +clydebank_PN 1.865462821325971e-5 +clypeus_N 3.729715012475897e-6 +cm_N 3.729715012475897e-6 +co_N 1.7902632059884304e-4 +co_author_V2 1.609865254278217e-5 +co_ed_N 3.729715012475897e-6 +co_edit_V2 3.219730508556434e-5 +co_exist_V 4.5357645031069986e-5 +co_found_V2 8.049326271391085e-5 +co_manage_V2 4.8295957628346505e-5 +co_op_N 3.729715012475897e-6 +co_opt_V2 1.609865254278217e-5 +co_respondent_N 3.729715012475897e-6 +co_sponsor_V2 3.219730508556434e-5 +co_star_N 3.729715012475897e-6 +co_star_V 2.2678822515534993e-5 +co_star_V2 1.609865254278217e-5 +coach_N 6.713487022456614e-5 +coach_V 1.1339411257767497e-4 +coach_V2 1.609865254278217e-5 +coach_builder_N 3.729715012475897e-6 +coachbuilder_N 3.729715012475897e-6 +coaching_N 3.729715012475897e-6 +coachman_N 3.729715012475897e-6 +coachwhip_N 3.729715012475897e-6 +coadjutor_N 3.729715012475897e-6 +coagulable_A 1.0773191989054437e-5 +coagulant_N 3.729715012475897e-6 +coagulase_N 3.729715012475897e-6 +coagulate_A 1.0773191989054437e-5 +coagulate_V 2.2678822515534993e-5 +coagulate_V2 1.609865254278217e-5 +coagulation_N 3.729715012475897e-6 +coal_N 1.5664803052398767e-4 +coal_V 2.2678822515534993e-5 +coal_V2 1.609865254278217e-5 +coal_gas_N 3.729715012475897e-6 +coal_hole_N 3.729715012475897e-6 +coal_house_N 3.729715012475897e-6 +coal_scuttle_N 3.729715012475897e-6 +coal_seam_N 3.729715012475897e-6 +coal_tar_N 3.729715012475897e-6 +coalbin_N 3.729715012475897e-6 +coalesce_V 2.2678822515534993e-5 +coalescence_N 3.729715012475897e-6 +coalescent_A 1.0773191989054437e-5 +coalface_N 3.729715012475897e-6 +coalfield_N 3.729715012475897e-6 +coaling_station_N 3.729715012475897e-6 +coalition_N 1.118914503742769e-4 +coalman_N 3.729715012475897e-6 +coalmine_N 3.729715012475897e-6 +coalpit_N 3.729715012475897e-6 +coalville_PN 1.865462821325971e-5 +coaming_N 3.729715012475897e-6 +coarctate_A 1.0773191989054437e-5 +coarctation_N 3.729715012475897e-6 +coarse_A 2.1546383978108874e-5 +coarsen_V 2.2678822515534993e-5 +coarsen_V2 1.609865254278217e-5 +coarseness_N 3.729715012475897e-6 +coast_N 8.205373027446973e-5 +coast_V 4.5357645031069986e-5 +coast_V2 1.609865254278217e-5 +coast_along_V 2.2678822515534993e-5 +coastal_A 5.3865959945272184e-5 +coaster_N 5.2216010174662554e-5 +coastguard_N 3.729715012475897e-6 +coastguardsman_N 3.729715012475897e-6 +coastland_N 3.729715012475897e-6 +coastline_N 7.459430024951794e-6 +coastward_Adv 8.668966832532898e-6 +coastwise_A 1.0773191989054437e-5 +coastwise_Adv 8.668966832532898e-6 +coat_N 2.9837720099807175e-5 +coat_V2 9.659191525669301e-5 +coat_hanger_N 3.729715012475897e-6 +coatbridge_PN 1.865462821325971e-5 +coatdress_N 3.729715012475897e-6 +coatee_N 3.729715012475897e-6 +coati_N 3.729715012475897e-6 +coating_N 4.475658014971076e-5 +coatrack_N 3.729715012475897e-6 +coattail_N 3.729715012475897e-6 +coauthor_N 3.729715012475897e-6 +coax_V 4.5357645031069986e-5 +coax_V2 3.219730508556434e-5 +coaxial_A 1.0773191989054437e-5 +coaxing_N 3.729715012475897e-6 +coaxingly_Adv 8.668966832532898e-6 +cob_N 3.729715012475897e-6 +cob_nut_N 3.729715012475897e-6 +cobalt_N 3.729715012475897e-6 +cobaltite_N 3.729715012475897e-6 +cobber_N 3.729715012475897e-6 +cobble_N 3.729715012475897e-6 +cobble_V2 4.8295957628346505e-5 +cobble_together_V2 1.609865254278217e-5 +cobbler_N 3.729715012475897e-6 +cobblers_N 3.729715012475897e-6 +cobblestone_N 3.729715012475897e-6 +cobham_PN 1.865462821325971e-5 +cobia_N 3.729715012475897e-6 +cobnut_N 3.729715012475897e-6 +cobra_N 3.729715012475897e-6 +cobweb_N 3.729715012475897e-6 +cobwebby_A 1.0773191989054437e-5 +coca_N 3.729715012475897e-6 +coca_cola_N 3.729715012475897e-6 +cocaine_N 2.6108005087331277e-5 +cocarboxylase_N 3.729715012475897e-6 +coccal_A 1.0773191989054437e-5 +coccidioidomycosis_N 3.729715012475897e-6 +coccidiosis_N 3.729715012475897e-6 +coccidium_N 3.729715012475897e-6 +coccobacillus_N 3.729715012475897e-6 +coccoid_A 1.0773191989054437e-5 +coccus_N 3.729715012475897e-6 +coccygeal_A 1.0773191989054437e-5 +coccyx_N 3.729715012475897e-6 +cochin_N 3.729715012475897e-6 +cochineal_N 3.729715012475897e-6 +cochlea_N 3.729715012475897e-6 +cochlear_A 1.0773191989054437e-5 +cock_N 3.729715012475897e-6 +cock_V2 1.609865254278217e-5 +cock_a_doodle_doo_N 3.729715012475897e-6 +cock_a_hoop_A 1.0773191989054437e-5 +cock_a_hoop_Adv 8.668966832532898e-6 +cock_crow_N 3.729715012475897e-6 +cock_up_V2 1.609865254278217e-5 +cockade_N 3.729715012475897e-6 +cockamamie_A 1.0773191989054437e-5 +cockateel_N 3.729715012475897e-6 +cockatoo_N 7.459430024951794e-6 +cockatrice_N 3.729715012475897e-6 +cockchafer_N 3.729715012475897e-6 +cocker_N 3.729715012475897e-6 +cockerel_N 3.729715012475897e-6 +cockermouth_PN 1.865462821325971e-5 +cockeyed_A 1.0773191989054437e-5 +cockfight_N 3.729715012475897e-6 +cockfighting_N 3.729715012475897e-6 +cockhorse_N 3.729715012475897e-6 +cockle_N 3.729715012475897e-6 +cocklebur_N 3.729715012475897e-6 +cockleshell_N 3.729715012475897e-6 +cockloft_N 3.729715012475897e-6 +cockney_A 1.0773191989054437e-5 +cockney_N 3.729715012475897e-6 +cockpit_N 1.4918860049903587e-5 +cockroach_N 7.459430024951794e-6 +cockscomb_N 3.729715012475897e-6 +cockspur_N 3.729715012475897e-6 +cocksucker_N 3.729715012475897e-6 +cocksure_A 1.0773191989054437e-5 +cocktail_N 2.6108005087331277e-5 +cockup_N 3.729715012475897e-6 +cocky_A 2.1546383978108874e-5 +coco_N 3.729715012475897e-6 +cocoa_N 7.832401526199384e-5 +cocobolo_N 3.729715012475897e-6 +coconut_N 7.459430024951794e-6 +cocoon_N 3.729715012475897e-6 +cocoon_V2 1.609865254278217e-5 +cocooning_N 3.729715012475897e-6 +cocotte_N 7.459430024951794e-6 +cocozelle_N 3.729715012475897e-6 +cocuswood_N 3.729715012475897e-6 +cod_N 7.459430024951794e-6 +cod_PN 1.865462821325971e-5 +cod_V 2.2678822515534993e-5 +cod_V2 1.609865254278217e-5 +cod_liver_oil_N 3.729715012475897e-6 +coda_N 3.729715012475897e-6 +coddle_V2 3.219730508556434e-5 +code_N 8.951316029942152e-5 +code_V2 4.8295957628346505e-5 +codefendant_N 3.729715012475897e-6 +codeine_N 3.729715012475897e-6 +codetalker_N 3.729715012475897e-6 +codex_N 3.729715012475897e-6 +codfish_N 3.729715012475897e-6 +codger_N 3.729715012475897e-6 +codicil_N 3.729715012475897e-6 +codification_N 7.459430024951794e-6 +codify_V2 4.8295957628346505e-5 +codling_N 3.729715012475897e-6 +codon_N 3.729715012475897e-6 +codpiece_N 7.459430024951794e-6 +codsall_PN 1.865462821325971e-5 +coeducation_N 3.729715012475897e-6 +coeducational_A 1.0773191989054437e-5 +coefficient_N 3.729715012475897e-6 +coelacanth_N 3.729715012475897e-6 +coelenterate_N 3.729715012475897e-6 +coelenteron_N 3.729715012475897e-6 +coeliac_A 1.0773191989054437e-5 +coelogyne_N 3.729715012475897e-6 +coelophysis_N 3.729715012475897e-6 +coelostat_N 3.729715012475897e-6 +coenzyme_N 3.729715012475897e-6 +coequal_A 1.0773191989054437e-5 +coerce_V2 3.219730508556434e-5 +coercion_N 1.118914503742769e-5 +coercive_A 1.0773191989054437e-5 +coetaneous_A 1.0773191989054437e-5 +coeval_A 1.0773191989054437e-5 +coeval_N 3.729715012475897e-6 +coevals_N 3.729715012475897e-6 +coexist_V 2.2678822515534993e-5 +coexistence_N 3.729715012475897e-6 +coexistent_A 1.0773191989054437e-5 +coextension_N 3.729715012475897e-6 +coextensive_A 1.0773191989054437e-5 +coextrude_V2 3.219730508556434e-5 +cofactor_N 3.729715012475897e-6 +coffee_N 1.6783717556141534e-4 +coffee_house_N 3.729715012475897e-6 +coffee_mill_N 3.729715012475897e-6 +coffee_stall_N 3.729715012475897e-6 +coffeeberry_N 3.729715012475897e-6 +coffeecake_N 3.729715012475897e-6 +coffeepot_N 3.729715012475897e-6 +coffer_N 2.6108005087331277e-5 +coffer_dam_N 3.729715012475897e-6 +coffin_N 1.4918860049903587e-5 +cofounder_N 3.729715012475897e-6 +cog_N 3.729715012475897e-6 +cogency_N 3.729715012475897e-6 +cogent_A 1.0773191989054437e-5 +cogged_A 1.0773191989054437e-5 +cogitable_A 1.0773191989054437e-5 +cogitate_V 2.2678822515534993e-5 +cogitate_V2 1.609865254278217e-5 +cogitation_N 3.729715012475897e-6 +cogitative_A 1.0773191989054437e-5 +cognac_N 3.729715012475897e-6 +cognate_A 1.0773191989054437e-5 +cognate_N 3.729715012475897e-6 +cognition_N 3.729715012475897e-6 +cognitive_A 1.0773191989054437e-5 +cognizance_N 3.729715012475897e-6 +cognizant_A 1.0773191989054437e-5 +cognomen_N 3.729715012475897e-6 +cogwheel_N 3.729715012475897e-6 +cohabit_V 2.2678822515534993e-5 +cohabitation_N 3.729715012475897e-6 +cohere_V 4.5357645031069986e-5 +coherence_N 1.118914503742769e-5 +coherency_N 3.729715012475897e-6 +coherent_A 4.309276795621775e-5 +cohesion_N 7.459430024951794e-6 +cohesive_A 3.231957596716331e-5 +cohesiveness_N 3.729715012475897e-6 +coho_N 3.729715012475897e-6 +cohort_N 7.459430024951794e-6 +coif_N 3.729715012475897e-6 +coiffeur_N 3.729715012475897e-6 +coiffeuse_N 3.729715012475897e-6 +coiffure_N 3.729715012475897e-6 +coign_N 3.729715012475897e-6 +coil_N 7.459430024951794e-6 +coil_V 2.2678822515534993e-5 +coil_V2 1.609865254278217e-5 +coimbatore_PN 1.865462821325971e-5 +coin_N 7.086458523704203e-5 +coin_V2 3.219730508556434e-5 +coinage_N 3.729715012475897e-6 +coincide_V 9.071529006213997e-5 +coincidence_N 2.6108005087331277e-5 +coincident_A 3.231957596716331e-5 +coincidental_A 3.231957596716331e-5 +coiner_N 3.729715012475897e-6 +coinsurance_N 3.729715012475897e-6 +coir_N 3.729715012475897e-6 +coital_A 1.0773191989054437e-5 +coition_N 3.729715012475897e-6 +coitus_N 3.729715012475897e-6 +coke_N 1.8648575062379485e-5 +coke_V2 1.609865254278217e-5 +col_N 3.729715012475897e-6 +col_PN 1.865462821325971e-5 +cola_N 2.6108005087331277e-5 +colander_N 3.729715012475897e-6 +colchester_PN 1.865462821325971e-5 +colchicine_N 3.729715012475897e-6 +cold_A 4.5247406354028633e-4 +cold_N 2.9837720099807175e-5 +cold_blooded_A 1.0773191989054437e-5 +cold_hearted_A 1.0773191989054437e-5 +cold_shoulder_V2 1.609865254278217e-5 +coldhearted_A 1.0773191989054437e-5 +coldness_N 3.729715012475897e-6 +coleshill_PN 1.865462821325971e-5 +coleslaw_N 3.729715012475897e-6 +coleus_N 3.729715012475897e-6 +colic_N 3.729715012475897e-6 +colicky_A 1.0773191989054437e-5 +colicroot_N 3.729715012475897e-6 +colin_PN 1.865462821325971e-5 +coliphage_N 3.729715012475897e-6 +colitis_N 3.729715012475897e-6 +coll_PN 1.865462821325971e-5 +collaborate_V 2.2678822515534994e-4 +collaboration_N 3.356743511228307e-5 +collaborationist_N 3.729715012475897e-6 +collaborative_A 1.0773191989054437e-5 +collaborator_N 7.459430024951794e-6 +collage_N 1.118914503742769e-5 +collagen_N 3.729715012475897e-6 +collagenase_N 3.729715012475897e-6 +collagenous_A 1.0773191989054437e-5 +collapsable_A 1.0773191989054437e-5 +collapse_N 2.7972862593569225e-4 +collapse_V 1.1112623032612148e-3 +collapse_V2 1.9318383051338602e-4 +collapsible_A 1.0773191989054437e-5 +collar_N 4.475658014971076e-5 +collar_V2 1.609865254278217e-5 +collarbone_N 3.729715012475897e-6 +collard_N 3.729715012475897e-6 +collards_N 3.729715012475897e-6 +collarless_A 1.0773191989054437e-5 +collate_V2 1.609865254278217e-5 +collateral_A 3.231957596716331e-5 +collateral_N 1.0070230533684921e-4 +collation_N 3.729715012475897e-6 +colleague_N 2.0886404069865022e-4 +collect_A 2.1546383978108874e-5 +collect_Adv 8.668966832532898e-6 +collect_N 3.729715012475897e-6 +collect_V 3.628611602485599e-4 +collect_V2 4.990582288262473e-4 +collectedly_Adv 8.668966832532898e-6 +collectible_A 1.0773191989054437e-5 +collectible_N 3.729715012475897e-6 +collection_N 1.9767489566122252e-4 +collective_A 2.046906477920343e-4 +collective_N 3.729715012475897e-6 +collectivism_N 3.729715012475897e-6 +collectivist_A 1.0773191989054437e-5 +collectivist_N 3.729715012475897e-6 +collectivization_N 3.729715012475897e-6 +collectivize_V2 1.609865254278217e-5 +collector_N 5.594572518713845e-5 +colleen_N 3.729715012475897e-6 +college_N 2.7226919591074043e-4 +collegial_A 1.0773191989054437e-5 +collegian_N 3.729715012475897e-6 +collegiate_A 2.1546383978108874e-5 +collembolan_N 3.729715012475897e-6 +collet_N 3.729715012475897e-6 +collide_V 2.2678822515534993e-5 +collider_N 3.729715012475897e-6 +collie_N 3.729715012475897e-6 +collier_N 3.729715012475897e-6 +colliery_N 3.729715012475897e-6 +colligation_N 3.729715012475897e-6 +collimation_N 3.729715012475897e-6 +collimator_N 3.729715012475897e-6 +collinear_A 1.0773191989054437e-5 +collins_N 3.729715012475897e-6 +collision_N 7.459430024951794e-6 +collocate_V 2.2678822515534993e-5 +collocation_N 3.729715012475897e-6 +collodion_N 3.729715012475897e-6 +colloid_N 3.729715012475897e-6 +colloidal_A 1.0773191989054437e-5 +colloquial_A 1.0773191989054437e-5 +colloquialism_N 3.729715012475897e-6 +colloquium_N 3.729715012475897e-6 +colloquy_N 7.459430024951794e-6 +collotype_N 3.729715012475897e-6 +collusion_N 3.729715012475897e-6 +collusive_A 1.0773191989054437e-5 +colne_PN 1.865462821325971e-5 +colobus_N 3.729715012475897e-6 +cologne_N 3.729715012475897e-6 +cologne_PN 1.865462821325971e-5 +colombia_PN 1.865462821325971e-5 +colombian_A 1.508246878467621e-4 +colombian_N 3.729715012475897e-6 +colombo_PN 1.865462821325971e-5 +colon_N 5.2216010174662554e-5 +colonel_N 1.118914503742769e-5 +colonial_A 3.231957596716331e-5 +colonial_N 1.4918860049903587e-5 +colonialism_N 3.729715012475897e-6 +colonialist_N 7.459430024951794e-6 +colonic_A 1.0773191989054437e-5 +colonist_N 7.459430024951794e-6 +colonization_N 3.729715012475897e-6 +colonize_V2 1.609865254278217e-5 +colonizer_N 3.729715012475897e-6 +colonnade_N 3.729715012475897e-6 +colonnaded_A 1.0773191989054437e-5 +colonoscope_N 3.729715012475897e-6 +colonoscopy_N 3.729715012475897e-6 +colony_N 8.578344528694562e-5 +colophon_N 3.729715012475897e-6 +colophony_N 3.729715012475897e-6 +color_A 1.0773191989054437e-5 +colorado_PN 1.865462821325971e-5 +coloration_N 3.729715012475897e-6 +coloratura_N 7.459430024951794e-6 +colorcast_N 3.729715012475897e-6 +colorectal_A 1.0773191989054437e-5 +colored_A 1.0773191989054437e-5 +colorfast_A 1.0773191989054437e-5 +colorimeter_N 3.729715012475897e-6 +colorimetric_A 1.0773191989054437e-5 +colorimetry_N 3.729715012475897e-6 +colorist_N 3.729715012475897e-6 +colorlessness_N 3.729715012475897e-6 +colossal_A 1.0773191989054437e-5 +colossus_N 7.459430024951794e-6 +colostomy_N 3.729715012475897e-6 +colostrum_N 3.729715012475897e-6 +colour_N 1.118914503742769e-5 +colour_V 2.2678822515534993e-5 +colour_V2 6.439461017112868e-5 +colour_V2A 1.0e-2 +colour_bar_N 3.729715012475897e-6 +colour_blind_A 1.0773191989054437e-5 +colour_code_V2 4.8295957628346505e-5 +colour_up_V 2.2678822515534993e-5 +colour_wash_N 3.729715012475897e-6 +colourful_A 1.0773191989054437e-5 +colouring_N 3.729715012475897e-6 +colourless_A 1.0773191989054437e-5 +colpitis_N 3.729715012475897e-6 +colpocele_N 3.729715012475897e-6 +colpocystitis_N 3.729715012475897e-6 +colpoxerosis_N 3.729715012475897e-6 +colt_N 3.729715012475897e-6 +colter_N 3.729715012475897e-6 +coltish_A 1.0773191989054437e-5 +coltsfoot_N 3.729715012475897e-6 +columbarium_N 3.729715012475897e-6 +columbia_PN 1.6602619109801142e-3 +columbine_N 3.729715012475897e-6 +columbium_N 3.729715012475897e-6 +columbo_N 3.729715012475897e-6 +columbus_PN 1.865462821325971e-5 +columella_N 3.729715012475897e-6 +column_N 1.4172917047408407e-4 +columnar_A 1.0773191989054437e-5 +columnea_N 3.729715012475897e-6 +columned_A 1.0773191989054437e-5 +columniation_N 3.729715012475897e-6 +columniform_A 1.0773191989054437e-5 +columnist_N 6.713487022456614e-5 +colwyn_bay_PN 1.865462821325971e-5 +coma_N 3.729715012475897e-6 +comate_A 1.0773191989054437e-5 +comatose_A 1.0773191989054437e-5 +comb_N 7.459430024951794e-6 +comb_V 9.071529006213997e-5 +comb_V2 3.219730508556434e-5 +comb_out_N 3.729715012475897e-6 +combat_N 5.594572518713845e-5 +combat_V 9.071529006213997e-5 +combat_V2 1.2878922034225736e-4 +combatant_A 1.0773191989054437e-5 +combatant_N 7.459430024951794e-6 +combative_A 1.0773191989054437e-5 +combativeness_N 3.729715012475897e-6 +comber_N 3.729715012475897e-6 +combinable_A 1.0773191989054437e-5 +combination_N 1.5291831551151176e-4 +combination_lock_N 3.729715012475897e-6 +combinative_A 1.0773191989054437e-5 +combinatorial_A 1.0773191989054437e-5 +combine_N 1.118914503742769e-5 +combine_V 5.442917403728399e-4 +combine_V2 1.432780076307613e-3 +combine_V2V 4.675081813931744e-4 +combine_VV 2.8829521429944266e-4 +combining_N 3.729715012475897e-6 +combretum_N 3.729715012475897e-6 +comburent_A 1.0773191989054437e-5 +combustibility_N 3.729715012475897e-6 +combustible_A 1.0773191989054437e-5 +combustible_N 3.729715012475897e-6 +combustion_N 1.8648575062379485e-5 +come_V 1.6238036921123054e-2 +come_V2 2.4147978814173252e-4 +come_VA 1.4763779527559055e-2 +come_VS 3.0035233639461676e-3 +come_VV 1.3453776667307323e-3 +come_about_V 2.2678822515534993e-5 +come_across_V 2.2678822515534993e-5 +come_across_V2 1.609865254278217e-5 +come_along_V 2.2678822515534993e-5 +come_along_with_V2 1.609865254278217e-5 +come_apart_V 2.2678822515534993e-5 +come_around_V 2.2678822515534993e-5 +come_around_to_V2 1.609865254278217e-5 +come_at_able_A 1.0773191989054437e-5 +come_away_V 2.2678822515534993e-5 +come_back_V 2.2678822515534993e-5 +come_before_V2 1.609865254278217e-5 +come_by_V 2.2678822515534993e-5 +come_by_V2 1.609865254278217e-5 +come_down_V 2.2678822515534993e-5 +come_down_on_V2 3.219730508556434e-5 +come_down_upon_V2 1.609865254278217e-5 +come_down_with_V2 1.609865254278217e-5 +come_forth_V 2.2678822515534993e-5 +come_forth_with_V2 1.609865254278217e-5 +come_forward_V 2.2678822515534993e-5 +come_from_V2 1.609865254278217e-5 +come_in_V 2.2678822515534993e-5 +come_in_V2 1.609865254278217e-5 +come_in_for_V2 1.609865254278217e-5 +come_into_V2 1.609865254278217e-5 +come_into_use_V 2.2678822515534993e-5 +come_off_V 2.2678822515534993e-5 +come_off_V2 1.609865254278217e-5 +come_off_it_V 2.2678822515534993e-5 +come_on_N 3.729715012475897e-6 +come_on_V 2.2678822515534993e-5 +come_out_V 2.2678822515534993e-5 +come_out_in_V2 1.609865254278217e-5 +come_out_of_V2 1.609865254278217e-5 +come_out_with_V2 1.609865254278217e-5 +come_over_V 2.2678822515534993e-5 +come_over_V2 1.609865254278217e-5 +come_round_V 2.2678822515534993e-5 +come_through_V 2.2678822515534993e-5 +come_through_with_V2 1.609865254278217e-5 +come_to_V 2.2678822515534993e-5 +come_to_V2 1.609865254278217e-5 +come_up_V 4.5357645031069986e-5 +come_up_against_V2 1.609865254278217e-5 +come_up_to_V2 1.609865254278217e-5 +come_up_with_V2 1.609865254278217e-5 +come_upon_V2 1.609865254278217e-5 +come_with_V2 1.609865254278217e-5 +comeback_N 6.340515521209024e-5 +comedian_N 1.8648575062379485e-5 +comedienne_N 3.729715012475897e-6 +comedown_N 3.729715012475897e-6 +comedy_N 1.0070230533684921e-4 +comeliness_N 3.729715012475897e-6 +comely_A 1.0773191989054437e-5 +comer_N 3.729715012475897e-6 +comestible_N 7.459430024951794e-6 +comet_N 7.459430024951794e-6 +cometary_A 1.0773191989054437e-5 +comfit_N 3.729715012475897e-6 +comfort_N 6.340515521209024e-5 +comfort_V2 4.8295957628346505e-5 +comfortable_A 4.417008715512319e-4 +comfortableness_N 3.729715012475897e-6 +comforter_N 3.729715012475897e-6 +comforting_A 1.0773191989054437e-5 +comfortless_A 1.0773191989054437e-5 +comforts_N 3.729715012475897e-6 +comfrey_N 3.729715012475897e-6 +comfy_A 1.0773191989054437e-5 +comic_A 1.72371071824871e-4 +comic_N 7.459430024951794e-6 +comical_A 2.1546383978108874e-5 +comicality_N 3.729715012475897e-6 +coming_N 3.729715012475897e-6 +comity_N 7.459430024951794e-6 +comma_N 3.729715012475897e-6 +command_N 4.475658014971076e-5 +command_V 1.5875175760874494e-4 +command_V2 8.049326271391085e-5 +commandant_N 7.459430024951794e-6 +commandeer_V2 1.609865254278217e-5 +commander_N 2.9837720099807175e-5 +commandership_N 3.729715012475897e-6 +commandment_N 7.459430024951794e-6 +commando_N 7.459430024951794e-6 +commelina_N 3.729715012475897e-6 +commemorate_V2 4.8295957628346505e-5 +commemoration_N 3.729715012475897e-6 +commemorative_A 3.231957596716331e-5 +commemorative_N 3.729715012475897e-6 +commence_V 2.2678822515534993e-5 +commence_V2 4.8295957628346505e-5 +commencement_N 7.459430024951794e-6 +commend_V2 4.8295957628346505e-5 +commendable_A 4.309276795621775e-5 +commendation_N 3.729715012475897e-6 +commensal_A 1.0773191989054437e-5 +commensal_N 3.729715012475897e-6 +commensalism_N 3.729715012475897e-6 +commensurable_A 1.0773191989054437e-5 +commensurate_A 2.1546383978108874e-5 +commensurateness_N 3.729715012475897e-6 +comment_N 5.967544019961435e-4 +comment_V 3.469859844876854e-3 +comment_V2 3.219730508556434e-5 +comment_VS 3.4656038814763474e-4 +commentary_N 4.475658014971076e-5 +commentate_V 2.2678822515534993e-5 +commentator_N 3.356743511228307e-5 +commerce_N 3.356743511228307e-5 +commercial_A 2.4455145815153573e-3 +commercial_N 1.7529660558636716e-4 +commercialism_N 3.729715012475897e-6 +commercialization_N 3.729715012475897e-6 +commercialize_V2 1.1269056779947518e-4 +commination_N 3.729715012475897e-6 +comminatory_A 1.0773191989054437e-5 +commingle_V 2.2678822515534993e-5 +commingle_V2 1.609865254278217e-5 +commiserate_V 2.2678822515534993e-5 +commiseration_N 3.729715012475897e-6 +commiserative_A 1.0773191989054437e-5 +commissar_N 3.729715012475897e-6 +commissariat_N 3.729715012475897e-6 +commissary_N 3.729715012475897e-6 +commission_N 4.550252315220594e-4 +commission_V2 1.609865254278217e-4 +commission_V2V 4.675081813931744e-4 +commissionaire_N 3.729715012475897e-6 +commissioner_N 9.324287531189741e-5 +commissure_N 3.729715012475897e-6 +commit_V2 9.659191525669301e-4 +commit_V2V 4.675081813931744e-4 +commital_N 3.729715012475897e-6 +commitment_N 3.8416064628501735e-4 +committedness_N 3.729715012475897e-6 +committee_N 6.899972773080409e-4 +committeeman_N 3.729715012475897e-6 +committeewoman_N 3.729715012475897e-6 +commode_N 3.729715012475897e-6 +commodious_A 1.0773191989054437e-5 +commodity_N 3.990795063349209e-4 +commodore_N 3.729715012475897e-6 +common_A 4.837163203085442e-3 +common_N 7.832401526199384e-5 +common_room_N 3.729715012475897e-6 +commonage_N 3.729715012475897e-6 +commonality_N 3.729715012475897e-6 +commonalty_N 3.729715012475897e-6 +commoner_N 3.729715012475897e-6 +commonness_N 3.729715012475897e-6 +commonplace_A 4.309276795621775e-5 +commonplace_N 1.118914503742769e-5 +commons_N 3.729715012475897e-6 +commonsense_A 1.0773191989054437e-5 +commonwealth_N 1.4918860049903587e-5 +commotion_N 7.459430024951794e-6 +communal_A 2.1546383978108874e-5 +communalism_N 3.729715012475897e-6 +commune_N 3.729715012475897e-6 +commune_V 2.2678822515534993e-5 +communicable_A 1.0773191989054437e-5 +communicant_N 3.729715012475897e-6 +communicate_V 1.1339411257767497e-4 +communicate_V2 1.609865254278217e-5 +communication_N 2.4243147581093328e-4 +communicational_A 1.0773191989054437e-5 +communications_N 3.729715012475897e-6 +communicative_A 1.0773191989054437e-5 +communicativeness_N 3.729715012475897e-6 +communicator_N 3.729715012475897e-6 +communion_N 3.729715012475897e-6 +communique_N 3.729715012475897e-6 +communism_N 2.237829007485538e-5 +communist_A 3.016493756935242e-4 +communist_N 5.967544019961435e-5 +community_N 3.7297150124758965e-4 +communization_N 3.729715012475897e-6 +commutability_N 3.729715012475897e-6 +commutable_A 1.0773191989054437e-5 +commutation_N 3.729715012475897e-6 +commutative_A 1.0773191989054437e-5 +commutator_N 3.729715012475897e-6 +commute_N 3.729715012475897e-6 +commute_V 6.803646754660499e-5 +commute_V2 1.609865254278217e-5 +commuter_N 7.832401526199384e-5 +compact_A 9.695872790148993e-5 +compact_N 1.118914503742769e-5 +compact_V2 4.8295957628346505e-5 +compaction_N 3.729715012475897e-6 +compactness_N 3.729715012475897e-6 +companion_N 4.1026865137234865e-5 +companionability_N 3.729715012475897e-6 +companionable_A 1.0773191989054437e-5 +companionate_A 1.0773191989054437e-5 +companionship_N 3.729715012475897e-6 +companionway_N 3.729715012475897e-6 +company_N 1.5217237250901659e-2 +comparability_N 7.459430024951794e-6 +comparable_A 6.571647113323206e-4 +comparative_A 7.541234392338106e-5 +comparative_N 3.729715012475897e-6 +compare_N 3.729715012475897e-6 +compare_V 7.461332607611013e-3 +compare_V2 1.0142151101952767e-3 +comparison_N 1.6410746054893946e-4 +compartment_N 7.459430024951794e-6 +compartmental_A 1.0773191989054437e-5 +compartmentalization_N 3.729715012475897e-6 +compartmentalize_V2 1.609865254278217e-5 +compartmented_A 1.0773191989054437e-5 +compass_N 3.729715012475897e-6 +compass_V2 1.609865254278217e-5 +compassion_N 1.118914503742769e-5 +compassionate_A 1.0773191989054437e-5 +compatibility_N 1.118914503742769e-5 +compatible_A 9.695872790148993e-5 +compatriot_N 1.118914503742769e-5 +compeer_N 3.729715012475897e-6 +compel_V2 6.439461017112868e-5 +compel_V2V 1.402524544179523e-3 +compel_VV 5.765904285988853e-4 +compelling_A 1.0773191989054437e-5 +compendious_A 1.0773191989054437e-5 +compendium_N 3.729715012475897e-6 +compensable_A 1.0773191989054437e-5 +compensate_V 2.0410940263981494e-4 +compensate_V2 1.1269056779947518e-4 +compensation_N 1.3799945546160818e-4 +compensatory_A 4.309276795621775e-5 +compere_N 3.729715012475897e-6 +compere_V2 1.609865254278217e-5 +compete_V 1.8596634462738695e-3 +competence_N 1.8648575062379485e-5 +competent_A 8.61855359124355e-5 +competition_N 5.706463969088122e-4 +competitive_A 8.403089751462461e-4 +competitiveness_N 2.6108005087331277e-5 +competitor_N 4.2891722643472813e-4 +compilation_N 1.118914503742769e-5 +compile_V2 4.5076227119790073e-4 +compiler_N 7.459430024951794e-6 +complacence_N 3.729715012475897e-6 +complacency_N 1.118914503742769e-5 +complacent_A 3.231957596716331e-5 +complain_V 1.0659046582301448e-3 +complain_VS 2.83024316987235e-3 +complainant_N 7.459430024951794e-6 +complainingly_Adv 8.668966832532898e-6 +complaint_N 2.3124233077350558e-4 +complaisance_N 3.729715012475897e-6 +complaisant_A 1.0773191989054437e-5 +complement_N 3.729715012475897e-6 +complement_V2 9.659191525669301e-5 +complemental_A 1.0773191989054437e-5 +complementarity_N 3.729715012475897e-6 +complementary_A 4.309276795621775e-5 +complementation_N 3.729715012475897e-6 +complete_A 7.756698232119194e-4 +complete_V 9.751893681680048e-4 +complete_V2 2.768968237358533e-3 +completeness_N 7.459430024951794e-6 +completion_N 9.697259032437332e-5 +complex_A 5.494327914417762e-4 +complex_N 8.578344528694562e-5 +complexifier_N 3.729715012475897e-6 +complexion_N 3.729715012475897e-6 +complexity_N 2.237829007485538e-5 +compliance_N 8.578344528694562e-5 +compliant_A 1.0773191989054437e-5 +complicate_V2 5.151568813690294e-4 +complicatedness_N 3.729715012475897e-6 +complication_N 2.237829007485538e-5 +complicity_N 1.8648575062379485e-5 +compliment_N 1.8648575062379485e-5 +compliment_V2 3.219730508556434e-5 +complimentary_A 1.0773191989054437e-5 +complin_N 3.729715012475897e-6 +compline_N 3.729715012475897e-6 +comply_V 5.896493854039099e-4 +comply_V2 1.609865254278217e-5 +component_A 1.0773191989054437e-5 +component_N 1.1562116538675279e-4 +comport_V 2.2678822515534993e-5 +comport_V2 1.609865254278217e-5 +comportment_N 3.729715012475897e-6 +compos_mentis_A 1.0773191989054437e-5 +compose_V 2.2678822515534993e-5 +compose_V2 1.4488787288503951e-4 +composer_N 3.356743511228307e-5 +composing_N 3.729715012475897e-6 +composite_A 2.359329045602922e-3 +composite_N 3.729715012475897e-6 +compositeness_N 3.729715012475897e-6 +composition_N 1.8648575062379485e-5 +compositional_A 2.1546383978108874e-5 +compositor_N 3.729715012475897e-6 +compost_N 3.729715012475897e-6 +compost_V2 1.609865254278217e-5 +composure_N 3.729715012475897e-6 +compote_N 3.729715012475897e-6 +compound_A 7.541234392338106e-5 +compound_N 6.340515521209024e-5 +compound_V 1.1339411257767497e-4 +compound_V2 1.609865254278217e-4 +comprehend_V2 1.609865254278217e-5 +comprehensibility_N 3.729715012475897e-6 +comprehensible_A 1.0773191989054437e-5 +comprehension_N 7.459430024951794e-6 +comprehensive_A 2.046906477920343e-4 +comprehensiveness_N 7.459430024951794e-6 +compress_N 3.729715012475897e-6 +compress_V2 4.8295957628346505e-5 +compressibility_N 3.729715012475897e-6 +compressible_A 1.0773191989054437e-5 +compression_N 3.729715012475897e-6 +compressor_N 1.118914503742769e-5 +comprise_V2 2.092824830561682e-4 +compromise_N 2.1259375571112613e-4 +compromise_V 1.8143058012427994e-4 +compromise_V2 6.439461017112868e-5 +compromiser_N 3.729715012475897e-6 +compsognathus_N 3.729715012475897e-6 +comptroller_N 8.205373027446973e-5 +comptrollership_N 3.729715012475897e-6 +compulsion_N 1.4918860049903587e-5 +compulsive_A 3.231957596716331e-5 +compulsive_N 3.729715012475897e-6 +compulsiveness_N 3.729715012475897e-6 +compulsory_A 2.1546383978108874e-5 +compunction_N 3.729715012475897e-6 +computable_A 1.0773191989054437e-5 +computation_N 7.459430024951794e-6 +computational_A 1.0773191989054437e-5 +compute_V 4.762552728262349e-4 +compute_V2 3.219730508556434e-5 +computer_N 2.3459907428473393e-3 +computerization_N 3.729715012475897e-6 +computerize_V2 3.541703559412077e-4 +comrade_N 1.8648575062379485e-5 +comradely_A 1.0773191989054437e-5 +comradely_Adv 8.668966832532898e-6 +comradeship_N 3.729715012475897e-6 +con_Adv 8.668966832532898e-6 +con_N 3.729715012475897e-6 +con_V2 3.219730508556434e-5 +con_man_N 3.729715012475897e-6 +conacaste_N 3.729715012475897e-6 +concatenation_N 3.729715012475897e-6 +concave_A 1.0773191989054437e-5 +concavity_N 3.729715012475897e-6 +conceal_V2 1.609865254278217e-4 +conceale_V 6.803646754660499e-5 +concealment_N 3.729715012475897e-6 +concede_V 1.8143058012427994e-4 +concede_V2 4.8295957628346505e-5 +concede_VS 3.29232368740253e-3 +conceit_N 1.118914503742769e-5 +conceited_A 1.0773191989054437e-5 +conceivable_A 5.3865959945272184e-5 +conceivableness_N 3.729715012475897e-6 +conceive_V 1.1339411257767497e-4 +conceive_V2 3.219730508556434e-5 +concentrate_N 1.118914503742769e-5 +concentrate_V 1.0885834807456798e-3 +concentrate_V2 2.8977574577007903e-4 +concentration_N 4.475658014971076e-5 +concentric_A 1.0773191989054437e-5 +concentricity_N 3.729715012475897e-6 +concept_N 1.5664803052398767e-4 +conception_N 2.9837720099807175e-5 +conceptional_A 1.0773191989054437e-5 +conceptive_A 1.0773191989054437e-5 +conceptual_A 7.541234392338106e-5 +conceptualism_N 3.729715012475897e-6 +conceptualistic_A 1.0773191989054437e-5 +conceptualization_N 3.729715012475897e-6 +concern_N 2.055072971874219e-3 +concern_V 8.844740781058648e-4 +concern_V2 1.0786097203664053e-3 +concern_VS 1.7328019407381737e-4 +concernedly_Adv 8.668966832532898e-6 +concert_N 3.729715012475897e-5 +concert_V2 4.8295957628346505e-5 +concert_hall_N 3.729715012475897e-6 +concertina_N 3.729715012475897e-6 +concerto_N 7.459430024951794e-6 +concession_N 1.08161735361801e-4 +concessionaire_N 3.729715012475897e-6 +concessive_A 1.0773191989054437e-5 +conch_N 3.729715012475897e-6 +concha_N 3.729715012475897e-6 +conchfish_N 3.729715012475897e-6 +conchologist_N 3.729715012475897e-6 +conchology_N 3.729715012475897e-6 +concierge_N 3.729715012475897e-6 +conciliate_V2 1.609865254278217e-5 +conciliation_N 3.729715012475897e-6 +conciliator_N 3.729715012475897e-6 +conciliatory_A 6.463915193432663e-5 +concise_A 1.0773191989054437e-5 +conciseness_N 3.729715012475897e-6 +conclave_N 3.729715012475897e-6 +conclude_V 3.401823377330249e-4 +conclude_V2 3.3807170339842556e-4 +conclude_VS 3.06128342863744e-3 +conclusion_N 8.951316029942152e-5 +conclusive_A 2.1546383978108874e-5 +concoct_V2 6.439461017112868e-5 +concoction_N 7.459430024951794e-6 +concomitance_N 3.729715012475897e-6 +concomitant_A 3.231957596716331e-5 +concomitant_N 7.459430024951794e-6 +concord_N 3.729715012475897e-6 +concordance_N 3.729715012475897e-6 +concordant_A 1.0773191989054437e-5 +concordat_N 3.729715012475897e-6 +concourse_N 3.729715012475897e-6 +concrete_A 2.1546383978108874e-4 +concrete_N 4.848629516218666e-5 +concrete_V 2.2678822515534993e-5 +concrete_V2 1.609865254278217e-5 +concreteness_N 3.729715012475897e-6 +concretion_N 3.729715012475897e-6 +concretism_N 3.729715012475897e-6 +concretistic_A 1.0773191989054437e-5 +concubinage_N 3.729715012475897e-6 +concubine_N 3.729715012475897e-6 +concupiscence_N 3.729715012475897e-6 +concur_V 6.803646754660499e-5 +concurrence_N 1.4918860049903587e-5 +concurrent_A 6.463915193432663e-5 +concurrentness_N 3.729715012475897e-6 +concuss_V2 1.609865254278217e-5 +concussion_N 3.729715012475897e-6 +condemn_V2 2.8977574577007903e-4 +condemnable_A 1.0773191989054437e-5 +condemnation_N 1.4918860049903587e-5 +condemnatory_A 1.0773191989054437e-5 +condensate_N 3.729715012475897e-6 +condensation_N 3.729715012475897e-6 +condense_V 2.2678822515534993e-5 +condense_V2 3.219730508556434e-5 +condenser_N 7.459430024951794e-6 +condensing_N 3.729715012475897e-6 +condescend_V 2.2678822515534993e-5 +condescendingly_Adv 8.668966832532898e-6 +condescension_N 7.459430024951794e-6 +condign_A 1.0773191989054437e-5 +condiment_N 3.729715012475897e-6 +condition_N 6.415109821458542e-4 +condition_V2 9.659191525669301e-5 +conditional_A 9.695872790148993e-5 +conditionality_N 3.729715012475897e-6 +conditioner_N 2.237829007485538e-5 +conditioning_N 7.459430024951794e-6 +conditions_N 3.729715012475897e-6 +condole_V 2.2678822515534993e-5 +condolence_N 3.729715012475897e-6 +condolent_A 1.0773191989054437e-5 +condom_N 3.729715012475897e-6 +condominium_N 2.6108005087331277e-5 +condonation_N 3.729715012475897e-6 +condone_V2 6.439461017112868e-5 +condor_N 3.729715012475897e-6 +conduce_V 2.2678822515534993e-5 +conducive_A 2.1546383978108874e-5 +conduct_N 6.340515521209024e-5 +conduct_V 3.401823377330249e-4 +conduct_V2 9.337218474813658e-4 +conductance_N 3.729715012475897e-6 +conducting_N 3.729715012475897e-6 +conduction_N 3.729715012475897e-6 +conductive_A 1.0773191989054437e-5 +conductivity_N 3.729715012475897e-6 +conductor_N 1.118914503742769e-5 +conductress_N 3.729715012475897e-6 +conduit_N 3.729715012475897e-5 +condylar_A 1.0773191989054437e-5 +condyle_N 3.729715012475897e-6 +condylion_N 3.729715012475897e-6 +cone_N 1.118914503742769e-5 +cone_V2 1.609865254278217e-5 +coneflower_N 3.729715012475897e-6 +conenose_N 3.729715012475897e-6 +coney_N 3.729715012475897e-6 +confab_N 3.729715012475897e-6 +confab_V 2.2678822515534993e-5 +confabulate_V 2.2678822515534993e-5 +confabulation_N 3.729715012475897e-6 +confection_N 3.729715012475897e-6 +confectioner_N 3.729715012475897e-6 +confectionery_N 7.459430024951794e-6 +confederacy_N 3.729715012475897e-6 +confederate_A 1.0773191989054437e-5 +confederate_N 3.729715012475897e-6 +confederate_V 2.2678822515534993e-5 +confederate_V2 1.609865254278217e-5 +confederation_N 1.118914503742769e-5 +confer_V 1.1339411257767497e-4 +confer_V2 9.659191525669301e-5 +conferee_N 3.729715012475897e-6 +conference_N 5.221601017466256e-4 +conferment_N 3.729715012475897e-6 +conferrer_N 3.729715012475897e-6 +conferva_N 3.729715012475897e-6 +confess_V 1.3607293509320997e-4 +confess_V2 3.219730508556434e-5 +confess_VS 4.0432045283890716e-4 +confessedly_Adv 8.668966832532898e-6 +confession_N 1.4918860049903587e-5 +confessional_N 3.729715012475897e-6 +confessor_N 3.729715012475897e-6 +confetti_N 3.729715012475897e-6 +confidant_N 1.4918860049903587e-5 +confidante_N 3.729715012475897e-6 +confide_V 9.071529006213997e-5 +confide_V2 1.609865254278217e-5 +confide_VS 1.7328019407381737e-4 +confidence_N 2.648097658857887e-4 +confident_A 4.7402044751839524e-4 +confidential_A 9.695872790148993e-5 +confidentiality_N 1.8648575062379485e-5 +configuration_N 1.118914503742769e-5 +configurational_A 1.0773191989054437e-5 +configure_V2 1.609865254278217e-5 +confine_N 1.118914503742769e-5 +confine_V2 1.2878922034225736e-4 +confinement_N 1.118914503742769e-5 +confining_A 1.0773191989054437e-5 +confirm_V2 1.0142151101952767e-3 +confirm_VS 1.906082134811991e-3 +confirmable_A 1.0773191989054437e-5 +confirmation_N 5.594572518713845e-5 +confiscate_A 1.0773191989054437e-5 +confiscate_V2 1.9318383051338602e-4 +confiscation_N 7.459430024951794e-6 +confit_N 3.729715012475897e-6 +confiture_N 3.729715012475897e-6 +conflagration_N 3.729715012475897e-6 +conflict_N 1.3426974044913228e-4 +conflict_V 1.3607293509320997e-4 +confluence_N 7.459430024951794e-6 +confluent_A 1.0773191989054437e-5 +conform_V 2.9482469270195494e-4 +conform_V2 1.609865254278217e-5 +conformable_A 1.0773191989054437e-5 +conformation_N 3.729715012475897e-6 +conformist_A 1.0773191989054437e-5 +conformist_N 3.729715012475897e-6 +conformity_N 3.729715012475897e-6 +confound_V2 1.609865254278217e-5 +confounding_A 1.0773191989054437e-5 +confrere_N 3.729715012475897e-6 +confront_V2 2.7367709322729687e-4 +confrontation_N 6.340515521209024e-5 +confrontational_A 1.0773191989054437e-5 +confucian_A 1.0773191989054437e-5 +confucian_N 3.729715012475897e-6 +confusable_A 1.0773191989054437e-5 +confuse_V2 2.7367709322729687e-4 +confusedly_Adv 8.668966832532898e-6 +confusing_A 2.1546383978108874e-5 +confusion_N 9.697259032437332e-5 +confutation_N 3.729715012475897e-6 +confute_V2 1.609865254278217e-5 +conga_N 3.729715012475897e-6 +conge_N 3.729715012475897e-6 +congeal_V 2.2678822515534993e-5 +congeal_V2 1.609865254278217e-5 +congealment_N 3.729715012475897e-6 +congee_N 3.729715012475897e-6 +congener_N 3.729715012475897e-6 +congeneric_A 1.0773191989054437e-5 +congenial_A 2.1546383978108874e-5 +congeniality_N 3.729715012475897e-6 +congenialness_N 3.729715012475897e-6 +congenital_A 1.0773191989054437e-5 +conger_N 3.729715012475897e-6 +conger_eel_N 3.729715012475897e-6 +congested_A 1.0773191989054437e-5 +congestion_N 1.118914503742769e-5 +congestive_A 1.0773191989054437e-5 +congleton_PN 1.865462821325971e-5 +conglomerate_A 3.231957596716331e-5 +conglomerate_N 9.697259032437332e-5 +conglomerate_V 2.2678822515534993e-5 +conglomerate_V2 1.609865254278217e-5 +conglomeration_N 3.729715012475897e-6 +congo_PN 1.865462821325971e-5 +congolese_A 2.1546383978108874e-5 +congolese_N 3.729715012475897e-6 +congou_N 3.729715012475897e-6 +congratulate_V2 6.439461017112868e-5 +congratulation_N 3.729715012475897e-6 +congratulatory_A 2.1546383978108874e-5 +congregant_N 3.729715012475897e-6 +congregate_V 2.2678822515534993e-5 +congregate_V2 1.609865254278217e-5 +congregation_N 1.118914503742769e-5 +congregational_A 1.0773191989054437e-5 +congress_N 2.6108005087331277e-5 +congressional_A 1.3681953826099136e-3 +congressman_N 1.1562116538675279e-4 +congresswoman_N 3.729715012475897e-6 +congruent_A 1.0773191989054437e-5 +congruity_N 3.729715012475897e-6 +congruous_A 1.0773191989054437e-5 +conic_A 1.0773191989054437e-5 +conical_A 1.0773191989054437e-5 +conidiophore_N 3.729715012475897e-6 +conidium_N 3.729715012475897e-6 +conifer_N 3.729715012475897e-6 +coniferous_A 1.0773191989054437e-5 +conima_N 3.729715012475897e-6 +conjectural_A 1.0773191989054437e-5 +conjecture_N 7.459430024951794e-6 +conjecture_V 2.2678822515534993e-5 +conjecture_V2 1.609865254278217e-5 +conjoin_V 2.2678822515534993e-5 +conjoin_V2 1.609865254278217e-5 +conjoint_A 1.0773191989054437e-5 +conjugal_A 1.0773191989054437e-5 +conjugate_A 1.0773191989054437e-5 +conjugate_V 2.2678822515534993e-5 +conjugate_V2 1.609865254278217e-5 +conjugation_N 3.729715012475897e-6 +conjunct_A 1.0773191989054437e-5 +conjunction_N 1.8648575062379485e-5 +conjunctiva_N 3.729715012475897e-6 +conjunctival_A 1.0773191989054437e-5 +conjunctive_A 1.0773191989054437e-5 +conjunctive_N 3.729715012475897e-6 +conjunctivitis_N 3.729715012475897e-6 +conjuncture_N 3.729715012475897e-6 +conjuration_N 3.729715012475897e-6 +conjure_V 4.5357645031069986e-5 +conjure_V2 1.609865254278217e-5 +conjure_up_V2 1.609865254278217e-5 +conjurer_N 3.729715012475897e-6 +conjuring_N 3.729715012475897e-6 +conjuror_N 3.729715012475897e-6 +conk_N 3.729715012475897e-6 +conk_V 2.2678822515534993e-5 +conk_out_V 2.2678822515534993e-5 +conker_N 3.729715012475897e-6 +connah's_quay_PN 1.865462821325971e-5 +connate_A 1.0773191989054437e-5 +connatural_A 1.0773191989054437e-5 +connaught_PN 1.865462821325971e-5 +connect_V 1.3607293509320997e-4 +connect_V2 4.668609237406829e-4 +connecticut_PN 3.730925642651942e-4 +connection_N 1.6410746054893946e-4 +connective_A 1.0773191989054437e-5 +connective_N 3.729715012475897e-6 +connectivity_N 3.729715012475897e-6 +connexion_N 3.729715012475897e-6 +connie_PN 1.865462821325971e-5 +conning_A 1.0773191989054437e-5 +connivance_N 3.729715012475897e-6 +connive_V 2.2678822515534993e-5 +connoisseur_N 7.459430024951794e-6 +connotation_N 1.118914503742769e-5 +connotational_A 1.0773191989054437e-5 +connotative_A 1.0773191989054437e-5 +connote_V2 3.219730508556434e-5 +connubial_A 1.0773191989054437e-5 +conodont_N 3.729715012475897e-6 +conquer_V2 4.8295957628346505e-5 +conquerable_A 1.0773191989054437e-5 +conqueror_N 3.729715012475897e-6 +conquest_N 7.459430024951794e-6 +conquistador_N 3.729715012475897e-6 +cons_PN 1.865462821325971e-5 +consanguinity_N 3.729715012475897e-6 +conscience_N 1.4918860049903587e-5 +conscience_smitten_A 1.0773191989054437e-5 +conscienceless_A 1.0773191989054437e-5 +conscientious_A 5.3865959945272184e-5 +conscientiousness_N 3.729715012475897e-6 +conscionable_A 1.0773191989054437e-5 +conscious_A 5.3865959945272184e-5 +consciousness_N 1.8648575062379485e-5 +conscript_N 7.459430024951794e-6 +conscript_V2 1.609865254278217e-5 +conscription_N 3.729715012475897e-6 +consecrate_V2 1.609865254278217e-5 +consecration_N 3.729715012475897e-6 +consecutive_A 5.602059834308307e-4 +consecutive_Adv 8.668966832532898e-6 +consensual_A 1.0773191989054437e-5 +consensus_N 1.4918860049903588e-4 +consent_N 1.1562116538675279e-4 +consent_V 2.9482469270195494e-4 +consent_V2V 4.675081813931744e-4 +consentaneous_A 1.0773191989054437e-5 +consequence_N 1.2308059541170458e-4 +consequent_A 1.6159787983581657e-4 +consequential_A 1.0773191989054437e-5 +conservancy_N 3.729715012475897e-6 +conservation_N 4.475658014971076e-5 +conservatism_N 1.4918860049903587e-5 +conservative_A 9.264945110586816e-4 +conservative_N 1.268103104241805e-4 +conservatoire_N 3.729715012475897e-6 +conservator_N 3.729715012475897e-6 +conservatory_N 7.459430024951794e-6 +conserve_N 3.729715012475897e-6 +conserve_V2 8.049326271391085e-5 +consett_PN 1.865462821325971e-5 +consider_V 1.5194811085408445e-3 +consider_V2 2.2377127034467217e-3 +consider_V2A 2.0e-2 +consider_V2V 2.805049088359046e-3 +consider_V3 1.904761904761905e-2 +consider_VS 7.1044879570265115e-3 +consider_VV 3.4595425715933117e-3 +considerable_A 6.787110953104295e-4 +considerate_A 1.0773191989054437e-5 +considerateness_N 3.729715012475897e-6 +consideration_N 1.6783717556141534e-4 +consign_V2 3.219730508556434e-5 +consignee_N 3.729715012475897e-6 +consigner_N 3.729715012475897e-6 +consignment_N 3.729715012475897e-6 +consignor_N 3.729715012475897e-6 +consist_V 1.2019775933233545e-3 +consistence_N 3.729715012475897e-6 +consistency_N 7.459430024951794e-6 +consistent_A 5.278864074636674e-4 +consistory_N 3.729715012475897e-6 +consolable_A 1.0773191989054437e-5 +consolation_N 7.459430024951794e-6 +consolatory_A 1.0773191989054437e-5 +console_N 3.729715012475897e-6 +console_V2 4.8295957628346505e-5 +consolidate_V 1.3607293509320997e-4 +consolidate_V2 5.634528389973759e-4 +consolidation_N 7.459430024951794e-5 +consolidative_A 1.0773191989054437e-5 +consomme_N 3.729715012475897e-6 +consonance_N 3.729715012475897e-6 +consonant_A 2.1546383978108874e-5 +consonant_N 3.729715012475897e-6 +consonantal_A 1.0773191989054437e-5 +consort_N 3.729715012475897e-6 +consort_V 4.5357645031069986e-5 +consortium_N 9.324287531189741e-5 +conspecific_A 1.0773191989054437e-5 +conspecific_N 3.729715012475897e-6 +conspectus_N 3.729715012475897e-6 +conspicuous_A 5.3865959945272184e-5 +conspicuousness_N 3.729715012475897e-6 +conspiracy_N 1.0070230533684921e-4 +conspirator_N 1.4918860049903587e-5 +conspiratorial_A 1.0773191989054437e-5 +conspire_V 1.1339411257767497e-4 +conspire_V2 1.609865254278217e-5 +conspire_V2V 4.675081813931744e-4 +constable_N 3.729715012475897e-6 +constabulary_N 3.729715012475897e-6 +constance_PN 1.865462821325971e-5 +constancy_N 3.729715012475897e-6 +constant_A 3.878349116059597e-4 +constant_N 3.729715012475897e-6 +constantan_N 3.729715012475897e-6 +constellation_N 3.729715012475897e-6 +consternation_N 7.459430024951794e-6 +constipate_V2 1.609865254278217e-5 +constipation_N 3.729715012475897e-6 +constituency_N 4.475658014971076e-5 +constituent_A 2.1546383978108874e-5 +constituent_N 6.340515521209024e-5 +constitute_V2 3.058743983128612e-4 +constitution_N 3.729715012475897e-5 +constitutional_A 5.494327914417762e-4 +constitutional_N 7.459430024951794e-6 +constitutionalism_N 3.729715012475897e-6 +constitutionalist_N 3.729715012475897e-6 +constitutionalize_V2 1.609865254278217e-5 +constitutive_A 1.0773191989054437e-5 +constrain_V2 1.1269056779947518e-4 +constrainedly_Adv 8.668966832532898e-6 +constraint_N 3.729715012475897e-5 +constrict_V2 3.219730508556434e-5 +constricting_A 1.0773191989054437e-5 +constriction_N 3.729715012475897e-6 +constrictor_N 3.729715012475897e-6 +construal_N 3.729715012475897e-6 +construct_V2 2.7367709322729687e-4 +construction_N 7.049161373579444e-4 +constructional_A 1.0773191989054437e-5 +constructive_A 8.61855359124355e-5 +constructiveness_N 3.729715012475897e-6 +constructivism_N 3.729715012475897e-6 +constructivist_N 3.729715012475897e-6 +constructor_N 3.729715012475897e-6 +construe_V 2.2678822515534993e-5 +construe_V2 8.049326271391085e-5 +construe_V2V 9.350163627863488e-4 +consubstantial_A 1.0773191989054437e-5 +consubstantiation_N 3.729715012475897e-6 +consuetude_N 3.729715012475897e-6 +consuetudinary_N 3.729715012475897e-6 +consul_N 7.459430024951794e-6 +consular_A 1.0773191989054437e-5 +consulate_N 3.729715012475897e-6 +consulship_N 3.729715012475897e-6 +consult_V 1.2926928833854945e-3 +consult_V2 1.4488787288503951e-4 +consultancy_N 3.729715012475897e-6 +consultant_N 4.960520966592943e-4 +consultation_N 2.6108005087331277e-5 +consultative_A 1.0773191989054437e-5 +consumable_A 1.0773191989054437e-5 +consume_V 1.1339411257767497e-4 +consume_V2 2.8977574577007903e-4 +consumer_N 1.193508803992287e-3 +consumerism_N 3.729715012475897e-6 +consummate_A 2.1546383978108874e-5 +consummate_V2 6.439461017112868e-5 +consummation_N 3.729715012475897e-6 +consumption_N 1.4918860049903588e-4 +consumptive_A 1.0773191989054437e-5 +consumptive_N 3.729715012475897e-6 +cont_PN 1.865462821325971e-5 +contact_N 1.1562116538675279e-4 +contact_V2 2.092824830561682e-4 +contadino_N 3.729715012475897e-6 +contagion_N 3.729715012475897e-6 +contagious_A 4.309276795621775e-5 +contain_V2 1.2395962457942271e-3 +container_N 4.475658014971076e-5 +containerful_N 3.729715012475897e-6 +containment_N 1.4918860049903587e-5 +contaminant_N 3.729715012475897e-6 +contaminate_V2 9.659191525669301e-5 +contamination_N 1.8648575062379485e-5 +contaminative_A 1.0773191989054437e-5 +contemn_V2 1.609865254278217e-5 +contemplate_V 6.803646754660499e-5 +contemplate_V2 2.2538113559895037e-4 +contemplate_VS 1.1552012938254491e-4 +contemplation_N 7.459430024951794e-6 +contemplative_A 1.0773191989054437e-5 +contemplative_N 3.729715012475897e-6 +contemporaneity_N 3.729715012475897e-6 +contemporaneous_A 1.0773191989054437e-5 +contemporary_A 1.2927830386865325e-4 +contemporary_N 7.459430024951794e-6 +contempt_N 1.8648575062379485e-5 +contemptible_A 2.1546383978108874e-5 +contemptuous_of_A2 1.2658227848101266e-2 +contemptuousness_N 3.729715012475897e-6 +contend_V 1.5875175760874494e-4 +contend_VS 5.42944608097961e-3 +contender_N 2.237829007485538e-5 +content_A 5.3865959945272184e-5 +content_N 5.594572518713845e-5 +content_V2 4.8295957628346505e-5 +contentedly_Adv 8.668966832532898e-6 +contentedness_N 3.729715012475897e-6 +contention_N 3.356743511228307e-5 +contentious_A 8.61855359124355e-5 +contentment_N 3.729715012475897e-6 +contents_N 3.729715012475897e-6 +conterminous_A 1.0773191989054437e-5 +contest_N 1.0070230533684921e-4 +contest_V 6.803646754660499e-5 +contest_V2 1.1269056779947518e-4 +contestable_A 1.0773191989054437e-5 +contestant_N 1.4918860049903587e-5 +contestee_N 3.729715012475897e-6 +contester_N 3.729715012475897e-6 +context_N 5.967544019961435e-5 +contextual_A 1.0773191989054437e-5 +contextualism_N 3.729715012475897e-6 +contiguity_N 3.729715012475897e-6 +contiguous_A 3.231957596716331e-5 +continence_N 3.729715012475897e-6 +continent_A 1.0773191989054437e-5 +continent_N 2.237829007485538e-5 +continental_A 1.0773191989054437e-4 +contingency_N 3.356743511228307e-5 +contingent_A 8.61855359124355e-5 +contingent_N 1.118914503742769e-5 +continual_A 1.1850511187959881e-4 +continuance_N 3.729715012475897e-6 +continuation_N 2.237829007485538e-5 +continue_V 5.964530321585703e-3 +continue_V2 2.4469951865028895e-3 +continue_VS 8.086409056778143e-4 +continue_VV 3.286565443013646e-2 +continue_on_V 2.2678822515534993e-5 +continuity_N 1.118914503742769e-5 +continuous_A 7.541234392338106e-5 +continuousness_N 3.729715012475897e-6 +continuum_N 3.729715012475897e-6 +conto_N 3.729715012475897e-6 +contort_V2 1.609865254278217e-5 +contortion_N 3.729715012475897e-6 +contortionist_N 3.729715012475897e-6 +contour_N 3.729715012475897e-6 +contour_V2 1.609865254278217e-5 +contra_Prep 9.978546125829467e-6 +contraband_N 3.729715012475897e-6 +contrabass_A 1.0773191989054437e-5 +contrabass_N 3.729715012475897e-6 +contrabassoon_N 3.729715012475897e-6 +contraception_N 3.729715012475897e-6 +contraceptive_A 5.3865959945272184e-5 +contraceptive_N 1.8648575062379485e-5 +contract_N 2.1856129973108753e-3 +contract_V 4.989340953417699e-4 +contract_V2 1.2878922034225736e-4 +contract_V2V 4.675081813931744e-4 +contract_in_V 2.2678822515534993e-5 +contract_out_V2 1.609865254278217e-5 +contract_out_of_V2 1.609865254278217e-5 +contractible_A 1.0773191989054437e-5 +contractile_A 1.0773191989054437e-5 +contractility_N 3.729715012475897e-6 +contraction_N 3.356743511228307e-5 +contractor_N 2.0140461067369843e-4 +contractual_A 6.463915193432663e-5 +contracture_N 3.729715012475897e-6 +contradict_V2 8.049326271391085e-5 +contradiction_N 1.8648575062379485e-5 +contradictoriness_N 3.729715012475897e-6 +contradictory_A 4.309276795621775e-5 +contradictory_N 3.729715012475897e-6 +contradistinction_N 3.729715012475897e-6 +contradistinguish_V2 1.609865254278217e-5 +contrail_N 3.729715012475897e-6 +contraindication_N 3.729715012475897e-6 +contralateral_A 1.0773191989054437e-5 +contralto_N 3.729715012475897e-6 +contraption_N 7.459430024951794e-6 +contrapuntal_A 1.0773191989054437e-5 +contrapuntist_N 3.729715012475897e-6 +contrarian_N 3.729715012475897e-6 +contrariety_N 3.729715012475897e-6 +contrariness_N 3.729715012475897e-6 +contrarious_A 1.0773191989054437e-5 +contrariwise_Adv 8.668966832532898e-6 +contrary_A 1.4005149585770768e-4 +contrary_N 2.6108005087331277e-5 +contrast_N 2.237829007485538e-4 +contrast_V 2.7214587018641994e-4 +contrast_V2 3.219730508556434e-5 +contrastingly_Adv 8.668966832532898e-6 +contrastive_A 1.0773191989054437e-5 +contrasty_A 1.0773191989054437e-5 +contravene_V2 3.219730508556434e-5 +contravention_N 3.729715012475897e-6 +contretemps_N 3.729715012475897e-6 +contribute_V 2.6987798793486643e-3 +contribute_V2 4.185649661123364e-4 +contribute_V2V 4.675081813931744e-4 +contribution_N 2.4243147581093328e-4 +contributor_N 2.6108005087331277e-5 +contributory_A 1.0773191989054437e-5 +contrite_A 1.0773191989054437e-5 +contrition_N 3.729715012475897e-6 +contrivance_N 3.729715012475897e-6 +contrive_V 2.2678822515534993e-5 +contrive_V2 1.609865254278217e-5 +contriver_N 3.729715012475897e-6 +control_N 9.921041933185885e-4 +control_V 3.175035152174899e-4 +control_V2 2.3182059661606322e-3 +controllable_A 1.0773191989054437e-5 +controller_N 3.729715012475897e-5 +controllership_N 3.729715012475897e-6 +controlling_A 1.0773191989054437e-5 +controversial_A 5.278864074636674e-4 +controversialist_N 3.729715012475897e-6 +controversy_N 1.268103104241805e-4 +controvert_V2 1.609865254278217e-5 +contumacious_A 1.0773191989054437e-5 +contumacy_N 3.729715012475897e-6 +contumelious_A 1.0773191989054437e-5 +contumely_N 3.729715012475897e-6 +contuse_V2 1.609865254278217e-5 +contusion_N 3.729715012475897e-6 +conundrum_N 7.459430024951794e-6 +conurbation_N 3.729715012475897e-6 +convalesce_V 2.2678822515534993e-5 +convalescence_N 3.729715012475897e-6 +convalescent_A 1.0773191989054437e-5 +convalescent_N 3.729715012475897e-6 +convection_N 3.729715012475897e-6 +convector_N 3.729715012475897e-6 +convene_V 1.1339411257767497e-4 +convene_V2 1.4488787288503951e-4 +convener_N 3.729715012475897e-6 +convenience_N 6.340515521209024e-5 +convenient_A 9.695872790148993e-5 +convent_N 1.8648575062379485e-5 +conventicle_N 3.729715012475897e-6 +convention_N 7.459430024951794e-5 +conventional_A 6.571647113323206e-4 +conventionality_N 3.729715012475897e-6 +conventionalization_N 3.729715012475897e-6 +conventionalized_A 1.0773191989054437e-5 +conventioneer_N 3.729715012475897e-6 +converge_V 4.5357645031069986e-5 +convergence_N 3.729715012475897e-6 +convergent_A 1.0773191989054437e-5 +conversant_A 1.0773191989054437e-5 +conversation_N 1.268103104241805e-4 +conversational_A 1.0773191989054437e-5 +conversationalist_N 3.729715012475897e-6 +converse_A 3.231957596716331e-5 +converse_N 3.729715012475897e-6 +converse_V 2.2678822515534993e-5 +conversion_N 9.324287531189741e-5 +convert_N 7.459430024951794e-6 +convert_V 3.855399827640949e-4 +convert_V2 9.176231949385836e-4 +converter_N 3.356743511228307e-5 +convertibility_N 7.459430024951794e-6 +convertible_A 1.1850511187959881e-3 +convertible_N 3.729715012475897e-5 +convex_A 1.0773191989054437e-5 +convexity_N 7.459430024951794e-6 +convey_V2 1.609865254278217e-4 +conveyance_N 7.459430024951794e-6 +conveyancer_N 3.729715012475897e-6 +conveyer_N 3.729715012475897e-6 +conveyer_belt_N 3.729715012475897e-6 +conveyor_N 7.459430024951794e-6 +convict_N 3.729715012475897e-6 +convict_V2 6.117487966257224e-4 +conviction_N 1.268103104241805e-4 +convince_V2 4.990582288262473e-4 +convince_V2V 2.3375409069658717e-3 +convincible_A 1.0773191989054437e-5 +convincing_A 6.463915193432663e-5 +convincingness_N 3.729715012475897e-6 +convivial_A 1.0773191989054437e-5 +conviviality_N 3.729715012475897e-6 +convocation_N 7.459430024951794e-6 +convoke_V2 1.609865254278217e-5 +convolute_A 1.0773191989054437e-5 +convoluted_A 2.1546383978108874e-5 +convolution_N 7.459430024951794e-6 +convolvulus_N 3.729715012475897e-6 +convoy_N 1.118914503742769e-5 +convoy_V2 1.609865254278217e-5 +convulse_V2 1.609865254278217e-5 +convulsion_N 1.118914503742769e-5 +convulsive_A 1.0773191989054437e-5 +conwy_PN 1.865462821325971e-5 +cony_N 3.729715012475897e-6 +coo_N 3.729715012475897e-6 +coo_V 2.2678822515534993e-5 +coo_V2 1.609865254278217e-5 +cook_N 1.8648575062379485e-5 +cook_V 1.1339411257767497e-4 +cook_V2 6.439461017112868e-5 +cookbook_N 2.237829007485538e-5 +cooker_N 3.729715012475897e-6 +cookery_N 3.729715012475897e-6 +cookery_book_N 3.729715012475897e-6 +cookfire_N 3.729715012475897e-6 +cookham_PN 1.865462821325971e-5 +cookhouse_N 3.729715012475897e-6 +cookie_N 1.118914503742769e-5 +cooking_N 1.8648575062379485e-5 +cookout_N 3.729715012475897e-6 +cookstove_N 3.729715012475897e-6 +cooky_N 1.118914503742769e-5 +cool_A 1.6159787983581657e-4 +cool_N 1.118914503742769e-5 +cool_V 4.082188052796299e-4 +cool_V2 1.7708517797060386e-4 +cool_down_V 2.2678822515534993e-5 +cool_down_V2 1.609865254278217e-5 +cool_headed_A 1.0773191989054437e-5 +cool_off_V 2.2678822515534993e-5 +coolant_N 1.4918860049903587e-5 +cooler_N 7.459430024951794e-6 +coolie_N 3.729715012475897e-6 +cooling_N 3.729715012475897e-6 +cooling_tower_N 3.729715012475897e-6 +coolness_N 3.729715012475897e-6 +coon_N 3.729715012475897e-6 +coondog_N 3.729715012475897e-6 +coonhound_N 3.729715012475897e-6 +coontie_N 3.729715012475897e-6 +coop_N 3.729715012475897e-6 +coop_V2 1.609865254278217e-5 +coop_up_V2 1.609865254278217e-5 +cooper_N 3.729715012475897e-6 +cooperate_V 4.762552728262349e-4 +cooperation_N 1.6783717556141534e-4 +cooperative_A 1.508246878467621e-4 +cooperative_N 5.2216010174662554e-5 +cooperator_N 3.729715012475897e-6 +coordinate_A 1.0773191989054437e-5 +coordinate_N 3.729715012475897e-6 +coordinate_V 1.1339411257767497e-4 +coordinate_V2 2.4147978814173252e-4 +coordination_N 2.6108005087331277e-5 +coordinator_N 2.6108005087331277e-5 +coot_N 3.729715012475897e-6 +cooter_N 3.729715012475897e-6 +cop_N 1.4918860049903587e-5 +cop_V 2.2678822515534993e-5 +cop_V2 1.609865254278217e-5 +cop_it_V 2.2678822515534993e-5 +cop_off_V 2.2678822515534993e-5 +cop_off_V2 1.609865254278217e-5 +cop_out_N 3.729715012475897e-6 +cop_out_V 2.2678822515534993e-5 +copacetic_A 1.0773191989054437e-5 +copaiba_N 3.729715012475897e-6 +copal_N 3.729715012475897e-6 +copalite_N 3.729715012475897e-6 +copartner_N 3.729715012475897e-6 +copartnership_N 3.729715012475897e-6 +cope_N 3.729715012475897e-6 +cope_V 5.442917403728399e-4 +copeck_N 3.729715012475897e-6 +copenhagen_PN 1.865462821325971e-5 +copepod_N 3.729715012475897e-6 +copernican_A 1.0773191989054437e-5 +copilot_N 3.729715012475897e-6 +coping_N 3.729715012475897e-6 +coping_stone_N 3.729715012475897e-6 +copious_A 2.1546383978108874e-5 +coplanar_A 1.0773191989054437e-5 +copolymer_N 3.729715012475897e-6 +copout_N 3.729715012475897e-6 +copper_N 2.7599891092321637e-4 +copper_V2 1.609865254278217e-5 +copper_bottom_V2 1.609865254278217e-5 +copper_bottomed_A 1.0773191989054437e-5 +copperhead_N 3.729715012475897e-6 +copperplate_N 3.729715012475897e-6 +coppersmith_N 3.729715012475897e-6 +copperware_N 3.729715012475897e-6 +coppery_A 1.0773191989054437e-5 +coppice_N 3.729715012475897e-6 +coppull_PN 1.865462821325971e-5 +copra_N 3.729715012475897e-6 +coproduction_N 3.729715012475897e-6 +coprolalia_N 3.729715012475897e-6 +coprolite_N 3.729715012475897e-6 +coprolith_N 3.729715012475897e-6 +coprophagy_N 3.729715012475897e-6 +copse_N 3.729715012475897e-6 +copt_A 1.0773191989054437e-5 +copt_N 3.729715012475897e-6 +coptic_N 3.729715012475897e-6 +copula_N 3.729715012475897e-6 +copular_A 1.0773191989054437e-5 +copulate_V 2.2678822515534993e-5 +copulation_N 3.729715012475897e-6 +copulative_A 1.0773191989054437e-5 +copulative_N 3.729715012475897e-6 +copy_N 1.8648575062379482e-4 +copy_V 2.2678822515534994e-4 +copy_V2 2.092824830561682e-4 +copybook_N 3.729715012475897e-6 +copycat_N 7.459430024951794e-6 +copyhold_N 3.729715012475897e-6 +copyholder_N 3.729715012475897e-6 +copying_N 3.729715012475897e-6 +copyist_N 3.729715012475897e-6 +copyright_N 6.713487022456614e-5 +copyright_V2 6.439461017112868e-5 +copywriter_N 3.729715012475897e-6 +coquetry_N 3.729715012475897e-6 +coquette_N 3.729715012475897e-6 +coquettish_A 1.0773191989054437e-5 +coquille_N 3.729715012475897e-6 +cor_anglais_N 3.729715012475897e-6 +coracle_N 3.729715012475897e-6 +coral_A 1.0773191989054437e-5 +coral_N 3.729715012475897e-6 +coral_reef_N 3.729715012475897e-6 +coralbells_N 3.729715012475897e-6 +coralberry_N 3.729715012475897e-6 +coralwood_N 3.729715012475897e-6 +corbel_N 3.729715012475897e-6 +corbelled_A 1.0773191989054437e-5 +corbina_N 3.729715012475897e-6 +corby_PN 1.865462821325971e-5 +corchorus_N 3.729715012475897e-6 +cord_N 1.4918860049903587e-5 +cord_V2 1.609865254278217e-5 +cordage_N 3.729715012475897e-6 +cordate_A 1.0773191989054437e-5 +cordgrass_N 3.729715012475897e-6 +cordial_A 1.0773191989054437e-5 +cordial_N 3.729715012475897e-6 +cordiality_N 3.729715012475897e-6 +cordierite_N 3.729715012475897e-6 +cordite_N 3.729715012475897e-6 +corditis_N 3.729715012475897e-6 +cordless_A 1.0773191989054437e-5 +cordoba_N 3.729715012475897e-6 +cordoba_PN 1.865462821325971e-5 +cordon_N 3.729715012475897e-6 +cordon_V2 1.609865254278217e-5 +cordon_bleu_A 1.0773191989054437e-5 +cordovan_N 3.729715012475897e-6 +cords_N 3.729715012475897e-6 +corduroy_N 3.729715012475897e-6 +cordwood_N 3.729715012475897e-6 +core_N 2.2005318573607791e-4 +core_V2 1.609865254278217e-5 +coreference_N 3.729715012475897e-6 +coreferent_A 1.0773191989054437e-5 +coreferential_A 1.0773191989054437e-5 +coreligionist_N 3.729715012475897e-6 +coreopsis_N 3.729715012475897e-6 +corer_N 3.729715012475897e-6 +corespondent_N 3.729715012475897e-6 +corgi_N 3.729715012475897e-6 +coriaceous_A 1.0773191989054437e-5 +coriander_N 3.729715012475897e-6 +corinthian_A 2.1546383978108874e-5 +corinthian_N 3.729715012475897e-6 +cork_N 3.729715012475897e-6 +cork_PN 1.865462821325971e-5 +cork_V2 1.609865254278217e-5 +corkage_N 3.729715012475897e-6 +corkboard_N 3.729715012475897e-6 +corker_N 3.729715012475897e-6 +corkscrew_N 7.459430024951794e-6 +corkwood_N 3.729715012475897e-6 +corm_N 3.729715012475897e-6 +cormorant_N 3.729715012475897e-6 +cormous_A 1.0773191989054437e-5 +corn_N 2.387017607984574e-4 +corn_V2 1.609865254278217e-5 +corn_exchange_N 3.729715012475897e-6 +cornbread_N 3.729715012475897e-6 +corncob_N 3.729715012475897e-6 +corncrake_N 3.729715012475897e-6 +corncrib_N 3.729715012475897e-6 +cornea_N 1.118914503742769e-5 +corneal_A 1.0773191989054437e-5 +cornelian_N 3.729715012475897e-6 +corneous_A 1.0773191989054437e-5 +corner_N 8.205373027446973e-5 +corner_V 4.5357645031069986e-5 +corner_V2 9.659191525669301e-5 +corner_kick_N 3.729715012475897e-6 +cornerback_N 3.729715012475897e-6 +cornerstone_N 2.237829007485538e-5 +cornet_N 3.729715012475897e-6 +cornetfish_N 3.729715012475897e-6 +cornfield_N 3.729715012475897e-6 +cornflake_N 3.729715012475897e-6 +cornflour_N 3.729715012475897e-6 +cornflower_N 3.729715012475897e-6 +cornhusk_N 3.729715012475897e-6 +cornhusker_N 3.729715012475897e-6 +cornhusking_N 3.729715012475897e-6 +cornice_N 7.459430024951794e-6 +cornmeal_N 3.729715012475897e-6 +cornpone_N 3.729715012475897e-6 +cornsilk_N 3.729715012475897e-6 +cornsmut_N 3.729715012475897e-6 +cornstalk_N 3.729715012475897e-6 +cornstarch_N 7.459430024951794e-6 +cornu_N 3.729715012475897e-6 +cornucopia_N 7.459430024951794e-6 +cornwall_PN 1.865462821325971e-5 +corny_A 1.0773191989054437e-5 +corolla_N 3.729715012475897e-6 +corollary_N 3.729715012475897e-6 +corona_N 3.729715012475897e-6 +coronary_A 2.1546383978108874e-5 +coronary_N 3.729715012475897e-6 +coronation_N 3.729715012475897e-6 +coroner_N 3.729715012475897e-6 +coronet_N 3.729715012475897e-6 +coroneted_A 1.0773191989054437e-5 +coronilla_N 3.729715012475897e-6 +coronion_N 3.729715012475897e-6 +corozo_N 3.729715012475897e-6 +corp_PN 1.865462821325971e-5 +corporal_A 1.0773191989054437e-5 +corporal_N 3.729715012475897e-6 +corporate_A 3.5443801643989096e-3 +corporation_N 4.550252315220594e-4 +corporatism_N 3.729715012475897e-6 +corporatist_A 1.0773191989054437e-5 +corporatist_N 3.729715012475897e-6 +corporeal_A 1.0773191989054437e-5 +corps_N 7.459430024951794e-6 +corps_de_ballet_N 3.729715012475897e-6 +corps_diplomatique_N 3.729715012475897e-6 +corpse_N 7.459430024951794e-6 +corpulence_N 3.729715012475897e-6 +corpulent_A 1.0773191989054437e-5 +corpus_N 3.729715012475897e-6 +corpuscle_N 3.729715012475897e-6 +corpuscular_A 1.0773191989054437e-5 +corral_N 3.729715012475897e-6 +corral_V2 3.219730508556434e-5 +correct_A 1.8314426381392542e-4 +correct_V 9.071529006213997e-5 +correct_V2 4.0246631356955425e-4 +correct_VS 1.1552012938254491e-4 +correctable_A 1.0773191989054437e-5 +correction_N 7.459430024951794e-5 +correctional_A 1.0773191989054437e-5 +corrections_N 3.729715012475897e-6 +correctitude_N 3.729715012475897e-6 +corrective_A 3.231957596716331e-5 +corrective_N 3.729715012475897e-6 +correctness_N 3.729715012475897e-6 +correlate_N 3.729715012475897e-6 +correlate_V 2.2678822515534993e-5 +correlate_V2 1.609865254278217e-5 +correlation_N 1.118914503742769e-5 +correlational_A 1.0773191989054437e-5 +correlative_A 1.0773191989054437e-5 +correlative_N 3.729715012475897e-6 +correspond_V 2.4946704767088494e-4 +correspondence_N 1.4918860049903587e-5 +correspondent_N 4.1026865137234865e-5 +correspondingly_Adv 8.668966832532898e-6 +corridor_N 2.237829007485538e-5 +corrie_N 3.729715012475897e-6 +corrigenda_N 3.729715012475897e-6 +corrigendum_N 3.729715012475897e-6 +corrigible_A 1.0773191989054437e-5 +corroborant_A 1.0773191989054437e-5 +corroborate_V2 3.219730508556434e-5 +corroboration_N 3.729715012475897e-6 +corroborative_A 1.0773191989054437e-5 +corrode_V 2.2678822515534993e-5 +corrode_V2 1.609865254278217e-5 +corrosion_N 3.729715012475897e-6 +corrosive_A 1.0773191989054437e-5 +corrosive_N 3.729715012475897e-6 +corrugate_V 2.2678822515534993e-5 +corrugate_V2 3.219730508556434e-5 +corrugation_N 3.729715012475897e-6 +corrupt_A 7.541234392338106e-5 +corrupt_V 2.2678822515534993e-5 +corrupt_V2 1.609865254278217e-5 +corruptibility_N 3.729715012475897e-6 +corruptible_A 1.0773191989054437e-5 +corruption_N 6.340515521209024e-5 +corruptive_A 1.0773191989054437e-5 +corruptness_N 3.729715012475897e-6 +corsage_N 3.729715012475897e-6 +corsair_N 3.729715012475897e-6 +corse_N 3.729715012475897e-6 +corselet_N 3.729715012475897e-6 +corset_N 3.729715012475897e-6 +corsham_PN 1.865462821325971e-5 +corslet_N 3.729715012475897e-6 +cortege_1_N 3.729715012475897e-6 +cortege_2_N 3.729715012475897e-6 +cortege_N 3.729715012475897e-6 +cortex_N 3.729715012475897e-6 +cortical_A 1.0773191989054437e-5 +corticoafferent_A 1.0773191989054437e-5 +corticoefferent_A 1.0773191989054437e-5 +corticosteroid_N 3.729715012475897e-6 +corticosterone_N 3.729715012475897e-6 +cortina_N 3.729715012475897e-6 +cortisone_N 3.729715012475897e-6 +corundom_N 3.729715012475897e-6 +corundum_N 3.729715012475897e-6 +corunna_PN 1.865462821325971e-5 +coruscate_V 2.2678822515534993e-5 +coruscation_N 3.729715012475897e-6 +corvee_N 3.729715012475897e-6 +corvette_N 7.459430024951794e-6 +corvine_A 1.0773191989054437e-5 +corydalis_N 3.729715012475897e-6 +corymb_N 3.729715012475897e-6 +corymbose_A 1.0773191989054437e-5 +corynebacterium_N 3.729715012475897e-6 +coryphantha_N 3.729715012475897e-6 +corythosaur_N 3.729715012475897e-6 +cos_N 3.729715012475897e-6 +coscoroba_N 3.729715012475897e-6 +cosecant_N 3.729715012475897e-6 +coseismic_A 1.0773191989054437e-5 +cosenza_PN 1.865462821325971e-5 +cosh_N 3.729715012475897e-6 +cosh_V2 1.609865254278217e-5 +cosher_A 1.0773191989054437e-5 +cosignatory_A 1.0773191989054437e-5 +cosignatory_N 3.729715012475897e-6 +cosigner_N 3.729715012475897e-6 +cosine_N 3.729715012475897e-6 +cosiness_N 3.729715012475897e-6 +cosmetic_A 6.463915193432663e-5 +cosmetic_N 1.3426974044913228e-4 +cosmetically_Adv 8.668966832532898e-6 +cosmetician_N 3.729715012475897e-6 +cosmetologist_N 3.729715012475897e-6 +cosmetology_N 3.729715012475897e-6 +cosmic_A 5.3865959945272184e-5 +cosmid_N 3.729715012475897e-6 +cosmogony_N 3.729715012475897e-6 +cosmographer_N 3.729715012475897e-6 +cosmography_N 3.729715012475897e-6 +cosmolatry_N 3.729715012475897e-6 +cosmologic_A 1.0773191989054437e-5 +cosmologist_N 3.729715012475897e-6 +cosmology_N 3.729715012475897e-6 +cosmonaut_N 3.729715012475897e-6 +cosmopolitan_A 1.0773191989054437e-5 +cosmopolitan_N 3.729715012475897e-6 +cosmos_N 3.729715012475897e-6 +cosmotron_N 3.729715012475897e-6 +cosset_V2 1.609865254278217e-5 +cost_N 2.383287892972098e-3 +cost_V 1.1112623032612148e-3 +cost_V2 1.2073989407086626e-3 +cost_up_V2 1.609865254278217e-5 +costa_N 3.729715012475897e-6 +costa_rica_PN 1.865462821325971e-5 +costa_rican_A 2.2623703177014317e-4 +costa_rican_N 1.118914503742769e-5 +costal_A 1.0773191989054437e-5 +costate_A 1.0773191989054437e-5 +costermonger_N 3.729715012475897e-6 +costia_N 3.729715012475897e-6 +costiasis_N 3.729715012475897e-6 +costing_N 3.729715012475897e-6 +costive_A 1.0773191989054437e-5 +costliness_N 3.729715012475897e-6 +costly_A 5.709791754198852e-4 +costmary_N 3.729715012475897e-6 +costochondritis_N 3.729715012475897e-6 +costs_N 3.729715012475897e-6 +costum_V2 1.609865254278217e-5 +costume_N 1.4918860049903587e-5 +costumed_A 1.0773191989054437e-5 +costumier_N 3.729715012475897e-6 +costusroot_N 3.729715012475897e-6 +cosy_A 1.0773191989054437e-5 +cosy_N 3.729715012475897e-6 +cot_N 7.459430024951794e-6 +cotangent_N 3.729715012475897e-6 +cote_N 3.729715012475897e-6 +cotenant_N 3.729715012475897e-6 +coterie_N 7.459430024951794e-6 +coterminous_A 1.0773191989054437e-5 +cotilion_N 3.729715012475897e-6 +cotillion_N 3.729715012475897e-6 +cotinga_N 3.729715012475897e-6 +cotoneaster_N 3.729715012475897e-6 +cottage_N 1.118914503742769e-5 +cottager_N 3.729715012475897e-6 +cottar_N 3.729715012475897e-6 +cotter_N 3.729715012475897e-6 +cotton_N 8.578344528694562e-5 +cotton_V 2.2678822515534993e-5 +cotton_cake_N 3.729715012475897e-6 +cotton_on_V 2.2678822515534993e-5 +cotton_plant_N 3.729715012475897e-6 +cotton_wool_N 3.729715012475897e-6 +cottonseed_N 3.729715012475897e-6 +cottontail_N 3.729715012475897e-6 +cottonweed_N 3.729715012475897e-6 +cottonwick_N 3.729715012475897e-6 +cottonwood_N 3.729715012475897e-6 +cottony_A 1.0773191989054437e-5 +cotyledon_N 3.729715012475897e-6 +coucal_N 3.729715012475897e-6 +couch_N 1.118914503742769e-5 +couch_V 4.5357645031069986e-5 +couch_V2 3.219730508556434e-5 +couch_grass_N 3.729715012475897e-6 +couchant_A 1.0773191989054437e-5 +couchette_N 3.729715012475897e-6 +cougar_N 3.729715012475897e-6 +cough_N 3.729715012475897e-5 +cough_V 1.1339411257767497e-4 +cough_V2 1.609865254278217e-5 +cough_up_V2 1.609865254278217e-5 +coulisse_N 3.729715012475897e-6 +coulomb_N 3.729715012475897e-6 +coulter_N 3.729715012475897e-6 +council_N 1.5291831551151176e-4 +council_board_N 3.729715012475897e-6 +council_chamber_N 3.729715012475897e-6 +councillor_N 3.729715012475897e-6 +councillorship_N 3.729715012475897e-6 +councilman_N 3.729715012475897e-6 +councilwoman_N 3.729715012475897e-6 +counsel_N 1.6410746054893946e-4 +counsel_V2 4.8295957628346505e-5 +counsellor_N 3.729715012475897e-6 +counselor_N 3.729715012475897e-6 +counselorship_N 3.729715012475897e-6 +count_N 9.324287531189741e-5 +count_V 7.257223204971198e-4 +count_V2 4.668609237406829e-4 +count_against_V2 1.609865254278217e-5 +count_among_V2 1.609865254278217e-5 +count_down_V2 1.609865254278217e-5 +count_for_V2 1.609865254278217e-5 +count_in_V2 1.609865254278217e-5 +count_off_V2 1.609865254278217e-5 +count_on_V2 1.609865254278217e-5 +count_out_V2 1.609865254278217e-5 +count_towards_V2 1.609865254278217e-5 +count_up_V2 1.609865254278217e-5 +count_upon_V2 1.609865254278217e-5 +countable_A 1.0773191989054437e-5 +countdown_N 7.459430024951794e-6 +countenance_N 7.459430024951794e-6 +countenance_V2 1.609865254278217e-5 +counter_Adv 4.33448341626645e-5 +counter_N 4.848629516218666e-5 +counter_V 6.803646754660499e-5 +counter_V2 2.4147978814173252e-4 +counter_VS 4.6208051753017965e-4 +counter_example_N 3.729715012475897e-6 +counter_revolution_N 3.729715012475897e-6 +counter_revolutionary_A 1.0773191989054437e-5 +counter_revolutionary_N 3.729715012475897e-6 +counteract_V2 6.439461017112868e-5 +counteraction_N 3.729715012475897e-6 +counteractive_A 1.0773191989054437e-5 +counterargument_N 3.729715012475897e-6 +counterattack_N 7.459430024951794e-6 +counterattack_V 4.5357645031069986e-5 +counterattack_V2 1.609865254278217e-5 +counterattraction_N 3.729715012475897e-6 +counterbalance_N 3.729715012475897e-6 +counterbalance_V2 3.219730508556434e-5 +counterblast_N 3.729715012475897e-6 +counterblow_N 3.729715012475897e-6 +counterbombardment_N 3.729715012475897e-6 +counterbore_N 3.729715012475897e-6 +countercharge_N 3.729715012475897e-6 +countercheck_N 3.729715012475897e-6 +counterclaim_N 2.237829007485538e-5 +counterclockwise_A 1.0773191989054437e-5 +counterclockwise_Adv 8.668966832532898e-6 +countercoup_N 3.729715012475897e-6 +counterculture_N 3.729715012475897e-6 +countercurrent_N 3.729715012475897e-6 +counterdemonstration_N 3.729715012475897e-6 +counterdemonstrator_N 3.729715012475897e-6 +counterespionage_N 7.459430024951794e-6 +counterexample_N 3.729715012475897e-6 +counterfactual_A 1.0773191989054437e-5 +counterfactuality_N 3.729715012475897e-6 +counterfeit_A 1.0773191989054437e-5 +counterfeit_N 3.729715012475897e-6 +counterfeit_V2 1.609865254278217e-5 +counterfeiter_N 3.729715012475897e-6 +counterfire_N 3.729715012475897e-6 +counterfoil_N 3.729715012475897e-6 +counterglow_N 3.729715012475897e-6 +counterinsurgent_A 1.0773191989054437e-5 +counterintelligence_N 3.729715012475897e-6 +counterintuitive_A 1.0773191989054437e-5 +counterirritant_N 3.729715012475897e-6 +countermand_N 3.729715012475897e-6 +countermand_V2 1.609865254278217e-5 +countermarch_N 3.729715012475897e-6 +countermeasure_N 3.729715012475897e-6 +countermine_N 3.729715012475897e-6 +countermine_V 2.2678822515534993e-5 +countermine_V2 1.609865254278217e-5 +counteroffensive_N 3.729715012475897e-6 +counteroffer_N 3.729715012475897e-6 +counterpane_N 3.729715012475897e-6 +counterpart_N 1.193508803992287e-4 +counterperson_N 3.729715012475897e-6 +counterplea_N 3.729715012475897e-6 +counterplot_N 3.729715012475897e-6 +counterplot_V 2.2678822515534993e-5 +counterplot_V2 1.609865254278217e-5 +counterpoint_N 1.4918860049903587e-5 +counterpoise_N 3.729715012475897e-6 +counterpoise_V2 1.609865254278217e-5 +counterproductive_A 1.0773191989054437e-5 +counterproposal_N 3.729715012475897e-6 +counterpunch_N 3.729715012475897e-6 +counterreformation_N 3.729715012475897e-6 +counterrevolution_N 3.729715012475897e-6 +counterrevolutionary_A 1.0773191989054437e-5 +counterrevolutionist_N 3.729715012475897e-6 +countershot_N 3.729715012475897e-6 +countersign_N 3.729715012475897e-6 +countersign_V2 1.609865254278217e-5 +countersignature_N 3.729715012475897e-6 +countersink_N 3.729715012475897e-6 +countersink_V2 1.609865254278217e-5 +counterspy_N 3.729715012475897e-6 +counterstain_N 3.729715012475897e-6 +countersubversion_N 3.729715012475897e-6 +countersuing_V2 1.609865254278217e-5 +countersuit_N 3.729715012475897e-6 +countertenor_A 1.0773191989054437e-5 +countertenor_N 3.729715012475897e-6 +counterterror_A 1.0773191989054437e-5 +counterterrorism_N 3.729715012475897e-6 +counterterrorist_N 3.729715012475897e-6 +countertop_N 3.729715012475897e-6 +countertransference_N 3.729715012475897e-6 +countervail_V 4.5357645031069986e-5 +countervail_V2 1.609865254278217e-5 +counterweight_N 1.118914503742769e-5 +countess_N 3.729715012475897e-6 +counting_house_N 3.729715012475897e-6 +countinghouse_N 3.729715012475897e-6 +countless_A 3.231957596716331e-5 +countrified_A 1.0773191989054437e-5 +country_N 1.846208931175569e-3 +country_house_N 3.729715012475897e-6 +country_seat_N 3.729715012475897e-6 +countryman_N 1.4918860049903587e-5 +countryseat_N 3.729715012475897e-6 +countryside_N 2.237829007485538e-5 +countrywide_A 1.0773191989054437e-5 +countrywoman_N 3.729715012475897e-6 +county_N 6.713487022456614e-5 +countywide_A 1.0773191989054437e-5 +coup_N 3.356743511228307e-5 +coup_d'etat_N 3.729715012475897e-6 +coup_de_grace_N 1.7529660558636716e-4 +coupe_N 3.729715012475897e-6 +couple_N 3.282149210978789e-4 +couple_V 6.803646754660499e-5 +couple_V2 1.609865254278217e-4 +couplet_N 7.459430024951794e-6 +coupling_N 7.459430024951794e-6 +coupon_N 3.0210691601054764e-4 +courage_N 1.8648575062379485e-5 +courageous_A 2.1546383978108874e-5 +courante_N 3.729715012475897e-6 +courbaril_N 3.729715012475897e-6 +courgette_N 3.729715012475897e-6 +courier_N 2.9837720099807175e-5 +courlan_N 3.729715012475897e-6 +course_N 2.5735033586083686e-4 +course_V 4.5357645031069986e-5 +course_V2 1.609865254278217e-5 +courser_N 3.729715012475897e-6 +coursework_N 3.729715012475897e-6 +coursing_N 3.729715012475897e-6 +court_N 1.6000477403521596e-3 +court_V 6.803646754660499e-5 +court_V2 1.4488787288503951e-4 +court_card_N 3.729715012475897e-6 +court_martial_N 3.729715012475897e-6 +court_martial_V2 1.609865254278217e-5 +courteous_A 1.0773191989054437e-5 +courtesan_N 7.459430024951794e-6 +courtesy_N 1.4918860049903587e-5 +courthouse_N 3.729715012475897e-6 +courtier_N 3.729715012475897e-6 +courtliness_N 3.729715012475897e-6 +courtly_A 1.0773191989054437e-5 +courtroom_N 5.967544019961435e-5 +courtship_N 1.118914503742769e-5 +courtyard_N 1.4918860049903587e-5 +couscous_N 3.729715012475897e-6 +cousin_N 2.9837720099807175e-5 +cousinly_A 1.0773191989054437e-5 +couth_A 1.0773191989054437e-5 +couthie_A 1.0773191989054437e-5 +couture_N 3.729715012475897e-6 +couturier_N 3.729715012475897e-6 +couvade_N 3.729715012475897e-6 +couverture_N 3.729715012475897e-6 +covalence_N 3.729715012475897e-6 +covalent_A 1.0773191989054437e-5 +covariance_N 3.729715012475897e-6 +covariant_A 1.0773191989054437e-5 +covariation_N 3.729715012475897e-6 +cove_N 3.729715012475897e-6 +coven_N 3.729715012475897e-6 +covenant_N 2.237829007485538e-5 +covenant_V 2.2678822515534993e-5 +covenant_V2 1.609865254278217e-5 +coventry_PN 1.865462821325971e-5 +cover_N 3.356743511228307e-5 +cover_V2 2.946053415329137e-3 +cover_VS 1.1552012938254491e-4 +cover_for_V2 1.609865254278217e-5 +cover_up_N 3.729715012475897e-6 +cover_up_V2 1.609865254278217e-5 +coverage_N 2.0140461067369843e-4 +coverall_N 3.729715012475897e-6 +covering_A 1.0773191989054437e-5 +covering_N 2.237829007485538e-5 +coverlet_N 3.729715012475897e-6 +covert_A 1.8314426381392542e-4 +covert_N 7.459430024951794e-6 +covet_V2 6.439461017112868e-5 +covetous_A 2.1546383978108874e-5 +covetousness_N 3.729715012475897e-6 +covey_N 3.729715012475897e-6 +cow_N 2.237829007485538e-5 +cow_V2 1.609865254278217e-5 +cowage_N 3.729715012475897e-6 +coward_N 1.4918860049903587e-5 +cowardice_N 3.729715012475897e-6 +cowardly_A 2.1546383978108874e-5 +cowbarn_N 3.729715012475897e-6 +cowbell_N 3.729715012475897e-6 +cowberry_N 3.729715012475897e-6 +cowbird_N 3.729715012475897e-6 +cowboy_N 1.8648575062379485e-5 +cowcatcher_N 3.729715012475897e-6 +cowdenbeath_PN 1.865462821325971e-5 +cower_V 4.5357645031069986e-5 +cowes_PN 1.865462821325971e-5 +cowfish_N 3.729715012475897e-6 +cowgirl_N 3.729715012475897e-6 +cowhand_N 3.729715012475897e-6 +cowherb_N 3.729715012475897e-6 +cowherd_N 3.729715012475897e-6 +cowhide_N 3.729715012475897e-6 +cowhouse_N 3.729715012475897e-6 +cowl_N 3.729715012475897e-6 +cowled_A 1.0773191989054437e-5 +cowlick_N 3.729715012475897e-6 +cowling_N 3.729715012475897e-6 +cowman_N 3.729715012475897e-6 +coworker_N 3.729715012475897e-6 +cowpea_N 3.729715012475897e-6 +cowpox_N 3.729715012475897e-6 +cowrie_N 3.729715012475897e-6 +cowshed_N 3.729715012475897e-6 +cowskin_N 3.729715012475897e-6 +cowslip_N 3.729715012475897e-6 +cox_N 3.729715012475897e-6 +cox_V 2.2678822515534993e-5 +cox_V2 1.609865254278217e-5 +coxcomb_N 3.729715012475897e-6 +coxsackievirus_N 3.729715012475897e-6 +coxswain_N 3.729715012475897e-6 +coy_A 2.1546383978108874e-5 +coydog_N 3.729715012475897e-6 +coyly_Adv 8.668966832532898e-6 +coyness_N 3.729715012475897e-6 +coyol_N 3.729715012475897e-6 +coyote_N 7.459430024951794e-6 +coypu_N 3.729715012475897e-6 +cozen_V2 1.609865254278217e-5 +coziness_N 3.729715012475897e-6 +cozy_A 2.1546383978108874e-5 +cozy_up_V 2.2678822515534993e-5 +cozy_up_to_V2 1.609865254278217e-5 +cp_PN 1.865462821325971e-5 +cpl_PN 1.865462821325971e-5 +crab_N 7.459430024951794e-6 +crab_V 2.2678822515534993e-5 +crab_V2 1.609865254278217e-5 +crab_apple_N 3.729715012475897e-6 +crabbiness_N 3.729715012475897e-6 +crabgrass_N 3.729715012475897e-6 +crabwise_A 1.0773191989054437e-5 +crack_N 7.459430024951794e-5 +crack_V 1.3607293509320997e-4 +crack_V2 2.2538113559895037e-4 +crack_down_N 3.729715012475897e-6 +crack_down_V 2.2678822515534993e-5 +crack_down_on_V2 1.609865254278217e-5 +crack_on_V 2.2678822515534993e-5 +crack_up_N 3.729715012475897e-6 +crack_up_V 2.2678822515534993e-5 +crack_up_V2 1.609865254278217e-5 +crack_up_at_V2 1.609865254278217e-5 +crackbrained_A 1.0773191989054437e-5 +crackdown_N 3.729715012475897e-6 +cracker_N 1.8648575062379485e-5 +crackers_A 1.0773191989054437e-5 +cracking_N 3.729715012475897e-6 +crackle_A 1.0773191989054437e-5 +crackle_N 3.729715012475897e-6 +crackle_V 4.5357645031069986e-5 +crackle_china_N 3.729715012475897e-6 +crackleware_N 3.729715012475897e-6 +crackling_N 3.729715012475897e-6 +cracklings_N 3.729715012475897e-6 +crackpot_N 3.729715012475897e-6 +cracksman_N 3.729715012475897e-6 +cradle_N 7.459430024951794e-6 +cradle_V2 1.609865254278217e-5 +craft_N 2.6108005087331277e-5 +craft_V2 1.4488787288503951e-4 +craftiness_N 3.729715012475897e-6 +craftsman_N 7.459430024951794e-6 +craftsmanship_N 3.729715012475897e-6 +crafty_A 2.1546383978108874e-5 +crag_N 3.729715012475897e-6 +cragfast_A 1.0773191989054437e-5 +cragged_A 1.0773191989054437e-5 +craggy_A 1.0773191989054437e-5 +cragsman_N 3.729715012475897e-6 +crake_N 3.729715012475897e-6 +cram_V 6.803646754660499e-5 +cram_V2 4.8295957628346505e-5 +cram_full_A 1.0773191989054437e-5 +cram_full_Adv 8.668966832532898e-6 +cram_in_V 2.2678822515534993e-5 +cramlington_PN 1.865462821325971e-5 +crammer_N 3.729715012475897e-6 +cramp_N 7.459430024951794e-6 +cramp_V2 3.219730508556434e-5 +cramp_iron_N 3.729715012475897e-6 +crampon_N 3.729715012475897e-6 +cran_N 3.729715012475897e-6 +cranberry_N 3.729715012475897e-6 +crane_N 3.356743511228307e-5 +crane_V 2.2678822515534993e-5 +crane_V2 3.219730508556434e-5 +crane_fly_N 3.729715012475897e-6 +cranesbill_N 3.729715012475897e-6 +cranial_A 1.0773191989054437e-5 +craniology_N 3.729715012475897e-6 +craniometer_N 3.729715012475897e-6 +craniometric_A 1.0773191989054437e-5 +craniometry_N 3.729715012475897e-6 +craniotomy_N 3.729715012475897e-6 +cranium_N 3.729715012475897e-6 +crank_A 1.0773191989054437e-5 +crank_N 7.459430024951794e-6 +crank_V2 4.8295957628346505e-5 +crank_out_V 2.2678822515534993e-5 +crank_up_V2 1.609865254278217e-5 +crankcase_N 3.729715012475897e-6 +crankiness_N 3.729715012475897e-6 +crankshaft_N 3.729715012475897e-6 +cranky_A 1.0773191989054437e-5 +crannied_A 1.0773191989054437e-5 +cranny_N 3.729715012475897e-6 +crap_N 1.118914503742769e-5 +crap_V 2.2678822515534993e-5 +crap_shooting_N 3.729715012475897e-6 +crapaud_N 3.729715012475897e-6 +crape_N 3.729715012475897e-6 +crappie_N 3.729715012475897e-6 +craps_N 3.729715012475897e-6 +crapshoot_N 3.729715012475897e-6 +crapshooter_N 3.729715012475897e-6 +crapulent_A 1.0773191989054437e-5 +crapulous_A 1.0773191989054437e-5 +crash_Adv 8.668966832532898e-6 +crash_N 6.713487022456614e-4 +crash_V 3.175035152174899e-4 +crash_V2 4.8295957628346505e-5 +crash_dive_N 3.729715012475897e-6 +crash_dive_V 2.2678822515534993e-5 +crash_helmet_N 3.729715012475897e-6 +crash_land_V 2.2678822515534993e-5 +crash_land_V2 1.609865254278217e-5 +crash_landing_N 3.729715012475897e-6 +crash_out_V 2.2678822515534993e-5 +crass_A 2.1546383978108874e-5 +crassness_N 3.729715012475897e-6 +crate_N 1.118914503742769e-5 +crate_V2 1.609865254278217e-5 +crater_N 3.729715012475897e-6 +crater_V 4.5357645031069986e-5 +craton_N 3.729715012475897e-6 +cravat_N 3.729715012475897e-6 +crave_V 2.2678822515534993e-5 +crave_V2 3.219730508556434e-5 +craven_A 1.0773191989054437e-5 +craven_N 3.729715012475897e-6 +cravenness_N 3.729715012475897e-6 +craving_N 1.118914503742769e-5 +craw_N 3.729715012475897e-6 +crawfish_N 3.729715012475897e-6 +crawl_N 7.459430024951794e-6 +crawl_V 1.3607293509320997e-4 +crawler_N 3.729715012475897e-6 +crawley_PN 1.865462821325971e-5 +crawlspace_N 3.729715012475897e-6 +crayfish_N 3.729715012475897e-6 +crayon_N 3.729715012475897e-6 +crayon_V2 1.609865254278217e-5 +craze_N 2.6108005087331277e-5 +crazed_A 1.0773191989054437e-5 +craziness_N 3.729715012475897e-6 +crazy_A 1.6159787983581657e-4 +crazy_N 3.729715012475897e-6 +creak_N 3.729715012475897e-6 +creak_V 4.5357645031069986e-5 +creaky_A 1.0773191989054437e-5 +cream_N 1.118914503742769e-5 +cream_V2 3.219730508556434e-5 +cream_off_V2 1.609865254278217e-5 +creamcups_N 3.729715012475897e-6 +creamery_N 3.729715012475897e-6 +creaminess_N 3.729715012475897e-6 +creamy_A 3.231957596716331e-5 +crease_N 3.729715012475897e-6 +crease_V 2.2678822515534993e-5 +crease_V2 1.609865254278217e-5 +creaseless_A 1.0773191989054437e-5 +creaseproof_A 1.0773191989054437e-5 +create_V 1.2473352383544245e-3 +create_V2 3.7992820000965918e-3 +create_VV 3.843936190659235e-4 +creatine_N 3.729715012475897e-6 +creation_N 9.324287531189741e-5 +creationism_N 3.729715012475897e-6 +creative_A 3.44742143649742e-4 +creativeness_N 3.729715012475897e-6 +creativity_N 7.459430024951794e-6 +creator_N 3.729715012475897e-5 +creature_N 4.848629516218666e-5 +creche_N 3.729715012475897e-6 +credence_N 7.459430024951794e-6 +credentialled_A 1.0773191989054437e-5 +credenza_N 3.729715012475897e-6 +credibility_N 1.3799945546160818e-4 +credible_A 1.0773191989054437e-4 +credit_N 1.2681031042418049e-3 +credit_V2 2.7367709322729687e-4 +credit_side_N 3.729715012475897e-6 +credit_worthiness_N 3.729715012475897e-6 +credit_worthy_A 1.0773191989054437e-5 +creditable_A 1.0773191989054437e-5 +creditor_N 5.258898167591014e-4 +credits_N 3.729715012475897e-6 +creditworthiness_N 3.729715012475897e-6 +creditworthy_A 1.0773191989054437e-5 +credo_N 7.459430024951794e-6 +credulity_N 7.459430024951794e-6 +credulous_A 1.0773191989054437e-5 +credulousness_N 3.729715012475897e-6 +creed_N 7.459430024951794e-6 +creedal_A 1.0773191989054437e-5 +creek_N 3.729715012475897e-6 +creel_N 3.729715012475897e-6 +creep_N 3.729715012475897e-6 +creep_V 2.0410940263981494e-4 +creep_in_V 2.2678822515534993e-5 +creep_into_V2 1.609865254278217e-5 +creep_out_V2 1.609865254278217e-5 +creep_out_on_V2 1.609865254278217e-5 +creep_over_V2 1.609865254278217e-5 +creep_up_V 2.2678822515534993e-5 +creep_up_on_V2 1.609865254278217e-5 +creeper_N 3.729715012475897e-6 +creepiness_N 3.729715012475897e-6 +creeps_N 3.729715012475897e-6 +creepy_A 2.1546383978108874e-5 +cremains_N 3.729715012475897e-6 +cremate_V2 1.609865254278217e-5 +cremation_N 3.729715012475897e-6 +crematorium_N 7.459430024951794e-6 +crematory_N 3.729715012475897e-6 +creme_de_menthe_N 3.729715012475897e-6 +crenate_A 1.0773191989054437e-5 +crenel_N 3.729715012475897e-6 +crenelation_N 3.729715012475897e-6 +crenellated_A 1.0773191989054437e-5 +crenulate_A 1.0773191989054437e-5 +creole_A 1.0773191989054437e-5 +creole_N 3.729715012475897e-6 +creosol_N 3.729715012475897e-6 +creosote_N 3.729715012475897e-6 +crepe_1_N 3.729715012475897e-6 +crepe_2_N 3.729715012475897e-6 +crepe_N 3.729715012475897e-6 +crepitate_V 2.2678822515534993e-5 +crepitation_N 3.729715012475897e-6 +crepuscular_A 1.0773191989054437e-5 +cres_PN 1.865462821325971e-5 +crescendo_A 1.0773191989054437e-5 +crescendo_N 7.459430024951794e-6 +crescent_N 3.729715012475897e-6 +cresol_N 3.729715012475897e-6 +cress_N 3.729715012475897e-6 +crest_N 1.4918860049903587e-5 +crest_V 4.5357645031069986e-5 +crest_V2 1.609865254278217e-5 +crestfallen_A 1.0773191989054437e-5 +creswell_PN 1.865462821325971e-5 +cretaceous_A 2.1546383978108874e-5 +cretin_N 3.729715012475897e-6 +cretinism_N 3.729715012475897e-6 +cretinous_A 1.0773191989054437e-5 +cretonne_N 3.729715012475897e-6 +crevasse_N 1.118914503742769e-5 +crevice_N 7.459430024951794e-6 +crew_N 7.832401526199384e-5 +crew_V 2.2678822515534993e-5 +crew_cut_N 3.729715012475897e-6 +crew_neck_N 3.729715012475897e-6 +crewe_PN 1.865462821325971e-5 +crewelwork_N 3.729715012475897e-6 +crewman_N 3.729715012475897e-6 +crib_N 1.118914503742769e-5 +crib_V 2.2678822515534993e-5 +crib_V2 1.609865254278217e-5 +cribbage_N 3.729715012475897e-6 +cribbage_board_N 3.729715012475897e-6 +crick_N 3.729715012475897e-6 +crick_V2 1.609865254278217e-5 +cricket_N 7.459430024951794e-6 +cricketer_N 3.729715012475897e-6 +crieff_PN 1.865462821325971e-5 +crier_N 3.729715012475897e-6 +crime_N 3.505932111727343e-4 +crime_V2 1.609865254278217e-5 +criminal_A 8.187625911681372e-4 +criminal_N 7.086458523704203e-5 +criminalism_N 3.729715012475897e-6 +criminalization_N 3.729715012475897e-6 +criminalize_V2 3.219730508556434e-5 +criminative_A 1.0773191989054437e-5 +criminological_A 1.0773191989054437e-5 +criminologist_N 3.729715012475897e-6 +criminology_N 7.459430024951794e-6 +crimp_N 3.729715012475897e-6 +crimp_V2 6.439461017112868e-5 +crimson_A 2.1546383978108874e-5 +crimson_N 3.729715012475897e-6 +crimson_V 2.2678822515534993e-5 +crimson_V2 1.609865254278217e-5 +cringe_V 4.5357645031069986e-5 +cringle_N 3.729715012475897e-6 +crinkle_N 3.729715012475897e-6 +crinkle_V 2.2678822515534993e-5 +crinkle_V2 1.609865254278217e-5 +crinkleroot_N 3.729715012475897e-6 +crinkly_A 1.0773191989054437e-5 +crinoid_A 1.0773191989054437e-5 +crinoid_N 3.729715012475897e-6 +crinoline_N 3.729715012475897e-6 +criollo_N 3.729715012475897e-6 +cripple_N 1.118914503742769e-5 +cripple_V2 8.049326271391085e-5 +crippling_A 1.0773191989054437e-5 +crisis_N 2.7226919591074043e-4 +crisp_A 2.1546383978108874e-5 +crisp_N 3.729715012475897e-6 +crisp_V 2.2678822515534993e-5 +crisp_V2 1.609865254278217e-5 +crispate_A 1.0773191989054437e-5 +crispness_N 3.729715012475897e-6 +criss_cross_V2 3.219730508556434e-5 +crisscross_A 1.0773191989054437e-5 +crisscross_Adv 8.668966832532898e-6 +crisscross_N 3.729715012475897e-6 +crisscross_V 4.5357645031069986e-5 +crisscross_V2 1.609865254278217e-5 +cristobalite_N 3.729715012475897e-6 +criterial_A 1.0773191989054437e-5 +criterion_N 1.4918860049903587e-5 +crith_N 3.729715012475897e-6 +critic_N 2.8718805596064407e-4 +critical_A 5.817523674089396e-4 +criticality_N 3.729715012475897e-6 +criticism_N 2.1259375571112613e-4 +criticize_V 2.2678822515534994e-4 +criticize_V2 6.117487966257224e-4 +critique_N 1.4918860049903587e-5 +critter_N 3.729715012475897e-6 +croak_N 3.729715012475897e-6 +croak_V 2.2678822515534993e-5 +croak_V2 3.219730508556434e-5 +croaker_N 3.729715012475897e-6 +croaky_A 1.0773191989054437e-5 +crochet_N 3.729715012475897e-6 +crochet_V 2.2678822515534993e-5 +crochet_V2 1.609865254278217e-5 +crochet_hook_N 3.729715012475897e-6 +crocheting_N 3.729715012475897e-6 +crock_N 3.729715012475897e-6 +crock_V 2.2678822515534993e-5 +crock_V2 1.609865254278217e-5 +crockery_N 3.729715012475897e-6 +crocket_N 3.729715012475897e-6 +crocketed_A 1.0773191989054437e-5 +crocodile_N 3.729715012475897e-6 +crocolite_N 3.729715012475897e-6 +crocus_N 3.729715012475897e-6 +croesus_PN 1.865462821325971e-5 +croft_N 3.729715012475897e-6 +crofter_N 3.729715012475897e-6 +cromer_PN 1.865462821325971e-5 +cromlech_N 3.729715012475897e-6 +crone_N 3.729715012475897e-6 +crony_N 1.118914503742769e-5 +cronyism_N 3.729715012475897e-6 +crook_N 1.8648575062379485e-5 +crook_PN 1.865462821325971e-5 +crook_V 2.2678822515534993e-5 +crook_V2 4.8295957628346505e-5 +crook_back_A 1.0773191989054437e-5 +crook_backed_A 1.0773191989054437e-5 +crookback_A 1.0773191989054437e-5 +crookedness_N 3.729715012475897e-6 +crookneck_N 3.729715012475897e-6 +croon_V 4.5357645031069986e-5 +croon_V2 1.609865254278217e-5 +crooner_N 3.729715012475897e-6 +crooning_N 3.729715012475897e-6 +crop_N 2.4616119082340916e-4 +crop_V 1.1339411257767497e-4 +crop_V2 1.609865254278217e-5 +crop_dusting_N 3.729715012475897e-6 +crop_up_V 2.2678822515534993e-5 +cropper_N 3.729715012475897e-6 +croquet_N 3.729715012475897e-6 +croquette_N 3.729715012475897e-6 +crore_N 3.729715012475897e-6 +crosby_PN 1.865462821325971e-5 +crosier_N 3.729715012475897e-6 +cross_A 3.231957596716331e-5 +cross_N 3.729715012475897e-5 +cross_V 2.9482469270195494e-4 +cross_V2 2.2538113559895037e-4 +cross_bench_N 3.729715012475897e-6 +cross_bencher_N 3.729715012475897e-6 +cross_division_N 3.729715012475897e-6 +cross_examination_N 3.729715012475897e-6 +cross_examine_V2 1.609865254278217e-5 +cross_examiner_N 3.729715012475897e-6 +cross_fertilization_N 3.729715012475897e-6 +cross_fertilize_V2 1.609865254278217e-5 +cross_grained_A 1.0773191989054437e-5 +cross_heading_N 3.729715012475897e-6 +cross_index_N 3.729715012475897e-6 +cross_index_V2 1.609865254278217e-5 +cross_legged_Adv 8.668966832532898e-6 +cross_off_V2 1.609865254278217e-5 +cross_out_V2 1.609865254278217e-5 +cross_question_V2 1.609865254278217e-5 +cross_reference_N 3.729715012475897e-6 +cross_section_N 3.729715012475897e-6 +cross_stitch_N 3.729715012475897e-6 +cross_up_V2 1.609865254278217e-5 +crossbar_N 3.729715012475897e-6 +crossbeam_N 3.729715012475897e-6 +crossbench_N 3.729715012475897e-6 +crossbencher_N 3.729715012475897e-6 +crossbill_N 3.729715012475897e-6 +crossbones_N 3.729715012475897e-6 +crossbow_N 3.729715012475897e-6 +crossbreed_N 3.729715012475897e-6 +crossbreed_V2 1.609865254278217e-5 +crosscheck_N 3.729715012475897e-6 +crosscheck_V 2.2678822515534993e-5 +crosscheck_V2 1.609865254278217e-5 +crosscountry_A 1.0773191989054437e-5 +crosscountry_Adv 8.668966832532898e-6 +crosscurrent_N 3.729715012475897e-6 +crosscut_A 1.0773191989054437e-5 +crosscut_N 3.729715012475897e-6 +crosse_N 3.729715012475897e-6 +crosseyed_A 1.0773191989054437e-5 +crossfire_N 7.459430024951794e-6 +crosshairs_N 3.729715012475897e-6 +crosshead_N 3.729715012475897e-6 +crossheading_N 3.729715012475897e-6 +crossing_N 3.729715012475897e-6 +crossjack_N 3.729715012475897e-6 +crossness_N 3.729715012475897e-6 +crossopterygian_N 3.729715012475897e-6 +crossover_N 3.729715012475897e-6 +crosspatch_N 3.729715012475897e-6 +crosspiece_N 3.729715012475897e-6 +crossroad_N 7.459430024951794e-6 +crossroads_N 3.729715012475897e-6 +crosstalk_N 3.729715012475897e-6 +crosstown_A 1.0773191989054437e-5 +crosstown_Adv 8.668966832532898e-6 +crosswalk_N 3.729715012475897e-6 +crosswind_N 3.729715012475897e-6 +crosswise_A 1.0773191989054437e-5 +crosswise_Adv 8.668966832532898e-6 +crossword_N 3.729715012475897e-6 +crotalaria_N 3.729715012475897e-6 +crotaphion_N 3.729715012475897e-6 +crotch_N 3.729715012475897e-6 +crotchet_N 3.729715012475897e-6 +crotchety_A 2.1546383978108874e-5 +croton_N 3.729715012475897e-6 +crottle_N 3.729715012475897e-6 +crouch_N 7.459430024951794e-6 +crouch_V 4.5357645031069986e-5 +crouch_V2 3.219730508556434e-5 +croup_N 3.729715012475897e-6 +croupier_N 3.729715012475897e-6 +croupy_A 1.0773191989054437e-5 +crouton_N 3.729715012475897e-6 +crow's_nest_N 3.729715012475897e-6 +crow_N 3.729715012475897e-6 +crow_V 4.5357645031069986e-5 +crow_VS 1.1552012938254491e-4 +crowbait_N 3.729715012475897e-6 +crowbar_N 3.729715012475897e-6 +crowberry_N 3.729715012475897e-6 +crowborough_PN 1.865462821325971e-5 +crowd_N 1.1562116538675279e-4 +crowd_V 1.8143058012427994e-4 +crowd_V2 2.2538113559895037e-4 +crowding_N 3.729715012475897e-6 +crown_N 1.8648575062379485e-5 +crown_V2 3.219730508556434e-5 +crown_land_N 3.729715012475897e-6 +crownbeard_N 3.729715012475897e-6 +crowning_A 2.1546383978108874e-5 +crowthorne_PN 1.865462821325971e-5 +croydon_PN 1.865462821325971e-5 +crozier_N 3.729715012475897e-6 +crucial_A 4.309276795621775e-4 +cruciate_A 1.0773191989054437e-5 +crucible_N 1.118914503742769e-5 +crucifer_N 3.729715012475897e-6 +cruciferous_A 1.0773191989054437e-5 +crucifix_N 3.729715012475897e-6 +crucifixion_N 3.729715012475897e-6 +cruciform_A 1.0773191989054437e-5 +crucify_V2 1.609865254278217e-5 +crud_N 3.729715012475897e-6 +cruddy_A 1.0773191989054437e-5 +crude_A 4.417008715512319e-4 +crudeness_N 3.729715012475897e-6 +crudites_N 3.729715012475897e-6 +crudity_N 3.729715012475897e-6 +cruel_A 6.463915193432663e-5 +cruelty_N 3.729715012475897e-6 +cruet_N 3.729715012475897e-6 +cruet_stand_N 3.729715012475897e-6 +cruise_N 3.729715012475897e-5 +cruise_V 9.071529006213997e-5 +cruise_through_V2 1.609865254278217e-5 +cruiser_N 1.118914503742769e-5 +cruller_N 3.729715012475897e-6 +crumb_N 3.729715012475897e-6 +crumb_down_V 2.2678822515534993e-5 +crumble_V 3.175035152174899e-4 +crumble_V2 3.219730508556434e-5 +crumbliness_N 3.729715012475897e-6 +crumbly_A 1.0773191989054437e-5 +crumpet_N 3.729715012475897e-6 +crumple_V 4.5357645031069986e-5 +crumple_V2 4.8295957628346505e-5 +crunch_N 8.578344528694562e-5 +crunch_V 6.803646754660499e-5 +crunch_V2 1.609865254278217e-5 +crupper_N 3.729715012475897e-6 +crural_A 1.0773191989054437e-5 +crus_N 3.729715012475897e-6 +crusade_N 2.9837720099807175e-5 +crusade_V 2.2678822515534993e-5 +crusader_N 3.729715012475897e-6 +cruse_N 3.729715012475897e-6 +crush_N 3.356743511228307e-5 +crush_V 1.1339411257767497e-4 +crush_V2 2.092824830561682e-4 +crusher_N 3.729715012475897e-6 +crushingly_Adv 8.668966832532898e-6 +crust_N 1.118914503742769e-5 +crust_V 2.2678822515534993e-5 +crust_V2 1.609865254278217e-5 +crustacean_N 3.729715012475897e-6 +crustaceous_A 1.0773191989054437e-5 +crustal_A 1.0773191989054437e-5 +crustose_A 1.0773191989054437e-5 +crusty_A 2.1546383978108874e-5 +crutch_N 7.459430024951794e-6 +crux_N 3.729715012475897e-6 +cruzeiro_N 3.729715012475897e-6 +cry_N 2.9837720099807175e-5 +cry_V 1.1339411257767497e-4 +cry_V2 1.609865254278217e-5 +cry_off_V2 1.609865254278217e-5 +cry_out_V 2.2678822515534993e-5 +crybaby_N 3.729715012475897e-6 +cryesthesia_N 3.729715012475897e-6 +crying_N 3.729715012475897e-6 +cryoanesthesia_N 3.729715012475897e-6 +cryobiology_N 3.729715012475897e-6 +cryocautery_N 3.729715012475897e-6 +cryogen_N 3.729715012475897e-6 +cryogenic_A 1.0773191989054437e-5 +cryogenics_N 3.729715012475897e-6 +cryolite_N 3.729715012475897e-6 +cryometer_N 3.729715012475897e-6 +cryonic_A 1.0773191989054437e-5 +cryonics_N 3.729715012475897e-6 +cryophobia_N 3.729715012475897e-6 +cryoscope_N 3.729715012475897e-6 +cryostat_N 3.729715012475897e-6 +cryosurgery_N 3.729715012475897e-6 +crypt_N 3.729715012475897e-6 +cryptanalysis_N 3.729715012475897e-6 +cryptanalyst_N 3.729715012475897e-6 +cryptanalytic_A 1.0773191989054437e-5 +cryptic_A 1.0773191989054437e-5 +cryptically_Adv 8.668966832532898e-6 +cryptobiosis_N 3.729715012475897e-6 +cryptobiotic_A 1.0773191989054437e-5 +cryptococcosis_N 3.729715012475897e-6 +cryptocoryne_N 3.729715012475897e-6 +cryptogam_N 3.729715012475897e-6 +cryptogamic_A 1.0773191989054437e-5 +cryptogram_N 3.729715012475897e-6 +cryptograph_N 3.729715012475897e-6 +cryptographically_Adv 8.668966832532898e-6 +cryptography_N 3.729715012475897e-6 +cryptomonad_N 3.729715012475897e-6 +cryptorchidy_N 3.729715012475897e-6 +crystal_N 5.967544019961435e-5 +crystal_gazing_N 3.729715012475897e-6 +crystalline_A 2.1546383978108874e-5 +crystallite_N 3.729715012475897e-6 +crystallization_N 3.729715012475897e-6 +crystallize_V 2.2678822515534993e-5 +crystallize_V2 1.609865254278217e-5 +crystallographer_N 3.729715012475897e-6 +crystallography_N 3.729715012475897e-6 +ctene_N 3.729715012475897e-6 +ctenidium_N 3.729715012475897e-6 +ctenoid_A 1.0773191989054437e-5 +ctenophore_N 3.729715012475897e-6 +cub_N 1.118914503742769e-5 +cuba_PN 3.357833078386748e-4 +cuban_A 1.0773191989054437e-4 +cuban_N 3.729715012475897e-6 +cubby_N 3.729715012475897e-6 +cubbyhole_N 3.729715012475897e-6 +cube_N 7.459430024951794e-6 +cube_V2 1.609865254278217e-5 +cubeb_N 3.729715012475897e-6 +cubelike_A 1.0773191989054437e-5 +cubic_A 2.3701022375919762e-4 +cubical_A 1.0773191989054437e-5 +cubicity_N 3.729715012475897e-6 +cubicle_N 3.729715012475897e-6 +cubism_N 3.729715012475897e-6 +cubist_A 1.0773191989054437e-5 +cubist_N 3.729715012475897e-6 +cubit_N 3.729715012475897e-6 +cubital_A 1.0773191989054437e-5 +cubitiere_N 3.729715012475897e-6 +cubitus_N 3.729715012475897e-6 +cuboid_N 3.729715012475897e-6 +cuckold_N 3.729715012475897e-6 +cuckold_V2 1.609865254278217e-5 +cuckoldom_N 3.729715012475897e-6 +cuckoldry_N 3.729715012475897e-6 +cuckoo_N 2.237829007485538e-5 +cuckoo_clock_N 3.729715012475897e-6 +cuckoopint_N 3.729715012475897e-6 +cucumber_N 7.459430024951794e-6 +cucurbit_N 3.729715012475897e-6 +cucurbitaceous_A 1.0773191989054437e-5 +cud_N 3.729715012475897e-6 +cuddle_N 3.729715012475897e-6 +cuddle_V 2.2678822515534993e-5 +cuddle_V2 1.609865254278217e-5 +cuddlesome_A 1.0773191989054437e-5 +cuddly_A 1.0773191989054437e-5 +cuddy_N 3.729715012475897e-6 +cudgel_N 3.729715012475897e-6 +cudgel_V2 1.609865254278217e-5 +cudweed_N 3.729715012475897e-6 +cudworth_PN 1.865462821325971e-5 +cue_N 2.6108005087331277e-5 +cuff_N 3.729715012475897e-6 +cuff_V2 3.219730508556434e-5 +cuffley_PN 1.865462821325971e-5 +cufflink_N 3.729715012475897e-6 +cuirass_N 3.729715012475897e-6 +cuirassier_N 3.729715012475897e-6 +cuisine_N 1.4918860049903587e-5 +cuisse_N 3.729715012475897e-6 +cul_N 3.729715012475897e-6 +cul_de_sac_N 3.729715012475897e-6 +culcheth_PN 1.865462821325971e-5 +culdoscope_N 3.729715012475897e-6 +culdoscopy_N 3.729715012475897e-6 +culinary_A 1.0773191989054437e-5 +cull_N 3.729715012475897e-6 +cull_V2 1.609865254278217e-5 +cullender_N 3.729715012475897e-6 +cullis_N 3.729715012475897e-6 +culm_N 3.729715012475897e-6 +culminate_V 4.5357645031069986e-5 +culminate_V2 4.8295957628346505e-5 +culmination_N 2.6108005087331277e-5 +culotte_N 3.729715012475897e-6 +culpability_N 3.729715012475897e-6 +culpable_A 2.1546383978108874e-5 +culprit_N 3.356743511228307e-5 +cult_N 1.8648575062379485e-5 +cultism_N 3.729715012475897e-6 +cultist_N 3.729715012475897e-6 +cultivable_A 1.0773191989054437e-5 +cultivar_N 3.729715012475897e-6 +cultivate_V2 8.049326271391085e-5 +cultivation_N 7.459430024951794e-6 +cultivator_N 3.729715012475897e-6 +cultural_A 2.046906477920343e-4 +culturati_N 3.729715012475897e-6 +culture_N 1.7902632059884304e-4 +cultured_A 1.0773191989054437e-5 +culverin_N 3.729715012475897e-6 +culvert_N 3.729715012475897e-6 +cum_Prep 9.978546125829467e-6 +cumber_V2 1.609865254278217e-5 +cumberland_PN 1.865462821325971e-5 +cumbernauld_PN 1.865462821325971e-5 +cumbersome_A 5.3865959945272184e-5 +cumbria_PN 1.865462821325971e-5 +cumbrous_A 1.0773191989054437e-5 +cumin_N 3.729715012475897e-6 +cummerbund_N 3.729715012475897e-6 +cummings_N 3.729715012475897e-6 +cumnock_PN 1.865462821325971e-5 +cumulative_A 2.3701022375919762e-4 +cumuliform_A 1.0773191989054437e-5 +cumulonimbus_N 3.729715012475897e-6 +cumulous_A 1.0773191989054437e-5 +cumulus_N 3.729715012475897e-6 +cuneate_A 1.0773191989054437e-5 +cuneiform_A 1.0773191989054437e-5 +cuneiform_N 3.729715012475897e-6 +cunner_N 3.729715012475897e-6 +cunnilingus_N 3.729715012475897e-6 +cunning_A 2.1546383978108874e-5 +cunning_N 3.729715012475897e-6 +cunt_N 3.729715012475897e-6 +cup_N 4.848629516218666e-5 +cup_V2 1.609865254278217e-5 +cup_bearer_N 3.729715012475897e-6 +cup_final_N 3.729715012475897e-6 +cup_tie_N 3.729715012475897e-6 +cupar_PN 1.865462821325971e-5 +cupbearer_N 3.729715012475897e-6 +cupboard_N 7.459430024951794e-6 +cupboard_love_N 3.729715012475897e-6 +cupcake_N 3.729715012475897e-6 +cupflower_N 3.729715012475897e-6 +cupful_N 3.729715012475897e-6 +cupid_N 3.729715012475897e-6 +cupid_PN 1.865462821325971e-5 +cupidity_N 3.729715012475897e-6 +cuplike_A 1.0773191989054437e-5 +cupola_N 3.729715012475897e-6 +cuppa_N 3.729715012475897e-6 +cupping_N 3.729715012475897e-6 +cupric_A 1.0773191989054437e-5 +cuprite_N 3.729715012475897e-6 +cupro_nickel_N 3.729715012475897e-6 +cupronickel_N 3.729715012475897e-6 +cupular_A 1.0773191989054437e-5 +cupule_N 3.729715012475897e-6 +cur_N 3.729715012475897e-6 +curability_N 3.729715012475897e-6 +curable_A 1.0773191989054437e-5 +curacao_N 3.729715012475897e-6 +curacoa_N 3.729715012475897e-6 +curacy_N 3.729715012475897e-6 +curandera_N 3.729715012475897e-6 +curandero_N 3.729715012475897e-6 +curassow_N 3.729715012475897e-6 +curate_N 3.729715012475897e-6 +curative_A 1.0773191989054437e-5 +curator_N 2.237829007485538e-5 +curatorial_A 1.0773191989054437e-5 +curatorship_N 3.729715012475897e-6 +curb_N 4.848629516218666e-5 +curb_V2 6.439461017112868e-4 +curbside_N 3.729715012475897e-6 +curbstone_N 3.729715012475897e-6 +curd_N 3.729715012475897e-6 +curdle_V 2.2678822515534993e-5 +curdle_V2 1.609865254278217e-5 +curdling_N 3.729715012475897e-6 +cure_1_N 1.8648575062379485e-5 +cure_2_N 3.729715012475897e-6 +cure_V 4.5357645031069986e-5 +cure_V2 1.609865254278217e-4 +cure_all_N 3.729715012475897e-6 +curettage_N 3.729715012475897e-6 +curette_N 3.729715012475897e-6 +curfew_N 3.729715012475897e-6 +curie_N 3.729715012475897e-6 +curio_N 3.729715012475897e-6 +curiosa_N 3.729715012475897e-6 +curiosity_N 7.459430024951794e-6 +curious_A 4.309276795621775e-5 +curiousness_N 3.729715012475897e-6 +curitiba_PN 1.865462821325971e-5 +curium_N 3.729715012475897e-6 +curl_N 3.729715012475897e-6 +curl_V 9.071529006213997e-5 +curl_V2 1.609865254278217e-5 +curl_up_V 2.2678822515534993e-5 +curler_N 3.729715012475897e-6 +curlew_N 3.729715012475897e-6 +curliness_N 3.729715012475897e-6 +curling_N 3.729715012475897e-6 +curly_A 2.1546383978108874e-5 +curmudgeon_N 3.729715012475897e-6 +currant_N 3.729715012475897e-6 +currawong_N 3.729715012475897e-6 +currency_N 6.676189872331855e-4 +current_A 6.970255216918221e-3 +current_N 4.848629516218666e-5 +currentness_N 3.729715012475897e-6 +curricular_A 1.0773191989054437e-5 +curriculum_N 3.729715012475897e-6 +curriculum_vitae_N 2.237829007485538e-5 +currie_PN 1.865462821325971e-5 +currier_N 3.729715012475897e-6 +currish_A 1.0773191989054437e-5 +curry_N 3.729715012475897e-6 +curry_V2 6.439461017112868e-5 +curry_powder_N 3.729715012475897e-6 +currycomb_N 3.729715012475897e-6 +curse_N 1.118914503742769e-5 +curse_V 6.803646754660499e-5 +curse_V2 1.609865254278217e-5 +cursive_A 1.0773191989054437e-5 +cursor_N 3.729715012475897e-6 +cursorial_A 1.0773191989054437e-5 +cursory_A 1.0773191989054437e-5 +curst_A 1.0773191989054437e-5 +curt_A 3.231957596716331e-5 +curtail_V2 3.219730508556434e-4 +curtailment_N 3.729715012475897e-6 +curtain_N 1.118914503742769e-5 +curtain_V2 1.609865254278217e-5 +curtain_call_N 3.729715012475897e-6 +curtain_lecture_N 3.729715012475897e-6 +curtain_raiser_N 3.729715012475897e-6 +curtainless_A 1.0773191989054437e-5 +curtal_A 1.0773191989054437e-5 +curtness_N 7.459430024951794e-6 +curtsey_N 3.729715012475897e-6 +curtsey_V 2.2678822515534993e-5 +curtsy_N 3.729715012475897e-6 +curtsy_V 2.2678822515534993e-5 +curvaceously_Adv 8.668966832532898e-6 +curvaceousness_N 3.729715012475897e-6 +curvature_N 3.729715012475897e-6 +curve_N 2.9837720099807175e-5 +curve_V 2.2678822515534993e-5 +curve_V2 1.609865254278217e-5 +curvet_N 3.729715012475897e-6 +curvilineal_A 1.0773191989054437e-5 +curvy_A 1.0773191989054437e-5 +cuscus_N 3.729715012475897e-6 +cushaw_N 3.729715012475897e-6 +cushion_N 2.9837720099807175e-5 +cushion_V2 1.2878922034225736e-4 +cushy_A 1.0773191989054437e-5 +cusk_N 3.729715012475897e-6 +cusp_N 3.729715012475897e-6 +cuspate_A 1.0773191989054437e-5 +cuspidation_N 3.729715012475897e-6 +cuspidor_N 3.729715012475897e-6 +cuss_N 3.729715012475897e-6 +cussed_A 1.0773191989054437e-5 +cussedness_N 3.729715012475897e-6 +custard_N 3.729715012475897e-6 +custodial_A 2.1546383978108874e-5 +custodian_N 3.729715012475897e-6 +custodianship_N 3.729715012475897e-6 +custody_N 2.6108005087331277e-5 +custom_N 5.594572518713845e-5 +custom_built_A 1.0773191989054437e-5 +custom_made_A 2.1546383978108874e-5 +customary_A 1.0773191989054437e-4 +customerFem_N 3.729715012475897e-6 +customerMasc_N 1.2681031042418049e-3 +customhouse_N 3.729715012475897e-6 +customize_V2 8.049326271391085e-5 +customs_N 3.729715012475897e-6 +cut_N 6.340515521209024e-4 +cut_V 2.8802104594729443e-3 +cut_V2 2.8333628475296618e-3 +cut_V2A 1.5e-2 +cut_across_V2 1.609865254278217e-5 +cut_back_V2 1.609865254278217e-5 +cut_back_on_V2 1.609865254278217e-5 +cut_down_V 2.2678822515534993e-5 +cut_down_V2 1.609865254278217e-5 +cut_down_on_V2 1.609865254278217e-5 +cut_in_V 2.2678822515534993e-5 +cut_in_V2 1.609865254278217e-5 +cut_in_on_V2 1.609865254278217e-5 +cut_it_out_V2 1.609865254278217e-5 +cut_off_V 2.2678822515534993e-5 +cut_off_V2 1.609865254278217e-5 +cut_out_N 3.729715012475897e-6 +cut_out_V 2.2678822515534993e-5 +cut_out_V2 1.609865254278217e-5 +cut_out_on_V2 1.609865254278217e-5 +cut_price_A 1.0773191989054437e-5 +cut_rate_A 2.1546383978108874e-5 +cut_throat_A 1.0773191989054437e-5 +cut_throat_N 3.729715012475897e-6 +cut_up_V 2.2678822515534993e-5 +cut_up_V2 1.609865254278217e-5 +cutaneous_A 1.0773191989054437e-5 +cutaway_N 3.729715012475897e-6 +cutback_N 5.967544019961435e-5 +cutch_N 3.729715012475897e-6 +cute_A 4.309276795621775e-5 +cuteness_N 3.729715012475897e-6 +cuticle_N 3.729715012475897e-6 +cuticula_N 3.729715012475897e-6 +cuticular_A 1.0773191989054437e-5 +cutin_N 3.729715012475897e-6 +cutlas_N 3.729715012475897e-6 +cutlass_N 3.729715012475897e-6 +cutlassfish_N 3.729715012475897e-6 +cutler_N 3.729715012475897e-6 +cutlery_N 3.729715012475897e-6 +cutlet_N 3.729715012475897e-6 +cutoff_N 3.729715012475897e-6 +cutout_N 7.459430024951794e-6 +cutpurse_N 3.729715012475897e-6 +cutter_N 7.459430024951794e-6 +cutthroat_A 1.0773191989054437e-5 +cutthroat_N 3.729715012475897e-6 +cutting_N 7.086458523704203e-5 +cutting_room_N 3.729715012475897e-6 +cuttingly_Adv 8.668966832532898e-6 +cuttlefish_N 3.729715012475897e-6 +cutwork_N 3.729715012475897e-6 +cutworm_N 3.729715012475897e-6 +cwmbran_PN 1.865462821325971e-5 +cwt_N 3.729715012475897e-6 +cyan_N 3.729715012475897e-6 +cyanamide_N 3.729715012475897e-6 +cyanide_N 3.729715012475897e-6 +cyanobacteria_N 3.729715012475897e-6 +cyanobacterial_A 1.0773191989054437e-5 +cyanogen_N 3.729715012475897e-6 +cyanogenetic_A 1.0773191989054437e-5 +cyanohydrin_N 3.729715012475897e-6 +cyanosis_N 3.729715012475897e-6 +cyberart_N 3.729715012475897e-6 +cybercafe_N 3.729715012475897e-6 +cybercrime_N 3.729715012475897e-6 +cyberculture_N 3.729715012475897e-6 +cybernaut_N 3.729715012475897e-6 +cybernetic_A 1.0773191989054437e-5 +cybernetics_N 3.729715012475897e-6 +cyberphobia_N 3.729715012475897e-6 +cyberpunk_N 3.729715012475897e-6 +cybersex_N 3.729715012475897e-6 +cyborg_N 3.729715012475897e-6 +cycad_N 3.729715012475897e-6 +cyclamen_N 3.729715012475897e-6 +cycle_N 1.9021546563627073e-4 +cycle_V 1.1339411257767497e-4 +cyclic_A 1.0773191989054437e-5 +cyclical_A 2.1546383978108874e-4 +cyclicity_N 3.729715012475897e-6 +cycling_N 3.729715012475897e-6 +cyclist_N 1.4918860049903587e-5 +cyclobenzaprine_N 3.729715012475897e-6 +cyclohexanol_N 3.729715012475897e-6 +cycloid_A 1.0773191989054437e-5 +cycloid_N 3.729715012475897e-6 +cyclone_N 3.729715012475897e-6 +cyclonic_A 1.0773191989054437e-5 +cyclooxygenase_N 3.729715012475897e-6 +cyclopaedia_N 3.729715012475897e-6 +cyclopean_A 1.0773191989054437e-5 +cyclopia_N 3.729715012475897e-6 +cyclopropane_N 3.729715012475897e-6 +cyclops_N 3.729715012475897e-6 +cycloserine_N 3.729715012475897e-6 +cyclosis_N 3.729715012475897e-6 +cyclostome_N 3.729715012475897e-6 +cyclostyle_N 3.729715012475897e-6 +cyclostyle_V2 1.609865254278217e-5 +cyclothymia_N 3.729715012475897e-6 +cyclothymic_A 1.0773191989054437e-5 +cyclotron_N 3.729715012475897e-6 +cyder_N 3.729715012475897e-6 +cygnet_N 3.729715012475897e-6 +cylinder_N 7.459430024951794e-6 +cylindrical_A 1.0773191989054437e-5 +cylindricality_N 3.729715012475897e-6 +cyma_N 3.729715012475897e-6 +cymbal_N 3.729715012475897e-6 +cymbalist_N 3.729715012475897e-6 +cymbid_N 3.729715012475897e-6 +cyme_N 3.729715012475897e-6 +cymene_N 3.729715012475897e-6 +cymling_N 3.729715012475897e-6 +cymose_A 1.0773191989054437e-5 +cymule_N 3.729715012475897e-6 +cynancum_N 3.729715012475897e-6 +cynic_N 3.729715012475897e-6 +cynical_A 6.463915193432663e-5 +cynicism_N 1.4918860049903587e-5 +cynodont_N 3.729715012475897e-6 +cynophobia_N 3.729715012475897e-6 +cynosure_N 3.729715012475897e-6 +cynthia_PN 1.865462821325971e-5 +cypher_N 3.729715012475897e-6 +cypher_V 2.2678822515534993e-5 +cypher_V2 1.609865254278217e-5 +cypress_N 3.729715012475897e-6 +cyprian_A 1.0773191989054437e-5 +cyprinid_A 1.0773191989054437e-5 +cyprinid_N 3.729715012475897e-6 +cyprinodont_N 3.729715012475897e-6 +cypriot_A 1.0773191989054437e-5 +cypriot_N 3.729715012475897e-6 +cypripedia_N 3.729715012475897e-6 +cyproheptadine_N 3.729715012475897e-6 +cyprus_PN 1.865462821325971e-5 +cyril_PN 1.865462821325971e-5 +cyrilla_N 3.729715012475897e-6 +cyrillic_A 1.0773191989054437e-5 +cyst_N 3.729715012475897e-6 +cysteine_N 3.729715012475897e-6 +cystic_A 1.0773191989054437e-5 +cystine_N 3.729715012475897e-6 +cystitis_N 3.729715012475897e-6 +cystocele_N 3.729715012475897e-6 +cystoplegia_N 3.729715012475897e-6 +cytoarchitectural_A 1.0773191989054437e-5 +cytoarchitecture_N 3.729715012475897e-6 +cytochrome_N 3.729715012475897e-6 +cytogenesis_N 3.729715012475897e-6 +cytogenetic_A 1.0773191989054437e-5 +cytogeneticist_N 3.729715012475897e-6 +cytogenetics_N 3.729715012475897e-6 +cytokine_N 3.729715012475897e-6 +cytokinesis_N 3.729715012475897e-6 +cytokinetic_A 1.0773191989054437e-5 +cytological_A 1.0773191989054437e-5 +cytologist_N 3.729715012475897e-6 +cytology_N 3.729715012475897e-6 +cytolysin_N 3.729715012475897e-6 +cytolysis_N 3.729715012475897e-6 +cytolytic_A 1.0773191989054437e-5 +cytomegalic_A 1.0773191989054437e-5 +cytomegalovirus_N 3.729715012475897e-6 +cytopathogenic_A 1.0773191989054437e-5 +cytopenia_N 3.729715012475897e-6 +cytophotometer_N 3.729715012475897e-6 +cytophotometric_A 1.0773191989054437e-5 +cytophotometrically_Adv 8.668966832532898e-6 +cytophotometry_N 3.729715012475897e-6 +cytoplasm_N 3.729715012475897e-6 +cytoplasmic_A 1.0773191989054437e-5 +cytoplasmically_Adv 8.668966832532898e-6 +cytoplast_N 3.729715012475897e-6 +cytoplastic_A 1.0773191989054437e-5 +cytosine_N 3.729715012475897e-6 +cytoskeleton_N 3.729715012475897e-6 +cytosol_N 3.729715012475897e-6 +cytostome_N 3.729715012475897e-6 +cytotoxic_A 1.0773191989054437e-5 +cytotoxicity_N 3.729715012475897e-6 +cytotoxin_N 3.729715012475897e-6 +czar_N 2.6108005087331277e-5 +czarina_N 3.729715012475897e-6 +czarist_A 1.0773191989054437e-5 +czech_A 5.3865959945272184e-5 +czech_N 7.459430024951794e-6 +czechoslovak_A 2.1546383978108874e-5 +czechoslovak_N 7.459430024951794e-6 +czechoslovakia_PN 1.865462821325971e-5 +czechoslovakian_A 1.0773191989054437e-5 +czechoslovakian_N 3.729715012475897e-6 +d_day_PN 1.865462821325971e-5 +d_o_a__A 1.0773191989054437e-5 +dab_N 3.729715012475897e-6 +dab_V 2.2678822515534993e-5 +dab_V2 3.219730508556434e-5 +dabble_V 9.071529006213997e-5 +dabble_V2 1.609865254278217e-5 +dabbler_N 3.729715012475897e-6 +dabchick_N 3.729715012475897e-6 +dacca_PN 1.865462821325971e-5 +dace_N 3.729715012475897e-6 +dacha_N 3.729715012475897e-6 +dachshund_N 3.729715012475897e-6 +dacite_N 3.729715012475897e-6 +dacitic_A 1.0773191989054437e-5 +dacoit_N 3.729715012475897e-6 +dacoity_N 3.729715012475897e-6 +dacryocystitis_N 3.729715012475897e-6 +dacryon_N 3.729715012475897e-6 +dactyl_N 3.729715012475897e-6 +dactylic_A 1.0773191989054437e-5 +dactylomegaly_N 3.729715012475897e-6 +dad_N 7.459430024951794e-6 +dada_N 3.729715012475897e-6 +daddy_N 3.729715012475897e-6 +daddy_longlegs_N 3.729715012475897e-6 +dado_N 3.729715012475897e-6 +daedal_A 1.0773191989054437e-5 +daemon_N 3.729715012475897e-6 +daffodil_N 3.729715012475897e-6 +daft_A 1.0773191989054437e-5 +dagame_N 3.729715012475897e-6 +dagga_N 3.729715012475897e-6 +dagger_N 3.729715012475897e-6 +daggerboard_N 3.729715012475897e-6 +dago_N 3.729715012475897e-6 +daguerreotype_N 3.729715012475897e-6 +dahlia_N 3.729715012475897e-6 +dail_eireann_N 3.729715012475897e-6 +daily_A 1.0880923908944981e-3 +daily_Adv 1.9938623714825667e-4 +daily_N 4.1026865137234865e-5 +daintiness_N 3.729715012475897e-6 +dainty_A 1.0773191989054437e-5 +dainty_N 3.729715012475897e-6 +daiquiri_N 3.729715012475897e-6 +dairy_N 2.9837720099807175e-5 +dairy_farm_N 3.729715012475897e-6 +dairy_farming_N 3.729715012475897e-6 +dairying_N 3.729715012475897e-6 +dairymaid_N 3.729715012475897e-6 +dairyman_N 3.729715012475897e-6 +dais_N 3.729715012475897e-6 +daisy_N 3.729715012475897e-6 +daisy_PN 1.865462821325971e-5 +daisybush_N 3.729715012475897e-6 +daisylike_A 1.0773191989054437e-5 +dakar_PN 1.865462821325971e-5 +dakota_PN 1.865462821325971e-5 +dalasi_N 3.729715012475897e-6 +dale_N 3.729715012475897e-6 +dalesman_N 3.729715012475897e-6 +daleth_N 3.729715012475897e-6 +dalkeith_PN 1.865462821325971e-5 +dallas_PN 8.021490131701675e-4 +dalliance_N 7.459430024951794e-6 +dallier_N 3.729715012475897e-6 +dallisgrass_N 3.729715012475897e-6 +dally_V 2.2678822515534993e-5 +dalmatian_N 3.729715012475897e-6 +dalry_PN 1.865462821325971e-5 +dalton_PN 1.865462821325971e-5 +dam_N 4.1026865137234865e-5 +dam_V2 1.609865254278217e-5 +damage_N 1.0629687785556306e-3 +damage_V2 1.143004330537534e-3 +damages_N 3.729715012475897e-6 +damaging_A 1.0773191989054437e-5 +damascene_A 1.0773191989054437e-5 +damascene_N 3.729715012475897e-6 +damascene_V2 1.609865254278217e-5 +damascus_PN 1.865462821325971e-5 +damask_A 1.0773191989054437e-5 +damask_N 3.729715012475897e-6 +dame_N 3.729715012475897e-6 +dammar_N 3.729715012475897e-6 +damn_A 7.541234392338106e-5 +damn_Interj 1.5267175572519083e-2 +damn_N 7.459430024951794e-6 +damn_V2 1.609865254278217e-5 +damnable_A 1.0773191989054437e-5 +damnation_N 3.729715012475897e-6 +damnatory_A 1.0773191989054437e-5 +damned_Adv 1.7337933665065797e-5 +damned_N 3.729715012475897e-6 +damocles_PN 1.865462821325971e-5 +damourite_N 3.729715012475897e-6 +damp_A 3.231957596716331e-5 +damp_N 3.729715012475897e-6 +damp_V 6.803646754660499e-5 +damp_V2 2.092824830561682e-4 +damp_down_V2 1.609865254278217e-5 +damp_off_V 2.2678822515534993e-5 +dampen_V 4.5357645031069986e-5 +dampen_V2 4.8295957628346505e-5 +dampener_N 3.729715012475897e-6 +damper_N 1.8648575062379485e-5 +dampish_A 1.0773191989054437e-5 +dampness_N 3.729715012475897e-6 +damsel_N 3.729715012475897e-6 +damselfish_N 3.729715012475897e-6 +damselfly_N 3.729715012475897e-6 +damson_N 3.729715012475897e-6 +dan_PN 1.865462821325971e-5 +danaid_N 3.729715012475897e-6 +dance_N 7.459430024951794e-6 +dance_V 1.3607293509320997e-4 +dance_V2 1.609865254278217e-5 +dance_band_N 3.729715012475897e-6 +dance_hall_N 3.729715012475897e-6 +dance_orchestra_N 3.729715012475897e-6 +danceable_A 1.0773191989054437e-5 +dancer_N 1.4918860049903587e-5 +dancing_N 1.4918860049903587e-5 +dandelion_N 3.729715012475897e-6 +dander_N 3.729715012475897e-6 +dandified_A 1.0773191989054437e-5 +dandle_V2 1.609865254278217e-5 +dandruff_N 3.729715012475897e-6 +dandy_A 2.1546383978108874e-5 +dandy_N 3.729715012475897e-6 +dane_N 3.729715012475897e-6 +danger_N 1.193508803992287e-4 +dangerous_A 3.44742143649742e-4 +dangerousness_N 3.729715012475897e-6 +dangle_V 6.803646754660499e-5 +dangle_V2 4.8295957628346505e-5 +dangleberry_N 3.729715012475897e-6 +daniel_N 3.729715012475897e-6 +daniel_PN 1.865462821325971e-5 +danish_A 2.1546383978108874e-5 +danish_N 3.729715012475897e-6 +dank_A 1.0773191989054437e-5 +dankness_N 3.729715012475897e-6 +danny_PN 1.865462821325971e-5 +danse_macabre_N 3.729715012475897e-6 +danseur_N 3.729715012475897e-6 +daphne_N 3.729715012475897e-6 +daphne_PN 1.865462821325971e-5 +daphnia_N 3.729715012475897e-6 +dapper_A 2.1546383978108874e-5 +dapple_V2 1.609865254278217e-5 +dapple_grey_A 1.0773191989054437e-5 +dapple_grey_N 3.729715012475897e-6 +dapsone_N 3.729715012475897e-6 +daraf_N 3.729715012475897e-6 +darby_PN 1.865462821325971e-5 +dare_N 3.729715012475897e-6 +dare_V 4.5357645031069986e-5 +dare_V2 1.609865254278217e-5 +dare_VV 3.843936190659235e-4 +daredevil_A 1.0773191989054437e-5 +daredevil_N 3.729715012475897e-6 +daredevilry_N 3.729715012475897e-6 +darenth_PN 1.865462821325971e-5 +darfield_PN 1.865462821325971e-5 +daring_N 3.729715012475897e-6 +daringly_Adv 8.668966832532898e-6 +dark_A 1.72371071824871e-4 +dark_N 1.8648575062379485e-5 +darken_V 2.2678822515534993e-5 +darken_V2 1.609865254278217e-5 +darkey_N 3.729715012475897e-6 +darkie_N 3.729715012475897e-6 +darkish_A 1.0773191989054437e-5 +darkling_A 1.0773191989054437e-5 +darkness_N 7.459430024951794e-6 +darkroom_N 7.459430024951794e-6 +darky_N 3.729715012475897e-6 +darling_N 1.8648575062379485e-5 +darlington_PN 1.865462821325971e-5 +darmstadt_PN 1.865462821325971e-5 +darmstadtium_N 3.729715012475897e-6 +darn_N 3.729715012475897e-6 +darn_V 2.2678822515534993e-5 +darn_V2 3.219730508556434e-5 +darnel_N 3.729715012475897e-6 +darner_N 3.729715012475897e-6 +darning_N 3.729715012475897e-6 +darning_needle_N 3.729715012475897e-6 +dart_N 7.459430024951794e-6 +dart_V 2.2678822515534993e-5 +dart_V2 1.609865254278217e-5 +dartboard_N 3.729715012475897e-6 +darter_N 3.729715012475897e-6 +dartford_PN 1.865462821325971e-5 +dartmouth_PN 1.865462821325971e-5 +darts_N 3.729715012475897e-6 +darwen_PN 1.865462821325971e-5 +dash_N 1.8648575062379485e-5 +dash_V 6.803646754660499e-5 +dash_V2 1.1269056779947518e-4 +dash_down_V2 1.609865254278217e-5 +dash_off_V 2.2678822515534993e-5 +dash_off_V2 1.609865254278217e-5 +dashboard_N 1.118914503742769e-5 +dashiki_N 3.729715012475897e-6 +dashingly_Adv 8.668966832532898e-6 +dastard_N 3.729715012475897e-6 +dastardliness_N 3.729715012475897e-6 +dastardly_A 1.0773191989054437e-5 +dasymeter_N 3.729715012475897e-6 +dasyure_N 3.729715012475897e-6 +data_N 1.3426974044913228e-4 +database_N 3.729715012475897e-6 +datable_A 1.0773191989054437e-5 +date_1_N 3.0210691601054764e-4 +date_7_N 3.729715012475897e-6 +date_V 5.669705628883749e-4 +date_V2 9.659191525669301e-5 +dateless_A 1.0773191989054437e-5 +dateline_N 3.729715012475897e-6 +dating_N 3.729715012475897e-6 +dative_A 1.0773191989054437e-5 +dative_N 3.729715012475897e-6 +datum_N 5.333492467840533e-4 +daub_N 3.729715012475897e-6 +daub_V 2.2678822515534993e-5 +daub_V2 1.609865254278217e-5 +dauber_N 3.729715012475897e-6 +daughter_N 9.697259032437332e-5 +daughter_in_law_N 3.729715012475897e-6 +daughterly_A 1.0773191989054437e-5 +daunt_V2 4.8295957628346505e-5 +daunting_A 1.0773191989054437e-5 +dauntless_A 1.0773191989054437e-5 +dauntlessness_N 3.729715012475897e-6 +dauphin_N 3.729715012475897e-6 +davallia_N 3.729715012475897e-6 +dave_PN 1.865462821325971e-5 +davenport_N 3.729715012475897e-6 +daventry_PN 1.865462821325971e-5 +davey_PN 1.865462821325971e-5 +david_PN 1.865462821325971e-5 +davit_N 3.729715012475897e-6 +daw_N 3.729715012475897e-6 +dawah_N 3.729715012475897e-6 +dawdle_V 4.5357645031069986e-5 +dawdle_V2 1.609865254278217e-5 +dawdler_N 3.729715012475897e-6 +dawley_PN 1.865462821325971e-5 +dawlish_PN 1.865462821325971e-5 +dawn_N 2.237829007485538e-5 +dawn_PN 1.865462821325971e-5 +dawn_V 1.1339411257767497e-4 +dawn_on_V2 1.609865254278217e-5 +day_N 3.923660193124644e-3 +day_boarder_N 3.729715012475897e-6 +day_labourer_N 3.729715012475897e-6 +day_return_N 3.729715012475897e-6 +day_school_N 3.729715012475897e-6 +daybed_N 3.729715012475897e-6 +daybook_N 3.729715012475897e-6 +dayboy_N 3.729715012475897e-6 +daybreak_N 7.459430024951794e-6 +daycare_N 3.729715012475897e-6 +daydream_N 3.729715012475897e-6 +daydream_V 2.2678822515534993e-5 +daydreamer_N 3.729715012475897e-6 +daygirl_N 3.729715012475897e-6 +daylight_N 1.118914503742769e-5 +daylight_saving_A 1.0773191989054437e-5 +daylight_saving_N 3.729715012475897e-6 +daylong_A 1.0773191989054437e-5 +daylong_Adv 8.668966832532898e-6 +days_N 3.729715012475897e-6 +dayspring_N 3.729715012475897e-6 +daytime_N 3.729715012475897e-6 +dayton_PN 1.865462821325971e-5 +daze_N 7.459430024951794e-6 +daze_V2 1.609865254278217e-5 +dazedly_Adv 8.668966832532898e-6 +dazzle_N 3.729715012475897e-6 +dazzle_V2 3.219730508556434e-5 +dazzling_A 1.0773191989054437e-5 +ddt_N 3.729715012475897e-6 +de_emphasize_V2 4.8295957628346505e-5 +de_escalate_V2 1.609865254278217e-5 +de_escalation_N 3.729715012475897e-6 +de_facto_A 3.231957596716331e-5 +de_facto_Adv 8.668966832532898e-6 +de_ice_V2 1.609865254278217e-5 +de_jure_A 1.0773191989054437e-5 +de_jure_Adv 8.668966832532898e-6 +de_luxe_A 1.0773191989054437e-5 +de_rigeur_A 1.0773191989054437e-5 +de_trop_A 1.0773191989054437e-5 +deacon_N 3.729715012475897e-6 +deaconess_N 3.729715012475897e-6 +deactivate_V2 3.219730508556434e-5 +deactivation_N 3.729715012475897e-6 +dead_A 3.555153356387964e-4 +dead_Adv 2.6006900497598697e-5 +dead_N 3.729715012475897e-6 +deaden_V2 1.609865254278217e-5 +deadeye_N 3.729715012475897e-6 +deadhead_N 3.729715012475897e-6 +deadlight_N 3.729715012475897e-6 +deadline_N 1.6783717556141534e-4 +deadliness_N 3.729715012475897e-6 +deadlock_N 7.459430024951794e-6 +deadlock_V 6.803646754660499e-5 +deadlocked_A 2.1546383978108874e-5 +deadly_A 8.61855359124355e-5 +deadness_N 3.729715012475897e-6 +deadpan_A 1.0773191989054437e-5 +deadpan_Adv 8.668966832532898e-6 +deadwood_N 3.729715012475897e-6 +deaf_A 2.1546383978108874e-5 +deaf_N 3.729715012475897e-6 +deaf_aid_N 3.729715012475897e-6 +deaf_mute_N 3.729715012475897e-6 +deafen_V2 3.219730508556434e-5 +deafening_A 1.0773191989054437e-5 +deafness_N 3.729715012475897e-6 +deal_Adv 8.668966832532898e-6 +deal_N 1.2009682340172387e-3 +deal_PN 1.865462821325971e-5 +deal_V 1.7689481562117295e-3 +deal_V2 9.659191525669301e-5 +dealer_N 8.466453078320286e-4 +dealfish_N 3.729715012475897e-6 +dealignment_N 3.729715012475897e-6 +dealing_N 1.3426974044913228e-4 +dealings_N 3.729715012475897e-6 +deamination_N 3.729715012475897e-6 +dean_N 1.118914503742769e-5 +dean_PN 1.865462821325971e-5 +deanery_N 3.729715012475897e-6 +deanship_N 3.729715012475897e-6 +dear_A 3.231957596716331e-5 +dear_Adv 1.7337933665065797e-5 +dear_N 3.729715012475897e-6 +dearest_N 3.729715012475897e-6 +dearie_N 3.729715012475897e-6 +dearness_N 3.729715012475897e-6 +dearth_N 1.4918860049903587e-5 +deary_N 3.729715012475897e-6 +death_N 4.7367380658443886e-4 +death_mask_N 3.729715012475897e-6 +death_rate_N 3.729715012475897e-6 +death_roll_N 3.729715012475897e-6 +death_warrant_N 3.729715012475897e-6 +deathbed_N 3.729715012475897e-6 +deathblow_N 3.729715012475897e-6 +deathless_A 1.0773191989054437e-5 +deathlike_A 1.0773191989054437e-5 +deathly_A 1.0773191989054437e-5 +deathly_Adv 8.668966832532898e-6 +deathrate_N 3.729715012475897e-6 +deathtrap_N 3.729715012475897e-6 +deb_N 3.729715012475897e-6 +debacle_N 7.459430024951794e-6 +debag_V2 1.609865254278217e-5 +debar_V2 1.609865254278217e-5 +debark_V 2.2678822515534993e-5 +debark_V2 1.609865254278217e-5 +debarkation_N 3.729715012475897e-6 +debarment_N 3.729715012475897e-6 +debase_V2 1.609865254278217e-5 +debasement_N 1.118914503742769e-5 +debaser_N 3.729715012475897e-6 +debasing_A 1.0773191989054437e-5 +debatable_A 2.1546383978108874e-5 +debate_N 3.058366310230235e-4 +debate_V 9.071529006213997e-5 +debate_V2 6.439461017112868e-5 +debater_N 3.729715012475897e-6 +debauch_N 3.729715012475897e-6 +debauch_V2 1.609865254278217e-5 +debauchee_N 3.729715012475897e-6 +debauchery_N 3.729715012475897e-6 +debbie_PN 1.865462821325971e-5 +debby_PN 1.865462821325971e-5 +debenture_N 3.7297150124758965e-4 +debilitate_V2 1.609865254278217e-5 +debilitating_A 1.0773191989054437e-5 +debilitation_N 3.729715012475897e-6 +debilitative_A 1.0773191989054437e-5 +debility_N 3.729715012475897e-6 +debit_N 3.729715012475897e-6 +debit_V2 1.609865254278217e-5 +debit_side_N 3.729715012475897e-6 +debonair_A 1.0773191989054437e-5 +deborah_PN 1.865462821325971e-5 +debouch_V 2.2678822515534993e-5 +debouch_V2 1.609865254278217e-5 +debridement_N 3.729715012475897e-6 +debrief_V2 1.609865254278217e-5 +debriefing_N 3.729715012475897e-6 +debris_1_N 3.356743511228307e-5 +debris_2_N 3.729715012475897e-6 +debris_N 3.729715012475897e-6 +debt_N 2.0886404069865023e-3 +debtor_N 1.8648575062379485e-5 +debug_V2 1.609865254278217e-5 +debugger_N 3.729715012475897e-6 +debunk_V2 4.8295957628346505e-5 +debut_1_N 7.086458523704203e-5 +debut_2_N 3.729715012475897e-6 +debut_N 3.729715012475897e-6 +debut_V2 3.219730508556434e-5 +debutante_1_N 3.729715012475897e-6 +debutante_2_N 3.729715012475897e-6 +debutante_N 3.729715012475897e-6 +dec_PN 1.865462821325971e-5 +decade_N 4.69944091571963e-4 +decadence_N 1.118914503742769e-5 +decadent_A 2.1546383978108874e-5 +decadent_N 3.729715012475897e-6 +decagon_N 3.729715012475897e-6 +decahedron_N 3.729715012475897e-6 +decal_N 3.729715012475897e-6 +decalcification_N 3.729715012475897e-6 +decalcomania_N 3.729715012475897e-6 +decalescence_N 3.729715012475897e-6 +decalescent_A 1.0773191989054437e-5 +decalogue_N 3.729715012475897e-6 +decameter_N 3.729715012475897e-6 +decamp_V 2.2678822515534993e-5 +decampment_N 3.729715012475897e-6 +decant_V2 1.609865254278217e-5 +decantation_N 3.729715012475897e-6 +decanter_N 3.729715012475897e-6 +decapitate_V2 1.609865254278217e-5 +decapitation_N 3.729715012475897e-6 +decapod_N 3.729715012475897e-6 +decarbonize_V2 1.609865254278217e-5 +decarboxylase_N 3.729715012475897e-6 +decarboxylation_N 3.729715012475897e-6 +decasyllabic_A 1.0773191989054437e-5 +decasyllable_N 3.729715012475897e-6 +decathlon_N 3.729715012475897e-6 +decay_N 1.118914503742769e-5 +decay_V 2.2678822515534993e-5 +decayable_A 1.0773191989054437e-5 +decayed_A 1.0773191989054437e-5 +decease_N 3.729715012475897e-6 +decease_V 4.5357645031069986e-5 +deceit_N 3.729715012475897e-6 +deceitful_A 1.0773191989054437e-5 +deceitfulness_N 3.729715012475897e-6 +deceive_V2 4.8295957628346505e-5 +deceiver_N 3.729715012475897e-6 +deceivingly_Adv 8.668966832532898e-6 +decelerate_V 6.803646754660499e-5 +decelerate_V2 1.609865254278217e-5 +deceleration_N 3.729715012475897e-6 +december_N 3.729715012475897e-6 +december_PN 7.088758721038689e-4 +decency_N 7.459430024951794e-6 +decent_A 1.6159787983581657e-4 +decentralization_N 7.459430024951794e-6 +decentralize_V2 6.439461017112868e-5 +deception_N 7.459430024951794e-6 +deceptive_A 1.0773191989054437e-4 +deceptiveness_N 3.729715012475897e-6 +decibel_N 3.729715012475897e-6 +decide_V 1.2926928833854945e-3 +decide_V2 3.058743983128612e-4 +decide_VS 4.332004851845434e-3 +decide_VV 5.862002690755334e-3 +decide_on_V2 1.609865254278217e-5 +decide_upon_V2 1.609865254278217e-5 +decided_A 5.3865959945272184e-5 +decidua_N 3.729715012475897e-6 +deciduous_A 1.0773191989054437e-5 +decigram_N 3.729715012475897e-6 +decile_N 3.729715012475897e-6 +deciliter_N 3.729715012475897e-6 +decimal_A 3.231957596716331e-5 +decimal_N 3.729715012475897e-6 +decimalization_N 3.729715012475897e-6 +decimalize_V2 1.609865254278217e-5 +decimate_V2 3.219730508556434e-5 +decimation_N 3.729715012475897e-6 +decimeter_N 3.729715012475897e-6 +decipher_V2 1.609865254278217e-5 +decipherable_A 1.0773191989054437e-5 +decipherer_N 3.729715012475897e-6 +decision_N 1.1077253587053414e-3 +decisive_A 9.695872790148993e-5 +decisiveness_N 3.729715012475897e-6 +deck_N 5.2216010174662554e-5 +deck_V2 4.8295957628346505e-5 +deck_out_V 2.2678822515534993e-5 +decker_N 3.729715012475897e-6 +deckhand_N 3.729715012475897e-6 +deckle_N 3.729715012475897e-6 +deckle_edged_A 1.0773191989054437e-5 +deckled_A 1.0773191989054437e-5 +declaim_V 2.2678822515534993e-5 +declaim_V2 1.609865254278217e-5 +declamation_N 3.729715012475897e-6 +declamatory_A 1.0773191989054437e-5 +declarable_A 1.0773191989054437e-5 +declaration_N 4.848629516218666e-5 +declarative_A 1.0773191989054437e-5 +declare_V 4.308976277951649e-4 +declare_V2 3.8636766102677204e-4 +declare_V2V 1.8700327255726976e-3 +declare_VS 2.83024316987235e-3 +declassification_N 3.729715012475897e-6 +declassify_V2 3.219730508556434e-5 +declension_N 3.729715012475897e-6 +declination_N 3.729715012475897e-6 +decline_N 1.223346524092094e-3 +decline_V 4.853268018324489e-3 +decline_V2 1.1752016356230983e-3 +decline_VS 1.7328019407381737e-4 +decline_VV 1.643282721506823e-2 +declinometer_N 3.729715012475897e-6 +declivitous_A 1.0773191989054437e-5 +declivity_N 3.729715012475897e-6 +declutch_V 2.2678822515534993e-5 +deco_N 3.729715012475897e-6 +decoction_N 3.729715012475897e-6 +decode_V2 1.609865254278217e-5 +decoder_N 3.729715012475897e-6 +decoding_N 3.729715012475897e-6 +decoke_V2 1.609865254278217e-5 +decolletage_N 3.729715012475897e-6 +decollete_A 1.0773191989054437e-5 +decolonization_N 3.729715012475897e-6 +decolonize_V2 1.609865254278217e-5 +decompose_V 2.2678822515534993e-5 +decompose_V2 1.609865254278217e-5 +decomposition_N 3.729715012475897e-6 +decompositional_A 1.0773191989054437e-5 +decompound_A 1.0773191989054437e-5 +decompress_V2 1.609865254278217e-5 +decompression_N 3.729715012475897e-6 +decongestant_N 3.729715012475897e-6 +deconsecrated_A 1.0773191989054437e-5 +deconstruction_N 3.729715012475897e-6 +deconstructionist_A 1.0773191989054437e-5 +deconstructivism_N 3.729715012475897e-6 +decontaminate_V2 3.219730508556434e-5 +decontamination_N 3.729715012475897e-6 +decontrol_V2 1.609865254278217e-5 +decor_N 3.729715012475897e-6 +decorate_V2 8.049326271391085e-5 +decoration_N 1.118914503742769e-5 +decorative_A 3.231957596716331e-5 +decorativeness_N 3.729715012475897e-6 +decorator_N 1.118914503742769e-5 +decorous_A 1.0773191989054437e-5 +decortication_N 3.729715012475897e-6 +decorum_N 7.459430024951794e-6 +decoupage_N 3.729715012475897e-6 +decoy_N 3.729715012475897e-6 +decoy_V2 1.609865254278217e-5 +decrease_N 5.2216010174662554e-5 +decrease_V 3.628611602485599e-4 +decrease_V2 1.4488787288503951e-4 +decree_N 1.8648575062379485e-5 +decree_V2 4.8295957628346505e-5 +decree_nisi_N 3.729715012475897e-6 +decrepit_A 1.0773191989054437e-5 +decrepitation_N 3.729715012475897e-6 +decrepitude_N 3.729715012475897e-6 +decrescendo_A 1.0773191989054437e-5 +decrescendo_N 3.729715012475897e-6 +decribe_V2 3.219730508556434e-5 +decriminalization_N 3.729715012475897e-6 +decry_V2 9.659191525669301e-5 +decubitus_N 3.729715012475897e-6 +decumary_N 3.729715012475897e-6 +decurved_A 1.0773191989054437e-5 +decussate_A 1.0773191989054437e-5 +dedicate_V2 1.609865254278217e-4 +dedication_N 1.8648575062379485e-5 +dedifferentiated_A 1.0773191989054437e-5 +dedifferentiation_N 3.729715012475897e-6 +deduce_V2 1.609865254278217e-5 +deducible_A 1.0773191989054437e-5 +deduct_V2 1.2878922034225736e-4 +deductible_A 1.0773191989054437e-4 +deductible_N 3.729715012475897e-6 +deduction_N 1.08161735361801e-4 +deductive_A 1.0773191989054437e-5 +deed_N 1.4918860049903587e-5 +deed_box_N 3.729715012475897e-6 +deedpoll_N 3.729715012475897e-6 +deem_V2 8.049326271391085e-5 +deem_V2A 3.5e-2 +deem_V2V 1.402524544179523e-3 +deep_A 7.218038632666473e-4 +deep_Adv 6.068276782773029e-5 +deep_N 3.729715012475897e-6 +deep_freeze_N 3.729715012475897e-6 +deep_freeze_V2 1.609865254278217e-5 +deep_laid_A 1.0773191989054437e-5 +deep_mined_A 1.0773191989054437e-5 +deep_rooted_A 1.0773191989054437e-5 +deep_sea_A 1.0773191989054437e-5 +deep_seated_A 2.1546383978108874e-5 +deep_water_A 1.0773191989054437e-5 +deepen_V 1.5875175760874494e-4 +deepen_V2 1.609865254278217e-5 +deepening_N 3.729715012475897e-6 +deepness_N 3.729715012475897e-6 +deer_N 7.459430024951794e-6 +deerberry_N 3.729715012475897e-6 +deerskin_N 3.729715012475897e-6 +deerstalker_N 3.729715012475897e-6 +deerstalking_N 3.729715012475897e-6 +deface_V2 1.609865254278217e-5 +defacement_N 3.729715012475897e-6 +defalcation_N 3.729715012475897e-6 +defamation_N 7.459430024951794e-6 +defamatory_A 3.231957596716331e-5 +defame_V2 1.609865254278217e-5 +defamer_N 3.729715012475897e-6 +default_N 2.1259375571112613e-4 +default_V 3.401823377330249e-4 +defaulter_N 7.459430024951794e-6 +defeasible_A 1.0773191989054437e-5 +defeat_N 4.1026865137234865e-5 +defeat_V2 4.185649661123364e-4 +defeated_N 3.729715012475897e-6 +defeatism_N 3.729715012475897e-6 +defeatist_N 3.729715012475897e-6 +defecate_V 2.2678822515534993e-5 +defecation_N 3.729715012475897e-6 +defecator_N 3.729715012475897e-6 +defect_N 7.086458523704203e-5 +defect_V 1.1339411257767497e-4 +defection_N 2.237829007485538e-5 +defective_A 1.1850511187959881e-4 +defectiveness_N 3.729715012475897e-6 +defector_N 3.729715012475897e-6 +defence_N 5.594572518713845e-5 +defenceless_A 1.0773191989054437e-5 +defencelessness_N 3.729715012475897e-6 +defend_V 3.628611602485599e-4 +defend_V2 9.015245423958015e-4 +defendable_A 1.0773191989054437e-5 +defendant_N 3.2448520608540304e-4 +defender_N 3.729715012475897e-5 +defenestration_N 3.729715012475897e-6 +defenseless_A 1.0773191989054437e-5 +defenseless_Adv 8.668966832532898e-6 +defenselessness_N 3.729715012475897e-6 +defensibility_N 3.729715012475897e-6 +defensible_A 3.231957596716331e-5 +defensive_A 3.3396895166068756e-4 +defensive_N 2.6108005087331277e-5 +defensiveness_N 7.459430024951794e-6 +defer_V 6.803646754660499e-5 +defer_V2 3.541703559412077e-4 +deference_N 7.459430024951794e-6 +deferent_A 1.0773191989054437e-5 +deferential_A 1.0773191989054437e-5 +deferment_N 3.729715012475897e-6 +deferral_N 3.729715012475897e-6 +defervescence_N 3.729715012475897e-6 +defervescent_A 1.0773191989054437e-5 +defiance_N 7.459430024951794e-6 +defiant_A 3.231957596716331e-5 +defibrillation_N 3.729715012475897e-6 +defibrillator_N 3.729715012475897e-6 +deficiency_N 5.967544019961435e-5 +deficient_A 1.0773191989054437e-5 +deficit_N 7.384835724702275e-4 +defilade_N 3.729715012475897e-6 +defile_N 3.729715012475897e-6 +defile_V 2.2678822515534993e-5 +defile_V2 1.609865254278217e-5 +defilement_N 3.729715012475897e-6 +definable_A 1.0773191989054437e-5 +define_V 1.3607293509320997e-4 +define_V2 3.8636766102677204e-4 +definite_A 2.046906477920343e-4 +definition_N 9.324287531189741e-5 +definitive_A 4.5247406354028633e-4 +deflagration_N 3.729715012475897e-6 +deflate_V2 8.049326271391085e-5 +deflation_N 3.729715012475897e-6 +deflationary_A 2.1546383978108874e-5 +deflator_N 3.729715012475897e-6 +deflect_V 2.2678822515534993e-5 +deflect_V2 8.049326271391085e-5 +deflection_N 3.729715012475897e-6 +deflective_A 1.0773191989054437e-5 +deflector_N 3.729715012475897e-6 +defloration_N 3.729715012475897e-6 +deflower_V2 1.609865254278217e-5 +defoliant_N 3.729715012475897e-6 +defoliate_A 1.0773191989054437e-5 +defoliate_V2 1.609865254278217e-5 +defoliation_N 3.729715012475897e-6 +defoliator_N 3.729715012475897e-6 +deforest_V2 1.609865254278217e-5 +deforestation_N 3.729715012475897e-6 +deform_V2 3.219730508556434e-5 +deformation_N 3.729715012475897e-6 +deformational_A 1.0773191989054437e-5 +deformity_N 3.729715012475897e-6 +defraud_V2 2.092824830561682e-4 +defray_V2 1.609865254278217e-5 +defrayal_N 3.729715012475897e-6 +defrayment_N 3.729715012475897e-6 +defrock_V2 1.609865254278217e-5 +defrost_V2 1.609865254278217e-5 +defroster_N 3.729715012475897e-6 +deft_A 2.1546383978108874e-5 +deftness_N 3.729715012475897e-6 +defunct_A 9.695872790148993e-5 +defuse_V2 8.049326271391085e-5 +defy_V2 1.2878922034225736e-4 +defy_V2V 9.350163627863488e-4 +degage_A 1.0773191989054437e-5 +degauss_V2 1.609865254278217e-5 +degaussing_N 3.729715012475897e-6 +degeneracy_N 3.729715012475897e-6 +degenerate_A 1.0773191989054437e-5 +degenerate_N 3.729715012475897e-6 +degenerate_V 9.071529006213997e-5 +degeneration_N 3.729715012475897e-6 +degenerative_A 1.0773191989054437e-5 +degradation_N 7.459430024951794e-6 +degrade_V2 3.219730508556434e-5 +degree_N 1.4918860049903588e-4 +degressive_A 1.0773191989054437e-5 +dehiscence_N 3.729715012475897e-6 +dehiscent_A 1.0773191989054437e-5 +dehorn_V2 1.609865254278217e-5 +dehumanization_N 3.729715012475897e-6 +dehumanize_V2 1.609865254278217e-5 +dehydrate_V2 1.609865254278217e-5 +dehydration_N 3.729715012475897e-6 +deictic_A 1.0773191989054437e-5 +deictic_N 3.729715012475897e-6 +deific_A 1.0773191989054437e-5 +deification_N 3.729715012475897e-6 +deify_V2 1.609865254278217e-5 +deign_V 2.2678822515534993e-5 +deinocheirus_N 3.729715012475897e-6 +deinonychus_N 3.729715012475897e-6 +deipnosophist_N 3.729715012475897e-6 +deirdre_PN 1.865462821325971e-5 +deism_N 3.729715012475897e-6 +deist_A 1.0773191989054437e-5 +deist_N 3.729715012475897e-6 +deity_N 3.729715012475897e-6 +deixis_N 3.729715012475897e-6 +deject_V2 1.609865254278217e-5 +dejectedly_Adv 8.668966832532898e-6 +dejection_N 3.729715012475897e-6 +dekagram_N 3.729715012475897e-6 +dekaliter_N 3.729715012475897e-6 +dekko_N 3.729715012475897e-6 +delavirdine_N 3.729715012475897e-6 +delaware_PN 1.865462821325971e-4 +delay_N 2.7226919591074043e-4 +delay_V 4.989340953417699e-4 +delay_V2 9.176231949385836e-4 +delayed_action_A 1.0773191989054437e-5 +delayed_action_N 3.729715012475897e-6 +delayer_N 3.729715012475897e-6 +delectability_N 3.729715012475897e-6 +delectable_A 3.231957596716331e-5 +delectation_N 3.729715012475897e-6 +delegacy_N 3.729715012475897e-6 +delegate_N 4.1026865137234865e-5 +delegate_V2 6.439461017112868e-5 +delegating_N 3.729715012475897e-6 +delegation_N 6.340515521209024e-5 +delete_V2 9.659191525669301e-5 +deleterious_A 2.1546383978108874e-5 +deletion_N 1.118914503742769e-5 +delf_N 3.729715012475897e-6 +delft_N 3.729715012475897e-6 +delhi_PN 1.865462821325971e-5 +deliberate_A 2.1546383978108874e-4 +deliberate_V 4.5357645031069986e-5 +deliberate_V2 3.219730508556434e-5 +deliberation_N 2.9837720099807175e-5 +deliberative_A 2.1546383978108874e-5 +delible_A 1.0773191989054437e-5 +delicacy_N 7.459430024951794e-6 +delicate_A 1.0773191989054437e-4 +delicatessen_N 3.729715012475897e-6 +delicious_A 2.1546383978108874e-5 +delight_N 1.4918860049903587e-5 +delight_V 6.803646754660499e-5 +delight_V2 6.439461017112868e-5 +delight_VS 1.1552012938254491e-4 +delightedly_Adv 8.668966832532898e-6 +delightful_A 3.231957596716331e-5 +delimit_V2 1.609865254278217e-5 +delimitate_V2 1.609865254278217e-5 +delimitation_N 3.729715012475897e-6 +delineate_V2 1.609865254278217e-5 +delineation_N 3.729715012475897e-6 +delineative_A 1.0773191989054437e-5 +delinquency_N 1.118914503742769e-5 +delinquent_A 5.3865959945272184e-5 +delinquent_N 7.459430024951794e-6 +deliquescent_A 1.0773191989054437e-5 +delirious_A 2.1546383978108874e-5 +delirium_N 3.729715012475897e-6 +delirium_tremens_N 3.729715012475897e-6 +deliver_V 7.484011430126548e-4 +deliver_V2 1.0625110678236232e-3 +deliverable_A 1.0773191989054437e-5 +deliverable_N 3.729715012475897e-6 +deliverance_N 3.729715012475897e-6 +deliverer_N 3.729715012475897e-6 +delivery_N 5.258898167591014e-4 +deliveryman_N 3.729715012475897e-6 +dell_N 3.729715012475897e-6 +delouse_V2 3.219730508556434e-5 +delphic_A 1.0773191989054437e-5 +delphinium_N 3.729715012475897e-6 +delta_N 3.729715012475897e-5 +deltoid_A 1.0773191989054437e-5 +deltoid_N 3.729715012475897e-6 +delude_V2 1.609865254278217e-5 +deluge_N 1.118914503742769e-5 +deluge_V2 1.609865254278217e-5 +delusion_N 7.459430024951794e-6 +delusional_A 1.0773191989054437e-5 +delusive_A 1.0773191989054437e-5 +deluxe_A 1.0773191989054437e-5 +delve_V 9.071529006213997e-5 +delve_V2 1.609865254278217e-5 +demagnetization_N 3.729715012475897e-6 +demagnetize_V2 1.609865254278217e-5 +demagogic_A 2.1546383978108874e-5 +demagogue_N 7.459430024951794e-6 +demagoguery_N 3.729715012475897e-6 +demagogy_N 3.729715012475897e-6 +demand_N 1.0517796335182028e-3 +demand_V2 8.53228584767455e-4 +demand_VS 8.664009703690869e-4 +demander_N 3.729715012475897e-6 +demanding_A 1.0773191989054437e-5 +demantoid_N 3.729715012475897e-6 +demarcate_V2 1.609865254278217e-5 +demarcation_N 3.729715012475897e-6 +demarche_N 3.729715012475897e-6 +demean_V2 3.219730508556434e-5 +demeaning_A 1.0773191989054437e-5 +demeanor_N 3.729715012475897e-6 +demeanour_N 3.729715012475897e-6 +demented_A 1.0773191989054437e-5 +dementia_N 3.729715012475897e-6 +demerara_N 3.729715012475897e-6 +demerit_N 3.729715012475897e-6 +demesne_N 3.729715012475897e-6 +demiglace_N 3.729715012475897e-6 +demigod_N 3.729715012475897e-6 +demijohn_N 3.729715012475897e-6 +demilitarization_N 3.729715012475897e-6 +demilitarize_V2 3.219730508556434e-5 +demimondaine_N 3.729715012475897e-6 +demimonde_N 3.729715012475897e-6 +demineralization_N 3.729715012475897e-6 +demise_N 4.475658014971076e-5 +demist_V2 1.609865254278217e-5 +demister_N 3.729715012475897e-6 +demitasse_N 3.729715012475897e-6 +demiurge_N 3.729715012475897e-6 +demo_N 3.729715012475897e-6 +demob_V2 1.609865254278217e-5 +demobilization_N 3.729715012475897e-6 +demobilize_V2 6.439461017112868e-5 +democracy_N 1.6037774553646355e-4 +democrat_N 9.324287531189741e-5 +democratic_A 1.1419583508397704e-3 +democratically_Adv 1.7337933665065797e-5 +democratization_N 1.118914503742769e-5 +democratize_V2 4.8295957628346505e-5 +demode_A 1.0773191989054437e-5 +demodulation_N 3.729715012475897e-6 +demographer_N 3.729715012475897e-6 +demographic_A 6.463915193432663e-5 +demographic_N 3.729715012475897e-6 +demography_N 7.459430024951794e-6 +demolish_V2 9.659191525669301e-5 +demolition_N 7.459430024951794e-6 +demon_N 2.9837720099807175e-5 +demonetization_N 3.729715012475897e-6 +demonetize_V2 1.609865254278217e-5 +demoniac_A 1.0773191989054437e-5 +demoniac_N 3.729715012475897e-6 +demoniacal_A 1.0773191989054437e-5 +demonic_A 3.231957596716331e-5 +demonization_N 3.729715012475897e-6 +demonize_V2 3.219730508556434e-5 +demonstrability_N 3.729715012475897e-6 +demonstrable_A 1.0773191989054437e-5 +demonstrate_V 2.4946704767088494e-4 +demonstrate_V2 1.4488787288503951e-4 +demonstrate_VS 7.508808409865419e-4 +demonstration_N 1.0070230533684921e-4 +demonstrative_A 1.0773191989054437e-5 +demonstrativeness_N 3.729715012475897e-6 +demonstrator_N 5.2216010174662554e-5 +demoralization_N 3.729715012475897e-6 +demoralize_V2 3.219730508556434e-5 +demoralizing_A 1.0773191989054437e-5 +demote_V2 4.8295957628346505e-5 +demotic_A 1.0773191989054437e-5 +demotion_N 7.459430024951794e-6 +demulcent_A 1.0773191989054437e-5 +demulcent_N 3.729715012475897e-6 +demur_N 3.729715012475897e-6 +demur_V 2.2678822515534993e-5 +demur_VS 1.1552012938254491e-4 +demure_A 1.0773191989054437e-5 +demureness_N 3.729715012475897e-6 +demurrage_N 3.729715012475897e-6 +demurrer_N 3.729715012475897e-6 +demyelination_N 3.729715012475897e-6 +demythologization_N 3.729715012475897e-6 +demythologized_A 1.0773191989054437e-5 +den_N 1.4918860049903587e-5 +denain_PN 1.865462821325971e-5 +denar_N 3.729715012475897e-6 +denary_A 1.0773191989054437e-5 +denationalization_N 3.729715012475897e-6 +denationalize_V2 3.219730508556434e-5 +denaturant_N 3.729715012475897e-6 +denatured_A 1.0773191989054437e-5 +denazification_N 3.729715012475897e-6 +denbigh_PN 1.865462821325971e-5 +dendrite_N 3.729715012475897e-6 +dendritic_A 1.0773191989054437e-5 +dendrobium_N 3.729715012475897e-6 +dengue_N 3.729715012475897e-6 +deniable_A 1.0773191989054437e-5 +denial_N 1.8648575062379485e-5 +denier_N 3.729715012475897e-6 +denigrate_V2 1.609865254278217e-5 +denigration_N 7.459430024951794e-6 +denim_N 3.729715012475897e-6 +denis_PN 1.865462821325971e-5 +denise_PN 1.865462821325971e-5 +denizen_N 7.459430024951794e-6 +denmark_PN 9.327314106629855e-5 +dennis_PN 1.865462821325971e-5 +denny_PN 1.865462821325971e-5 +denominate_V2 4.8295957628346505e-5 +denomination_N 6.713487022456614e-5 +denominational_A 1.0773191989054437e-5 +denominationalism_N 3.729715012475897e-6 +denominator_N 7.459430024951794e-6 +denotative_A 1.0773191989054437e-5 +denotatum_N 3.729715012475897e-6 +denote_V2 1.609865254278217e-5 +denouement_N 3.729715012475897e-6 +denounce_V2 2.575784406845147e-4 +dense_A 3.231957596716331e-5 +denseness_N 3.729715012475897e-6 +densimeter_N 3.729715012475897e-6 +densitometer_N 3.729715012475897e-6 +densitometry_N 3.729715012475897e-6 +density_N 1.118914503742769e-5 +dent_N 2.237829007485538e-5 +dent_V 2.2678822515534993e-5 +dent_V2 1.609865254278217e-5 +dental_A 5.3865959945272184e-5 +dentate_A 1.0773191989054437e-5 +denticle_N 3.729715012475897e-6 +denticulate_A 1.0773191989054437e-5 +dentifrice_N 3.729715012475897e-6 +dentine_N 3.729715012475897e-6 +dentist_N 2.6108005087331277e-5 +dentistry_N 3.729715012475897e-6 +dentition_N 3.729715012475897e-6 +denture_N 3.729715012475897e-6 +denudation_N 3.729715012475897e-6 +denude_V2 3.219730508556434e-5 +denunciation_N 3.729715012475897e-6 +denver_PN 4.6636570533149275e-4 +deny_V2 1.3522868135937022e-3 +deny_V3 3.1746031746031746e-3 +deny_VS 1.4440016172818113e-3 +deodar_N 3.729715012475897e-6 +deodorant_N 7.459430024951794e-6 +deodorize_V2 1.609865254278217e-5 +deossification_N 3.729715012475897e-6 +deoxyadenosine_N 3.729715012475897e-6 +deoxycytidine_N 3.729715012475897e-6 +deoxyguanosine_N 3.729715012475897e-6 +deoxyribose_N 3.729715012475897e-6 +deoxythymidine_N 3.729715012475897e-6 +dep_PN 1.865462821325971e-5 +depart_V 2.0410940263981494e-4 +departed_A 1.0773191989054437e-5 +departed_N 3.729715012475897e-6 +departer_N 3.729715012475897e-6 +department_N 7.496727175076552e-4 +departmental_A 1.0773191989054437e-5 +departure_N 1.6783717556141534e-4 +depend_V 1.7009116886651245e-3 +dependability_N 3.729715012475897e-6 +dependable_A 1.0773191989054437e-5 +dependant_N 3.729715012475897e-6 +dependence_N 2.9837720099807175e-5 +dependency_N 7.459430024951794e-6 +dependent_A 1.508246878467621e-4 +dependent_N 2.6108005087331277e-5 +depersonalization_N 3.729715012475897e-6 +depict_V2 2.4147978814173252e-4 +depicting_N 3.729715012475897e-6 +depiction_N 1.118914503742769e-5 +depigmentation_N 3.729715012475897e-6 +depilation_N 3.729715012475897e-6 +depilatory_A 1.0773191989054437e-5 +depilatory_N 3.729715012475897e-6 +depilous_A 1.0773191989054437e-5 +deplane_V 2.2678822515534993e-5 +depletable_A 1.0773191989054437e-5 +deplete_V2 1.1269056779947518e-4 +depletion_N 3.356743511228307e-5 +deplorable_A 4.309276795621775e-5 +deplore_V2 4.8295957628346505e-5 +deploy_V 9.071529006213997e-5 +deploy_V2 8.049326271391085e-5 +deployment_N 1.118914503742769e-5 +depolarization_N 3.729715012475897e-6 +deponent_N 3.729715012475897e-6 +depopulate_V2 1.609865254278217e-5 +depopulation_N 3.729715012475897e-6 +deport_V2 3.219730508556434e-5 +deportation_N 1.118914503742769e-5 +deportee_N 3.729715012475897e-6 +deportment_N 3.729715012475897e-6 +depose_V 2.2678822515534993e-5 +depose_V2 4.8295957628346505e-5 +deposit_N 4.32646941447204e-4 +deposit_V2 9.659191525669301e-5 +deposition_N 1.8648575062379485e-5 +depositor_N 2.237829007485538e-5 +depository_N 4.475658014971076e-5 +depot_N 1.118914503742769e-5 +deprave_V2 1.609865254278217e-5 +depravity_N 3.729715012475897e-6 +deprecate_V2 1.609865254278217e-5 +deprecation_N 3.729715012475897e-6 +deprecative_A 1.0773191989054437e-5 +depreciate_V 4.5357645031069986e-5 +depreciate_V2 1.609865254278217e-5 +depreciation_N 6.340515521209024e-5 +depreciatory_A 1.0773191989054437e-5 +depredation_N 3.729715012475897e-6 +depress_V2 6.117487966257224e-4 +depressant_A 1.0773191989054437e-5 +depressing_A 1.0773191989054437e-5 +depression_N 6.340515521209024e-5 +depressive_A 1.0773191989054437e-5 +depressive_N 3.729715012475897e-6 +depressor_N 3.729715012475897e-6 +deprivation_N 7.459430024951794e-6 +deprive_V2 2.4147978814173252e-4 +dept_PN 1.865462821325971e-5 +depth_N 3.729715012475897e-5 +depth_bomb_N 3.729715012475897e-6 +depth_charge_N 3.729715012475897e-6 +deputation_N 3.729715012475897e-6 +depute_V2 1.609865254278217e-5 +deputize_V 2.2678822515534993e-5 +deputy_N 1.7156689057389125e-4 +derail_V2 9.659191525669301e-5 +derailment_N 3.729715012475897e-6 +derange_V2 1.609865254278217e-5 +derangement_N 3.729715012475897e-6 +derate_V2 1.609865254278217e-5 +derby_N 7.459430024951794e-6 +derby_PN 1.865462821325971e-5 +derbyshire_PN 1.865462821325971e-5 +deregulate_V2 6.439461017112868e-5 +deregulation_N 5.967544019961435e-5 +dereham_PN 1.865462821325971e-5 +derek_PN 1.865462821325971e-5 +derelict_A 1.0773191989054437e-5 +derelict_N 3.729715012475897e-6 +dereliction_N 7.459430024951794e-6 +derequisition_V2 1.609865254278217e-5 +derestrict_V2 1.609865254278217e-5 +deride_V2 3.219730508556434e-5 +derision_N 1.4918860049903587e-5 +derisive_A 3.231957596716331e-5 +derisory_A 1.0773191989054437e-5 +derivable_A 1.0773191989054437e-5 +derivation_N 7.459430024951794e-6 +derivational_A 1.0773191989054437e-5 +derivative_A 1.9391745580297985e-4 +derivative_N 2.6108005087331277e-5 +derive_V 9.071529006213997e-5 +derive_V2 1.609865254278217e-4 +deriving_N 3.729715012475897e-6 +dermabrasion_N 3.729715012475897e-6 +dermal_A 1.0773191989054437e-5 +dermatitis_N 3.729715012475897e-6 +dermatoglyphic_N 3.729715012475897e-6 +dermatoglyphics_N 3.729715012475897e-6 +dermatologic_A 1.0773191989054437e-5 +dermatologist_N 3.729715012475897e-6 +dermatology_N 3.729715012475897e-6 +dermatome_N 3.729715012475897e-6 +dermatomycosis_N 3.729715012475897e-6 +dermatomyositis_N 3.729715012475897e-6 +dermatosis_N 3.729715012475897e-6 +dermis_N 3.729715012475897e-6 +derogate_V 2.2678822515534993e-5 +derogation_N 7.459430024951794e-6 +derogative_A 1.0773191989054437e-5 +derogatory_A 3.231957596716331e-5 +derrick_N 3.729715012475897e-6 +derring_do_N 3.729715012475897e-6 +derringer_N 3.729715012475897e-6 +derris_N 3.729715012475897e-6 +derv_N 3.729715012475897e-6 +dervish_N 3.729715012475897e-6 +des_N 3.729715012475897e-6 +des_PN 1.865462821325971e-5 +desalinate_V2 1.609865254278217e-5 +desalination_N 3.729715012475897e-6 +desalinization_N 3.729715012475897e-6 +desalinize_V2 1.609865254278217e-5 +desalt_V2 1.609865254278217e-5 +descale_V2 1.609865254278217e-5 +descant_N 3.729715012475897e-6 +descant_V 2.2678822515534993e-5 +descend_V 1.3607293509320997e-4 +descend_V2 1.609865254278217e-5 +descendant_A 1.0773191989054437e-5 +descendant_N 1.4918860049903587e-5 +descendants_N 3.729715012475897e-6 +descender_N 3.729715012475897e-6 +descent_N 1.8648575062379485e-5 +describable_A 1.0773191989054437e-5 +describe_V 2.7214587018641994e-4 +describe_V2 1.2073989407086626e-3 +describe_VS 2.3104025876508982e-4 +description_N 1.4918860049903587e-5 +descriptive_A 2.1546383978108874e-5 +descriptivism_N 3.729715012475897e-6 +descriptor_N 3.729715012475897e-6 +descry_V2 1.609865254278217e-5 +desecrate_V2 1.609865254278217e-5 +desecration_N 1.8648575062379485e-5 +desegrated_A 1.0773191989054437e-5 +desegregate_V2 1.609865254278217e-5 +desegregation_N 3.729715012475897e-6 +desensitization_N 3.729715012475897e-6 +desensitize_V2 1.609865254278217e-5 +desensitizing_A 1.0773191989054437e-5 +desert_A 1.0773191989054437e-5 +desert_N 5.967544019961435e-5 +desert_V 4.5357645031069986e-5 +desert_V2 4.8295957628346505e-5 +deserter_N 3.729715012475897e-6 +desertification_N 3.729715012475897e-6 +desertion_N 3.729715012475897e-6 +deserts_N 3.729715012475897e-6 +deserve_V 1.1339411257767497e-4 +deserve_V2 2.2538113559895037e-4 +deserve_VV 2.8829521429944266e-4 +deservedly_Adv 8.668966832532898e-6 +deservingness_N 3.729715012475897e-6 +deshabille_N 3.729715012475897e-6 +desiccant_N 3.729715012475897e-6 +desiccate_V2 1.609865254278217e-5 +desideratum_N 3.729715012475897e-6 +design_N 2.7226919591074043e-4 +design_V 8.844740781058648e-4 +design_V2 7.727353220535441e-4 +design_V2V 2.431042543244507e-2 +designate_A 2.1546383978108874e-5 +designate_V 4.5357645031069986e-5 +designate_V2 1.7708517797060386e-4 +designate_V2V 1.402524544179523e-3 +designate_VS 1.1552012938254491e-4 +designation_N 1.8648575062379485e-5 +designative_A 1.0773191989054437e-5 +designatum_N 3.729715012475897e-6 +designedly_Adv 8.668966832532898e-6 +designer_N 1.08161735361801e-4 +designing_N 3.729715012475897e-6 +desipramine_N 3.729715012475897e-6 +desirability_N 3.729715012475897e-6 +desirable_A 1.6159787983581657e-4 +desire_N 1.4172917047408407e-4 +desire_V2 1.2878922034225736e-4 +desirous_A 1.0773191989054437e-5 +desist_V 4.5357645031069986e-5 +desk_N 1.2308059541170458e-4 +desktop_N 3.729715012475897e-6 +desmid_N 3.729715012475897e-6 +desmond_PN 1.865462821325971e-5 +desolate_A 3.231957596716331e-5 +desolate_V2 1.609865254278217e-5 +desolation_N 3.729715012475897e-6 +desorption_N 3.729715012475897e-6 +despair_N 1.8648575062379485e-5 +despair_V 4.5357645031069986e-5 +despairingly_Adv 8.668966832532898e-6 +despatch_N 3.729715012475897e-6 +despatch_V2 1.609865254278217e-5 +desperado_N 3.729715012475897e-6 +desperate_A 2.585566077373065e-4 +desperate_N 3.729715012475897e-6 +desperation_N 3.729715012475897e-6 +despicable_A 2.1546383978108874e-5 +despisal_N 3.729715012475897e-6 +despise_V2 4.8295957628346505e-5 +despite_N 3.729715012475897e-6 +despite_Prep 2.584443446589832e-3 +despiteful_A 1.0773191989054437e-5 +despoil_V2 1.609865254278217e-5 +despondency_N 3.729715012475897e-6 +despondent_A 1.0773191989054437e-5 +despot_N 7.459430024951794e-6 +despotic_A 1.0773191989054437e-5 +despotism_N 3.729715012475897e-6 +desquamation_N 3.729715012475897e-6 +dessau_PN 1.865462821325971e-5 +dessert_N 1.4918860049903587e-5 +dessertspoon_N 3.729715012475897e-6 +dessertspoonful_N 3.729715012475897e-6 +dessiatine_N 3.729715012475897e-6 +destabilization_N 3.729715012475897e-6 +destalinization_N 3.729715012475897e-6 +destination_N 3.356743511228307e-5 +destine_V2 1.609865254278217e-5 +destine_V2V 4.675081813931744e-4 +destiny_N 1.118914503742769e-5 +destitute_A 1.0773191989054437e-5 +destitution_N 3.729715012475897e-6 +destroy_V2 5.473541864545937e-4 +destroyable_A 1.0773191989054437e-5 +destroyer_N 3.729715012475897e-6 +destructibility_N 3.729715012475897e-6 +destructible_A 1.0773191989054437e-5 +destruction_N 5.2216010174662554e-5 +destructive_A 5.3865959945272184e-5 +destructiveness_N 3.729715012475897e-6 +desuetude_N 3.729715012475897e-6 +desultory_A 2.1546383978108874e-5 +detach_V2 4.8295957628346505e-5 +detachable_A 1.0773191989054437e-5 +detachment_N 3.729715012475897e-6 +detail_N 3.8043093127254147e-4 +detail_V2 5.795514915401581e-4 +detain_V2 9.659191525669301e-5 +detainee_N 3.729715012475897e-6 +detect_V2 3.058743983128612e-4 +detectable_A 3.231957596716331e-5 +detection_N 3.729715012475897e-6 +detective_N 3.356743511228307e-5 +detector_N 4.848629516218666e-5 +detente_N 3.729715012475897e-6 +detention_N 1.118914503742769e-5 +deter_V2 2.575784406845147e-4 +detergency_N 3.729715012475897e-6 +detergent_A 1.0773191989054437e-5 +detergent_N 7.459430024951794e-5 +deteriorate_V 5.442917403728399e-4 +deteriorate_V2 4.8295957628346505e-5 +deterioration_N 7.086458523704203e-5 +determent_N 3.729715012475897e-6 +determinable_A 1.0773191989054437e-5 +determinant_A 1.0773191989054437e-5 +determinant_N 3.729715012475897e-6 +determinate_A 1.0773191989054437e-5 +determinateness_N 3.729715012475897e-6 +determination_N 3.356743511228307e-5 +determinative_A 1.0773191989054437e-5 +determinative_N 3.729715012475897e-6 +determine_V 4.762552728262349e-4 +determine_V2 6.922420593396333e-4 +determine_V2V 4.675081813931744e-4 +determine_VS 2.5992029111072605e-3 +determine_VV 4.8049202383240437e-4 +determinedly_Adv 8.668966832532898e-6 +determiner_N 3.729715012475897e-6 +determinism_N 3.729715012475897e-6 +deterministic_A 1.0773191989054437e-5 +deterrence_N 3.729715012475897e-6 +deterrent_A 1.0773191989054437e-5 +deterrent_N 1.8648575062379485e-5 +detest_V2 3.219730508556434e-5 +detestable_A 1.0773191989054437e-5 +detestation_N 3.729715012475897e-6 +dethrone_V2 3.219730508556434e-5 +dethronement_N 3.729715012475897e-6 +detonate_V 2.2678822515534993e-5 +detonate_V2 1.609865254278217e-5 +detonation_N 3.729715012475897e-6 +detonative_A 1.0773191989054437e-5 +detonator_N 3.729715012475897e-6 +detour_N 1.118914503742769e-5 +detour_V2 1.609865254278217e-5 +detox_N 3.729715012475897e-6 +detoxification_N 3.729715012475897e-6 +detract_V 6.803646754660499e-5 +detraction_N 3.729715012475897e-6 +detractive_A 1.0773191989054437e-5 +detractor_N 7.459430024951794e-6 +detrain_V 2.2678822515534993e-5 +detrain_V2 1.609865254278217e-5 +detribalization_N 3.729715012475897e-6 +detribalize_V2 1.609865254278217e-5 +detriment_N 1.118914503742769e-5 +detrimental_A 2.1546383978108874e-5 +detritus_N 3.729715012475897e-6 +detroit_PN 1.865462821325971e-5 +detumescence_N 3.729715012475897e-6 +deuce_N 3.729715012475897e-6 +deuced_A 1.0773191989054437e-5 +deuteranopia_N 3.729715012475897e-6 +deuteranopic_A 1.0773191989054437e-5 +deuterium_N 3.729715012475897e-6 +deuteron_N 3.729715012475897e-6 +deutschmark_N 3.729715012475897e-6 +deutzia_N 3.729715012475897e-6 +devaluate_V2 1.609865254278217e-5 +devaluation_N 4.475658014971076e-5 +devalue_V2 6.439461017112868e-5 +devastate_V2 1.4488787288503951e-4 +devastation_N 4.1026865137234865e-5 +develop_V 1.9276999138204745e-3 +develop_V2 2.865560152615226e-3 +developer_N 2.9091777097311995e-4 +development_N 8.317264477821249e-4 +developmental_A 1.0773191989054437e-5 +deviant_A 2.1546383978108874e-5 +deviant_N 3.729715012475897e-6 +deviate_V 4.5357645031069986e-5 +deviation_N 4.1026865137234865e-5 +deviationism_N 3.729715012475897e-6 +deviationist_N 3.729715012475897e-6 +device_N 3.356743511228307e-4 +devil_N 1.118914503742769e-5 +devil_V 2.2678822515534993e-5 +devil_V2 1.609865254278217e-5 +devil_may_care_A 1.0773191989054437e-5 +devilish_A 1.0773191989054437e-5 +devilish_Adv 8.668966832532898e-6 +devilment_N 3.729715012475897e-6 +devilry_N 3.729715012475897e-6 +deviltry_N 3.729715012475897e-6 +devilwood_N 3.729715012475897e-6 +devious_A 2.1546383978108874e-5 +deviousness_N 3.729715012475897e-6 +devisal_N 3.729715012475897e-6 +devise_N 3.729715012475897e-6 +devise_V2 3.219730508556434e-4 +devisee_N 3.729715012475897e-6 +devising_N 3.729715012475897e-6 +devisor_N 3.729715012475897e-6 +devitalization_N 3.729715012475897e-6 +devitalize_V2 1.609865254278217e-5 +devizes_PN 1.865462821325971e-5 +devoid_A 3.231957596716331e-5 +devoir_N 3.729715012475897e-6 +devolution_N 3.729715012475897e-6 +devolve_V 2.2678822515534993e-5 +devolve_V2 1.609865254278217e-5 +devon_PN 1.865462821325971e-5 +devote_V2 3.702690084839899e-4 +devotedly_Adv 8.668966832532898e-6 +devotee_N 1.4918860049903587e-5 +devotion_N 1.4918860049903587e-5 +devotional_A 1.0773191989054437e-5 +devotional_N 3.729715012475897e-6 +devour_V2 4.8295957628346505e-5 +devourer_N 3.729715012475897e-6 +devout_A 2.1546383978108874e-5 +devoutness_N 3.729715012475897e-6 +devries_N 3.729715012475897e-6 +dew_N 7.459430024951794e-6 +dewberry_N 3.729715012475897e-6 +dewdrop_N 3.729715012475897e-6 +dewlap_N 3.729715012475897e-6 +dewsbury_PN 1.865462821325971e-5 +dewy_A 1.0773191989054437e-5 +dexamethasone_N 3.729715012475897e-6 +dexter_A 1.0773191989054437e-5 +dexterity_N 7.459430024951794e-6 +dexterous_A 1.0773191989054437e-5 +dextral_A 1.0773191989054437e-5 +dextrin_N 3.729715012475897e-6 +dextrocardia_N 3.729715012475897e-6 +dextrorotary_A 1.0773191989054437e-5 +dextrorotation_N 3.729715012475897e-6 +dextrorse_A 1.0773191989054437e-5 +dextrose_N 3.729715012475897e-6 +dextrous_A 1.0773191989054437e-5 +dg_PN 1.865462821325971e-5 +dhak_N 3.729715012475897e-6 +dhawa_N 3.729715012475897e-6 +dhole_N 3.729715012475897e-6 +dhoti_N 3.729715012475897e-6 +dhow_N 3.729715012475897e-6 +di_PN 1.865462821325971e-5 +diabatic_A 1.0773191989054437e-5 +diabetes_N 1.8648575062379485e-5 +diabetic_A 1.0773191989054437e-5 +diabetic_N 5.2216010174662554e-5 +diabolatry_N 3.729715012475897e-6 +diabolic_A 1.0773191989054437e-5 +diabolical_A 1.0773191989054437e-5 +diabolism_N 3.729715012475897e-6 +diachronic_A 1.0773191989054437e-5 +diacritic_A 1.0773191989054437e-5 +diacritic_N 3.729715012475897e-6 +diacritical_A 1.0773191989054437e-5 +diadem_N 3.729715012475897e-6 +diadromous_A 1.0773191989054437e-5 +diaeresis_N 3.729715012475897e-6 +diagnosable_A 1.0773191989054437e-5 +diagnose_V2 9.659191525669301e-5 +diagnosis_N 2.237829007485538e-5 +diagnostic_A 1.1850511187959881e-4 +diagnostician_N 3.729715012475897e-6 +diagonal_A 1.0773191989054437e-5 +diagonal_N 3.729715012475897e-6 +diagonalizable_A 1.0773191989054437e-5 +diagonalization_N 3.729715012475897e-6 +diagram_N 7.459430024951794e-6 +diagrammatic_A 1.0773191989054437e-5 +diagrammatical_A 1.0773191989054437e-5 +diakinesis_N 3.729715012475897e-6 +dial_N 2.6108005087331277e-5 +dial_V2 6.439461017112868e-5 +dialect_N 1.4918860049903587e-5 +dialectal_A 1.0773191989054437e-5 +dialectic_A 1.0773191989054437e-5 +dialectic_N 3.729715012475897e-6 +dialectical_A 1.0773191989054437e-5 +dialectician_N 3.729715012475897e-6 +dialectics_N 3.729715012475897e-6 +dialectology_N 3.729715012475897e-6 +dialogue_N 6.713487022456614e-5 +dialysis_N 3.729715012475897e-6 +dialyzer_N 3.729715012475897e-6 +diamagnet_N 3.729715012475897e-6 +diamagnetic_A 1.0773191989054437e-5 +diamagnetism_N 3.729715012475897e-6 +diamante_N 3.729715012475897e-6 +diamantine_A 1.0773191989054437e-5 +diameter_N 7.459430024951794e-6 +diametral_A 1.0773191989054437e-5 +diametric_A 1.0773191989054437e-5 +diametrically_Adv 8.668966832532898e-6 +diamine_N 3.729715012475897e-6 +diamond_N 8.205373027446973e-5 +diamondback_N 3.729715012475897e-6 +diana_PN 1.865462821325971e-5 +dianoetic_A 1.0773191989054437e-5 +diapason_N 3.729715012475897e-6 +diapedesis_N 3.729715012475897e-6 +diapensia_N 3.729715012475897e-6 +diaper_N 4.475658014971076e-5 +diaphanous_A 1.0773191989054437e-5 +diapheromera_N 3.729715012475897e-6 +diaphone_N 3.729715012475897e-6 +diaphoretic_A 1.0773191989054437e-5 +diaphoretic_N 3.729715012475897e-6 +diaphragm_N 3.729715012475897e-6 +diaphyseal_A 1.0773191989054437e-5 +diaphysis_N 3.729715012475897e-6 +diapir_N 3.729715012475897e-6 +diapsid_N 3.729715012475897e-6 +diarchy_N 3.729715012475897e-6 +diarist_N 3.729715012475897e-6 +diarrhea_N 7.459430024951794e-6 +diarrheal_A 1.0773191989054437e-5 +diarrhoea_N 3.729715012475897e-6 +diary_N 1.8648575062379485e-5 +diaspora_N 3.729715012475897e-6 +diastasis_N 3.729715012475897e-6 +diastema_N 3.729715012475897e-6 +diastole_N 3.729715012475897e-6 +diastolic_A 1.0773191989054437e-5 +diastrophism_N 3.729715012475897e-6 +diathermy_N 3.729715012475897e-6 +diathesis_N 3.729715012475897e-6 +diatom_N 3.729715012475897e-6 +diatomic_A 1.0773191989054437e-5 +diatonic_A 1.0773191989054437e-5 +diatribe_N 3.729715012475897e-6 +diazepam_N 3.729715012475897e-6 +diazo_A 1.0773191989054437e-5 +diazonium_N 3.729715012475897e-6 +diazoxide_N 3.729715012475897e-6 +dibber_N 3.729715012475897e-6 +dibble_N 3.729715012475897e-6 +dibble_V2 1.609865254278217e-5 +dibranchiate_N 3.729715012475897e-6 +dibs_N 3.729715012475897e-6 +dibucaine_N 3.729715012475897e-6 +dicamptodon_N 3.729715012475897e-6 +dicarboxylic_A 1.0773191989054437e-5 +dice_N 1.118914503742769e-5 +dice_V 2.2678822515534993e-5 +dice_V2 1.609865254278217e-5 +dice_box_N 3.729715012475897e-6 +dicer_N 3.729715012475897e-6 +dicey_A 1.0773191989054437e-5 +dichloride_N 3.729715012475897e-6 +dichlorodiphenyltrichloroethane_N 3.729715012475897e-6 +dichondra_N 3.729715012475897e-6 +dichotomization_N 3.729715012475897e-6 +dichotomous_A 1.0773191989054437e-5 +dichotomy_N 7.459430024951794e-6 +dichroism_N 3.729715012475897e-6 +dichromacy_N 3.729715012475897e-6 +dichromat_N 3.729715012475897e-6 +dichromatic_A 1.0773191989054437e-5 +dick_N 3.729715012475897e-6 +dick_PN 1.865462821325971e-5 +dickens_N 3.729715012475897e-6 +dicker_V 6.803646754660499e-5 +dickey_N 3.729715012475897e-6 +dickeybird_N 3.729715012475897e-6 +dicky_A 1.0773191989054437e-5 +dicky_N 3.729715012475897e-6 +dicky_PN 1.865462821325971e-5 +dicky_seat_N 3.729715012475897e-6 +dickybird_N 3.729715012475897e-6 +diclinous_A 1.0773191989054437e-5 +dicloxacillin_N 3.729715012475897e-6 +dicot_N 3.729715012475897e-6 +dicotyledonous_A 1.0773191989054437e-5 +dictaphone_N 7.459430024951794e-6 +dictate_N 7.459430024951794e-6 +dictate_V 4.5357645031069986e-5 +dictate_V2 8.049326271391085e-5 +dictate_VS 2.3104025876508982e-4 +dictation_N 1.8648575062379485e-5 +dictator_N 7.459430024951794e-5 +dictatorial_A 2.1546383978108874e-5 +dictatorship_N 1.4918860049903587e-5 +diction_N 3.729715012475897e-6 +dictionary_N 3.729715012475897e-6 +dictostylium_N 3.729715012475897e-6 +dictum_N 3.729715012475897e-6 +dictyopteran_A 1.0773191989054437e-5 +dicumarol_N 3.729715012475897e-6 +dicynodont_N 3.729715012475897e-6 +didactic_A 2.1546383978108874e-5 +didactically_Adv 8.668966832532898e-6 +didacticism_N 3.729715012475897e-6 +didcot_PN 1.865462821325971e-5 +diddle_V2 1.609865254278217e-5 +dideoxycytosine_N 3.729715012475897e-6 +dideoxyinosine_N 3.729715012475897e-6 +die_N 1.118914503742769e-5 +die_V 1.6101963986029845e-3 +die_V2 8.049326271391085e-5 +die_away_V 2.2678822515534993e-5 +die_back_V 2.2678822515534993e-5 +die_cast_A 1.0773191989054437e-5 +die_down_V 2.2678822515534993e-5 +die_for_V2 1.609865254278217e-5 +die_hard_N 3.729715012475897e-6 +die_off_V 2.2678822515534993e-5 +die_out_V 2.2678822515534993e-5 +dieback_N 3.729715012475897e-6 +diemaker_N 3.729715012475897e-6 +diencephalon_N 3.729715012475897e-6 +dieresis_N 3.729715012475897e-6 +diesel_N 1.4918860049903587e-5 +diestock_N 3.729715012475897e-6 +diestrous_A 1.0773191989054437e-5 +diestrus_N 3.729715012475897e-6 +diet_N 3.356743511228307e-5 +diet_V 4.5357645031069986e-5 +diet_V2 1.609865254278217e-5 +dietary_A 1.0773191989054437e-5 +dietary_N 3.729715012475897e-6 +dieter_N 3.729715012475897e-6 +dietetics_N 3.729715012475897e-6 +diethylstilbesterol_N 3.729715012475897e-6 +diethylstilbestrol_N 3.729715012475897e-6 +dietician_N 3.729715012475897e-6 +dietitian_N 3.729715012475897e-6 +differ_V 3.401823377330249e-4 +difference_N 4.811332366093907e-4 +different_A 1.8853085980845264e-3 +differentia_N 3.729715012475897e-6 +differentiable_A 1.0773191989054437e-5 +differential_A 2.1546383978108874e-5 +differential_N 2.9837720099807175e-5 +differentiate_V 6.803646754660499e-5 +differentiate_V2 1.609865254278217e-5 +differentiation_N 3.729715012475897e-6 +differentiator_N 3.729715012475897e-6 +difficult_A 1.3251026146536957e-3 +difficulty_N 2.387017607984574e-4 +diffidence_N 3.729715012475897e-6 +diffident_A 1.0773191989054437e-5 +difflugia_N 3.729715012475897e-6 +diffract_V2 1.609865254278217e-5 +diffraction_N 3.729715012475897e-6 +diffuse_A 1.0773191989054437e-5 +diffuse_V 2.2678822515534993e-5 +diffuse_V2 1.609865254278217e-5 +diffuseness_N 3.729715012475897e-6 +diffuser_N 3.729715012475897e-6 +diffusion_N 3.729715012475897e-6 +diflunisal_N 3.729715012475897e-6 +dig_N 2.237829007485538e-5 +dig_V 1.8143058012427994e-4 +dig_V2 1.609865254278217e-5 +dig_in_V 2.2678822515534993e-5 +dig_into_V2 1.609865254278217e-5 +dig_out_V2 1.609865254278217e-5 +dig_up_V2 1.609865254278217e-5 +digest_N 3.729715012475897e-6 +digest_V 2.2678822515534993e-5 +digest_V2 8.049326271391085e-5 +digester_N 3.729715012475897e-6 +digestibility_N 3.729715012475897e-6 +digestible_A 1.0773191989054437e-5 +digestion_N 3.729715012475897e-6 +digestive_A 1.0773191989054437e-5 +digestive_N 3.729715012475897e-6 +digger_N 3.729715012475897e-6 +digging_N 7.459430024951794e-6 +diggings_N 3.729715012475897e-6 +dighted_A 1.0773191989054437e-5 +digit_N 1.8648575062379485e-5 +digital_A 9.695872790148993e-5 +digitalis_N 3.729715012475897e-6 +digitalization_N 3.729715012475897e-6 +digitate_A 1.0773191989054437e-5 +digitigrade_A 1.0773191989054437e-5 +digitization_N 3.729715012475897e-6 +digitizer_N 3.729715012475897e-6 +digitoxin_N 3.729715012475897e-6 +diglyceride_N 3.729715012475897e-6 +dignify_V2 4.8295957628346505e-5 +dignifying_A 1.0773191989054437e-5 +dignitary_N 7.459430024951794e-6 +dignity_N 4.1026865137234865e-5 +digoxin_N 3.729715012475897e-6 +digraph_N 3.729715012475897e-6 +digress_V 2.2678822515534993e-5 +digression_N 3.729715012475897e-6 +digressive_A 1.0773191989054437e-5 +dihybrid_N 3.729715012475897e-6 +dihydrostreptomycin_N 3.729715012475897e-6 +dijon_PN 1.865462821325971e-5 +dike_N 3.729715012475897e-6 +dike_V 2.2678822515534993e-5 +dike_V2 1.609865254278217e-5 +dilapidated_A 2.1546383978108874e-5 +dilapidation_N 3.729715012475897e-6 +dilatation_N 3.729715012475897e-6 +dilate_V 2.2678822515534993e-5 +dilate_V2 1.609865254278217e-5 +dilation_N 3.729715012475897e-6 +dilator_N 3.729715012475897e-6 +dilatoriness_N 3.729715012475897e-6 +dilatory_A 1.0773191989054437e-5 +dildo_N 3.729715012475897e-6 +dilemma_N 3.729715012475897e-5 +dilettante_A 1.0773191989054437e-5 +dilettante_N 3.729715012475897e-6 +diligence_N 1.118914503742769e-5 +diligent_A 1.0773191989054437e-5 +dill_N 3.729715012475897e-6 +dillenia_N 3.729715012475897e-6 +dilly_dally_V 2.2678822515534993e-5 +diltiazem_N 3.729715012475897e-6 +dilutant_N 3.729715012475897e-6 +dilute_A 1.0773191989054437e-5 +dilute_V 4.082188052796299e-4 +dilute_V2 2.2538113559895037e-4 +dilution_N 1.8648575062379485e-5 +diluvian_A 1.0773191989054437e-5 +dim_A 2.1546383978108874e-5 +dim_V 2.2678822515534993e-5 +dim_V2 1.609865254278217e-5 +dime_N 1.118914503742769e-5 +dimenhydrinate_N 3.729715012475897e-6 +dimension_N 2.237829007485538e-5 +dimensional_A 1.0773191989054437e-5 +dimensionality_N 3.729715012475897e-6 +dimensioning_A 1.0773191989054437e-5 +dimer_N 3.729715012475897e-6 +dimethylglyoxime_N 3.729715012475897e-6 +dimetrodon_N 3.729715012475897e-6 +diminish_V 2.9482469270195494e-4 +diminish_V2 2.7367709322729687e-4 +diminuendo_N 3.729715012475897e-6 +diminution_N 7.459430024951794e-6 +diminutive_A 3.231957596716331e-5 +diminutive_N 3.729715012475897e-6 +diminutiveness_N 3.729715012475897e-6 +dimity_N 3.729715012475897e-6 +dimmer_N 3.729715012475897e-6 +dimness_N 3.729715012475897e-6 +dimorphic_A 1.0773191989054437e-5 +dimorphism_N 3.729715012475897e-6 +dimple_N 3.729715012475897e-6 +dimple_V 2.2678822515534993e-5 +dimple_V2 1.609865254278217e-5 +dimwit_N 3.729715012475897e-6 +din_N 3.729715012475897e-6 +din_V 2.2678822515534993e-5 +din_V2 1.609865254278217e-5 +dinar_N 3.729715012475897e-6 +dine_V 1.1339411257767497e-4 +dine_V2 1.609865254278217e-5 +dine_out_V 2.2678822515534993e-5 +dine_out_on_V2 1.609865254278217e-5 +diner_N 1.4918860049903587e-5 +dinette_N 3.729715012475897e-6 +ding_N 3.729715012475897e-6 +ding_dong_Adv 8.668966832532898e-6 +ding_dong_N 3.729715012475897e-6 +dingbat_N 3.729715012475897e-6 +dingdong_Adv 8.668966832532898e-6 +dinghy_N 3.729715012475897e-6 +dinginess_N 3.729715012475897e-6 +dingle_N 3.729715012475897e-6 +dingle_PN 1.865462821325971e-5 +dingo_N 3.729715012475897e-6 +dingy_A 1.0773191989054437e-5 +dining_N 3.729715012475897e-6 +dining_car_N 3.729715012475897e-6 +dining_room_N 3.729715012475897e-6 +dining_table_N 3.729715012475897e-6 +dinky_A 2.1546383978108874e-5 +dinky_N 3.729715012475897e-6 +dinner_N 7.832401526199384e-5 +dinner_jacket_N 3.729715012475897e-6 +dinner_party_N 3.729715012475897e-6 +dinner_service_N 3.729715012475897e-6 +dinner_set_N 3.729715012475897e-6 +dinnertime_N 3.729715012475897e-6 +dinnerware_N 3.729715012475897e-6 +dinnington_PN 1.865462821325971e-5 +dinoceras_N 3.729715012475897e-6 +dinocerate_N 3.729715012475897e-6 +dinoflagellate_N 3.729715012475897e-6 +dinosaur_N 2.237829007485538e-5 +dint_N 3.729715012475897e-6 +diocesan_A 1.0773191989054437e-5 +diocesan_N 3.729715012475897e-6 +diocese_N 3.729715012475897e-6 +diode_N 3.729715012475897e-6 +dioecious_A 1.0773191989054437e-5 +diol_N 3.729715012475897e-6 +dioon_N 3.729715012475897e-6 +diopter_N 3.729715012475897e-6 +diorite_N 3.729715012475897e-6 +dioxide_N 5.2216010174662554e-5 +dioxin_N 3.729715012475897e-6 +dip_N 1.4918860049903587e-5 +dip_V 2.7214587018641994e-4 +dip_V2 9.659191525669301e-5 +dip_ed_N 1.4918860049903587e-5 +dip_in_V2 1.609865254278217e-5 +dip_into_V2 1.609865254278217e-5 +dip_out_V 2.2678822515534993e-5 +diphenhydramine_N 3.729715012475897e-6 +diphenylhydantoin_N 3.729715012475897e-6 +diphtheria_N 7.459430024951794e-6 +diphthong_N 3.729715012475897e-6 +diplegia_N 3.729715012475897e-6 +diplococcus_N 3.729715012475897e-6 +diplodocus_N 3.729715012475897e-6 +diploid_A 1.0773191989054437e-5 +diploid_N 3.729715012475897e-6 +diploidy_N 3.729715012475897e-6 +diploma_N 7.459430024951794e-6 +diplomacy_N 1.8648575062379485e-5 +diplomat_N 5.594572518713845e-5 +diplomate_N 3.729715012475897e-6 +diplomatic_A 1.6159787983581657e-4 +diplomatist_N 3.729715012475897e-6 +diplopia_N 3.729715012475897e-6 +diplotene_N 3.729715012475897e-6 +dipolar_A 1.0773191989054437e-5 +dipole_N 3.729715012475897e-6 +dipper_N 3.729715012475897e-6 +dipsomania_N 3.729715012475897e-6 +dipsomaniac_N 3.729715012475897e-6 +dipstick_N 3.729715012475897e-6 +dipterocarp_N 3.729715012475897e-6 +dipterous_A 1.0773191989054437e-5 +diptych_N 3.729715012475897e-6 +dir_N 3.729715012475897e-6 +dire_A 8.61855359124355e-5 +direct_A 2.143865205821833e-3 +direct_Adv 1.7337933665065797e-5 +direct_V 2.7214587018641994e-4 +direct_V2 3.702690084839899e-4 +direct_VS 1.1552012938254491e-4 +direction_N 2.4243147581093328e-4 +direction_finder_N 3.729715012475897e-6 +directional_A 1.0773191989054437e-5 +directionality_N 3.729715012475897e-6 +directive_N 2.9837720099807175e-5 +directivity_N 3.729715012475897e-6 +directness_N 3.729715012475897e-6 +director_N 2.025235251774412e-3 +directorate_N 7.459430024951794e-6 +directorship_N 7.459430024951794e-6 +directory_N 4.1026865137234865e-5 +direful_A 1.0773191989054437e-5 +dirge_N 3.729715012475897e-6 +dirigible_N 3.729715012475897e-6 +dirk_N 7.459430024951794e-6 +dirndl_N 3.729715012475897e-6 +dirt_A 1.0773191989054437e-5 +dirt_N 1.4918860049903587e-5 +dirt_cheap_A 1.0773191989054437e-5 +dirt_track_N 3.729715012475897e-6 +dirtiness_N 3.729715012475897e-6 +dirty_A 6.463915193432663e-5 +dirty_V 2.2678822515534993e-5 +dirty_V2 1.609865254278217e-5 +disa_N 3.729715012475897e-6 +disability_N 2.6108005087331277e-5 +disable_V2 8.049326271391085e-5 +disabled_N 3.729715012475897e-6 +disablement_N 3.729715012475897e-6 +disabling_A 1.0773191989054437e-5 +disabuse_V2 1.609865254278217e-5 +disaccharidase_N 3.729715012475897e-6 +disaccharide_N 3.729715012475897e-6 +disadvantage_N 4.475658014971076e-5 +disadvantageous_A 1.0773191989054437e-5 +disaffected_A 3.231957596716331e-5 +disaffection_N 7.459430024951794e-6 +disafforest_V2 1.609865254278217e-5 +disagree_V 6.123282079194448e-4 +disagree_V2 1.609865254278217e-5 +disagree_VS 1.1552012938254491e-4 +disagree_with_V2 1.609865254278217e-5 +disagreeable_A 2.1546383978108874e-5 +disagreeableness_N 3.729715012475897e-6 +disagreement_N 3.356743511228307e-5 +disallow_V2 3.219730508556434e-5 +disambiguation_N 3.729715012475897e-6 +disambiguator_N 3.729715012475897e-6 +disappear_V 5.442917403728399e-4 +disappearance_N 2.9837720099807175e-5 +disappoint_V2 5.151568813690294e-4 +disappointedly_Adv 8.668966832532898e-6 +disappointing_A 4.95566831496504e-4 +disappointment_N 1.08161735361801e-4 +disapprobation_N 3.729715012475897e-6 +disapproval_N 1.4918860049903587e-5 +disapprove_V 1.3607293509320997e-4 +disapprove_V2 6.439461017112868e-5 +disapprovingly_Adv 8.668966832532898e-6 +disarm_V 1.1339411257767497e-4 +disarm_V2 3.219730508556434e-5 +disarmament_N 1.118914503742769e-5 +disarming_N 3.729715012475897e-6 +disarrange_V2 1.609865254278217e-5 +disarrangement_N 3.729715012475897e-6 +disarray_N 5.594572518713845e-5 +disarray_V2 1.609865254278217e-5 +disassociate_V2 3.219730508556434e-5 +disassociation_N 3.729715012475897e-6 +disaster_N 4.0280922134739686e-4 +disastrous_A 4.309276795621775e-5 +disavow_V2 3.219730508556434e-5 +disavowable_A 1.0773191989054437e-5 +disavowal_N 3.729715012475897e-6 +disband_V 1.3607293509320997e-4 +disband_V2 8.049326271391085e-5 +disbandment_N 3.729715012475897e-6 +disbarment_N 3.729715012475897e-6 +disbelief_N 7.459430024951794e-6 +disbelieve_V 2.2678822515534993e-5 +disbelieve_V2 1.609865254278217e-5 +disbeliever_N 3.729715012475897e-6 +disbelievingly_Adv 8.668966832532898e-6 +disbud_V2 1.609865254278217e-5 +disburden_V2 1.609865254278217e-5 +disburse_V 2.2678822515534993e-5 +disburse_V2 4.8295957628346505e-5 +disbursement_N 1.4918860049903587e-5 +disc_N 1.4918860049903587e-5 +discalced_A 1.0773191989054437e-5 +discard_N 3.729715012475897e-6 +discard_V2 1.7708517797060386e-4 +discern_V2 3.219730508556434e-5 +discernability_N 3.729715012475897e-6 +discernible_A 2.1546383978108874e-5 +discerning_A 2.1546383978108874e-5 +discernment_N 3.729715012475897e-6 +discharge_N 2.237829007485538e-5 +discharge_V 2.2678822515534993e-5 +discharge_V2 6.439461017112868e-5 +disciform_A 1.0773191989054437e-5 +discina_N 3.729715012475897e-6 +disciple_N 7.459430024951794e-6 +discipleship_N 3.729715012475897e-6 +disciplinarian_N 3.729715012475897e-6 +disciplinary_A 1.508246878467621e-4 +discipline_N 1.08161735361801e-4 +discipline_V2 1.9318383051338602e-4 +disclaim_V2 1.609865254278217e-5 +disclaimer_N 3.729715012475897e-6 +disclose_V 9.298317231369348e-4 +disclose_V2 2.366501923788979e-3 +disclose_VS 1.5595217466643563e-3 +disclosure_N 1.5664803052398767e-4 +disco_N 1.4918860049903587e-5 +discography_N 3.729715012475897e-6 +discoid_A 1.0773191989054437e-5 +discoloration_N 3.729715012475897e-6 +discolour_V 2.2678822515534993e-5 +discolour_V2 1.609865254278217e-5 +discolouration_N 3.729715012475897e-6 +discombobulated_A 1.0773191989054437e-5 +discomfit_V2 3.219730508556434e-5 +discomfiture_N 3.729715012475897e-6 +discomfort_N 7.459430024951794e-6 +discommode_V2 1.609865254278217e-5 +discompose_V2 1.609865254278217e-5 +discomposure_N 3.729715012475897e-6 +discomycete_N 3.729715012475897e-6 +discomycetous_A 1.0773191989054437e-5 +disconcert_V2 1.609865254278217e-5 +disconcerting_A 1.0773191989054437e-5 +disconfirming_A 1.0773191989054437e-5 +disconnect_V2 1.1269056779947518e-4 +disconnection_N 3.729715012475897e-6 +disconsolate_A 1.0773191989054437e-5 +discontent_N 1.118914503742769e-5 +discontent_V2 1.609865254278217e-5 +discontentedly_Adv 8.668966832532898e-6 +discontentment_N 3.729715012475897e-6 +discontinuance_N 7.459430024951794e-6 +discontinue_V 6.803646754660499e-5 +discontinue_V2 5.473541864545937e-4 +discontinuity_N 3.729715012475897e-6 +discontinuous_A 1.0773191989054437e-5 +discord_N 7.459430024951794e-6 +discordance_N 3.729715012475897e-6 +discordant_A 3.231957596716331e-5 +discorporate_A 1.0773191989054437e-5 +discotheque_N 7.459430024951794e-6 +discount_N 4.2891722643472813e-4 +discount_V 6.350070304349798e-4 +discount_V2 2.575784406845147e-4 +discountenance_V2 1.609865254278217e-5 +discourage_V2 4.990582288262473e-4 +discouragement_N 1.118914503742769e-5 +discouraging_A 1.0773191989054437e-5 +discourse_N 1.118914503742769e-5 +discourse_V 2.2678822515534993e-5 +discourteous_A 1.0773191989054437e-5 +discourtesy_N 3.729715012475897e-6 +discover_V 5.896493854039099e-4 +discover_V2 4.185649661123364e-4 +discover_V2V 4.675081813931744e-4 +discover_VS 1.0974412291341767e-3 +discoverer_N 3.729715012475897e-6 +discovery_N 6.340515521209024e-5 +discredit_N 3.729715012475897e-6 +discredit_V2 1.2878922034225736e-4 +discreditable_A 1.0773191989054437e-5 +discreet_A 2.1546383978108874e-5 +discrepancy_N 7.832401526199384e-5 +discrepant_A 1.0773191989054437e-5 +discrete_A 2.1546383978108874e-5 +discreteness_N 3.729715012475897e-6 +discretion_N 3.729715012475897e-5 +discretionary_A 1.4005149585770768e-4 +discriminable_A 1.0773191989054437e-5 +discriminate_A 1.0773191989054437e-5 +discriminate_V 9.071529006213997e-5 +discriminate_V2 1.609865254278217e-5 +discrimination_N 8.951316029942152e-5 +discriminative_A 1.0773191989054437e-5 +discriminatory_A 5.3865959945272184e-5 +discursive_A 1.0773191989054437e-5 +discursiveness_N 3.729715012475897e-6 +discus_N 3.729715012475897e-6 +discuss_V2 1.70645716953491e-3 +discuss_VS 1.7328019407381737e-4 +discussant_N 3.729715012475897e-6 +discussion_N 2.8345834094816813e-4 +disdain_N 1.8648575062379485e-5 +disdain_V2 4.8295957628346505e-5 +disdainful_A 1.0773191989054437e-5 +disease_N 1.7156689057389125e-4 +diseased_A 2.1546383978108874e-5 +disembark_V 4.5357645031069986e-5 +disembark_V2 1.609865254278217e-5 +disembarkation_N 3.729715012475897e-6 +disembarrass_V2 1.609865254278217e-5 +disembarrassment_N 3.729715012475897e-6 +disembody_V2 3.219730508556434e-5 +disembowel_V2 1.609865254278217e-5 +disembowelment_N 3.729715012475897e-6 +disenchant_V2 6.439461017112868e-5 +disenchanting_A 1.0773191989054437e-5 +disenchantment_N 3.729715012475897e-6 +disencumber_V2 1.609865254278217e-5 +disenfranchise_V2 1.609865254278217e-5 +disenfranchisement_N 3.729715012475897e-6 +disengage_V 2.2678822515534993e-5 +disengage_V2 3.219730508556434e-5 +disengagement_N 3.729715012475897e-6 +disentangle_V 2.2678822515534993e-5 +disentangle_V2 1.609865254278217e-5 +disentanglement_N 3.729715012475897e-6 +disentangler_N 3.729715012475897e-6 +disequilibrium_N 3.729715012475897e-6 +disestablish_V2 1.609865254278217e-5 +disestablishment_N 3.729715012475897e-6 +disesteem_N 3.729715012475897e-6 +disfavor_N 3.729715012475897e-6 +disfavour_N 3.729715012475897e-6 +disfavour_V2 1.609865254278217e-5 +disfigure_V2 1.609865254278217e-5 +disfigurement_N 3.729715012475897e-6 +disfluency_N 3.729715012475897e-6 +disforest_V2 1.609865254278217e-5 +disfranchise_V2 1.609865254278217e-5 +disfranchisement_N 3.729715012475897e-6 +disgorge_V2 1.1269056779947518e-4 +disgrace_N 7.459430024951794e-6 +disgrace_V2 1.609865254278217e-5 +disgraceful_A 3.231957596716331e-5 +disgruntled_A 4.309276795621775e-5 +disgruntlement_N 3.729715012475897e-6 +disguise_N 7.459430024951794e-6 +disguise_V2 9.659191525669301e-5 +disgust_N 1.118914503742769e-5 +disgust_V2 6.439461017112868e-5 +disgustedly_Adv 8.668966832532898e-6 +disgusting_A 2.1546383978108874e-5 +disgustingness_N 3.729715012475897e-6 +dish_N 2.9837720099807175e-5 +dish_V2 3.219730508556434e-5 +dish_out_V2 1.609865254278217e-5 +dish_up_V2 1.609865254278217e-5 +dishabille_N 3.729715012475897e-6 +disharmonious_A 1.0773191989054437e-5 +disharmony_N 3.729715012475897e-6 +dishcloth_N 3.729715012475897e-6 +dishearten_V2 1.609865254278217e-5 +disheartenment_N 3.729715012475897e-6 +disheveled_A 1.0773191989054437e-5 +dishevelled_A 1.0773191989054437e-5 +dishful_N 3.729715012475897e-6 +dishonest_A 2.1546383978108874e-5 +dishonesty_N 2.6108005087331277e-5 +dishonorable_A 1.0773191989054437e-5 +dishonorableness_N 3.729715012475897e-6 +dishonour_N 3.729715012475897e-6 +dishonour_V2 1.609865254278217e-5 +dishonourable_A 1.0773191989054437e-5 +dishpan_N 3.729715012475897e-6 +dishrag_N 3.729715012475897e-6 +dishtowel_N 3.729715012475897e-6 +dishwasher_N 1.8648575062379485e-5 +dishwashing_N 3.729715012475897e-6 +dishwater_N 3.729715012475897e-6 +dishy_A 1.0773191989054437e-5 +disillusion_N 3.729715012475897e-6 +disillusion_V2 1.609865254278217e-5 +disillusionment_N 7.459430024951794e-6 +disincentive_N 3.729715012475897e-6 +disinclination_N 3.729715012475897e-6 +disincline_V2 1.609865254278217e-5 +disincline_V2V 4.675081813931744e-4 +disinfect_V2 1.609865254278217e-5 +disinfectant_A 1.0773191989054437e-5 +disinfectant_N 7.459430024951794e-6 +disinfection_N 3.729715012475897e-6 +disinfest_V2 1.609865254278217e-5 +disinfestation_N 3.729715012475897e-6 +disinflation_N 7.459430024951794e-6 +disinformation_N 3.729715012475897e-6 +disingenuous_A 3.231957596716331e-5 +disingenuousness_N 3.729715012475897e-6 +disinherit_V2 1.609865254278217e-5 +disinheritance_N 3.729715012475897e-6 +disintegrate_V 9.071529006213997e-5 +disintegrate_V2 1.609865254278217e-5 +disintegration_N 1.118914503742769e-5 +disintegrative_A 1.0773191989054437e-5 +disinter_V2 1.609865254278217e-5 +disinterest_N 3.729715012475897e-6 +disinterested_A 3.231957596716331e-5 +disinterestedness_N 3.729715012475897e-6 +disinterment_N 3.729715012475897e-6 +disinvestment_N 3.729715012475897e-6 +disjoined_A 1.0773191989054437e-5 +disjoint_A 1.0773191989054437e-5 +disjoint_V2 1.609865254278217e-5 +disjointedly_Adv 8.668966832532898e-6 +disjointedness_N 3.729715012475897e-6 +disjunct_A 1.0773191989054437e-5 +disjunction_N 3.729715012475897e-6 +disjunctive_A 1.0773191989054437e-5 +disk_N 2.275126157610297e-4 +diskette_N 3.729715012475897e-6 +dislikable_A 1.0773191989054437e-5 +dislike_N 1.8648575062379485e-5 +dislike_V2 9.659191525669301e-5 +dislocate_V2 1.609865254278217e-5 +dislocation_N 1.8648575062379485e-5 +dislodge_V2 1.609865254278217e-5 +dislodgement_N 3.729715012475897e-6 +dislodgment_N 3.729715012475897e-6 +disloyal_A 3.231957596716331e-5 +disloyalty_N 7.459430024951794e-6 +dismal_A 1.6159787983581657e-4 +dismantle_V2 1.4488787288503951e-4 +dismantlement_N 3.729715012475897e-6 +dismantling_N 3.729715012475897e-6 +dismay_N 1.118914503742769e-5 +dismay_V 4.5357645031069986e-5 +dismay_V2 4.8295957628346505e-5 +dismember_V2 3.219730508556434e-5 +dismemberment_N 3.729715012475897e-6 +dismiss_V2 7.083407118824154e-4 +dismissal_N 5.594572518713845e-5 +dismissible_A 1.0773191989054437e-5 +dismissive_A 1.0773191989054437e-5 +dismount_N 3.729715012475897e-6 +dismount_V 2.2678822515534993e-5 +dismount_V2 1.609865254278217e-5 +disobedience_N 5.594572518713845e-5 +disobedient_A 1.0773191989054437e-5 +disobey_V2 3.219730508556434e-5 +disoblige_V2 1.609865254278217e-5 +disobliging_A 1.0773191989054437e-5 +disorder_N 5.967544019961435e-5 +disorder_V2 1.609865254278217e-5 +disorderliness_N 3.729715012475897e-6 +disorderly_A 5.3865959945272184e-5 +disorganization_N 3.729715012475897e-6 +disorganize_V2 1.609865254278217e-5 +disorient_V2 1.609865254278217e-5 +disorientate_V2 1.609865254278217e-5 +disorientation_N 3.729715012475897e-6 +disorienting_A 1.0773191989054437e-5 +disown_V2 1.609865254278217e-5 +disownment_N 3.729715012475897e-6 +disparage_V2 6.439461017112868e-5 +disparagement_N 3.729715012475897e-6 +disparagingly_Adv 8.668966832532898e-6 +disparate_A 4.309276795621775e-5 +disparateness_N 3.729715012475897e-6 +disparity_N 1.118914503742769e-5 +dispassion_N 3.729715012475897e-6 +dispassionate_A 1.0773191989054437e-5 +dispassionateness_N 3.729715012475897e-6 +dispatch_N 7.459430024951794e-6 +dispatch_V2 1.9318383051338602e-4 +dispatch_V2V 1.402524544179523e-3 +dispatch_box_N 3.729715012475897e-6 +dispatch_rider_N 3.729715012475897e-6 +dispatcher_N 3.729715012475897e-6 +dispel_V2 1.1269056779947518e-4 +dispensability_N 3.729715012475897e-6 +dispensable_A 1.0773191989054437e-5 +dispensary_N 3.729715012475897e-6 +dispensation_N 7.459430024951794e-6 +dispense_V 6.803646754660499e-5 +dispense_V2 4.8295957628346505e-5 +dispenser_N 3.729715012475897e-6 +dispersal_N 3.729715012475897e-6 +disperse_V 4.5357645031069986e-5 +disperse_V2 3.219730508556434e-5 +dispersion_N 3.729715012475897e-6 +dispirit_V2 1.609865254278217e-5 +dispiritedly_Adv 8.668966832532898e-6 +displace_V2 8.049326271391085e-5 +displacement_N 3.729715012475897e-6 +display_N 1.4172917047408407e-4 +display_V2 4.3466361865511857e-4 +display_VS 1.1552012938254491e-4 +displease_V2 4.8295957628346505e-5 +displeasing_A 1.0773191989054437e-5 +displeasure_N 3.729715012475897e-6 +disport_V2 1.609865254278217e-5 +disposable_A 1.2927830386865325e-4 +disposable_N 3.729715012475897e-6 +disposal_N 6.340515521209024e-5 +dispose_V 3.175035152174899e-4 +dispose_V2 1.609865254278217e-5 +disposition_N 1.8648575062379485e-5 +dispossess_V2 1.609865254278217e-5 +dispossession_N 3.729715012475897e-6 +disproof_N 3.729715012475897e-6 +disproportion_N 3.729715012475897e-6 +disproportionate_A 1.508246878467621e-4 +disprove_V2 1.609865254278217e-5 +disprove_VS 1.1552012938254491e-4 +disputable_A 1.0773191989054437e-5 +disputant_N 3.729715012475897e-6 +disputation_N 3.729715012475897e-6 +disputatious_A 1.0773191989054437e-5 +dispute_N 3.2448520608540304e-4 +dispute_V 1.1339411257767497e-4 +dispute_V2 3.058743983128612e-4 +disqualification_N 7.459430024951794e-6 +disqualify_V2 4.8295957628346505e-5 +disquiet_N 3.729715012475897e-6 +disquiet_V2 1.609865254278217e-5 +disquieting_A 2.1546383978108874e-5 +disquietude_N 3.729715012475897e-6 +disquisition_N 3.729715012475897e-6 +disregard_N 7.459430024951794e-6 +disregard_V2 6.439461017112868e-5 +disrepair_N 3.729715012475897e-6 +disreputable_A 1.0773191989054437e-5 +disrepute_N 3.729715012475897e-6 +disrespect_N 3.729715012475897e-6 +disrespectful_A 1.0773191989054437e-5 +disrobe_V 2.2678822515534993e-5 +disrobe_V2 1.609865254278217e-5 +disrupt_V 6.803646754660499e-5 +disrupt_V2 3.3807170339842556e-4 +disruption_N 8.205373027446973e-5 +disruptive_A 5.3865959945272184e-5 +dissatisfaction_N 1.118914503742769e-5 +dissatisfy_V2 8.049326271391085e-5 +dissect_V2 4.8295957628346505e-5 +dissection_N 7.459430024951794e-6 +dissemble_V 2.2678822515534993e-5 +dissemble_V2 1.609865254278217e-5 +dissembler_N 3.729715012475897e-6 +disseminate_V 6.803646754660499e-5 +disseminate_V2 4.8295957628346505e-5 +dissemination_N 2.237829007485538e-5 +dissension_N 7.459430024951794e-6 +dissent_N 5.2216010174662554e-5 +dissent_V 9.071529006213997e-5 +dissenter_N 3.356743511228307e-5 +dissentient_A 1.0773191989054437e-5 +dissentious_A 1.0773191989054437e-5 +dissertation_N 3.729715012475897e-6 +disservice_N 1.118914503742769e-5 +dissever_V2 1.609865254278217e-5 +dissidence_N 3.729715012475897e-6 +dissident_A 1.4005149585770768e-4 +dissident_N 3.729715012475897e-5 +dissilience_N 3.729715012475897e-6 +dissilient_A 1.0773191989054437e-5 +dissimilar_A 2.1546383978108874e-5 +dissimilarity_N 3.729715012475897e-6 +dissimilation_N 3.729715012475897e-6 +dissimilitude_N 3.729715012475897e-6 +dissimulate_V 2.2678822515534993e-5 +dissimulate_V2 1.609865254278217e-5 +dissimulation_N 3.729715012475897e-6 +dissimulative_A 1.0773191989054437e-5 +dissipate_V 6.803646754660499e-5 +dissipate_V2 1.609865254278217e-5 +dissipation_N 3.729715012475897e-6 +dissociable_A 1.0773191989054437e-5 +dissociate_V2 3.219730508556434e-5 +dissociation_N 3.729715012475897e-6 +dissociative_A 1.0773191989054437e-5 +dissolubility_N 3.729715012475897e-6 +dissoluble_A 1.0773191989054437e-5 +dissolute_A 1.0773191989054437e-5 +dissoluteness_N 3.729715012475897e-6 +dissolution_N 1.118914503742769e-5 +dissolvable_A 1.0773191989054437e-5 +dissolve_N 3.729715012475897e-6 +dissolve_V 9.071529006213997e-5 +dissolve_V2 1.1269056779947518e-4 +dissolving_N 3.729715012475897e-6 +dissonance_N 7.459430024951794e-6 +dissonant_A 1.0773191989054437e-5 +dissuade_V2 3.219730508556434e-5 +dissuasion_N 3.729715012475897e-6 +dissuasive_A 1.0773191989054437e-5 +dissyllable_N 3.729715012475897e-6 +distaff_N 3.729715012475897e-6 +distal_A 1.0773191989054437e-5 +distance_N 7.459430024951794e-5 +distance_V2 9.659191525669301e-5 +distant_A 1.1850511187959881e-4 +distaste_N 7.459430024951794e-6 +distasteful_A 3.231957596716331e-5 +distastefulness_N 3.729715012475897e-6 +distemper_N 3.729715012475897e-6 +distemper_V2 1.609865254278217e-5 +distend_V 2.2678822515534993e-5 +distend_V2 1.609865254278217e-5 +distensible_A 1.0773191989054437e-5 +distension_N 3.729715012475897e-6 +distention_N 3.729715012475897e-6 +distil_V 2.2678822515534993e-5 +distil_V2 9.659191525669301e-5 +distillate_N 3.729715012475897e-6 +distillation_N 3.729715012475897e-6 +distiller_N 2.237829007485538e-5 +distillery_N 7.459430024951794e-6 +distinct_A 1.0773191989054437e-4 +distinction_N 3.356743511228307e-5 +distinctive_A 1.4005149585770768e-4 +distinctiveness_N 7.459430024951794e-6 +distinctness_N 3.729715012475897e-6 +distinguish_V 1.1339411257767497e-4 +distinguish_V2 1.609865254278217e-4 +distinguishable_A 1.0773191989054437e-5 +distort_V2 1.2878922034225736e-4 +distortable_A 1.0773191989054437e-5 +distortion_N 1.118914503742769e-5 +distortionist_N 3.729715012475897e-6 +distract_V 1.1339411257767497e-4 +distract_V2 1.1269056779947518e-4 +distractedly_Adv 8.668966832532898e-6 +distraction_N 1.8648575062379485e-5 +distrain_V 2.2678822515534993e-5 +distraint_N 3.729715012475897e-6 +distrait_A 1.0773191989054437e-5 +distraught_A 1.0773191989054437e-5 +distress_N 2.237829007485538e-5 +distress_V2 1.1269056779947518e-4 +distressful_A 2.1546383978108874e-5 +distressing_A 4.309276795621775e-5 +distributary_N 3.729715012475897e-6 +distribute_V2 1.0303137627380588e-3 +distribution_N 2.5735033586083686e-4 +distributional_A 1.0773191989054437e-5 +distributive_A 1.0773191989054437e-5 +distributor_N 1.2308059541170458e-4 +district_N 4.7367380658443886e-4 +distrust_N 7.459430024951794e-6 +distrust_V2 1.609865254278217e-5 +distrustful_A 1.0773191989054437e-5 +distrustfulness_N 3.729715012475897e-6 +disturb_V2 1.9318383051338602e-4 +disturbance_N 1.4918860049903587e-5 +disturber_N 3.729715012475897e-6 +disturbingly_Adv 8.668966832532898e-6 +disulfiram_N 3.729715012475897e-6 +disunion_N 3.729715012475897e-6 +disunite_V 2.2678822515534993e-5 +disunite_V2 1.609865254278217e-5 +disunity_N 3.729715012475897e-6 +disuse_N 3.729715012475897e-6 +disused_A 1.0773191989054437e-5 +disyllabic_A 1.0773191989054437e-5 +disyllable_N 3.729715012475897e-6 +dita_N 3.729715012475897e-6 +ditch_N 1.118914503742769e-5 +ditch_V 2.2678822515534993e-5 +ditch_V2 1.609865254278217e-5 +dither_N 3.729715012475897e-6 +dither_V 4.5357645031069986e-5 +dithering_N 3.729715012475897e-6 +dithyramb_N 3.729715012475897e-6 +dithyrambic_A 1.0773191989054437e-5 +ditto_N 7.459430024951794e-6 +ditty_N 3.729715012475897e-6 +diuresis_N 3.729715012475897e-6 +diurnal_A 1.0773191989054437e-5 +divagate_V 2.2678822515534993e-5 +divagation_N 3.729715012475897e-6 +divan_N 3.729715012475897e-6 +divan_bed_N 3.729715012475897e-6 +divarication_N 3.729715012475897e-6 +dive_N 4.848629516218666e-5 +dive_V 1.8143058012427994e-4 +dive_bomb_V 2.2678822515534993e-5 +dive_bomb_V2 1.609865254278217e-5 +dive_bomber_N 3.729715012475897e-6 +dive_in_V 2.2678822515534993e-5 +dive_into_V2 1.609865254278217e-5 +diver_N 7.459430024951794e-6 +diverge_V 6.803646754660499e-5 +divergence_N 2.6108005087331277e-5 +divergency_N 3.729715012475897e-6 +divergent_A 5.3865959945272184e-5 +divers_A 1.0773191989054437e-5 +diverse_A 9.695872790148993e-5 +diverseness_N 3.729715012475897e-6 +diversification_N 5.967544019961435e-5 +diversify_V 3.628611602485599e-4 +diversify_V2 3.541703559412077e-4 +diversion_N 3.356743511228307e-5 +diversionary_A 2.1546383978108874e-5 +diversionist_N 3.729715012475897e-6 +diversity_N 2.9837720099807175e-5 +divert_V 1.3607293509320997e-4 +divert_V2 2.4147978814173252e-4 +diverticulitis_N 3.729715012475897e-6 +diverticulosis_N 3.729715012475897e-6 +diverticulum_N 3.729715012475897e-6 +divertimento_N 3.729715012475897e-6 +dives_PN 1.865462821325971e-5 +divest_V2 1.9318383051338602e-4 +divestiture_N 3.729715012475897e-6 +dividable_A 1.0773191989054437e-5 +divide_N 1.118914503742769e-5 +divide_V 3.401823377330249e-4 +divide_V2 5.312555339118116e-4 +divide_up_V2 1.609865254278217e-5 +dividend_N 9.883744783061126e-4 +dividend_warrant_N 3.729715012475897e-6 +divider_N 3.729715012475897e-6 +divination_N 3.729715012475897e-6 +divinatory_A 1.0773191989054437e-5 +divine_A 1.0773191989054437e-5 +divine_N 3.729715012475897e-6 +divine_V 2.2678822515534993e-5 +divine_V2 1.609865254278217e-5 +diviner_N 3.729715012475897e-6 +diving_N 3.729715012475897e-6 +diving_bell_N 3.729715012475897e-6 +diving_board_N 3.729715012475897e-6 +diving_dress_N 3.729715012475897e-6 +diving_suit_N 3.729715012475897e-6 +divinity_N 3.729715012475897e-6 +divisibility_N 3.729715012475897e-6 +divisible_A 1.0773191989054437e-5 +division_N 9.473476131688777e-4 +divisional_A 3.231957596716331e-5 +divisor_N 3.729715012475897e-6 +divorce_N 1.8648575062379485e-5 +divorce_V2 9.659191525669301e-5 +divorcee_N 3.729715012475897e-6 +divot_N 3.729715012475897e-6 +divulge_V2 1.609865254278217e-5 +divulgence_N 3.729715012475897e-6 +divvy_N 3.729715012475897e-6 +divvy_out_V2 1.609865254278217e-5 +divvy_up_V2 1.609865254278217e-5 +dixie_N 3.729715012475897e-6 +diy_N 3.729715012475897e-6 +dizygotic_A 1.0773191989054437e-5 +dizziness_N 7.459430024951794e-6 +dizzy_A 1.0773191989054437e-5 +dizzy_V2 4.8295957628346505e-5 +dj_N 3.729715012475897e-6 +djibouti_PN 1.865462821325971e-5 +djiboutian_A 1.0773191989054437e-5 +djiboutian_N 3.729715012475897e-6 +djinn_N 3.729715012475897e-6 +djs_N 3.729715012475897e-6 +dlitt_N 3.729715012475897e-6 +dm_N 3.729715012475897e-6 +dna_N 3.729715012475897e-6 +dnepropetrovsk_PN 1.865462821325971e-5 +do_N 3.729715012475897e-6 +do_V 2.038826144146596e-2 +do_V2 8.61277911038846e-3 +do_gooder_N 3.729715012475897e-6 +dob_in_V2 1.609865254278217e-5 +dobbin_N 3.729715012475897e-6 +dobra_N 3.729715012475897e-6 +dobson_N 3.729715012475897e-6 +docent_N 3.729715012475897e-6 +docile_A 2.1546383978108874e-5 +docility_N 3.729715012475897e-6 +dock_N 7.459430024951794e-6 +dock_V 2.2678822515534993e-5 +dock_V2 1.609865254278217e-5 +dockage_N 3.729715012475897e-6 +docker_N 3.729715012475897e-6 +docket_N 1.118914503742769e-5 +docket_V2 1.609865254278217e-5 +docking_N 3.729715012475897e-6 +dockside_N 3.729715012475897e-6 +dockyard_N 3.729715012475897e-6 +doctor_N 1.8648575062379482e-4 +doctor_V2 3.219730508556434e-5 +doctoral_A 1.0773191989054437e-5 +doctorate_N 1.118914503742769e-5 +doctorfish_N 3.729715012475897e-6 +doctorspeak_N 3.729715012475897e-6 +doctrinaire_A 1.0773191989054437e-5 +doctrinaire_N 3.729715012475897e-6 +doctrinal_A 1.0773191989054437e-5 +doctrine_N 3.356743511228307e-5 +document_N 2.7599891092321637e-4 +document_V2 1.4488787288503951e-4 +documentary_A 2.1546383978108874e-5 +documentary_N 7.459430024951794e-6 +documentation_N 7.459430024951794e-6 +dodder_N 3.729715012475897e-6 +dodder_V 6.803646754660499e-5 +dodderer_N 3.729715012475897e-6 +doddery_A 1.0773191989054437e-5 +doddle_N 3.729715012475897e-6 +dodecagon_N 3.729715012475897e-6 +dodecahedron_N 3.729715012475897e-6 +dodge_N 3.729715012475897e-6 +dodge_V 6.803646754660499e-5 +dodge_V2 1.609865254278217e-5 +dodgem_N 3.729715012475897e-6 +dodger_N 3.729715012475897e-6 +dodgy_A 1.0773191989054437e-5 +dodo_N 3.729715012475897e-6 +doe_N 3.729715012475897e-6 +doer_N 7.459430024951794e-6 +doeskin_N 3.729715012475897e-6 +doff_V2 1.609865254278217e-5 +dog's_tooth_N 3.729715012475897e-6 +dog_N 8.951316029942152e-5 +dog_V2 1.4488787288503951e-4 +dog_biscuit_N 3.729715012475897e-6 +dog_cart_N 3.729715012475897e-6 +dog_collar_N 3.729715012475897e-6 +dog_eared_A 2.1546383978108874e-5 +dog_like_A 1.0773191989054437e-5 +dogbane_N 3.729715012475897e-6 +dogcart_N 3.729715012475897e-6 +doge_N 3.729715012475897e-6 +dogfight_N 3.729715012475897e-6 +dogfighter_N 3.729715012475897e-6 +dogfish_N 3.729715012475897e-6 +doggedly_Adv 8.668966832532898e-6 +doggedness_N 3.729715012475897e-6 +doggerel_N 3.729715012475897e-6 +doggie_N 3.729715012475897e-6 +dogging_A 1.0773191989054437e-5 +doggo_Adv 8.668966832532898e-6 +doggy_N 3.729715012475897e-6 +doghouse_N 3.729715012475897e-6 +dogie_N 3.729715012475897e-6 +dogleg_N 3.729715012475897e-6 +doglike_A 1.0773191989054437e-5 +dogma_N 1.118914503742769e-5 +dogmatic_A 1.0773191989054437e-5 +dogmatically_Adv 8.668966832532898e-6 +dogmatism_N 3.729715012475897e-6 +dogmatist_N 3.729715012475897e-6 +dogmatize_V 2.2678822515534993e-5 +dogmatize_V2 1.609865254278217e-5 +dogsbody_N 3.729715012475897e-6 +dogsled_N 3.729715012475897e-6 +dogtooth_N 3.729715012475897e-6 +dogtrot_N 3.729715012475897e-6 +dogwatch_N 3.729715012475897e-6 +dogwood_N 3.729715012475897e-6 +doh_N 3.729715012475897e-6 +doily_N 3.729715012475897e-6 +dol_N 3.729715012475897e-6 +dolabriform_A 1.0773191989054437e-5 +dolce_Adv 8.668966832532898e-6 +doldrums_N 3.729715012475897e-6 +dole_N 3.729715012475897e-6 +dole_V2 9.659191525669301e-5 +dole_out_V2 1.609865254278217e-5 +doleful_A 1.0773191989054437e-5 +dolefulness_N 3.729715012475897e-6 +dolichocephalic_A 1.0773191989054437e-5 +dolichocephalic_N 3.729715012475897e-6 +dolichocephaly_N 3.729715012475897e-6 +doliolum_N 3.729715012475897e-6 +doll_N 1.8648575062379485e-5 +doll_V 2.2678822515534993e-5 +doll_V2 1.609865254278217e-5 +dollar_N 2.1408564171611646e-3 +dollarfish_N 3.729715012475897e-6 +dollhouse_N 3.729715012475897e-6 +dollop_N 3.729715012475897e-6 +dolly_N 3.729715012475897e-6 +dolly_PN 1.865462821325971e-5 +dolman_N 3.729715012475897e-6 +dolmas_N 3.729715012475897e-6 +dolmen_N 3.729715012475897e-6 +dolomite_N 3.729715012475897e-6 +dolomitic_A 1.0773191989054437e-5 +dolor_N 3.729715012475897e-6 +dolorous_A 1.0773191989054437e-5 +dolour_N 3.729715012475897e-6 +dolourous_A 1.0773191989054437e-5 +dolphin_N 1.118914503742769e-5 +dolphinfish_N 3.729715012475897e-6 +dolt_N 7.459430024951794e-6 +doltish_A 1.0773191989054437e-5 +domain_N 2.237829007485538e-5 +domatium_N 3.729715012475897e-6 +dombeya_N 3.729715012475897e-6 +dome_N 1.4918860049903587e-5 +domed_A 1.0773191989054437e-5 +domesday_PN 1.865462821325971e-5 +domestic_A 2.068452861898452e-3 +domestic_N 3.729715012475897e-6 +domestically_Adv 8.6689668325329e-5 +domesticate_V2 1.609865254278217e-5 +domestication_N 3.729715012475897e-6 +domesticity_N 3.729715012475897e-6 +domicile_N 3.729715012475897e-6 +domiciliary_A 1.0773191989054437e-5 +dominance_N 4.1026865137234865e-5 +dominant_A 2.2623703177014317e-4 +dominant_N 3.729715012475897e-6 +dominate_V 2.0410940263981494e-4 +dominate_V2 6.117487966257224e-4 +domination_N 2.6108005087331277e-5 +dominatrix_N 3.729715012475897e-6 +domineer_V 4.5357645031069986e-5 +domineeringly_Adv 8.668966832532898e-6 +dominic_PN 1.865462821325971e-5 +dominica_PN 1.865462821325971e-5 +dominical_A 1.0773191989054437e-5 +dominican_A 1.0773191989054437e-5 +dominican_N 3.729715012475897e-6 +dominie_N 3.729715012475897e-6 +dominion_N 7.459430024951794e-6 +domino_N 1.118914503742769e-5 +dominoes_N 3.729715012475897e-6 +dominus_N 3.729715012475897e-6 +don't_know_N 3.729715012475897e-6 +don_N 7.459430024951794e-6 +don_PN 1.865462821325971e-5 +don_V2 8.049326271391085e-5 +donald_PN 1.865462821325971e-5 +donate_V 2.7214587018641994e-4 +donate_V2 2.575784406845147e-4 +donation_N 1.268103104241805e-4 +doncaster_PN 1.865462821325971e-5 +donegal_PN 1.865462821325971e-5 +donetsk_PN 1.865462821325971e-5 +dong_N 3.729715012475897e-6 +dongle_N 3.729715012475897e-6 +donjon_N 3.729715012475897e-6 +donkey_N 3.729715012475897e-6 +donkey_jacket_N 3.729715012475897e-6 +donkey_work_N 3.729715012475897e-6 +donna_N 3.729715012475897e-6 +donnish_A 1.0773191989054437e-5 +donor_N 2.9837720099807175e-5 +doodad_N 3.729715012475897e-6 +doodia_N 3.729715012475897e-6 +doodle_V 2.2678822515534993e-5 +doodlebug_N 3.729715012475897e-6 +doom_N 7.459430024951794e-6 +doom_V2 1.4488787288503951e-4 +doomed_N 3.729715012475897e-6 +doomsday_PN 1.865462821325971e-5 +door_N 2.610800508733128e-4 +door_to_door_A 4.309276795621775e-5 +doorbell_N 3.729715012475897e-6 +doorcase_N 3.729715012475897e-6 +doorframe_N 3.729715012475897e-6 +doorhandle_N 3.729715012475897e-6 +doorjamb_N 3.729715012475897e-6 +doorkeeper_N 3.729715012475897e-6 +doorknob_N 3.729715012475897e-6 +doorknocker_N 3.729715012475897e-6 +doorlock_N 3.729715012475897e-6 +doorman_N 7.459430024951794e-6 +doormat_N 3.729715012475897e-6 +doornail_N 3.729715012475897e-6 +doorplate_N 3.729715012475897e-6 +doorpost_N 3.729715012475897e-6 +doorsill_N 3.729715012475897e-6 +doorstep_N 2.237829007485538e-5 +doorstop_N 3.729715012475897e-6 +doorstopper_N 3.729715012475897e-6 +doorway_N 1.118914503742769e-5 +dooryard_N 3.729715012475897e-6 +dopa_N 3.729715012475897e-6 +dopamine_N 3.729715012475897e-6 +dope_N 7.459430024951794e-6 +dope_V2 1.609865254278217e-5 +dopey_A 1.0773191989054437e-5 +doppelganger_N 3.729715012475897e-6 +dora_PN 1.865462821325971e-5 +dorbeetle_N 3.729715012475897e-6 +dorchester_PN 1.865462821325971e-5 +dordrecht_PN 1.865462821325971e-5 +doreen_PN 1.865462821325971e-5 +doric_A 1.0773191989054437e-5 +doris_PN 1.865462821325971e-5 +dorking_PN 1.865462821325971e-5 +dormancy_N 3.729715012475897e-6 +dormant_A 4.309276795621775e-5 +dormer_N 3.729715012475897e-6 +dormer_window_N 3.729715012475897e-6 +dormie_A 1.0773191989054437e-5 +dormitory_N 1.118914503742769e-5 +dormouse_N 3.729715012475897e-6 +dorothy_PN 1.865462821325971e-5 +dorsal_A 1.0773191989054437e-5 +dorset_PN 1.865462821325971e-5 +dorsiflexion_N 3.729715012475897e-6 +dorsoventral_A 1.0773191989054437e-5 +dorsum_N 3.729715012475897e-6 +dortmund_PN 1.865462821325971e-5 +dory_N 3.729715012475897e-6 +dosage_N 7.459430024951794e-6 +dose_N 2.9837720099807175e-5 +dose_V2 1.609865254278217e-5 +dosemeter_N 3.729715012475897e-6 +dosimetry_N 3.729715012475897e-6 +doss_V 2.2678822515534993e-5 +doss_about_V 2.2678822515534993e-5 +doss_around_V 2.2678822515534993e-5 +doss_down_V 2.2678822515534993e-5 +doss_house_N 3.729715012475897e-6 +dossal_N 3.729715012475897e-6 +dosser_N 3.729715012475897e-6 +dossier_N 7.459430024951794e-6 +dot_N 3.729715012475897e-6 +dot_V2 6.439461017112868e-5 +dotage_N 3.729715012475897e-6 +dotard_N 3.729715012475897e-6 +dote_V 2.2678822515534993e-5 +dotterel_N 3.729715012475897e-6 +dottle_N 3.729715012475897e-6 +dotty_A 1.0773191989054437e-5 +douai_PN 1.865462821325971e-5 +double_A 2.6932979972636094e-4 +double_Adv 1.73379336650658e-4 +double_N 1.8648575062379485e-5 +double_V 1.1566199482922848e-3 +double_V2 4.990582288262473e-4 +double_as_V2 1.609865254278217e-5 +double_back_V 2.2678822515534993e-5 +double_barrelled_A 1.0773191989054437e-5 +double_bass_N 3.729715012475897e-6 +double_bedded_A 1.0773191989054437e-5 +double_breasted_A 2.1546383978108874e-5 +double_check_V2 1.609865254278217e-5 +double_cross_N 3.729715012475897e-6 +double_cross_V2 3.219730508556434e-5 +double_dealer_N 3.729715012475897e-6 +double_dealing_A 1.0773191989054437e-5 +double_dealing_N 3.729715012475897e-6 +double_decker_N 3.729715012475897e-6 +double_dutch_N 3.729715012475897e-6 +double_dyed_A 1.0773191989054437e-5 +double_edged_A 4.309276795621775e-5 +double_entry_N 3.729715012475897e-6 +double_faced_A 1.0773191989054437e-5 +double_first_N 3.729715012475897e-6 +double_jointed_A 1.0773191989054437e-5 +double_over_V 2.2678822515534993e-5 +double_park_V 2.2678822515534993e-5 +double_park_V2 1.609865254278217e-5 +double_quick_A 1.0773191989054437e-5 +double_quick_Adv 8.668966832532898e-6 +double_spacing_N 3.729715012475897e-6 +double_talk_N 3.729715012475897e-6 +double_think_N 3.729715012475897e-6 +double_up_V 2.2678822515534993e-5 +double_up_as_V2 1.609865254278217e-5 +doubler_N 3.729715012475897e-6 +doubles_N 3.729715012475897e-6 +doublespeak_N 3.729715012475897e-6 +doublet_N 3.729715012475897e-6 +doublethink_N 3.729715012475897e-6 +doubleton_N 3.729715012475897e-6 +doubletree_N 3.729715012475897e-6 +doubling_N 3.729715012475897e-6 +doubloon_N 3.729715012475897e-6 +doubt_N 2.2005318573607791e-4 +doubt_V2 1.609865254278217e-4 +doubt_VS 1.155201293825449e-3 +doubtful_A 1.0773191989054437e-4 +doubting_A 1.0773191989054437e-5 +doubtless_Adv 1.7337933665065797e-5 +douche_N 3.729715012475897e-6 +doug_PN 1.865462821325971e-5 +dough_N 3.729715012475897e-6 +doughboy_N 3.729715012475897e-6 +doughnut_N 1.118914503742769e-5 +doughty_A 1.0773191989054437e-5 +doughy_A 1.0773191989054437e-5 +douglas_PN 1.865462821325971e-5 +dour_A 1.0773191989054437e-5 +douroucouli_N 3.729715012475897e-6 +douse_V2 1.609865254278217e-5 +dove_N 1.118914503742769e-5 +dovecote_N 3.729715012475897e-6 +dover_PN 1.865462821325971e-5 +dovetail_N 3.729715012475897e-6 +dovetail_V 4.5357645031069986e-5 +dovetail_V2 1.609865254278217e-5 +dovishness_N 3.729715012475897e-6 +dowager_N 3.729715012475897e-6 +dowdiness_N 3.729715012475897e-6 +dowdy_A 4.309276795621775e-5 +dowdy_N 3.729715012475897e-6 +dowel_N 3.729715012475897e-6 +doweling_N 3.729715012475897e-6 +dower_N 3.729715012475897e-6 +dower_V2 1.609865254278217e-5 +dowerless_A 1.0773191989054437e-5 +dowitcher_N 3.729715012475897e-6 +down_A 1.0773191989054437e-5 +down_Adv 4.048407510792864e-3 +down_N 3.729715012475897e-5 +down_PN 1.865462821325971e-5 +down_Prep 1.9358379484109166e-3 +down_V2 4.8295957628346505e-5 +down_and_out_N 3.729715012475897e-6 +down_market_A 1.0773191989054437e-5 +down_to_earth_A 2.1546383978108874e-5 +downbeat_N 7.459430024951794e-6 +downbound_A 1.0773191989054437e-5 +downcast_A 1.0773191989054437e-5 +downcast_N 3.729715012475897e-6 +downdraft_N 3.729715012475897e-6 +downfall_N 1.118914503742769e-5 +downfield_A 1.0773191989054437e-5 +downfield_Adv 8.668966832532898e-6 +downgrade_N 7.459430024951794e-6 +downgrade_V2 2.4147978814173252e-4 +downhearted_A 1.0773191989054437e-5 +downheartedness_N 3.729715012475897e-6 +downhill_Adv 1.7337933665065797e-5 +downhill_N 3.729715012475897e-6 +downiness_N 3.729715012475897e-6 +downing_street_PN 1.865462821325971e-5 +downmarket_A 1.0773191989054437e-5 +downplay_V2 6.439461017112868e-5 +downpour_N 3.729715012475897e-6 +downright_A 3.231957596716331e-5 +downright_Adv 5.2013800995197394e-5 +downrightness_N 3.729715012475897e-6 +downriver_Adv 8.668966832532898e-6 +downscale_A 1.0773191989054437e-5 +downshift_N 3.729715012475897e-6 +downside_N 3.729715012475897e-6 +downsize_V2 6.439461017112868e-5 +downspin_N 3.729715012475897e-6 +downstage_A 1.0773191989054437e-5 +downstage_Adv 8.668966832532898e-6 +downstage_N 3.729715012475897e-6 +downstair_A 1.0773191989054437e-5 +downstairs_A 1.0773191989054437e-5 +downstairs_Adv 8.668966832532898e-6 +downstream_A 2.1546383978108874e-5 +downstream_Adv 8.668966832532898e-6 +downstroke_N 3.729715012475897e-6 +downswing_N 3.729715012475897e-6 +downtick_N 3.729715012475897e-6 +downtime_N 3.729715012475897e-6 +downtown_A 1.0773191989054437e-5 +downtown_Adv 8.668966832532898e-6 +downtrodden_A 2.1546383978108874e-5 +downturn_N 3.729715012475897e-6 +downward_A 2.6932979972636094e-4 +downward_Adv 1.0402760199039479e-4 +downwards_Adv 8.668966832532898e-6 +downwind_A 1.0773191989054437e-5 +downwind_Adv 8.668966832532898e-6 +downy_A 1.0773191989054437e-5 +dowry_N 3.729715012475897e-6 +dowse_N 3.729715012475897e-6 +dowse_V2 1.609865254278217e-5 +dowser_N 3.729715012475897e-6 +dowsing_N 3.729715012475897e-6 +doxazosin_N 3.729715012475897e-6 +doxepin_N 3.729715012475897e-6 +doxology_N 3.729715012475897e-6 +doxorubicin_N 3.729715012475897e-6 +doxycycline_N 3.729715012475897e-6 +doyen_N 3.729715012475897e-6 +doyenne_N 3.729715012475897e-6 +doyley_N 3.729715012475897e-6 +doyly_N 3.729715012475897e-6 +doz_N 3.729715012475897e-6 +doze_N 3.729715012475897e-6 +doze_V 2.2678822515534993e-5 +doze_off_V 2.2678822515534993e-5 +dozen_N 2.7226919591074043e-4 +dphil_N 3.729715012475897e-6 +dr_PN 1.865462821325971e-5 +drab_A 3.231957596716331e-5 +draba_N 3.729715012475897e-6 +drabness_N 3.729715012475897e-6 +dracaena_N 3.729715012475897e-6 +drachm_N 3.729715012475897e-6 +drachma_N 3.729715012475897e-6 +draconian_A 3.231957596716331e-5 +dracontium_N 3.729715012475897e-6 +draft_N 5.2216010174662554e-5 +draft_V2 2.575784406845147e-4 +draftee_N 3.729715012475897e-6 +drafter_N 3.729715012475897e-6 +drafting_N 3.729715012475897e-6 +draftsman_N 7.459430024951794e-6 +drafty_A 1.0773191989054437e-5 +drag_N 2.9837720099807175e-5 +drag_V 4.082188052796299e-4 +drag_V2 1.7708517797060386e-4 +drag_down_V 2.2678822515534993e-5 +drag_in_V 2.2678822515534993e-5 +drag_on_V 2.2678822515534993e-5 +dragee_N 3.729715012475897e-6 +draggingly_Adv 8.668966832532898e-6 +draggled_A 1.0773191989054437e-5 +dragnet_N 3.729715012475897e-6 +dragoman_N 3.729715012475897e-6 +dragon_N 3.729715012475897e-6 +dragonet_N 3.729715012475897e-6 +dragonfly_N 3.729715012475897e-6 +dragonhead_N 3.729715012475897e-6 +dragoon_N 3.729715012475897e-6 +dragoon_V2 1.609865254278217e-5 +drain_N 4.848629516218666e-5 +drain_V 9.071529006213997e-5 +drain_V2 1.2878922034225736e-4 +drainage_N 3.729715012475897e-6 +drainage_basin_N 3.729715012475897e-6 +drainboard_N 3.729715012475897e-6 +draining_board_N 3.729715012475897e-6 +drainpipe_N 3.729715012475897e-6 +drainplug_N 3.729715012475897e-6 +drake_N 3.729715012475897e-6 +dram_N 1.8648575062379485e-5 +drama_N 6.713487022456614e-5 +dramatic_A 3.770617196169053e-4 +dramatically_Adv 1.0402760199039479e-4 +dramatics_N 3.729715012475897e-6 +dramatist_N 3.729715012475897e-6 +dramatization_N 2.237829007485538e-5 +dramatize_V2 1.609865254278217e-5 +dramaturgic_A 1.0773191989054437e-5 +dramaturgy_N 3.729715012475897e-6 +drape_N 1.4918860049903587e-5 +drape_V2 3.219730508556434e-5 +draper_N 3.729715012475897e-6 +drapery_N 3.729715012475897e-6 +drastic_A 7.541234392338106e-5 +drastically_Adv 7.802070149279609e-5 +drat_V2 1.609865254278217e-5 +draught_N 3.729715012475897e-6 +draught_V2 1.609865254278217e-5 +draught_horse_N 3.729715012475897e-6 +draughts_N 3.729715012475897e-6 +draughtsman_N 3.729715012475897e-6 +draughty_A 1.0773191989054437e-5 +draw_N 1.4918860049903587e-5 +draw_V 7.030434979815848e-4 +draw_V2 1.0625110678236232e-3 +draw_V2V 9.350163627863488e-4 +draw_back_V2 1.609865254278217e-5 +draw_down_V2 3.219730508556434e-5 +draw_even_V 2.2678822515534993e-5 +draw_in_V 2.2678822515534993e-5 +draw_into_V2 1.609865254278217e-5 +draw_off_V 2.2678822515534993e-5 +draw_on_V 2.2678822515534993e-5 +draw_on_V2 1.609865254278217e-5 +draw_out_V2 1.609865254278217e-5 +draw_up_V 2.2678822515534993e-5 +draw_up_V2 1.609865254278217e-5 +drawback_N 2.6108005087331277e-5 +drawbar_N 3.729715012475897e-6 +drawbridge_N 3.729715012475897e-6 +drawee_N 3.729715012475897e-6 +drawer_N 7.459430024951794e-6 +drawers_N 3.729715012475897e-6 +drawing_N 5.594572518713845e-5 +drawing_board_N 3.729715012475897e-6 +drawing_pin_N 3.729715012475897e-6 +drawing_room_N 3.729715012475897e-6 +drawknife_N 3.729715012475897e-6 +drawl_N 7.459430024951794e-6 +drawl_V 2.2678822515534993e-5 +drawl_V2 1.609865254278217e-5 +drawler_N 3.729715012475897e-6 +drawnwork_N 3.729715012475897e-6 +drawstring_N 3.729715012475897e-6 +dray_N 3.729715012475897e-6 +drayton_PN 1.865462821325971e-5 +dread_N 7.459430024951794e-6 +dread_V 4.5357645031069986e-5 +dread_V2 4.8295957628346505e-5 +dreadful_A 3.231957596716331e-5 +dreadfulness_N 3.729715012475897e-6 +dreadlock_N 3.729715012475897e-6 +dreadnought_N 3.729715012475897e-6 +dream_N 8.951316029942152e-5 +dream_V 2.2678822515534994e-4 +dream_V2 1.609865254278217e-5 +dream_of_V2 1.609865254278217e-5 +dream_up_V2 1.609865254278217e-5 +dreamer_N 3.729715012475897e-6 +dreamland_N 3.729715012475897e-6 +dreamless_A 1.0773191989054437e-5 +dreamlike_A 1.0773191989054437e-5 +dreamworld_N 3.729715012475897e-6 +dreamy_A 2.1546383978108874e-5 +drear_A 1.0773191989054437e-5 +dreariness_N 3.729715012475897e-6 +dreary_A 2.1546383978108874e-5 +dredge_N 3.729715012475897e-6 +dredge_V 2.2678822515534993e-5 +dredge_V2 1.609865254278217e-5 +dredge_up_V2 1.609865254278217e-5 +dredger_N 3.729715012475897e-6 +dreg_N 3.729715012475897e-6 +dregs_N 3.729715012475897e-6 +drench_V2 1.609865254278217e-5 +drenching_N 7.459430024951794e-6 +dresden_PN 1.865462821325971e-5 +dress_A 1.0773191989054437e-5 +dress_N 4.475658014971076e-5 +dress_V 3.401823377330249e-4 +dress_V2 3.219730508556434e-5 +dress_down_V 2.2678822515534993e-5 +dress_down_V2 1.609865254278217e-5 +dress_hanger_N 3.729715012475897e-6 +dress_up_V 2.2678822515534993e-5 +dress_up_V2 1.609865254278217e-5 +dressage_N 3.729715012475897e-6 +dresser_N 3.729715012475897e-6 +dressing_N 3.729715012475897e-6 +dressing_case_N 3.729715012475897e-6 +dressing_down_N 3.729715012475897e-6 +dressing_gown_N 3.729715012475897e-6 +dressing_table_N 3.729715012475897e-6 +dressmaker_N 3.729715012475897e-6 +dressmaking_N 1.118914503742769e-5 +dressy_A 1.0773191989054437e-5 +drey_N 3.729715012475897e-6 +dribble_N 3.729715012475897e-6 +dribble_V 2.2678822515534993e-5 +dribble_V2 1.609865254278217e-5 +dribbler_N 3.729715012475897e-6 +driblet_N 3.729715012475897e-6 +drier_N 3.729715012475897e-6 +driffield_PN 1.865462821325971e-5 +drift_N 1.8648575062379485e-5 +drift_V 3.175035152174899e-4 +drift_V2 3.219730508556434e-5 +drift_apart_V 4.5357645031069986e-5 +drift_ice_N 3.729715012475897e-6 +drift_net_N 3.729715012475897e-6 +drift_off_V 2.2678822515534993e-5 +drift_wood_N 3.729715012475897e-6 +driftage_N 3.729715012475897e-6 +drifter_N 3.729715012475897e-6 +driftfish_N 3.729715012475897e-6 +drifting_N 3.729715012475897e-6 +driftwood_N 3.729715012475897e-6 +drill_N 2.6108005087331277e-5 +drill_V 5.669705628883749e-4 +drill_V2 1.609865254278217e-4 +drill_down_V 2.2678822515534993e-5 +drill_down_through_V2 1.609865254278217e-5 +drill_into_V3 1.5873015873015873e-3 +drilling_N 3.729715012475897e-6 +drink_N 7.086458523704203e-5 +drink_V 1.8143058012427994e-4 +drink_V2 1.9318383051338602e-4 +drink_up_V2 1.609865254278217e-5 +drinkable_A 1.0773191989054437e-5 +drinker_N 1.4918860049903587e-5 +drinking_N 4.475658014971076e-5 +drinking_bout_N 3.729715012475897e-6 +drinking_fountain_N 3.729715012475897e-6 +drinking_song_N 3.729715012475897e-6 +drinking_water_N 3.729715012475897e-6 +drip_N 3.729715012475897e-6 +drip_V 4.5357645031069986e-5 +drip_V2 1.609865254278217e-5 +drip_dry_A 1.0773191989054437e-5 +drip_dry_V2 1.609865254278217e-5 +dripless_A 1.0773191989054437e-5 +drippiness_N 3.729715012475897e-6 +dripping_N 3.729715012475897e-6 +dripping_pan_N 3.729715012475897e-6 +drippings_N 3.729715012475897e-6 +drippy_A 1.0773191989054437e-5 +dripstone_N 3.729715012475897e-6 +drive_N 3.5805264119768607e-4 +drive_V 1.4287658184787045e-3 +drive_V2 7.566366695107619e-4 +drive_V2V 1.402524544179523e-3 +drive_VS 3.4656038814763474e-4 +drive_away_V2 1.609865254278217e-5 +drive_back_V2 1.609865254278217e-5 +drive_by_V 2.2678822515534993e-5 +drive_down_V 2.2678822515534993e-5 +drive_in_N 3.729715012475897e-6 +drive_off_V 2.2678822515534993e-5 +drive_out_V2 3.219730508556434e-5 +drive_up_V 2.2678822515534993e-5 +drive_up_V2 1.609865254278217e-5 +drivel_N 3.729715012475897e-6 +drivel_V 2.2678822515534993e-5 +driveller_N 3.729715012475897e-6 +driver_N 1.08161735361801e-4 +driveshaft_N 3.729715012475897e-6 +driveway_N 3.729715012475897e-6 +driving_N 3.729715012475897e-6 +driving_belt_N 3.729715012475897e-6 +driving_wheel_N 3.729715012475897e-6 +drizzle_N 3.729715012475897e-6 +drizzle_V 2.2678822515534993e-5 +drizzly_A 1.0773191989054437e-5 +drogheda_PN 1.865462821325971e-5 +drogue_N 3.729715012475897e-6 +droitwich_PN 1.865462821325971e-5 +droll_A 1.0773191989054437e-5 +drollery_N 3.729715012475897e-6 +dromaeosaur_N 3.729715012475897e-6 +dromedary_N 3.729715012475897e-6 +dronabinol_N 3.729715012475897e-6 +drone_N 3.729715012475897e-6 +drone_V 2.2678822515534993e-5 +drone_V2 1.609865254278217e-5 +drone_on_V 2.2678822515534993e-5 +dronfield_PN 1.865462821325971e-5 +drool_N 3.729715012475897e-6 +drool_V 6.803646754660499e-5 +droop_N 3.729715012475897e-6 +droop_V 2.2678822515534993e-5 +droop_V2 1.609865254278217e-5 +droopingly_Adv 8.668966832532898e-6 +drop_N 9.548070431938296e-4 +drop_V 3.628611602485599e-3 +drop_V2 3.04264533058583e-3 +drop_around_V 2.2678822515534993e-5 +drop_around_V2 1.609865254278217e-5 +drop_away_V 2.2678822515534993e-5 +drop_back_V 2.2678822515534993e-5 +drop_by_V 2.2678822515534993e-5 +drop_curtain_N 3.729715012475897e-6 +drop_in_V 2.2678822515534993e-5 +drop_in_on_V2 1.609865254278217e-5 +drop_kick_N 3.729715012475897e-6 +drop_off_V 2.2678822515534993e-5 +drop_off_V2 1.609865254278217e-5 +drop_out_V 2.2678822515534993e-5 +drop_out_of_V2 1.609865254278217e-5 +drop_over_V 2.2678822515534993e-5 +drop_round_V 2.2678822515534993e-5 +drop_round_V2 1.609865254278217e-5 +drop_someone_in_it_V2 1.609865254278217e-5 +drop_through_V 2.2678822515534993e-5 +dropkick_N 3.729715012475897e-6 +dropkicker_N 3.729715012475897e-6 +droplet_N 3.729715012475897e-6 +dropline_N 3.729715012475897e-6 +dropout_N 1.8648575062379485e-5 +dropper_N 3.729715012475897e-6 +dropping_zone_N 3.729715012475897e-6 +droppings_N 3.729715012475897e-6 +dropseed_N 3.729715012475897e-6 +dropsical_A 1.0773191989054437e-5 +dropsy_N 3.729715012475897e-6 +droshky_N 3.729715012475897e-6 +drosophila_N 3.729715012475897e-6 +dross_N 3.729715012475897e-6 +drought_N 8.578344528694562e-5 +drove_N 1.118914503742769e-5 +drover_N 3.729715012475897e-6 +drown_V 9.071529006213997e-5 +drown_V2 4.8295957628346505e-5 +drown_in_V2 1.609865254278217e-5 +drown_out_V2 1.609865254278217e-5 +drowse_N 3.729715012475897e-6 +drowse_V 2.2678822515534993e-5 +drowse_V2 1.609865254278217e-5 +drowsiness_N 3.729715012475897e-6 +drowsy_A 1.0773191989054437e-5 +drub_V2 1.609865254278217e-5 +drubbing_N 7.459430024951794e-6 +drudge_N 3.729715012475897e-6 +drudge_V 2.2678822515534993e-5 +drudgery_N 3.729715012475897e-6 +drug_N 1.0555093485306788e-3 +drug_V2 1.609865254278217e-5 +drugget_N 3.729715012475897e-6 +druggist_N 3.729715012475897e-6 +drugless_A 1.0773191989054437e-5 +drugstore_N 3.356743511228307e-5 +druid_N 3.729715012475897e-6 +druidism_N 3.729715012475897e-6 +drum_N 7.459430024951794e-6 +drum_V 1.8143058012427994e-4 +drum_V2 1.609865254278217e-5 +drum_into_V2 1.609865254278217e-5 +drum_major_N 3.729715012475897e-6 +drum_majorette_N 3.729715012475897e-6 +drum_out_V2 1.609865254278217e-5 +drum_up_V2 1.609865254278217e-5 +drumbeat_N 3.729715012475897e-6 +drumfire_N 3.729715012475897e-6 +drumhead_A 1.0773191989054437e-5 +drumhead_N 3.729715012475897e-6 +drumlin_N 3.729715012475897e-6 +drummer_N 1.118914503742769e-5 +drumming_N 3.729715012475897e-6 +drumstick_N 3.729715012475897e-6 +drunk_A 3.231957596716331e-5 +drunk_N 7.459430024951794e-6 +drunkard_N 3.729715012475897e-6 +drunken_A 1.0773191989054437e-5 +drunkenness_N 1.118914503742769e-5 +drupaceous_A 1.0773191989054437e-5 +drupe_N 3.729715012475897e-6 +drupelet_N 3.729715012475897e-6 +drusen_N 3.729715012475897e-6 +dry_A 1.6159787983581657e-4 +dry_N 3.729715012475897e-6 +dry_V 2.4946704767088494e-4 +dry_V2 1.609865254278217e-5 +dry_clean_V2 1.609865254278217e-5 +dry_cleaner_N 3.729715012475897e-6 +dry_cleaning_N 3.729715012475897e-6 +dry_off_V2 1.609865254278217e-5 +dry_out_V 2.2678822515534993e-5 +dry_out_V2 1.609865254278217e-5 +dry_shod_A 1.0773191989054437e-5 +dry_up_V 4.5357645031069986e-5 +dry_up_V2 1.609865254278217e-5 +dry_walling_N 3.729715012475897e-6 +dryad_N 3.729715012475897e-6 +dryer_N 3.729715012475897e-6 +drygoods_N 3.729715012475897e-6 +dryness_N 7.459430024951794e-6 +dryopithecine_N 3.729715012475897e-6 +drypis_N 3.729715012475897e-6 +dsc_N 3.729715012475897e-6 +dscdna_N 3.729715012475897e-6 +dss_N 3.729715012475897e-6 +dti_N 3.729715012475897e-6 +dual_A 2.47783415748252e-4 +dualism_N 3.729715012475897e-6 +dualist_N 3.729715012475897e-6 +dualistic_A 1.0773191989054437e-5 +duality_N 3.729715012475897e-6 +dub_N 3.729715012475897e-6 +dub_V2 9.659191525669301e-5 +dub_V3 2.3809523809523808e-2 +dubbin_N 3.729715012475897e-6 +dubbing_N 3.729715012475897e-6 +dubiety_N 3.729715012475897e-6 +dubious_A 1.1850511187959881e-4 +dubiousness_N 3.729715012475897e-6 +dublin_PN 1.865462821325971e-5 +dubliner_N 3.729715012475897e-6 +dubnium_N 3.729715012475897e-6 +ducal_A 1.0773191989054437e-5 +ducat_N 3.729715012475897e-6 +duce_N 3.729715012475897e-6 +duchess_N 3.729715012475897e-6 +duchy_N 3.729715012475897e-6 +duck_N 5.594572518713845e-5 +duck_V 6.803646754660499e-5 +duck_V2 1.609865254278217e-5 +duck_out_of_V2 3.219730508556434e-5 +duckbill_A 1.0773191989054437e-5 +duckbilled_A 1.0773191989054437e-5 +duckboard_N 3.729715012475897e-6 +ducking_N 3.729715012475897e-6 +ducking_stool_N 3.729715012475897e-6 +duckling_N 7.459430024951794e-6 +duckpin_N 3.729715012475897e-6 +duckpins_N 3.729715012475897e-6 +duckweed_N 3.729715012475897e-6 +ducky_N 3.729715012475897e-6 +duct_N 7.459430024951794e-6 +ductile_A 1.0773191989054437e-5 +ductility_N 3.729715012475897e-6 +ductless_A 1.0773191989054437e-5 +ductule_N 3.729715012475897e-6 +dud_A 1.0773191989054437e-5 +dud_N 7.459430024951794e-6 +dude_N 3.729715012475897e-6 +dudeen_N 3.729715012475897e-6 +dudgeon_N 7.459430024951794e-6 +dudley_PN 1.865462821325971e-5 +due_A 4.061493379873523e-3 +due_Adv 2.5140003814345404e-4 +due_N 3.356743511228307e-5 +due_to_Prep 9.978546125829467e-6 +duel_N 1.4918860049903587e-5 +duel_V 2.2678822515534993e-5 +dueler_N 3.729715012475897e-6 +duelist_N 3.729715012475897e-6 +duellist_N 3.729715012475897e-6 +duenna_N 3.729715012475897e-6 +duet_N 7.459430024951794e-6 +duff_N 3.729715012475897e-6 +duff_up_V2 1.609865254278217e-5 +duffel_N 3.729715012475897e-6 +duffer_N 7.459430024951794e-6 +duffle_N 3.729715012475897e-6 +dug_N 3.729715012475897e-6 +dug_out_V 2.2678822515534993e-5 +dugong_N 3.729715012475897e-6 +dugout_N 3.729715012475897e-6 +duisburg_PN 1.865462821325971e-5 +duke_N 7.459430024951794e-6 +dukedom_N 3.729715012475897e-6 +dukinfield_PN 1.865462821325971e-5 +dulcet_A 1.0773191989054437e-5 +dulciana_N 3.729715012475897e-6 +dulcimer_N 3.729715012475897e-6 +dull_A 8.61855359124355e-5 +dull_V 2.2678822515534993e-5 +dull_V2 4.8295957628346505e-5 +dullard_N 3.729715012475897e-6 +dullness_N 7.459430024951794e-6 +dulse_N 3.729715012475897e-6 +duly_AdV 3.897875657766517e-4 +dumb_A 8.61855359124355e-5 +dumb_down_V2 1.609865254278217e-5 +dumbarton_PN 1.865462821325971e-5 +dumbbell_N 3.729715012475897e-6 +dumbfound_V2 3.219730508556434e-5 +dumbness_N 3.729715012475897e-6 +dumbwaiter_N 3.729715012475897e-6 +dumdum_N 3.729715012475897e-6 +dumfries_PN 1.865462821325971e-5 +dummy_A 1.0773191989054437e-5 +dummy_N 1.118914503742769e-5 +dump_N 1.4918860049903587e-5 +dump_V 2.7214587018641994e-4 +dump_V2 6.439461017112868e-4 +dump_on_V2 1.609865254278217e-5 +dumpcart_N 3.729715012475897e-6 +dumper_N 3.729715012475897e-6 +dumpiness_N 3.729715012475897e-6 +dumping_N 3.729715012475897e-6 +dumpling_N 3.729715012475897e-6 +dumps_N 3.729715012475897e-6 +dumpy_A 1.0773191989054437e-5 +dun_A 1.0773191989054437e-5 +dun_N 3.729715012475897e-6 +dun_V2 1.609865254278217e-5 +dun_laoghaire_PN 1.865462821325971e-5 +duncan_PN 1.865462821325971e-5 +dunce_N 3.729715012475897e-6 +dundalk_PN 1.865462821325971e-5 +dundee_PN 1.865462821325971e-5 +dunderhead_N 3.729715012475897e-6 +dune_N 2.9837720099807175e-5 +dunfermline_PN 1.865462821325971e-5 +dung_N 7.459430024951794e-6 +dungeon_N 3.729715012475897e-6 +dunghill_N 3.729715012475897e-6 +dunk_N 3.729715012475897e-6 +dunk_V2 1.609865254278217e-5 +dunker_N 3.729715012475897e-6 +dunkirk_PN 1.865462821325971e-5 +dunoon_PN 1.865462821325971e-5 +dunstable_PN 1.865462821325971e-5 +duodecimal_A 1.0773191989054437e-5 +duodenal_A 2.1546383978108874e-5 +duodenum_N 3.729715012475897e-6 +duologue_N 3.729715012475897e-6 +dupe_N 3.729715012475897e-6 +dupe_V2 3.219730508556434e-5 +dupl_PN 1.865462821325971e-5 +duplex_A 1.0773191989054437e-5 +duplicable_A 1.0773191989054437e-5 +duplicate_A 1.0773191989054437e-5 +duplicate_N 3.729715012475897e-6 +duplicate_V2 9.659191525669301e-5 +duplication_N 7.459430024951794e-6 +duplicator_N 3.729715012475897e-6 +duplicity_N 1.118914503742769e-5 +durability_N 7.459430024951794e-6 +durable_A 2.8010299171541536e-4 +durable_N 2.6108005087331277e-5 +durables_N 3.729715012475897e-6 +dural_A 1.0773191989054437e-5 +durance_N 3.729715012475897e-6 +duration_N 1.4918860049903587e-5 +durative_N 3.729715012475897e-6 +durban_PN 1.865462821325971e-5 +durbar_N 3.729715012475897e-6 +duress_N 3.729715012475897e-6 +durham_PN 1.865462821325971e-5 +durian_N 3.729715012475897e-6 +during_Prep 5.558050192087013e-3 +durmast_N 3.729715012475897e-6 +durra_N 3.729715012475897e-6 +durrington_PN 1.865462821325971e-5 +dursley_PN 1.865462821325971e-5 +durum_N 3.729715012475897e-6 +dusk_N 1.4918860049903587e-5 +dusky_A 1.0773191989054437e-5 +dusseldorf_PN 1.865462821325971e-5 +dust_N 3.729715012475897e-5 +dust_V2 4.8295957628346505e-5 +dust_bowl_N 3.729715012475897e-6 +dust_coat_N 3.729715012475897e-6 +dust_jacket_N 3.729715012475897e-6 +dust_off_V 2.2678822515534993e-5 +dust_sheet_N 3.729715012475897e-6 +dust_up_N 3.729715012475897e-6 +dust_wrapper_N 3.729715012475897e-6 +dustbin_N 7.459430024951794e-6 +dustcart_N 3.729715012475897e-6 +dustcloth_N 3.729715012475897e-6 +duster_N 3.729715012475897e-6 +dustiness_N 3.729715012475897e-6 +dustlike_A 1.0773191989054437e-5 +dustman_N 3.729715012475897e-6 +dustmop_N 3.729715012475897e-6 +dustpan_N 3.729715012475897e-6 +dusty_A 6.463915193432663e-5 +dutch_A 2.8010299171541536e-4 +dutch_N 7.459430024951794e-6 +dutchman_N 3.729715012475897e-6 +duteous_A 1.0773191989054437e-5 +dutiable_A 1.0773191989054437e-5 +dutiful_A 4.309276795621775e-5 +dutifulness_N 3.729715012475897e-6 +duty_N 2.16323470723602e-4 +duty_free_A 1.1850511187959881e-4 +duvet_N 3.729715012475897e-6 +dwarf_N 1.118914503742769e-5 +dwarf_V2 9.659191525669301e-5 +dwarfish_A 1.0773191989054437e-5 +dwarfishness_N 3.729715012475897e-6 +dwarfism_N 3.729715012475897e-6 +dwell_V 2.2678822515534993e-5 +dwell_on_V2 1.609865254278217e-5 +dwell_upon_V2 1.609865254278217e-5 +dweller_N 1.118914503742769e-5 +dwelling_N 2.6108005087331277e-5 +dwelling_house_N 3.729715012475897e-6 +dwindle_V 1.5875175760874494e-4 +dwindling_N 3.729715012475897e-6 +dyadic_A 1.0773191989054437e-5 +dyarchy_N 3.729715012475897e-6 +dybbuk_N 3.729715012475897e-6 +dye_N 7.459430024951794e-6 +dye_V 1.8143058012427994e-4 +dye_V2 3.219730508556434e-5 +dye_works_N 3.729715012475897e-6 +dyed_in_the_wool_A 2.1546383978108874e-5 +dyeing_N 3.729715012475897e-6 +dyer_N 3.729715012475897e-6 +dyestuff_N 3.729715012475897e-6 +dyewood_N 3.729715012475897e-6 +dyfed_PN 1.865462821325971e-5 +dyke_N 3.729715012475897e-6 +dyke_V 2.2678822515534993e-5 +dyke_V2 1.609865254278217e-5 +dynamic_A 1.0773191989054437e-4 +dynamic_N 2.237829007485538e-5 +dynamically_Adv 8.668966832532898e-6 +dynamics_N 3.729715012475897e-6 +dynamism_N 1.118914503742769e-5 +dynamite_N 7.459430024951794e-6 +dynamite_V2 1.609865254278217e-5 +dynamiter_N 3.729715012475897e-6 +dynamo_N 7.459430024951794e-6 +dynamometer_N 3.729715012475897e-6 +dynast_N 3.729715012475897e-6 +dynastic_A 1.0773191989054437e-5 +dynasty_N 7.459430024951794e-6 +dyne_N 3.729715012475897e-6 +dysaphia_N 3.729715012475897e-6 +dysarthria_N 3.729715012475897e-6 +dyscalculia_N 3.729715012475897e-6 +dyschezia_N 3.729715012475897e-6 +dyscrasia_N 3.729715012475897e-6 +dysentery_N 3.729715012475897e-6 +dysfunction_N 3.729715012475897e-6 +dysfunctional_A 1.0773191989054437e-5 +dysgenesis_N 3.729715012475897e-6 +dysgenic_A 1.0773191989054437e-5 +dysgenics_N 3.729715012475897e-6 +dysgraphia_N 3.729715012475897e-6 +dyskinesia_N 3.729715012475897e-6 +dyslectic_A 1.0773191989054437e-5 +dyslectic_N 3.729715012475897e-6 +dyslexia_N 3.729715012475897e-6 +dyslexic_A 1.0773191989054437e-5 +dyslogia_N 3.729715012475897e-6 +dyslogistic_A 1.0773191989054437e-5 +dysmenorrhea_N 3.729715012475897e-6 +dysomia_N 3.729715012475897e-6 +dysosmia_N 3.729715012475897e-6 +dyspepsia_N 3.729715012475897e-6 +dyspeptic_A 1.0773191989054437e-5 +dyspeptic_N 3.729715012475897e-6 +dysphagia_N 3.729715012475897e-6 +dysphasia_N 3.729715012475897e-6 +dysphemism_N 3.729715012475897e-6 +dysphemistic_A 1.0773191989054437e-5 +dysphonia_N 3.729715012475897e-6 +dysphoria_N 3.729715012475897e-6 +dysphoric_A 1.0773191989054437e-5 +dysplasia_N 3.729715012475897e-6 +dysplastic_A 1.0773191989054437e-5 +dyspnea_N 3.729715012475897e-6 +dysprosium_N 3.729715012475897e-6 +dysthymia_N 3.729715012475897e-6 +dystopia_N 3.729715012475897e-6 +dystopian_A 1.0773191989054437e-5 +dystrophy_N 3.729715012475897e-6 +dysuria_N 3.729715012475897e-6 +e'en_Adv 8.668966832532898e-6 +e'er_Adv 8.668966832532898e-6 +e_mail_N 2.237829007485538e-5 +each_Adv 8.668966832532898e-6 +each_Det 3.3947361302713083e-3 +eager_A 4.093812955840686e-4 +eagerness_N 2.9837720099807175e-5 +eagle_N 3.729715012475897e-6 +eagle_eyed_A 1.0773191989054437e-5 +eaglescliffe_PN 1.865462821325971e-5 +eaglet_N 3.729715012475897e-6 +ealing_PN 1.865462821325971e-5 +ear_N 3.729715012475897e-5 +ear_trumpet_N 3.729715012475897e-6 +earache_N 3.729715012475897e-6 +eardrop_N 3.729715012475897e-6 +eardrum_N 3.729715012475897e-6 +eared_A 1.0773191989054437e-5 +earflap_N 3.729715012475897e-6 +earful_N 3.729715012475897e-6 +earl_N 3.729715012475897e-6 +earl_shilton_PN 1.865462821325971e-5 +earldom_N 3.729715012475897e-6 +earless_A 1.0773191989054437e-5 +earlier_A 1.0773191989054437e-5 +earlier_Adv 8.668966832532898e-6 +earliness_N 3.729715012475897e-6 +earlobe_N 3.729715012475897e-6 +early_A 4.6216993633043536e-3 +early_Adv 1.1789794892244742e-3 +early_on_Adv 6.068276782773029e-5 +early_warning_A 1.0773191989054437e-5 +earlyish_A 1.0773191989054437e-5 +earmark_N 3.729715012475897e-6 +earmark_V2 2.2538113559895037e-4 +earmuff_N 3.729715012475897e-6 +earn_V 1.4514446409942395e-3 +earn_V2 2.0284302203905534e-3 +earn_VA 1.968503937007874e-3 +earner_N 3.729715012475897e-6 +earnest_A 3.231957596716331e-5 +earnest_N 1.4918860049903587e-5 +earnest_money_N 3.729715012475897e-6 +earnestness_N 3.729715012475897e-6 +earphone_N 3.729715012475897e-6 +earpiece_N 3.729715012475897e-6 +earplug_N 3.729715012475897e-6 +earring_N 1.118914503742769e-5 +earshot_N 3.729715012475897e-6 +earth_N 6.713487022456614e-5 +earth_V2 1.609865254278217e-5 +earth_closet_N 3.729715012475897e-6 +earthball_N 3.729715012475897e-6 +earthborn_A 1.0773191989054437e-5 +earthbound_A 1.0773191989054437e-5 +earthen_A 1.0773191989054437e-5 +earthenware_N 3.729715012475897e-6 +earthlike_A 1.0773191989054437e-5 +earthly_A 2.1546383978108874e-5 +earthnut_N 3.729715012475897e-6 +earthquake_N 9.846447632936366e-4 +earthshaking_A 1.0773191989054437e-5 +earthstar_N 3.729715012475897e-6 +earthtongue_N 3.729715012475897e-6 +earthwork_N 3.729715012475897e-6 +earthworm_N 1.118914503742769e-5 +earthy_A 2.1546383978108874e-5 +earwax_N 3.729715012475897e-6 +earwig_N 3.729715012475897e-6 +ease_N 2.237829007485538e-5 +ease_V 1.2700140608699595e-3 +ease_V2 1.2395962457942271e-3 +ease_off_V2 1.609865254278217e-5 +ease_up_V 2.2678822515534993e-5 +easel_N 3.729715012475897e-6 +easement_N 3.729715012475897e-6 +easiness_N 3.729715012475897e-6 +easing_N 3.729715012475897e-6 +easington_PN 1.865462821325971e-5 +east_A 4.309276795621775e-4 +east_Adv 3.4675867330131594e-5 +east_N 7.459430024951794e-6 +east_dereham_PN 1.865462821325971e-5 +east_grinstead_PN 1.865462821325971e-5 +east_kilbride_PN 1.865462821325971e-5 +east_retford_PN 1.865462821325971e-5 +eastbound_A 1.0773191989054437e-5 +eastbourne_PN 1.865462821325971e-5 +easter_N 3.729715012475897e-6 +easter_PN 1.865462821325971e-5 +easterly_A 1.0773191989054437e-5 +easterly_Adv 8.668966832532898e-6 +eastern_A 2.47783415748252e-4 +easterner_N 3.729715012475897e-6 +easternmost_A 1.0773191989054437e-5 +eastleigh_PN 1.865462821325971e-5 +eastside_A 1.0773191989054437e-5 +eastward_A 1.0773191989054437e-5 +eastward_Adv 1.7337933665065797e-5 +eastwards_Adv 8.668966832532898e-6 +easy_A 1.6913911422815466e-3 +easy_Adv 6.935173466026319e-5 +easy_V2V 9.350163627863488e-4 +easygoing_A 3.231957596716331e-5 +easygoingness_N 3.729715012475897e-6 +eat_V 5.442917403728399e-4 +eat_V2 2.8977574577007903e-4 +eat_away_V 2.2678822515534993e-5 +eat_away_V2 1.609865254278217e-5 +eat_in_V 2.2678822515534993e-5 +eat_into_V2 1.609865254278217e-5 +eat_out_V 2.2678822515534993e-5 +eat_up_V2 1.609865254278217e-5 +eatable_A 1.0773191989054437e-5 +eatable_N 3.729715012475897e-6 +eatage_N 3.729715012475897e-6 +eater_N 7.459430024951794e-6 +eating_N 3.729715012475897e-6 +eating_apple_N 3.729715012475897e-6 +eating_house_N 3.729715012475897e-6 +eau_de_cologne_N 3.729715012475897e-6 +eau_de_vie_N 3.729715012475897e-6 +eaves_N 3.729715012475897e-6 +eavesdrop_V 1.3607293509320997e-4 +eavesdropper_N 3.729715012475897e-6 +ebb_N 7.459430024951794e-6 +ebb_V 9.071529006213997e-5 +ebb_away_V 2.2678822515534993e-5 +ebbtide_N 3.729715012475897e-6 +ebbw_vale_PN 1.865462821325971e-5 +eblis_N 3.729715012475897e-6 +ebon_A 1.0773191989054437e-5 +ebonite_N 3.729715012475897e-6 +ebony_A 1.0773191989054437e-5 +ebony_N 3.729715012475897e-6 +ebracteate_A 1.0773191989054437e-5 +ebullience_N 3.729715012475897e-6 +ebullient_A 4.309276795621775e-5 +eburnation_N 3.729715012475897e-6 +ec_N 3.729715012475897e-6 +ecarte_N 3.729715012475897e-6 +eccentric_A 4.309276795621775e-5 +eccentric_N 7.459430024951794e-6 +eccentrically_Adv 8.668966832532898e-6 +eccentricity_N 3.729715012475897e-6 +ecchymosis_N 3.729715012475897e-6 +eccles_PN 1.865462821325971e-5 +ecclesiastic_N 3.729715012475897e-6 +ecclesiastical_A 1.0773191989054437e-5 +ecclesiasticism_N 3.729715012475897e-6 +ecclesiology_N 3.729715012475897e-6 +eccrine_A 1.0773191989054437e-5 +ecdemic_A 1.0773191989054437e-5 +echelon_N 1.118914503742769e-5 +echidna_N 3.729715012475897e-6 +echinocactus_N 3.729715012475897e-6 +echinococcosis_N 3.729715012475897e-6 +echinococcus_N 3.729715012475897e-6 +echinoderm_N 3.729715012475897e-6 +echinus_N 3.729715012475897e-6 +echo_N 7.459430024951794e-6 +echo_V 4.5357645031069986e-5 +echo_V2 2.4147978814173252e-4 +echo_sounder_N 3.729715012475897e-6 +echo_sounding_N 3.729715012475897e-6 +echocardiogram_N 3.729715012475897e-6 +echocardiograph_N 3.729715012475897e-6 +echocardiography_N 3.729715012475897e-6 +echoencephalogram_N 3.729715012475897e-6 +echoencephalograph_N 3.729715012475897e-6 +echoencephalography_N 3.729715012475897e-6 +echoic_A 1.0773191989054437e-5 +echolalia_N 3.729715012475897e-6 +echoless_A 1.0773191989054437e-5 +echolocation_N 3.729715012475897e-6 +echovirus_N 3.729715012475897e-6 +eclair_N 3.729715012475897e-6 +eclampsia_N 3.729715012475897e-6 +eclat_N 3.729715012475897e-6 +eclectic_A 3.231957596716331e-5 +eclectic_N 3.729715012475897e-6 +eclecticism_N 3.729715012475897e-6 +eclipse_N 3.729715012475897e-6 +eclipse_V2 8.049326271391085e-5 +ecliptic_N 3.729715012475897e-6 +eclogue_N 3.729715012475897e-6 +ecobabble_N 3.729715012475897e-6 +ecological_A 8.61855359124355e-5 +ecologist_N 3.729715012475897e-6 +ecology_N 3.729715012475897e-6 +econometric_A 1.0773191989054437e-5 +econometrician_N 3.729715012475897e-6 +econometrics_N 3.729715012475897e-6 +economic_A 4.546287019380972e-3 +economical_A 1.2927830386865325e-4 +economics_N 9.697259032437332e-5 +economist_N 7.906995826448901e-4 +economize_V 4.5357645031069986e-5 +economize_V2 1.609865254278217e-5 +economizer_N 3.729715012475897e-6 +economy_N 1.4620482848905516e-3 +ecosystem_N 3.729715012475897e-6 +ecoterrorism_N 3.729715012475897e-6 +ecotourism_N 3.729715012475897e-6 +ecphonesis_N 3.729715012475897e-6 +ecstasy_N 3.729715012475897e-6 +ecstatic_A 3.231957596716331e-5 +ecstatically_Adv 8.668966832532898e-6 +ectasia_N 3.729715012475897e-6 +ectoderm_N 3.729715012475897e-6 +ectodermal_A 1.0773191989054437e-5 +ectomorph_N 3.729715012475897e-6 +ectomorphic_A 1.0773191989054437e-5 +ectoparasite_N 3.729715012475897e-6 +ectopia_N 3.729715012475897e-6 +ectopic_A 1.0773191989054437e-5 +ectoplasm_N 3.729715012475897e-6 +ectoproct_N 3.729715012475897e-6 +ectrodactyly_N 3.729715012475897e-6 +ecuador_PN 1.865462821325971e-5 +ecuadorian_A 1.0773191989054437e-5 +ecuadorian_N 3.729715012475897e-6 +ecumenic_A 1.0773191989054437e-5 +ecumenical_A 1.0773191989054437e-5 +ecumenism_N 3.729715012475897e-6 +eczema_N 3.729715012475897e-6 +ed_PN 1.865462821325971e-5 +edacious_A 1.0773191989054437e-5 +edacity_N 3.729715012475897e-6 +edaphosaurus_N 3.729715012475897e-6 +eddie_PN 1.865462821325971e-5 +eddy_N 3.729715012475897e-6 +eddy_PN 1.865462821325971e-5 +eddy_V 2.2678822515534993e-5 +edelweiss_N 3.729715012475897e-6 +edema_N 3.729715012475897e-6 +edematous_A 1.0773191989054437e-5 +eden_PN 1.865462821325971e-5 +edenbridge_PN 1.865462821325971e-5 +edental_A 1.0773191989054437e-5 +edentate_N 3.729715012475897e-6 +edentulous_A 1.0773191989054437e-5 +edgar_PN 1.865462821325971e-5 +edge_N 9.697259032437332e-5 +edge_V 7.257223204971198e-4 +edge_V2 1.609865254278217e-5 +edge_out_V2 1.609865254278217e-5 +edge_up_V 2.2678822515534993e-5 +edgeless_A 1.0773191989054437e-5 +edger_N 3.729715012475897e-6 +edgeways_Adv 8.668966832532898e-6 +edgewise_Adv 8.668966832532898e-6 +edginess_N 3.729715012475897e-6 +edging_N 3.729715012475897e-6 +edgy_A 4.309276795621775e-5 +edibility_N 3.729715012475897e-6 +edible_A 5.3865959945272184e-5 +edible_N 3.729715012475897e-6 +edict_N 3.729715012475897e-6 +edification_N 3.729715012475897e-6 +edifice_N 3.729715012475897e-6 +edify_V2 1.609865254278217e-5 +edifying_A 1.0773191989054437e-5 +edinburgh_PN 1.865462821325971e-5 +edit_V2 3.219730508556434e-5 +edith_PN 1.865462821325971e-5 +editing_N 3.729715012475897e-6 +edition_N 1.8275603561131894e-4 +editor_N 3.0210691601054764e-4 +editorial_A 1.4005149585770768e-4 +editorial_N 1.5664803052398767e-4 +editorship_N 3.729715012475897e-6 +edmontosaurus_N 3.729715012475897e-6 +edmund_PN 1.865462821325971e-5 +edp_N 3.729715012475897e-6 +educate_V2 2.575784406845147e-4 +education_N 2.5735033586083686e-4 +educational_A 4.2015448757312305e-4 +educationalist_N 3.729715012475897e-6 +educationist_N 3.729715012475897e-6 +educative_A 1.0773191989054437e-5 +educator_N 3.356743511228307e-5 +educe_V2 1.609865254278217e-5 +edutainment_N 3.729715012475897e-6 +edward_PN 1.865462821325971e-5 +edwardian_A 1.0773191989054437e-5 +edwardian_N 3.729715012475897e-6 +eec_N 3.729715012475897e-6 +eeg_N 3.729715012475897e-6 +eel_N 7.459430024951794e-6 +eelblenny_N 3.729715012475897e-6 +eelgrass_N 3.729715012475897e-6 +eellike_A 1.0773191989054437e-5 +eelpout_N 3.729715012475897e-6 +eelworm_N 3.729715012475897e-6 +eerie_A 5.3865959945272184e-5 +eeriness_N 7.459430024951794e-6 +eery_A 2.1546383978108874e-5 +eff_V 2.2678822515534993e-5 +efface_V2 1.609865254278217e-5 +effaceable_A 1.0773191989054437e-5 +effacement_N 3.729715012475897e-6 +effect_N 9.063207480316429e-4 +effect_V2 6.439461017112868e-5 +effecter_N 3.729715012475897e-6 +effective_A 1.5728860304019478e-3 +effectiveness_N 3.356743511228307e-5 +effector_N 3.729715012475897e-6 +effects_N 3.729715012475897e-6 +effectual_A 1.0773191989054437e-5 +effectuality_N 3.729715012475897e-6 +effectualness_N 3.729715012475897e-6 +effeminacy_N 3.729715012475897e-6 +effeminate_A 1.0773191989054437e-5 +effendi_N 3.729715012475897e-6 +efferent_A 1.0773191989054437e-5 +effervesce_V 2.2678822515534993e-5 +effervescence_N 3.729715012475897e-6 +effervescent_A 1.0773191989054437e-5 +effete_A 2.1546383978108874e-5 +effeteness_N 3.729715012475897e-6 +efficacious_A 1.0773191989054437e-5 +efficacy_N 3.729715012475897e-6 +efficiency_N 1.0443202034932511e-4 +efficient_A 4.95566831496504e-4 +effigy_N 3.729715012475897e-6 +effleurage_N 3.729715012475897e-6 +efflorescence_N 3.729715012475897e-6 +efflorescent_A 1.0773191989054437e-5 +effluent_A 2.1546383978108874e-5 +effluent_N 3.729715012475897e-6 +effluvium_N 3.729715012475897e-6 +efflux_N 3.729715012475897e-6 +effort_N 1.3128596843915157e-3 +effortful_A 1.0773191989054437e-5 +effortfulness_N 3.729715012475897e-6 +effortless_A 3.231957596716331e-5 +effortlessness_N 3.729715012475897e-6 +effrontery_N 7.459430024951794e-6 +effulgence_N 3.729715012475897e-6 +effulgent_A 1.0773191989054437e-5 +effusion_N 3.729715012475897e-6 +effusive_A 3.231957596716331e-5 +effusiveness_N 3.729715012475897e-6 +eft_N 3.729715012475897e-6 +efta_N 3.729715012475897e-6 +eg_PN 1.865462821325971e-5 +egad_Interj 1.5267175572519083e-2 +egalitarian_A 1.0773191989054437e-5 +egalitarian_N 3.729715012475897e-6 +egalitarianism_N 1.118914503742769e-5 +egality_N 3.729715012475897e-6 +egg_N 1.9767489566122252e-4 +egg_V2 1.609865254278217e-5 +egg_beater_N 3.729715012475897e-6 +egg_cup_N 3.729715012475897e-6 +egg_on_V2 1.609865254278217e-5 +egg_whisk_N 3.729715012475897e-6 +eggar_N 3.729715012475897e-6 +eggbeater_N 3.729715012475897e-6 +eggcup_N 3.729715012475897e-6 +egghead_N 3.729715012475897e-6 +eggnog_N 3.729715012475897e-6 +eggplant_N 3.729715012475897e-6 +eggshake_N 3.729715012475897e-6 +eggshell_N 3.729715012475897e-6 +eglantine_N 3.729715012475897e-6 +ego_N 2.237829007485538e-5 +egocentric_A 1.0773191989054437e-5 +egocentric_N 3.729715012475897e-6 +egoism_N 3.729715012475897e-6 +egoist_N 3.729715012475897e-6 +egoistic_A 1.0773191989054437e-5 +egoistical_A 1.0773191989054437e-5 +egomania_N 3.729715012475897e-6 +egomaniac_N 3.729715012475897e-6 +egotism_N 3.729715012475897e-6 +egotist_N 7.459430024951794e-6 +egotistic_A 1.0773191989054437e-5 +egotistically_Adv 8.668966832532898e-6 +egotrip_N 3.729715012475897e-6 +egotrip_V 2.2678822515534993e-5 +egregious_A 3.231957596716331e-5 +egremont_PN 1.865462821325971e-5 +egress_N 3.729715012475897e-6 +egret_N 3.729715012475897e-6 +egypt_PN 1.865462821325971e-5 +egyptian_A 9.695872790148993e-5 +egyptian_N 3.729715012475897e-6 +eiche_PN 1.865462821325971e-5 +eider_N 3.729715012475897e-6 +eiderdown_N 3.729715012475897e-6 +eidetic_A 1.0773191989054437e-5 +eidos_N 3.729715012475897e-6 +eigenvalue_N 3.729715012475897e-6 +eightpence_N 3.729715012475897e-6 +eightpenny_A 1.0773191989054437e-5 +eightsome_N 3.729715012475897e-6 +eileen_PN 1.865462821325971e-5 +eindhoven_PN 1.865462821325971e-5 +einsteinium_N 3.729715012475897e-6 +eisegesis_N 3.729715012475897e-6 +eisteddfod_N 3.729715012475897e-6 +either7or_DConj 5.205622071837585e-4 +either_Adv 3.9010350746398044e-4 +either_Det 3.9898293164543266e-4 +ejaculate_V2 1.609865254278217e-5 +ejaculation_N 3.729715012475897e-6 +ejaculator_N 3.729715012475897e-6 +eject_V 2.2678822515534993e-5 +eject_V2 3.219730508556434e-5 +ejection_N 3.729715012475897e-6 +ejector_N 3.729715012475897e-6 +ejector_seat_N 3.729715012475897e-6 +eke_V2 4.8295957628346505e-5 +eke_out_V2 1.609865254278217e-5 +el_dorado_N 3.729715012475897e-6 +el_salvador_PN 1.865462821325971e-5 +elaborate_A 1.2927830386865325e-4 +elaborate_V 7.484011430126548e-4 +elaborate_V2 3.219730508556434e-5 +elaborateness_N 3.729715012475897e-6 +elaboration_N 3.729715012475897e-6 +elaine_PN 1.865462821325971e-5 +elan_N 3.729715012475897e-6 +eland_N 3.729715012475897e-6 +elapid_N 3.729715012475897e-6 +elapse_V 4.5357645031069986e-5 +elapsed_A 1.0773191989054437e-5 +elasmobranch_N 3.729715012475897e-6 +elastance_N 3.729715012475897e-6 +elastase_N 3.729715012475897e-6 +elastic_A 1.0773191989054437e-5 +elastic_N 3.729715012475897e-6 +elasticity_N 3.729715012475897e-6 +elasticized_A 1.0773191989054437e-5 +elastin_N 3.729715012475897e-6 +elastomer_N 3.729715012475897e-6 +elastoplast_N 3.729715012475897e-6 +elastosis_N 3.729715012475897e-6 +elate_V2 1.609865254278217e-5 +elating_A 1.0773191989054437e-5 +elation_N 7.459430024951794e-6 +elbow_N 1.118914503742769e-5 +elbow_V2 1.609865254278217e-5 +elbowing_N 3.729715012475897e-6 +elder_A 1.0773191989054437e-5 +elder_N 1.118914503742769e-5 +elderberry_N 3.729715012475897e-6 +elderly_A 2.6932979972636094e-4 +eldership_N 3.729715012475897e-6 +elderslie_PN 1.865462821325971e-5 +eldritch_A 1.0773191989054437e-5 +eleanor_PN 1.865462821325971e-5 +elecampane_N 3.729715012475897e-6 +elect_A 1.0773191989054437e-5 +elect_V 7.030434979815848e-4 +elect_V2 5.795514915401581e-4 +elect_V2V 4.675081813931744e-4 +elect_V3 3.80952380952381e-2 +election_N 5.519978218464327e-4 +electioneering_N 3.729715012475897e-6 +elective_A 4.309276795621775e-5 +elector_N 3.729715012475897e-6 +electoral_A 1.1850511187959881e-4 +electorate_N 7.459430024951794e-6 +electric_A 3.986081035950142e-4 +electric_N 3.729715012475897e-6 +electrical_A 3.2319575967163313e-4 +electrician_N 7.459430024951794e-6 +electricity_N 1.0443202034932511e-4 +electrification_N 3.729715012475897e-6 +electrify_V2 3.219730508556434e-5 +electrifying_A 1.0773191989054437e-5 +electrocardiogram_N 7.459430024951794e-6 +electrocardiograph_N 3.729715012475897e-6 +electrocardiographic_A 1.0773191989054437e-5 +electrocautery_N 3.729715012475897e-6 +electrochemical_A 1.0773191989054437e-5 +electrochemistry_N 3.729715012475897e-6 +electrocute_V2 1.609865254278217e-5 +electrocution_N 3.729715012475897e-6 +electrocutioner_N 3.729715012475897e-6 +electrode_N 1.4918860049903587e-5 +electrodeposition_N 3.729715012475897e-6 +electrodynamometer_N 3.729715012475897e-6 +electroencephalogram_N 3.729715012475897e-6 +electroencephalograph_N 3.729715012475897e-6 +electroencephalographic_A 1.0773191989054437e-5 +electrograph_N 3.729715012475897e-6 +electrologist_N 3.729715012475897e-6 +electrolysis_N 1.118914503742769e-5 +electrolyte_N 3.729715012475897e-6 +electrolytic_A 1.0773191989054437e-5 +electrolytic_N 3.729715012475897e-6 +electromagnet_N 7.459430024951794e-6 +electromagnetic_A 1.0773191989054437e-5 +electromagnetism_N 3.729715012475897e-6 +electromechanical_A 1.0773191989054437e-5 +electrometer_N 3.729715012475897e-6 +electromotive_A 1.0773191989054437e-5 +electromyogram_N 3.729715012475897e-6 +electromyograph_N 3.729715012475897e-6 +electromyography_N 3.729715012475897e-6 +electron_N 3.729715012475897e-6 +electronegativity_N 3.729715012475897e-6 +electronic_A 8.941749350915183e-4 +electronically_Adv 6.068276782773029e-5 +electronics_N 2.648097658857887e-4 +electrophoresis_N 3.729715012475897e-6 +electrophoretic_A 1.0773191989054437e-5 +electrophorus_N 3.729715012475897e-6 +electroplate_N 3.729715012475897e-6 +electroplate_V2 1.609865254278217e-5 +electroplater_N 3.729715012475897e-6 +electroretinogram_N 3.729715012475897e-6 +electroscope_N 3.729715012475897e-6 +electrosleep_N 3.729715012475897e-6 +electrostatic_A 1.0773191989054437e-5 +electrostatically_Adv 8.668966832532898e-6 +electrostatics_N 3.729715012475897e-6 +electrosurgery_N 3.729715012475897e-6 +electrotherapist_N 3.729715012475897e-6 +electrotherapy_N 3.729715012475897e-6 +electrum_N 3.729715012475897e-6 +eleemosynary_A 1.0773191989054437e-5 +elegance_N 3.729715012475897e-6 +elegant_A 9.695872790148993e-5 +elegiac_A 1.0773191989054437e-5 +elegist_N 3.729715012475897e-6 +elegy_N 3.729715012475897e-6 +element_N 1.08161735361801e-4 +elemental_A 1.0773191989054437e-5 +elementary_A 6.463915193432663e-5 +elements_N 3.729715012475897e-6 +elemi_N 3.729715012475897e-6 +elephant_N 3.729715012475897e-5 +elephantiasis_N 3.729715012475897e-6 +elephantine_A 1.0773191989054437e-5 +elevate_V2 8.049326271391085e-5 +elevation_N 7.459430024951794e-6 +elevator_N 5.2216010174662554e-5 +elf_N 3.729715012475897e-6 +elfin_A 1.0773191989054437e-5 +elfish_A 1.0773191989054437e-5 +elgin_PN 1.865462821325971e-5 +elicit_V2 1.609865254278217e-5 +elicitation_N 3.729715012475897e-6 +elide_V2 1.609865254278217e-5 +eligibility_N 3.729715012475897e-6 +eligible_A 1.9391745580297985e-4 +eliminate_V2 1.5776679491926525e-3 +elimination_N 3.729715012475897e-5 +eliminator_N 3.729715012475897e-6 +elision_N 3.729715012475897e-6 +elite_N 7.459430024951794e-6 +elitism_N 3.729715012475897e-6 +elitist_N 1.118914503742769e-5 +elixir_N 1.118914503742769e-5 +eliza_PN 1.865462821325971e-5 +elizabeth_PN 1.865462821325971e-5 +elizabethan_A 1.0773191989054437e-5 +elizabethan_N 3.729715012475897e-6 +elk_N 3.729715012475897e-6 +ell_N 3.729715012475897e-6 +elland_PN 1.865462821325971e-5 +ellen_PN 1.865462821325971e-5 +ellesmere_PN 1.865462821325971e-5 +ellesmere_port_PN 1.865462821325971e-5 +ellie_PN 1.865462821325971e-5 +ellipse_N 3.729715012475897e-6 +ellipsis_N 3.729715012475897e-6 +ellipsoid_A 1.0773191989054437e-5 +ellipsoid_N 3.729715012475897e-6 +elliptic_A 1.0773191989054437e-5 +elliptical_A 2.1546383978108874e-5 +elloughton_PN 1.865462821325971e-5 +elm_N 3.729715012475897e-6 +elocution_N 3.729715012475897e-6 +elocutionary_A 1.0773191989054437e-5 +elocutionist_N 3.729715012475897e-6 +elongate_A 1.0773191989054437e-5 +elongate_V 2.2678822515534993e-5 +elongate_V2 3.219730508556434e-5 +elongation_N 3.729715012475897e-6 +elope_V 2.2678822515534993e-5 +elopement_N 3.729715012475897e-6 +eloquence_N 7.459430024951794e-6 +eloquent_A 6.463915193432663e-5 +else_Adv 7.195242471002306e-4 +elsewhere_Adv 5.548138772821055e-4 +elsholtzia_N 3.729715012475897e-6 +elsie_PN 1.865462821325971e-5 +elstree_PN 1.865462821325971e-5 +eluate_N 3.729715012475897e-6 +elucidate_V2 1.609865254278217e-5 +elucidation_N 3.729715012475897e-6 +elude_V2 6.439461017112868e-5 +elusive_A 6.463915193432663e-5 +elusiveness_N 3.729715012475897e-6 +elution_N 3.729715012475897e-6 +elver_N 3.729715012475897e-6 +elves_N 3.729715012475897e-6 +elvish_A 1.0773191989054437e-5 +ely_PN 1.865462821325971e-5 +elysian_A 1.0773191989054437e-5 +elysium_PN 1.865462821325971e-5 +em_N 3.729715012475897e-6 +emaciate_V2 1.609865254278217e-5 +emaciation_N 3.729715012475897e-6 +emanate_V 2.2678822515534993e-5 +emanation_N 3.729715012475897e-6 +emancipate_V2 1.609865254278217e-5 +emancipation_N 3.729715012475897e-6 +emancipative_A 1.0773191989054437e-5 +emancipator_N 3.729715012475897e-6 +emarginate_A 1.0773191989054437e-5 +emasculate_V2 4.8295957628346505e-5 +emasculation_N 7.459430024951794e-6 +embalm_V2 1.609865254278217e-5 +embalmer_N 3.729715012475897e-6 +embalmment_N 3.729715012475897e-6 +embankment_N 3.729715012475897e-6 +embargo_N 2.9837720099807175e-5 +embargo_V2 3.219730508556434e-5 +embark_V 1.3607293509320997e-4 +embark_V2 1.609865254278217e-5 +embark_on_V2 1.609865254278217e-5 +embark_upon_V2 1.609865254278217e-5 +embarkation_N 3.729715012475897e-6 +embarrass_V2 1.7708517797060386e-4 +embarrassing_A 1.0773191989054437e-4 +embarrassment_N 4.848629516218666e-5 +embassy_N 2.237829007485538e-5 +embattled_A 2.1546383978108874e-5 +embed_V2 4.8295957628346505e-5 +embellish_V2 3.219730508556434e-5 +embellishment_N 3.729715012475897e-6 +ember_N 3.729715012475897e-6 +embezzle_V2 6.439461017112868e-5 +embezzlement_N 1.118914503742769e-5 +embezzler_N 3.729715012475897e-6 +embitter_V2 4.8295957628346505e-5 +embitterment_N 3.729715012475897e-6 +emblazon_V2 1.609865254278217e-5 +emblem_N 7.459430024951794e-6 +emblematic_A 2.1546383978108874e-5 +embodiment_N 3.729715012475897e-6 +embody_V2 1.1269056779947518e-4 +embolden_V2 4.8295957628346505e-5 +embolectomy_N 3.729715012475897e-6 +embolic_A 1.0773191989054437e-5 +embolism_N 3.729715012475897e-6 +embolus_N 3.729715012475897e-6 +embonpoint_A 1.0773191989054437e-5 +embonpoint_N 3.729715012475897e-6 +emboss_V2 1.609865254278217e-5 +embrace_N 3.729715012475897e-6 +embrace_V 1.5875175760874494e-4 +embrace_V2 2.7367709322729687e-4 +embrasure_N 3.729715012475897e-6 +embrocation_N 3.729715012475897e-6 +embroider_V 2.2678822515534993e-5 +embroider_V2 1.609865254278217e-5 +embroiderer_N 3.729715012475897e-6 +embroideress_N 3.729715012475897e-6 +embroidery_N 1.118914503742769e-5 +embroil_V 6.803646754660499e-5 +embroil_V2 4.8295957628346505e-5 +embryo_N 4.1026865137234865e-5 +embryologist_N 3.729715012475897e-6 +embryology_N 3.729715012475897e-6 +embryonic_A 2.1546383978108874e-5 +emeer_N 3.729715012475897e-6 +emend_V2 1.609865254278217e-5 +emendation_N 3.729715012475897e-6 +emerald_N 3.729715012475897e-6 +emerge_V 1.6328752211185195e-3 +emerge_V2 9.659191525669301e-5 +emerge_V2V 4.675081813931744e-4 +emerge_VS 2.8880032345636225e-4 +emergence_N 2.9837720099807175e-5 +emergency_N 3.61782356210162e-4 +emergent_A 1.0773191989054437e-5 +emeritus_A 2.1546383978108874e-5 +emeritus_N 3.729715012475897e-6 +emery_N 3.729715012475897e-6 +emetic_N 3.729715012475897e-6 +emigrant_N 3.729715012475897e-6 +emigrate_V 4.5357645031069986e-5 +emigrate_V2V 4.675081813931744e-4 +emigration_N 2.6108005087331277e-5 +emigre_N 3.729715012475897e-6 +emily_PN 1.865462821325971e-5 +eminence_N 3.729715012475897e-6 +eminent_A 2.1546383978108874e-5 +emir_N 3.729715012475897e-6 +emirate_N 3.729715012475897e-6 +emissary_N 7.459430024951794e-6 +emission_N 8.951316029942152e-5 +emit_V2 3.219730508556434e-5 +emitter_N 3.729715012475897e-6 +emma_PN 1.865462821325971e-5 +emmenagogue_N 3.729715012475897e-6 +emmer_N 3.729715012475897e-6 +emmetropia_N 3.729715012475897e-6 +emmetropic_A 1.0773191989054437e-5 +emolument_N 3.729715012475897e-6 +emoticon_N 3.729715012475897e-6 +emotion_N 4.475658014971076e-5 +emotional_A 3.2319575967163313e-4 +emotionality_N 3.729715012475897e-6 +emotionless_A 1.0773191989054437e-5 +emotionlessness_N 3.729715012475897e-6 +emotive_A 1.0773191989054437e-5 +empale_V2 1.609865254278217e-5 +empanel_V2 1.609865254278217e-5 +empathic_A 1.0773191989054437e-5 +empathize_V 6.803646754660499e-5 +empathy_N 3.729715012475897e-6 +emperor_N 7.459430024951794e-6 +emphasis_N 1.08161735361801e-4 +emphasize_V2 2.2538113559895037e-4 +emphasize_VS 7.508808409865419e-4 +emphasizing_N 3.729715012475897e-6 +emphatic_A 1.0773191989054437e-5 +emphatically_Adv 3.4675867330131594e-5 +emphysema_N 3.729715012475897e-6 +emphysematous_A 1.0773191989054437e-5 +empire_N 7.832401526199384e-5 +empiric_A 1.0773191989054437e-5 +empirical_A 2.1546383978108874e-5 +empiricism_N 3.729715012475897e-6 +empiricist_N 3.729715012475897e-6 +emplacement_N 3.729715012475897e-6 +emplane_V 2.2678822515534993e-5 +emplane_V2 1.609865254278217e-5 +employ_N 3.729715012475897e-6 +employ_V2 9.176231949385836e-4 +employable_A 1.0773191989054437e-5 +employable_N 3.729715012475897e-6 +employee_N 1.2718328192542808e-3 +employer_N 2.349720457859815e-4 +employment_N 2.2005318573607791e-4 +emporium_N 3.729715012475897e-6 +empower_V2 3.219730508556434e-5 +empower_V2V 1.402524544179523e-3 +empress_N 3.729715012475897e-6 +emptiness_N 3.729715012475897e-6 +empty_A 1.4005149585770768e-4 +empty_N 3.729715012475897e-6 +empty_V 2.2678822515534993e-5 +empty_V2 8.049326271391085e-5 +empty_handed_A 1.0773191989054437e-5 +empty_headed_A 1.0773191989054437e-5 +empty_out_V2 1.609865254278217e-5 +emptying_N 3.729715012475897e-6 +empurpled_A 1.0773191989054437e-5 +empyema_N 3.729715012475897e-6 +empyreal_A 1.0773191989054437e-5 +empyrean_A 1.0773191989054437e-5 +empyrean_N 3.729715012475897e-6 +emsworth_PN 1.865462821325971e-5 +emu_N 3.729715012475897e-6 +emulate_V2 6.439461017112868e-5 +emulation_N 3.729715012475897e-6 +emulous_A 1.0773191989054437e-5 +emulsifier_N 3.729715012475897e-6 +emulsify_V2 1.609865254278217e-5 +emulsion_N 3.729715012475897e-6 +en_N 3.729715012475897e-6 +en_clair_Adv 8.668966832532898e-6 +en_famille_Adv 8.668966832532898e-6 +en_masse_Adv 8.668966832532898e-6 +en_route_Adv 8.668966832532898e-6 +enable_V2 1.1269056779947518e-4 +enable_V2V 1.7765310892940627e-2 +enable_VS 4.0432045283890716e-4 +enabling_A 1.0773191989054437e-5 +enact_V2 5.473541864545937e-4 +enact_V2V 4.675081813931744e-4 +enactment_N 5.594572518713845e-5 +enalapril_N 3.729715012475897e-6 +enallage_N 3.729715012475897e-6 +enamel_N 3.729715012475897e-6 +enamel_V2 1.609865254278217e-5 +enamelware_N 3.729715012475897e-6 +enamine_N 3.729715012475897e-6 +enamored_A 1.0773191989054437e-5 +enamour_V2 1.609865254278217e-5 +enanthem_N 3.729715012475897e-6 +enantiomorph_N 3.729715012475897e-6 +enantiomorphism_N 3.729715012475897e-6 +enate_A 1.0773191989054437e-5 +enate_N 3.729715012475897e-6 +enc_PN 1.865462821325971e-5 +encainide_N 3.729715012475897e-6 +encamp_V 2.2678822515534993e-5 +encamp_V2 1.609865254278217e-5 +encampment_N 3.729715012475897e-6 +encapsulation_N 3.729715012475897e-6 +encase_V2 3.219730508556434e-5 +encasement_N 3.729715012475897e-6 +encaustic_A 1.0773191989054437e-5 +encaustic_N 3.729715012475897e-6 +encephalartos_N 3.729715012475897e-6 +encephalitis_N 3.729715012475897e-6 +encephalocele_N 3.729715012475897e-6 +encephalogram_N 3.729715012475897e-6 +encephalography_N 3.729715012475897e-6 +encephalomyelitis_N 3.729715012475897e-6 +enchain_V2 1.609865254278217e-5 +enchant_V2 1.609865254278217e-5 +enchanter_N 3.729715012475897e-6 +enchantingly_Adv 8.668966832532898e-6 +enchantment_N 3.729715012475897e-6 +enchantress_N 3.729715012475897e-6 +enchilada_N 3.729715012475897e-6 +enchondroma_N 3.729715012475897e-6 +encircle_V2 8.049326271391085e-5 +encirclement_N 3.729715012475897e-6 +enclave_N 3.729715012475897e-6 +enclose_V2 8.049326271391085e-5 +enclosure_N 3.729715012475897e-6 +encode_V2 1.609865254278217e-5 +encoding_N 3.729715012475897e-6 +encolure_N 3.729715012475897e-6 +encomiastic_A 1.0773191989054437e-5 +encomium_N 3.729715012475897e-6 +encompass_V2 4.8295957628346505e-5 +encompassment_N 3.729715012475897e-6 +encopresis_N 3.729715012475897e-6 +encore_N 7.459430024951794e-6 +encore_V2 1.609865254278217e-5 +encounter_N 1.118914503742769e-5 +encounter_V2 2.092824830561682e-4 +encourage_V2 1.046412415280841e-3 +encourage_V2V 1.0752688172043012e-2 +encouragement_N 3.729715012475897e-5 +encouraging_A 3.231957596716331e-5 +encroach_V 4.5357645031069986e-5 +encroachment_N 3.729715012475897e-6 +encrust_V 2.2678822515534993e-5 +encrust_V2 3.219730508556434e-5 +encrypt_V2 3.219730508556434e-5 +encumber_V2 3.219730508556434e-5 +encumbrance_N 3.729715012475897e-6 +encyclical_A 1.0773191989054437e-5 +encyclical_N 3.729715012475897e-6 +encyclopaedia_N 3.729715012475897e-6 +encyclopaedic_A 1.0773191989054437e-5 +encyclopedia_N 3.729715012475897e-6 +encyclopedic_A 2.1546383978108874e-5 +encyclopedist_N 3.729715012475897e-6 +encysted_A 1.0773191989054437e-5 +end_N 1.4993454350153105e-3 +end_V 5.964530321585703e-3 +end_V2 4.523721364521789e-3 +end_VA 1.8700787401574805e-2 +end_all_N 3.729715012475897e-6 +end_in_V2 1.609865254278217e-5 +end_tail_V2 3.219730508556434e-5 +end_up_V2 3.219730508556434e-5 +end_up_with_V2 1.609865254278217e-5 +endameba_N 3.729715012475897e-6 +endanger_V2 2.2538113559895037e-4 +endarterectomy_N 3.729715012475897e-6 +endarteritis_N 3.729715012475897e-6 +endear_V2 1.609865254278217e-5 +endearingly_Adv 8.668966832532898e-6 +endearment_N 3.729715012475897e-6 +endeavour_N 3.729715012475897e-6 +endeavour_V 2.2678822515534993e-5 +endemic_A 1.0773191989054437e-5 +endemic_N 3.729715012475897e-6 +endergonic_A 1.0773191989054437e-5 +endermic_A 1.0773191989054437e-5 +endgame_N 3.729715012475897e-6 +ending_N 1.4918860049903587e-5 +endive_N 3.729715012475897e-6 +endless_A 1.0773191989054437e-4 +endlessness_N 3.729715012475897e-6 +endocarditis_N 3.729715012475897e-6 +endocardium_N 3.729715012475897e-6 +endocentric_A 1.0773191989054437e-5 +endocervicitis_N 3.729715012475897e-6 +endocranium_N 3.729715012475897e-6 +endocrine_A 1.0773191989054437e-5 +endocrinologist_N 3.729715012475897e-6 +endocrinology_N 3.729715012475897e-6 +endoderm_N 3.729715012475897e-6 +endodontic_A 1.0773191989054437e-5 +endodontics_N 3.729715012475897e-6 +endodontist_N 3.729715012475897e-6 +endoergic_A 1.0773191989054437e-5 +endogamous_A 1.0773191989054437e-5 +endogamy_N 3.729715012475897e-6 +endogenic_A 1.0773191989054437e-5 +endogenous_A 1.0773191989054437e-5 +endogeny_N 3.729715012475897e-6 +endolymph_N 3.729715012475897e-6 +endometrial_A 1.0773191989054437e-5 +endometriosis_N 3.729715012475897e-6 +endometrium_N 3.729715012475897e-6 +endomorph_N 3.729715012475897e-6 +endomorphic_A 1.0773191989054437e-5 +endomorphy_N 3.729715012475897e-6 +endoneurium_N 3.729715012475897e-6 +endonuclease_N 3.729715012475897e-6 +endoparasite_N 3.729715012475897e-6 +endoparasitic_A 1.0773191989054437e-5 +endoplasm_N 3.729715012475897e-6 +endorphin_N 3.729715012475897e-6 +endorse_V2 4.0246631356955425e-4 +endorsement_N 4.475658014971076e-5 +endorser_N 3.729715012475897e-6 +endoscope_N 3.729715012475897e-6 +endoscopic_A 1.0773191989054437e-5 +endoscopy_N 3.729715012475897e-6 +endoskeleton_N 3.729715012475897e-6 +endosperm_N 3.729715012475897e-6 +endospore_N 3.729715012475897e-6 +endosteum_N 3.729715012475897e-6 +endothelial_A 1.0773191989054437e-5 +endothelium_N 3.729715012475897e-6 +endothermic_A 1.0773191989054437e-5 +endotoxin_N 3.729715012475897e-6 +endow_V2 6.439461017112868e-5 +endowment_N 1.118914503742769e-5 +endue_V2 1.609865254278217e-5 +endurable_A 1.0773191989054437e-5 +endurance_N 3.729715012475897e-6 +endure_V 1.1339411257767497e-4 +endure_V2 1.7708517797060386e-4 +enduringly_Adv 8.668966832532898e-6 +endways_Adv 8.668966832532898e-6 +endwise_Adv 8.668966832532898e-6 +enema_N 3.729715012475897e-6 +enemy_N 7.832401526199384e-5 +energetic_A 9.695872790148993e-5 +energetically_Adv 8.668966832532898e-6 +energid_N 3.729715012475897e-6 +energizer_N 3.729715012475897e-6 +energizing_A 1.0773191989054437e-5 +energizing_N 3.729715012475897e-6 +energy_N 4.32646941447204e-4 +enervate_V2 1.609865254278217e-5 +enervation_N 3.729715012475897e-6 +enfant_terrible_N 3.729715012475897e-6 +enfeeble_V2 1.609865254278217e-5 +enfeoffment_N 3.729715012475897e-6 +enfield_PN 1.865462821325971e-5 +enfilade_N 3.729715012475897e-6 +enflurane_N 3.729715012475897e-6 +enfold_V2 1.609865254278217e-5 +enforce_V2 2.8977574577007903e-4 +enforceable_A 1.0773191989054437e-5 +enforcement_N 1.3426974044913228e-4 +enfranchise_V2 1.609865254278217e-5 +enfranchisement_N 3.729715012475897e-6 +engage_V 9.071529006213998e-4 +engage_V2 3.219730508556434e-4 +engagement_N 7.459430024951794e-6 +engelmannia_N 3.729715012475897e-6 +engender_V2 1.609865254278217e-5 +engine_N 2.16323470723602e-4 +engine_driver_N 3.729715012475897e-6 +engineer_N 1.7156689057389125e-4 +engineer_V 2.9482469270195494e-4 +engineer_V2 2.2538113559895037e-4 +engineering_N 2.4243147581093328e-4 +enginery_N 3.729715012475897e-6 +england_PN 5.596388463977913e-4 +english_A 5.3865959945272184e-5 +english_N 7.459430024951794e-6 +englishman_N 3.729715012475897e-6 +englishwoman_N 3.729715012475897e-6 +engorgement_N 3.729715012475897e-6 +engraft_V2 1.609865254278217e-5 +engram_N 3.729715012475897e-6 +engrave_V2 3.219730508556434e-5 +engraver_N 3.729715012475897e-6 +engraving_N 3.729715012475897e-6 +engross_V2 1.609865254278217e-5 +engulf_V2 6.439461017112868e-5 +enhance_V2 6.761434067968511e-4 +enhancement_N 3.356743511228307e-5 +enigma_N 7.459430024951794e-6 +enigmatic_A 1.0773191989054437e-5 +enigmatically_Adv 8.668966832532898e-6 +enjambment_N 3.729715012475897e-6 +enjoin_V2 1.2878922034225736e-4 +enjoy_V2 7.405380169679798e-4 +enjoy_VV 3.843936190659235e-4 +enjoyable_A 3.231957596716331e-5 +enjoyableness_N 3.729715012475897e-6 +enjoyer_N 3.729715012475897e-6 +enjoyment_N 7.459430024951794e-6 +enkephalin_N 3.729715012475897e-6 +enkindle_V2 1.609865254278217e-5 +enlarge_V 4.5357645031069986e-5 +enlarge_V2 8.049326271391085e-5 +enlargement_N 3.729715012475897e-6 +enlarger_N 3.729715012475897e-6 +enlighten_V2 6.439461017112868e-5 +enlightening_A 1.0773191989054437e-5 +enlightenment_N 7.459430024951794e-6 +enlist_V 2.2678822515534993e-5 +enlist_V2 1.1269056779947518e-4 +enlistment_N 3.729715012475897e-6 +enliven_V2 3.219730508556434e-5 +enmesh_V2 1.609865254278217e-5 +enmity_N 3.729715012475897e-6 +ennoble_V2 1.609865254278217e-5 +ennoblement_N 3.729715012475897e-6 +ennobling_A 1.0773191989054437e-5 +ennui_N 7.459430024951794e-6 +ennumerate_V2 3.219730508556434e-5 +enoch_PN 1.865462821325971e-5 +enol_N 3.729715012475897e-6 +enolic_A 1.0773191989054437e-5 +enologist_N 3.729715012475897e-6 +enology_N 3.729715012475897e-6 +enophile_N 3.729715012475897e-6 +enormity_N 3.729715012475897e-6 +enormous_A 4.95566831496504e-4 +enormousness_N 3.729715012475897e-6 +enosis_N 3.729715012475897e-6 +enough_A 2.348555853613867e-3 +enough_N 4.1026865137234865e-5 +enplane_V 2.2678822515534993e-5 +enplane_V2 1.609865254278217e-5 +enquire_V 2.2678822515534993e-5 +enquire_V2 1.609865254278217e-5 +enquirer_N 3.729715012475897e-6 +enquiringly_Adv 8.668966832532898e-6 +enquiry_N 3.729715012475897e-6 +enrage_V2 4.8295957628346505e-5 +enrapture_V2 1.609865254278217e-5 +enrich_V2 4.8295957628346505e-5 +enrichment_N 3.729715012475897e-6 +enrol_V 2.2678822515534993e-5 +enrol_V2 1.609865254278217e-5 +enroll_V 1.1339411257767497e-4 +enroll_V2 1.609865254278217e-5 +enrollee_N 3.729715012475897e-6 +enrolment_N 3.729715012475897e-6 +enschede_PN 1.865462821325971e-5 +ensconce_V2 3.219730508556434e-5 +ensemble_N 1.118914503742769e-5 +enshrine_V2 1.609865254278217e-5 +enshroud_V2 1.609865254278217e-5 +ensiform_A 1.0773191989054437e-5 +ensign_N 3.729715012475897e-6 +ensilage_N 3.729715012475897e-6 +enslave_V2 1.609865254278217e-5 +enslavement_N 3.729715012475897e-6 +ensnare_V2 1.609865254278217e-5 +ensue_V 1.5875175760874494e-4 +ensure_V 6.803646754660499e-5 +ensure_V2 3.702690084839899e-4 +ensure_VS 1.906082134811991e-3 +entablature_N 3.729715012475897e-6 +entail_N 3.729715012475897e-6 +entail_V2 8.049326271391085e-5 +entangle_V2 6.439461017112868e-5 +entanglement_N 3.729715012475897e-6 +entasis_N 3.729715012475897e-6 +entelechy_N 3.729715012475897e-6 +entellus_N 3.729715012475897e-6 +entente_N 3.729715012475897e-6 +entente_cordiale_N 3.729715012475897e-6 +enter_V 7.484011430126548e-4 +enter_V2 1.3683854661364844e-3 +enter_for_V2 1.609865254278217e-5 +enter_into_V2 1.609865254278217e-5 +enteric_A 1.0773191989054437e-5 +enteritis_N 3.729715012475897e-6 +enterobiasis_N 3.729715012475897e-6 +enterokinase_N 3.729715012475897e-6 +enterolith_N 3.729715012475897e-6 +enterolithiasis_N 3.729715012475897e-6 +enteron_N 3.729715012475897e-6 +enteropathy_N 3.729715012475897e-6 +enteroptosis_N 3.729715012475897e-6 +enterostenosis_N 3.729715012475897e-6 +enterostomy_N 3.729715012475897e-6 +enterotoxemia_N 3.729715012475897e-6 +enterotoxin_N 3.729715012475897e-6 +enterovirus_N 3.729715012475897e-6 +enterprise_N 1.118914503742769e-4 +enterprising_A 2.1546383978108874e-5 +entertain_V2 9.659191525669301e-5 +entertainer_N 1.118914503742769e-5 +entertaining_A 7.541234392338106e-5 +entertainment_N 1.7529660558636716e-4 +enthral_V2 1.609865254278217e-5 +enthrall_V2 1.609865254278217e-5 +enthrone_V2 1.609865254278217e-5 +enthronement_N 3.729715012475897e-6 +enthuse_V 2.2678822515534993e-5 +enthusiasm_N 5.967544019961435e-5 +enthusiast_N 3.729715012475897e-5 +enthusiastic_A 1.4005149585770768e-4 +entice_V2 1.2878922034225736e-4 +enticement_N 3.729715012475897e-6 +entire_A 1.2496902707303146e-3 +entirety_N 7.459430024951794e-6 +entitle_V2 1.2878922034225736e-4 +entitle_V2V 4.675081813931743e-3 +entitle_VS 2.3104025876508982e-4 +entitlement_N 2.6108005087331277e-5 +entity_N 1.08161735361801e-4 +entomb_V2 4.8295957628346505e-5 +entomion_N 3.729715012475897e-6 +entomological_A 1.0773191989054437e-5 +entomologist_N 3.729715012475897e-6 +entomology_N 3.729715012475897e-6 +entomophilous_A 1.0773191989054437e-5 +entomophobia_N 3.729715012475897e-6 +entoproct_N 3.729715012475897e-6 +entourage_N 7.459430024951794e-6 +entozoan_A 1.0773191989054437e-5 +entozoic_A 1.0773191989054437e-5 +entr'acte_N 3.729715012475897e-6 +entrain_V 2.2678822515534993e-5 +entrain_V2 1.609865254278217e-5 +entrance_N 1.4918860049903587e-5 +entrance_V2 3.219730508556434e-5 +entrance_fee_N 3.729715012475897e-6 +entrance_money_N 3.729715012475897e-6 +entrancement_N 3.729715012475897e-6 +entrant_N 7.459430024951794e-6 +entrap_V2 1.609865254278217e-5 +entrapment_N 3.729715012475897e-6 +entreat_V2 1.609865254278217e-5 +entreatingly_Adv 8.668966832532898e-6 +entreaty_N 3.729715012475897e-6 +entrecote_N 3.729715012475897e-6 +entree_N 3.729715012475897e-6 +entrench_V2 1.2878922034225736e-4 +entrenchment_N 7.459430024951794e-6 +entrepot_N 3.729715012475897e-6 +entrepreneur_N 1.2308059541170458e-4 +entrepreneurial_A 7.541234392338106e-5 +entrust_V2 8.049326271391085e-5 +entry_N 1.118914503742769e-4 +entwin_V 2.2678822515534993e-5 +entwine_V2 4.8295957628346505e-5 +enucleation_N 3.729715012475897e-6 +enumerate_V2 1.609865254278217e-5 +enumeration_N 3.729715012475897e-6 +enunciate_V 2.2678822515534993e-5 +enunciate_V2 1.609865254278217e-5 +enunciation_N 3.729715012475897e-6 +enured_A 1.0773191989054437e-5 +enuresis_N 3.729715012475897e-6 +envelop_V2 1.609865254278217e-5 +envelope_N 2.237829007485538e-5 +envelopment_N 3.729715012475897e-6 +envenom_V2 1.609865254278217e-5 +enviable_A 5.3865959945272184e-5 +envious_A 1.0773191989054437e-5 +environ_V2 1.609865254278217e-5 +environment_N 2.7972862593569225e-4 +environmental_A 1.0988655828835525e-3 +environmentalism_N 3.729715012475897e-6 +environmentalist_N 7.459430024951794e-6 +environs_N 3.729715012475897e-6 +envisage_V2 4.8295957628346505e-5 +envision_V2 4.8295957628346505e-5 +envision_VS 1.1552012938254491e-4 +envisioned_A 1.0773191989054437e-5 +envoi_N 3.729715012475897e-6 +envoy_N 1.118914503742769e-5 +envy_N 2.6108005087331277e-5 +envy_V2 3.219730508556434e-5 +enwrap_V2 1.609865254278217e-5 +enzootic_A 1.0773191989054437e-5 +enzymatic_A 1.0773191989054437e-5 +enzyme_N 3.729715012475897e-6 +enzymologist_N 3.729715012475897e-6 +enzymology_N 3.729715012475897e-6 +eohippus_N 3.729715012475897e-6 +eolith_N 3.729715012475897e-6 +eolithic_A 1.0773191989054437e-5 +eon_N 7.459430024951794e-6 +eonian_A 1.0773191989054437e-5 +eoraptor_N 3.729715012475897e-6 +eosin_N 3.729715012475897e-6 +eosinopenia_N 3.729715012475897e-6 +eosinophil_N 3.729715012475897e-6 +eosinophilia_N 3.729715012475897e-6 +eosinophilic_A 1.0773191989054437e-5 +epacris_N 3.729715012475897e-6 +epanalepsis_N 3.729715012475897e-6 +epanaphora_N 3.729715012475897e-6 +epanodos_N 3.729715012475897e-6 +epanorthosis_N 3.729715012475897e-6 +eparch_N 3.729715012475897e-6 +eparchial_A 1.0773191989054437e-5 +eparchy_N 3.729715012475897e-6 +epaulet_N 3.729715012475897e-6 +epaulette_N 3.729715012475897e-6 +epauliere_N 3.729715012475897e-6 +epee_N 3.729715012475897e-6 +ependyma_N 3.729715012475897e-6 +epenthesis_N 3.729715012475897e-6 +epenthetic_A 1.0773191989054437e-5 +epergne_N 3.729715012475897e-6 +ephah_N 3.729715012475897e-6 +ephedra_N 3.729715012475897e-6 +ephedrine_N 3.729715012475897e-6 +ephemera_N 3.729715012475897e-6 +ephemeral_A 1.0773191989054437e-5 +ephemerality_N 3.729715012475897e-6 +ephemerid_N 3.729715012475897e-6 +ephemeris_N 3.729715012475897e-6 +ephemeron_N 3.729715012475897e-6 +epic_A 1.0773191989054437e-5 +epic_N 7.459430024951794e-6 +epicalyx_N 3.729715012475897e-6 +epicanthus_N 3.729715012475897e-6 +epicardia_N 3.729715012475897e-6 +epicardium_N 3.729715012475897e-6 +epicarp_N 3.729715012475897e-6 +epicarpal_A 1.0773191989054437e-5 +epicenter_N 3.729715012475897e-6 +epicentre_N 3.729715012475897e-6 +epicondyle_N 3.729715012475897e-6 +epicondylitis_N 3.729715012475897e-6 +epicranium_N 3.729715012475897e-6 +epicure_N 3.729715012475897e-6 +epicurean_A 1.0773191989054437e-5 +epicurean_N 3.729715012475897e-6 +epicureanism_N 3.729715012475897e-6 +epicurism_N 3.729715012475897e-6 +epicycle_N 3.729715012475897e-6 +epicyclic_A 1.0773191989054437e-5 +epicycloid_N 3.729715012475897e-6 +epideictic_A 1.0773191989054437e-5 +epidemic_A 1.0773191989054437e-5 +epidemic_N 1.118914503742769e-5 +epidemiologic_A 1.0773191989054437e-5 +epidemiologist_N 7.459430024951794e-6 +epidemiology_N 3.729715012475897e-6 +epidendron_N 3.729715012475897e-6 +epidermis_N 3.729715012475897e-6 +epidiascope_N 3.729715012475897e-6 +epididymis_N 3.729715012475897e-6 +epididymitis_N 3.729715012475897e-6 +epidural_A 1.0773191989054437e-5 +epigastric_A 1.0773191989054437e-5 +epigastrium_N 3.729715012475897e-6 +epigenesis_N 3.729715012475897e-6 +epiglottis_N 3.729715012475897e-6 +epiglottitis_N 3.729715012475897e-6 +epigone_N 3.729715012475897e-6 +epigram_N 3.729715012475897e-6 +epigrammatic_A 1.0773191989054437e-5 +epigraph_N 3.729715012475897e-6 +epigraphy_N 3.729715012475897e-6 +epikeratophakia_N 3.729715012475897e-6 +epilation_N 3.729715012475897e-6 +epilepsy_N 1.118914503742769e-5 +epileptic_A 1.0773191989054437e-5 +epileptic_N 7.459430024951794e-6 +epilithic_A 1.0773191989054437e-5 +epilogue_N 3.729715012475897e-6 +epimorphic_A 1.0773191989054437e-5 +epinephrine_N 3.729715012475897e-6 +epiphany_N 3.729715012475897e-6 +epiphany_PN 1.865462821325971e-5 +epiphenomenon_N 3.729715012475897e-6 +epiphora_N 3.729715012475897e-6 +epiphyllum_N 3.729715012475897e-6 +epiphyseal_A 1.0773191989054437e-5 +epiphysis_N 3.729715012475897e-6 +epiphytic_A 1.0773191989054437e-5 +epiphytotic_A 1.0773191989054437e-5 +epiplexis_N 3.729715012475897e-6 +episcia_N 3.729715012475897e-6 +episcleritis_N 3.729715012475897e-6 +episcopacy_N 3.729715012475897e-6 +episcopal_A 1.0773191989054437e-5 +episcopalian_A 1.0773191989054437e-5 +episcopalian_N 3.729715012475897e-6 +episcopate_N 3.729715012475897e-6 +episiotomy_N 3.729715012475897e-6 +episode_N 8.951316029942152e-5 +episodic_A 2.1546383978108874e-5 +episodically_Adv 8.668966832532898e-6 +episome_N 3.729715012475897e-6 +epispadias_N 3.729715012475897e-6 +episteme_N 3.729715012475897e-6 +epistemic_A 1.0773191989054437e-5 +epistemologist_N 3.729715012475897e-6 +epistemology_N 3.729715012475897e-6 +epistle_N 3.729715012475897e-6 +epistolary_A 1.0773191989054437e-5 +epitaph_N 3.729715012475897e-6 +epitaxy_N 3.729715012475897e-6 +epithalamium_N 3.729715012475897e-6 +epithelial_A 1.0773191989054437e-5 +epitheliod_A 1.0773191989054437e-5 +epithelioma_N 3.729715012475897e-6 +epithelium_N 3.729715012475897e-6 +epithet_N 3.729715012475897e-6 +epitome_N 3.729715012475897e-6 +epitomize_V2 3.219730508556434e-5 +epizoan_A 1.0773191989054437e-5 +epizoic_A 1.0773191989054437e-5 +epizootic_A 1.0773191989054437e-5 +epoch_N 3.729715012475897e-6 +epoch_making_A 1.0773191989054437e-5 +epochal_A 1.0773191989054437e-5 +eponym_N 3.729715012475897e-6 +eponymous_A 1.0773191989054437e-5 +eponymy_N 3.729715012475897e-6 +epos_N 3.729715012475897e-6 +epoxy_N 3.729715012475897e-6 +epping_PN 1.865462821325971e-5 +epsilon_N 3.729715012475897e-6 +epsom_PN 1.865462821325971e-5 +eptatretus_N 3.729715012475897e-6 +equable_A 1.0773191989054437e-5 +equal_A 4.632472555293408e-4 +equal_N 7.459430024951794e-6 +equal_V2 5.312555339118116e-4 +equal_to_A2 0.20253164556962025 +equalitarian_N 3.729715012475897e-6 +equality_N 2.237829007485538e-5 +equalization_N 3.729715012475897e-6 +equalize_V2 1.609865254278217e-5 +equalizer_N 3.729715012475897e-6 +equanimity_N 3.729715012475897e-6 +equatability_N 3.729715012475897e-6 +equate_V2 8.049326271391085e-5 +equation_N 2.6108005087331277e-5 +equator_N 3.729715012475897e-6 +equatorial_A 1.0773191989054437e-5 +equatorial_N 3.729715012475897e-6 +equerry_N 3.729715012475897e-6 +equestrian_A 1.0773191989054437e-5 +equestrian_N 1.118914503742769e-5 +equiangular_A 1.0773191989054437e-5 +equidistant_A 1.0773191989054437e-5 +equidistribution_N 3.729715012475897e-6 +equilateral_A 1.0773191989054437e-5 +equilateral_N 3.729715012475897e-6 +equilibration_N 3.729715012475897e-6 +equilibrium_N 1.4918860049903587e-5 +equine_A 1.0773191989054437e-5 +equine_N 3.729715012475897e-6 +equinoctial_A 1.0773191989054437e-5 +equinox_N 3.729715012475897e-6 +equip_V2 2.2538113559895037e-4 +equipage_N 3.729715012475897e-6 +equipment_N 7.272944274327998e-4 +equipoise_N 3.729715012475897e-6 +equipoised_A 1.0773191989054437e-5 +equipotent_A 1.0773191989054437e-5 +equiprobable_A 1.0773191989054437e-5 +equitable_A 4.309276795621775e-5 +equity_N 8.130778727197455e-4 +equivalence_N 3.729715012475897e-6 +equivalent_A 2.1546383978108874e-4 +equivalent_N 1.268103104241805e-4 +equivocal_A 1.0773191989054437e-5 +equivocation_N 3.729715012475897e-6 +er_Interj 1.5267175572519083e-2 +era_N 9.324287531189741e-5 +eradicable_A 1.0773191989054437e-5 +eradicate_V2 4.8295957628346505e-5 +eradication_N 3.729715012475897e-6 +erase_V2 2.2538113559895037e-4 +eraser_N 3.729715012475897e-6 +erasure_N 7.459430024951794e-6 +erbium_N 3.729715012475897e-6 +ere_Adv 8.668966832532898e-6 +ere_Prep 9.978546125829467e-6 +erect_A 1.0773191989054437e-5 +erect_V2 9.659191525669301e-5 +erectile_A 1.0773191989054437e-5 +erecting_N 3.729715012475897e-6 +erection_N 3.729715012475897e-6 +erectness_N 3.729715012475897e-6 +eremite_N 3.729715012475897e-6 +eremitic_A 1.0773191989054437e-5 +eremitism_N 3.729715012475897e-6 +erethism_N 3.729715012475897e-6 +erfurt_PN 1.865462821325971e-5 +erg_N 3.729715012475897e-6 +ergo_Adv 8.668966832532898e-6 +ergodic_A 1.0773191989054437e-5 +ergodicity_N 3.729715012475897e-6 +ergonomic_A 1.0773191989054437e-5 +ergonomics_N 3.729715012475897e-6 +ergonovine_N 3.729715012475897e-6 +ergosterol_N 3.729715012475897e-6 +ergot_N 3.729715012475897e-6 +ergotamine_N 3.729715012475897e-6 +ergotic_A 1.0773191989054437e-5 +ergotism_N 3.729715012475897e-6 +ergotropic_A 1.0773191989054437e-5 +ergotropism_N 3.729715012475897e-6 +eric_PN 1.865462821325971e-5 +erica_N 3.729715012475897e-6 +erica_PN 1.865462821325971e-5 +erin_PN 1.865462821325971e-5 +eriogonum_N 3.729715012475897e-6 +eristic_A 1.0773191989054437e-5 +eristic_N 3.729715012475897e-6 +eritrea_PN 1.865462821325971e-5 +eritrean_A 3.231957596716331e-5 +eritrean_N 3.729715012475897e-6 +erlangen_PN 1.865462821325971e-5 +ermine_N 3.729715012475897e-6 +ern_N 3.729715012475897e-6 +ernest_PN 1.865462821325971e-5 +ernie_PN 1.865462821325971e-5 +erode_V 3.855399827640949e-4 +erode_V2 1.609865254278217e-4 +erogenous_A 1.0773191989054437e-5 +erose_A 1.0773191989054437e-5 +erosion_N 3.356743511228307e-5 +erosive_A 1.0773191989054437e-5 +erotic_A 1.0773191989054437e-5 +erotic_N 3.729715012475897e-6 +erotically_Adv 8.668966832532898e-6 +eroticism_N 3.729715012475897e-6 +err_V 1.1339411257767497e-4 +errancy_N 3.729715012475897e-6 +errand_N 7.459430024951794e-6 +errant_A 1.0773191989054437e-5 +erratic_A 5.3865959945272184e-5 +erratically_Adv 2.6006900497598697e-5 +erratum_N 7.459430024951794e-6 +errhine_A 1.0773191989054437e-5 +erroneous_A 7.541234392338106e-5 +erroneousness_N 3.729715012475897e-6 +error_N 1.268103104241805e-4 +errorless_A 1.0773191989054437e-5 +ersatz_A 1.0773191989054437e-5 +ersatz_N 3.729715012475897e-6 +erse_N 3.729715012475897e-6 +eructation_N 3.729715012475897e-6 +erudite_A 3.231957596716331e-5 +eruditeness_N 3.729715012475897e-6 +erudition_N 3.729715012475897e-6 +erupt_V 2.4946704767088494e-4 +eruption_N 1.118914503742769e-5 +eruptive_A 1.0773191989054437e-5 +erwinia_N 3.729715012475897e-6 +eryngo_N 3.729715012475897e-6 +erysipelas_N 3.729715012475897e-6 +erythema_N 3.729715012475897e-6 +erythematous_A 1.0773191989054437e-5 +erythrite_N 3.729715012475897e-6 +erythroblast_N 3.729715012475897e-6 +erythroblastosis_N 3.729715012475897e-6 +erythroderma_N 3.729715012475897e-6 +erythroid_A 1.0773191989054437e-5 +erythromycin_N 3.729715012475897e-6 +erythropoiesis_N 3.729715012475897e-6 +erythropoietic_A 1.0773191989054437e-5 +erythropoietin_N 3.729715012475897e-6 +escadrille_N 3.729715012475897e-6 +escalade_N 3.729715012475897e-6 +escalader_N 3.729715012475897e-6 +escalate_V 9.071529006213997e-5 +escalate_V2 3.219730508556434e-5 +escalation_N 7.459430024951794e-6 +escalator_N 7.459430024951794e-6 +escalope_N 3.729715012475897e-6 +escapade_N 3.729715012475897e-6 +escape_N 1.8648575062379485e-5 +escape_V 2.7214587018641994e-4 +escape_V2 2.575784406845147e-4 +escape_VS 1.1552012938254491e-4 +escapee_N 3.729715012475897e-6 +escapement_N 3.729715012475897e-6 +escapism_N 3.729715012475897e-6 +escapist_N 3.729715012475897e-6 +escapologist_N 3.729715012475897e-6 +escapology_N 3.729715012475897e-6 +escargot_N 3.729715012475897e-6 +escarpment_N 3.729715012475897e-6 +eschar_N 3.729715012475897e-6 +eschatological_A 1.0773191989054437e-5 +eschatologist_N 3.729715012475897e-6 +eschatology_N 3.729715012475897e-6 +escheat_N 3.729715012475897e-6 +escherichia_N 3.729715012475897e-6 +eschew_V2 4.8295957628346505e-5 +escolar_N 3.729715012475897e-6 +escort_N 1.118914503742769e-5 +escort_V2 3.219730508556434e-5 +escritoire_N 3.729715012475897e-6 +escrow_N 3.729715012475897e-6 +escudo_N 3.729715012475897e-6 +escutcheon_N 3.729715012475897e-6 +esfahan_PN 1.865462821325971e-5 +esker_N 3.729715012475897e-6 +eskimo_N 3.729715012475897e-6 +esmolol_N 3.729715012475897e-6 +esophageal_A 1.0773191989054437e-5 +esophagitis_N 3.729715012475897e-6 +esophagoscope_N 3.729715012475897e-6 +esophagus_N 3.729715012475897e-6 +esoteric_A 2.1546383978108874e-5 +esoterica_N 3.729715012475897e-6 +esp_N 7.459430024951794e-6 +espadrille_N 3.729715012475897e-6 +espalier_N 3.729715012475897e-6 +especial_A 1.7883498701830366e-3 +esperanto_N 3.729715012475897e-6 +espionage_N 1.4918860049903587e-5 +esplanade_N 3.729715012475897e-6 +espousal_N 7.459430024951794e-6 +espouse_V2 4.8295957628346505e-5 +espresso_N 7.459430024951794e-6 +esprit_N 3.729715012475897e-6 +esprit_de_corps_N 1.4918860049903587e-5 +espy_V2 1.609865254278217e-5 +esq_PN 1.865462821325971e-5 +esquire_N 3.729715012475897e-6 +essay_N 2.237829007485538e-5 +essay_V 2.2678822515534993e-5 +essay_V2 1.609865254278217e-5 +essayist_N 7.459430024951794e-6 +essen_PN 1.865462821325971e-5 +essence_N 2.6108005087331277e-5 +essential_A 6.571647113323206e-4 +essential_N 7.459430024951794e-6 +essentiality_N 3.729715012475897e-6 +essex_PN 1.865462821325971e-5 +establish_V2 2.1572194407328106e-3 +establishment_N 8.951316029942152e-5 +establishmentarianism_N 3.729715012475897e-6 +estaminet_N 3.729715012475897e-6 +estate_N 1.2158870940671422e-3 +estazolam_N 3.729715012475897e-6 +esteem_N 1.118914503742769e-5 +esteem_V2 1.609865254278217e-5 +ester_N 3.729715012475897e-6 +esther_PN 1.865462821325971e-5 +esthete_N 3.729715012475897e-6 +esthetic_A 1.0773191989054437e-5 +esthetic_N 3.729715012475897e-6 +esthetical_A 1.0773191989054437e-5 +esthetician_N 3.729715012475897e-6 +esthetics_N 3.729715012475897e-6 +estimable_A 1.0773191989054437e-5 +estimate_N 8.168075877322214e-4 +estimate_V 1.7689481562117295e-3 +estimate_V2 1.8513450424199494e-3 +estimate_V2V 9.350163627863488e-4 +estimate_VS 7.624328539247964e-3 +estimation_N 7.459430024951794e-6 +estivation_N 3.729715012475897e-6 +estoppel_N 3.729715012475897e-6 +estradiol_N 3.729715012475897e-6 +estrange_V2 3.219730508556434e-5 +estrangement_N 3.729715012475897e-6 +estranging_A 1.0773191989054437e-5 +estriol_N 3.729715012475897e-6 +estrogen_N 3.729715012475897e-6 +estrogenic_A 1.0773191989054437e-5 +estrone_N 3.729715012475897e-6 +estrous_A 1.0773191989054437e-5 +estrus_N 3.729715012475897e-6 +estuarine_A 1.0773191989054437e-5 +estuary_N 3.729715012475897e-6 +et_al_PN 1.865462821325971e-5 +et_seq_PN 1.865462821325971e-5 +eta_N 3.729715012475897e-6 +etagere_N 3.729715012475897e-6 +etamine_N 3.729715012475897e-6 +etanercept_N 3.729715012475897e-6 +etc_PN 1.865462821325971e-5 +etcetera_N 3.729715012475897e-6 +etch_V 2.2678822515534993e-5 +etch_V2 1.609865254278217e-5 +etcher_N 3.729715012475897e-6 +etching_N 3.729715012475897e-6 +etd_N 3.729715012475897e-6 +eternal_A 5.3865959945272184e-5 +eternity_N 3.729715012475897e-6 +ethane_N 3.729715012475897e-6 +ethchlorvynol_N 3.729715012475897e-6 +ethel_PN 1.865462821325971e-5 +ether_N 3.729715012475897e-6 +ethereal_A 1.0773191989054437e-5 +ethernet_N 3.729715012475897e-6 +ethic_N 5.594572518713845e-5 +ethical_A 1.2927830386865325e-4 +ethicism_N 3.729715012475897e-6 +ethicist_N 3.729715012475897e-6 +ethics_N 3.729715012475897e-6 +ethiopia_PN 1.865462821325971e-5 +ethiopian_A 3.231957596716331e-5 +ethiopian_N 3.729715012475897e-6 +ethmoid_N 3.729715012475897e-6 +ethnarch_N 3.729715012475897e-6 +ethnic_A 1.8314426381392542e-4 +ethnic_N 3.729715012475897e-6 +ethnically_Adv 1.7337933665065797e-5 +ethnicity_N 3.729715012475897e-6 +ethnocentric_A 1.0773191989054437e-5 +ethnocentrism_N 3.729715012475897e-6 +ethnographer_N 3.729715012475897e-6 +ethnographic_A 1.0773191989054437e-5 +ethnography_N 3.729715012475897e-6 +ethnological_A 1.0773191989054437e-5 +ethnologist_N 3.729715012475897e-6 +ethnology_N 3.729715012475897e-6 +ethologist_N 3.729715012475897e-6 +ethology_N 3.729715012475897e-6 +ethos_N 1.4918860049903587e-5 +ethosuximide_N 3.729715012475897e-6 +ethyl_N 3.729715012475897e-6 +ethylene_N 7.459430024951794e-6 +etiolate_A 1.0773191989054437e-5 +etiolation_N 3.729715012475897e-6 +etiological_A 1.0773191989054437e-5 +etiologist_N 3.729715012475897e-6 +etiology_N 3.729715012475897e-6 +etiquette_N 1.118914503742769e-5 +etodolac_N 3.729715012475897e-6 +etude_N 3.729715012475897e-6 +etui_N 3.729715012475897e-6 +etymological_A 1.0773191989054437e-5 +etymologist_N 3.729715012475897e-6 +etymology_N 3.729715012475897e-6 +etymon_N 3.729715012475897e-6 +eubacteria_N 3.729715012475897e-6 +eucalyptus_N 1.118914503742769e-5 +eucharist_N 3.729715012475897e-6 +euchre_N 3.729715012475897e-6 +euclidean_A 1.0773191989054437e-5 +euclidian_A 1.0773191989054437e-5 +eudemon_N 3.729715012475897e-6 +eudemonic_A 1.0773191989054437e-5 +eudemonism_N 3.729715012475897e-6 +eudiometer_N 3.729715012475897e-6 +eugene_PN 1.865462821325971e-5 +eugenic_A 1.0773191989054437e-5 +eugenics_N 3.729715012475897e-6 +euglena_N 3.729715012475897e-6 +euglenoid_N 3.729715012475897e-6 +eukaryote_N 3.729715012475897e-6 +eukaryotic_A 1.0773191989054437e-5 +eulogist_N 3.729715012475897e-6 +eulogistic_A 1.0773191989054437e-5 +eulogize_V2 1.609865254278217e-5 +eulogy_N 3.729715012475897e-6 +eunice_PN 1.865462821325971e-5 +eunuch_N 3.729715012475897e-6 +euphemism_N 1.118914503742769e-5 +euphemistic_A 1.0773191989054437e-5 +euphemistically_Adv 8.668966832532898e-6 +euphonic_A 1.0773191989054437e-5 +euphonious_A 1.0773191989054437e-5 +euphonium_N 3.729715012475897e-6 +euphony_N 3.729715012475897e-6 +euphorbium_N 3.729715012475897e-6 +euphoria_N 3.356743511228307e-5 +euphoriant_A 1.0773191989054437e-5 +euphoriant_N 3.729715012475897e-6 +euphoric_A 1.0773191989054437e-5 +euphuism_N 3.729715012475897e-6 +eupnea_N 3.729715012475897e-6 +eurasia_PN 1.865462821325971e-5 +eurasian_A 1.0773191989054437e-5 +eurasian_N 3.729715012475897e-6 +eurhythmics_N 3.729715012475897e-6 +euro_N 3.729715012475897e-6 +eurodollar_N 5.594572518713845e-5 +europe_PN 2.9287766294817746e-3 +european_A 2.046906477920343e-4 +european_N 1.118914503742769e-5 +europium_N 3.729715012475897e-6 +eurovision_PN 1.865462821325971e-5 +eurypterid_N 3.729715012475897e-6 +eurythmics_N 3.729715012475897e-6 +eurythmy_N 3.729715012475897e-6 +eusporangiate_A 1.0773191989054437e-5 +eusporangium_N 3.729715012475897e-6 +eustachian_A 1.0773191989054437e-5 +eutectic_N 3.729715012475897e-6 +euthanasia_N 3.729715012475897e-6 +euthenics_N 3.729715012475897e-6 +eutherian_A 1.0773191989054437e-5 +eutrophic_A 1.0773191989054437e-5 +eutrophication_N 3.729715012475897e-6 +eva_PN 1.865462821325971e-5 +evacuate_V2 8.049326271391085e-5 +evacuation_N 2.6108005087331277e-5 +evacuee_N 3.729715012475897e-6 +evade_V2 1.1269056779947518e-4 +evaluate_V 1.1339411257767497e-4 +evaluate_V2 4.5076227119790073e-4 +evaluation_N 7.832401526199384e-5 +evaluative_A 1.0773191989054437e-5 +evaluator_N 3.729715012475897e-6 +evanescence_N 3.729715012475897e-6 +evanescent_A 1.0773191989054437e-5 +evangelical_A 2.1546383978108874e-5 +evangelicalism_N 3.729715012475897e-6 +evangelism_N 3.729715012475897e-6 +evangelist_N 1.8648575062379485e-5 +evangelistic_A 1.0773191989054437e-5 +evaporable_A 1.0773191989054437e-5 +evaporate_V 6.803646754660499e-5 +evaporate_V2 1.609865254278217e-5 +evaporate_VS 2.3104025876508982e-4 +evaporation_N 7.459430024951794e-6 +evaporative_A 1.0773191989054437e-5 +evaporite_N 3.729715012475897e-6 +evasion_N 3.356743511228307e-5 +evasive_A 1.0773191989054437e-5 +evasiveness_N 3.729715012475897e-6 +eve_N 1.118914503742769e-5 +eve_PN 1.865462821325971e-5 +evelyn_PN 1.865462821325971e-5 +even_A 2.585566077373065e-4 +even_AdA 1.1156186612576065e-2 +even_AdV 1.1596180081855388e-2 +even_Adv 5.643497407978917e-3 +even_N 7.459430024951794e-6 +even_V2 1.1269056779947518e-4 +even_handed_A 1.0773191989054437e-5 +even_out_V 2.2678822515534993e-5 +even_though_Subj 7.791164658634538e-2 +evenhanded_A 1.0773191989054437e-5 +evening_N 1.268103104241805e-4 +evenness_N 3.729715012475897e-6 +evensong_N 7.459430024951794e-6 +event_N 5.519978218464327e-4 +eventful_A 1.0773191989054437e-5 +eventide_N 3.729715012475897e-6 +eventration_N 3.729715012475897e-6 +eventual_A 1.0773191989054437e-3 +eventuality_N 3.729715012475897e-6 +ever_AdV 1.1888520756187878e-2 +ever_Adv 8.668966832532898e-6 +evergreen_A 1.0773191989054437e-5 +evergreen_N 3.729715012475897e-6 +everlasting_A 2.1546383978108874e-5 +everlasting_N 3.729715012475897e-6 +everlastingness_N 3.729715012475897e-6 +evermore_Adv 8.668966832532898e-6 +eversion_N 3.729715012475897e-6 +every_Det 1.6162189942925153e-3 +everybody_NP 1.0375369963850027e-4 +everyday_A 1.0773191989054437e-4 +everyman_N 3.729715012475897e-6 +everyone_NP 1.911252361761847e-4 +everyplace_Adv 8.668966832532898e-6 +everything_NP 1.911252361761847e-4 +everywhere_Adv 4.33448341626645e-5 +evesham_PN 1.865462821325971e-5 +evict_V2 1.609865254278217e-5 +eviction_N 3.729715012475897e-6 +evidence_N 4.4010637147215583e-4 +evidence_V2 8.049326271391085e-5 +evident_A 2.046906477920343e-4 +evidential_A 1.0773191989054437e-5 +evidentiary_A 1.0773191989054437e-5 +evil_A 9.695872790148993e-5 +evil_N 1.4918860049903587e-5 +evil_doer_N 3.729715012475897e-6 +evil_minded_A 1.0773191989054437e-5 +evince_V2 4.8295957628346505e-5 +eviscerate_A 1.0773191989054437e-5 +eviscerate_V2 3.219730508556434e-5 +evisceration_N 3.729715012475897e-6 +evitable_A 1.0773191989054437e-5 +evocation_N 3.729715012475897e-6 +evocative_A 2.1546383978108874e-5 +evoke_V2 6.439461017112868e-5 +evolution_N 4.1026865137234865e-5 +evolutionary_A 4.309276795621775e-5 +evolutionist_N 3.729715012475897e-6 +evolve_V 2.4946704767088494e-4 +evolve_V2 6.439461017112868e-5 +ewe_N 3.729715012475897e-6 +ewell_PN 1.865462821325971e-5 +ewer_N 3.729715012475897e-6 +ex_directory_A 1.0773191989054437e-5 +ex_gratia_A 1.0773191989054437e-5 +ex_officio_A 2.1546383978108874e-5 +ex_officio_Adv 8.668966832532898e-6 +ex_service_A 1.0773191989054437e-5 +ex_serviceman_N 3.729715012475897e-6 +exabit_N 3.729715012475897e-6 +exabyte_N 3.729715012475897e-6 +exacerbate_V2 2.092824830561682e-4 +exacerbation_N 3.729715012475897e-6 +exact_A 6.571647113323206e-4 +exact_V2 1.609865254278217e-5 +exacta_N 3.729715012475897e-6 +exacting_A 1.0773191989054437e-5 +exaction_N 3.729715012475897e-6 +exactitude_N 3.729715012475897e-6 +exactness_N 3.729715012475897e-6 +exaggerate_V 4.5357645031069986e-5 +exaggerate_V2 1.2878922034225736e-4 +exaggeration_N 3.729715012475897e-6 +exalt_V2 1.609865254278217e-5 +exaltation_N 3.729715012475897e-6 +exam_N 1.4918860049903587e-5 +examen_N 3.729715012475897e-6 +examination_N 9.324287531189741e-5 +examine_V2 3.8636766102677204e-4 +examiner_N 4.848629516218666e-5 +example_N 1.9394518064874664e-4 +exanthem_N 3.729715012475897e-6 +exarch_N 3.729715012475897e-6 +exasperate_V2 1.609865254278217e-5 +exasperating_A 1.0773191989054437e-5 +exasperation_N 7.459430024951794e-6 +exaugural_A 1.0773191989054437e-5 +exbibit_N 3.729715012475897e-6 +excavate_V 6.803646754660499e-5 +excavate_V2 1.609865254278217e-5 +excavation_N 3.729715012475897e-6 +excavator_N 1.118914503742769e-5 +exceed_V2 1.5454706441070882e-3 +exceedance_N 3.729715012475897e-6 +exceeding_A 5.3865959945272184e-5 +excel_V 4.5357645031069986e-5 +excel_V2 1.609865254278217e-5 +excellence_N 7.459430024951794e-6 +excellency_N 3.729715012475897e-6 +excellent_A 1.8314426381392542e-4 +excelsior_N 3.729715012475897e-6 +except_Prep 6.785411365564037e-4 +except_V2 3.219730508556434e-5 +except_for_Prep 1.9957092251658934e-5 +exception_N 1.1562116538675279e-4 +exceptionable_A 1.0773191989054437e-5 +exceptional_A 1.2927830386865325e-4 +excerpt_N 1.8648575062379485e-5 +excess_A 4.093812955840686e-4 +excess_N 1.1562116538675279e-4 +excessive_A 3.016493756935242e-4 +exchange_N 1.6522637505268223e-3 +exchange_V2 4.0246631356955425e-4 +exchangeability_N 3.729715012475897e-6 +exchangeable_A 3.231957596716331e-5 +exchanger_N 3.729715012475897e-6 +exchequer_N 7.459430024951794e-6 +excise_N 1.8648575062379485e-5 +excise_V2 6.439461017112868e-5 +exciseman_N 3.729715012475897e-6 +excision_N 2.237829007485538e-5 +excitability_N 3.729715012475897e-6 +excitable_A 1.0773191989054437e-5 +excitant_A 1.0773191989054437e-5 +excitation_N 3.729715012475897e-6 +excite_V2 1.1269056779947518e-4 +excitedly_Adv 8.668966832532898e-6 +excitement_N 4.1026865137234865e-5 +exciting_A 1.0773191989054437e-5 +excl_PN 1.865462821325971e-5 +exclaim_V 4.5357645031069986e-5 +exclaim_V2 1.609865254278217e-5 +exclaim_VQ 3.333333333333333e-2 +exclamation_N 3.729715012475897e-6 +exclamatory_A 1.0773191989054437e-5 +exclude_V2 1.1913002881658804e-3 +exclusion_N 5.594572518713845e-5 +exclusive_A 5.386595994527219e-4 +exclusive_N 3.729715012475897e-6 +excogitate_V2 1.609865254278217e-5 +excogitation_N 3.729715012475897e-6 +excogitative_A 1.0773191989054437e-5 +excogitator_N 3.729715012475897e-6 +excommunicate_V2 1.609865254278217e-5 +excommunication_N 3.729715012475897e-6 +excoriate_V2 3.219730508556434e-5 +excoriation_N 3.729715012475897e-6 +excrement_N 3.729715012475897e-6 +excrescence_N 3.729715012475897e-6 +excrescent_A 1.0773191989054437e-5 +excrete_V2 1.609865254278217e-5 +excretion_N 3.729715012475897e-6 +excretory_A 1.0773191989054437e-5 +excruciating_A 1.0773191989054437e-5 +exculpate_V2 1.609865254278217e-5 +exculpation_N 3.729715012475897e-6 +exculpatory_A 1.0773191989054437e-5 +excursion_N 1.118914503742769e-5 +excursionist_N 3.729715012475897e-6 +excusable_A 1.0773191989054437e-5 +excuse_N 5.594572518713845e-5 +excuse_V2 6.439461017112868e-5 +excuse_me_Interj 7.633587786259542e-3 +execrable_A 1.0773191989054437e-5 +execrate_V2 1.609865254278217e-5 +execration_N 3.729715012475897e-6 +executability_N 3.729715012475897e-6 +executant_N 3.729715012475897e-6 +execute_V2 7.566366695107619e-4 +execution_N 1.193508803992287e-4 +executioner_N 3.729715012475897e-6 +executive_A 2.714844381241718e-3 +executive_N 2.5996113636957002e-3 +executor_N 7.459430024951794e-6 +executrix_N 3.729715012475897e-6 +exegesis_N 3.729715012475897e-6 +exegete_N 3.729715012475897e-6 +exegetic_A 1.0773191989054437e-5 +exemplar_N 3.729715012475897e-6 +exemplary_A 2.1546383978108874e-5 +exemplification_N 3.729715012475897e-6 +exemplify_V2 4.8295957628346505e-5 +exemplifying_A 1.0773191989054437e-5 +exempt_A 1.1850511187959881e-4 +exempt_V2 1.609865254278217e-4 +exempt_V2V 4.675081813931744e-4 +exemption_N 5.967544019961435e-5 +exenteration_N 3.729715012475897e-6 +exercise_N 1.3799945546160818e-4 +exercise_V 1.8143058012427994e-4 +exercise_V2 6.922420593396333e-4 +exercise_VV 2.8829521429944266e-4 +exergonic_A 1.0773191989054437e-5 +exert_V2 6.439461017112868e-5 +exertion_N 3.729715012475897e-6 +exeter_PN 1.865462821325971e-5 +exfoliation_N 3.729715012475897e-6 +exhalation_N 3.729715012475897e-6 +exhale_V 4.5357645031069986e-5 +exhale_V2 1.609865254278217e-5 +exhaust_N 7.459430024951794e-6 +exhaust_V2 2.092824830561682e-4 +exhaust_pipe_N 3.729715012475897e-6 +exhaustible_A 1.0773191989054437e-5 +exhausting_A 1.0773191989054437e-5 +exhaustion_N 1.118914503742769e-5 +exhaustive_A 3.231957596716331e-5 +exhibit_N 4.1026865137234865e-5 +exhibit_V2 8.049326271391085e-5 +exhibition_N 5.967544019961435e-5 +exhibitioner_N 3.729715012475897e-6 +exhibitionism_N 3.729715012475897e-6 +exhibitionist_N 3.729715012475897e-6 +exhibitionistic_A 1.0773191989054437e-5 +exhibitor_N 7.459430024951794e-6 +exhilarate_V2 1.609865254278217e-5 +exhilarating_A 1.0773191989054437e-5 +exhilaration_N 7.459430024951794e-6 +exhort_V2 3.219730508556434e-5 +exhortation_N 3.729715012475897e-6 +exhortative_A 1.0773191989054437e-5 +exhumation_N 3.729715012475897e-6 +exhume_V2 1.609865254278217e-5 +exigency_N 3.729715012475897e-6 +exigent_A 1.0773191989054437e-5 +exiguous_A 1.0773191989054437e-5 +exile_N 2.237829007485538e-5 +exile_V2 4.8295957628346505e-5 +exilic_A 1.0773191989054437e-5 +exist_V 3.084319862112759e-3 +exist_V2V 4.675081813931744e-4 +existence_N 6.713487022456614e-5 +existent_A 2.1546383978108874e-5 +existential_A 1.0773191989054437e-5 +existentialism_N 3.729715012475897e-6 +existentialist_A 1.0773191989054437e-5 +existentialist_N 7.459430024951794e-6 +exit_N 3.729715012475897e-5 +exit_V 4.5357645031069986e-5 +exmouth_PN 1.865462821325971e-5 +exobiology_N 3.729715012475897e-6 +exocentric_A 1.0773191989054437e-5 +exocrine_A 1.0773191989054437e-5 +exode_N 3.729715012475897e-6 +exodontic_A 1.0773191989054437e-5 +exodontics_N 3.729715012475897e-6 +exodontist_N 3.729715012475897e-6 +exodus_N 4.848629516218666e-5 +exoergic_A 1.0773191989054437e-5 +exogamous_A 1.0773191989054437e-5 +exogamy_N 3.729715012475897e-6 +exogenous_A 1.0773191989054437e-5 +exomphalos_N 3.729715012475897e-6 +exon_N 3.729715012475897e-6 +exonerate_V2 6.439461017112868e-5 +exoneration_N 3.729715012475897e-6 +exonuclease_N 3.729715012475897e-6 +exophthalmos_N 3.729715012475897e-6 +exorbitance_N 3.729715012475897e-6 +exorbitant_A 6.463915193432663e-5 +exorcise_V2 3.219730508556434e-5 +exorcism_N 7.459430024951794e-6 +exorcist_N 3.729715012475897e-6 +exorcize_V2 1.609865254278217e-5 +exordium_N 3.729715012475897e-6 +exoskeleton_N 3.729715012475897e-6 +exosphere_N 3.729715012475897e-6 +exostosis_N 3.729715012475897e-6 +exoteric_A 1.0773191989054437e-5 +exotherm_N 3.729715012475897e-6 +exothermic_A 1.0773191989054437e-5 +exotic_A 1.2927830386865325e-4 +exoticism_N 3.729715012475897e-6 +exotoxin_N 3.729715012475897e-6 +expand_V 1.6328752211185195e-3 +expand_V2 1.5454706441070882e-3 +expand_V2V 9.350163627863488e-4 +expandable_A 1.0773191989054437e-5 +expanse_N 7.459430024951794e-6 +expansion_N 3.170257760604512e-4 +expansionism_N 3.729715012475897e-6 +expansionist_A 1.0773191989054437e-5 +expansive_A 3.231957596716331e-5 +expansiveness_N 3.729715012475897e-6 +expatiate_V 2.2678822515534993e-5 +expatiation_N 3.729715012475897e-6 +expatriate_N 3.729715012475897e-6 +expatriate_V2 1.609865254278217e-5 +expect_V 2.8348528144418743e-3 +expect_V2 4.4593267543506605e-3 +expect_V2V 0.2267414679756896 +expect_VS 4.216484722462889e-3 +expect_VV 2.8156832596578897e-2 +expectable_A 1.0773191989054437e-5 +expectancy_N 7.459430024951794e-6 +expectant_A 2.1546383978108874e-5 +expectation_N 3.61782356210162e-4 +expectedness_N 3.729715012475897e-6 +expectorant_N 3.729715012475897e-6 +expectorate_V 2.2678822515534993e-5 +expectorate_V2 1.609865254278217e-5 +expectoration_N 3.729715012475897e-6 +expedience_N 3.729715012475897e-6 +expediency_N 3.729715012475897e-6 +expedient_A 1.0773191989054437e-5 +expedient_N 7.459430024951794e-6 +expedite_V2 1.609865254278217e-4 +expedition_N 1.118914503742769e-5 +expeditionary_A 1.0773191989054437e-5 +expeditious_A 2.1546383978108874e-5 +expel_V2 1.2878922034225736e-4 +expend_V2 3.219730508556434e-5 +expendable_A 3.231957596716331e-5 +expending_N 3.729715012475897e-6 +expenditure_N 1.08161735361801e-4 +expense_N 5.594572518713845e-4 +expensive_A 8.510821671353005e-4 +expensiveness_N 3.729715012475897e-6 +experience_N 2.610800508733128e-4 +experience_V2 8.371299322246728e-4 +experienced_A 6.463915193432663e-5 +experiential_A 1.0773191989054437e-5 +experiment_N 2.0886404069865022e-4 +experiment_V 1.5875175760874494e-4 +experiment_V2 3.219730508556434e-5 +experimental_A 1.1850511187959881e-4 +experimentalism_N 3.729715012475897e-6 +experimentation_N 1.4918860049903587e-5 +experimenter_N 3.729715012475897e-6 +expert_A 4.309276795621775e-5 +expert_N 4.2518751142225225e-4 +expertise_N 6.713487022456614e-5 +expertness_N 3.729715012475897e-6 +expiable_A 1.0773191989054437e-5 +expiate_V2 1.609865254278217e-5 +expiation_N 3.729715012475897e-6 +expiatory_A 1.0773191989054437e-5 +expiration_N 1.08161735361801e-4 +expiratory_A 1.0773191989054437e-5 +expire_V 1.0432258357146098e-3 +expire_V2 6.278474491685046e-4 +expire_VS 1.7328019407381737e-4 +expiry_N 3.729715012475897e-6 +explain_V2 9.337218474813658e-4 +explain_VS 3.176803558019985e-3 +explain_away_V 2.2678822515534993e-5 +explainable_A 1.0773191989054437e-5 +explanans_N 3.729715012475897e-6 +explanation_N 9.697259032437332e-5 +explanatory_A 3.231957596716331e-5 +expletive_N 7.459430024951794e-6 +explicable_A 1.0773191989054437e-5 +explicandum_N 3.729715012475897e-6 +explicate_V2 1.609865254278217e-5 +explication_N 3.729715012475897e-6 +explicit_A 1.0773191989054437e-4 +explicitness_N 3.729715012475897e-6 +explode_V 3.401823377330249e-4 +explode_V2 4.8295957628346505e-5 +exploit_N 7.459430024951794e-6 +exploit_V2 2.7367709322729687e-4 +exploitation_N 3.729715012475897e-6 +exploitative_A 1.0773191989054437e-5 +exploiter_N 7.459430024951794e-6 +exploration_N 1.5664803052398767e-4 +exploratory_A 3.231957596716331e-5 +explore_V2 4.668609237406829e-4 +explore_VS 1.1552012938254491e-4 +explorer_N 3.729715012475897e-6 +explosion_N 1.0443202034932511e-4 +explosive_A 8.61855359124355e-5 +explosive_N 7.459430024951794e-6 +expo_N 1.118914503742769e-5 +exponent_N 3.729715012475897e-6 +exponential_A 1.0773191989054437e-5 +exponential_N 3.729715012475897e-6 +exponentiation_N 3.729715012475897e-6 +export_N 6.713487022456614e-4 +export_V 3.175035152174899e-4 +export_V2 3.702690084839899e-4 +exportable_A 1.0773191989054437e-5 +exportation_N 3.729715012475897e-6 +exporter_N 8.951316029942152e-5 +exporting_N 3.729715012475897e-6 +expose_N 3.729715012475897e-6 +expose_V 2.0410940263981494e-4 +expose_V2 3.058743983128612e-4 +exposition_N 7.459430024951794e-6 +expositor_N 3.729715012475897e-6 +expository_A 1.0773191989054437e-5 +expostulate_V 2.2678822515534993e-5 +expostulation_N 3.729715012475897e-6 +exposure_N 1.9021546563627073e-4 +expound_V2 1.609865254278217e-5 +expound_VS 1.1552012938254491e-4 +express_A 6.463915193432663e-5 +express_Adv 8.668966832532898e-6 +express_N 7.459430024951794e-6 +express_V2 1.0947083729091875e-3 +expressible_A 1.0773191989054437e-5 +expression_N 6.340515521209024e-5 +expressionism_N 3.729715012475897e-6 +expressionist_A 1.0773191989054437e-5 +expressionist_N 3.729715012475897e-6 +expressionless_A 1.0773191989054437e-5 +expressive_A 2.1546383978108874e-5 +expressiveness_N 3.729715012475897e-6 +expressway_N 3.729715012475897e-6 +expropriate_V2 1.609865254278217e-5 +expropriation_N 3.729715012475897e-6 +expulsion_N 3.729715012475897e-6 +expunction_N 3.729715012475897e-6 +expunge_V2 4.8295957628346505e-5 +expurgate_V2 1.609865254278217e-5 +expurgation_N 3.729715012475897e-6 +expurgator_N 3.729715012475897e-6 +exquisite_A 2.1546383978108874e-5 +exquisiteness_N 3.729715012475897e-6 +extant_A 1.0773191989054437e-5 +extemporaneous_A 1.0773191989054437e-5 +extemporary_A 1.0773191989054437e-5 +extempore_A 1.0773191989054437e-5 +extempore_Adv 8.668966832532898e-6 +extemporization_N 3.729715012475897e-6 +extemporize_V 2.2678822515534993e-5 +extemporize_V2 1.609865254278217e-5 +extend_V 9.071529006213998e-4 +extend_V2 1.2878922034225736e-3 +extendible_A 1.0773191989054437e-5 +extensile_A 1.0773191989054437e-5 +extension_N 1.193508803992287e-4 +extensional_A 1.0773191989054437e-5 +extensive_A 3.1242256768257865e-4 +extent_N 2.0140461067369843e-4 +extenuate_V2 1.609865254278217e-5 +extenuating_A 1.0773191989054437e-5 +extenuation_N 3.729715012475897e-6 +exterior_A 1.0773191989054437e-5 +exterior_N 7.459430024951794e-6 +exteriorize_V2 1.609865254278217e-5 +exterminable_A 1.0773191989054437e-5 +exterminate_V2 1.609865254278217e-5 +extermination_N 7.459430024951794e-6 +exterminator_N 3.729715012475897e-6 +extern_N 3.729715012475897e-6 +external_A 1.2927830386865325e-4 +external_N 3.729715012475897e-6 +externalization_N 3.729715012475897e-6 +externalize_V2 1.609865254278217e-5 +exteroception_N 3.729715012475897e-6 +exteroceptive_A 1.0773191989054437e-5 +exteroceptor_N 3.729715012475897e-6 +exterritorial_A 1.0773191989054437e-5 +extinct_A 3.231957596716331e-5 +extinction_N 1.4918860049903587e-5 +extinguish_V2 4.8295957628346505e-5 +extinguishable_A 1.0773191989054437e-5 +extinguisher_N 3.729715012475897e-6 +extirpate_V2 1.609865254278217e-5 +extirpation_N 3.729715012475897e-6 +extol_V2 1.609865254278217e-5 +extort_V 4.5357645031069986e-5 +extort_V2 9.659191525669301e-5 +extortion_N 2.237829007485538e-5 +extortionate_A 1.0773191989054437e-5 +extra_A 5.817523674089396e-4 +extra_Adv 8.668966832532898e-6 +extra_N 7.459430024951794e-6 +extracellular_A 1.0773191989054437e-5 +extract_N 7.459430024951794e-6 +extract_V2 1.9318383051338602e-4 +extractable_A 1.0773191989054437e-5 +extraction_N 7.459430024951794e-6 +extractor_N 3.729715012475897e-6 +extracurricular_A 2.1546383978108874e-5 +extradite_V2 4.8295957628346505e-5 +extradition_N 4.1026865137234865e-5 +extrados_N 3.729715012475897e-6 +extragalactic_A 1.0773191989054437e-5 +extrajudicial_A 1.0773191989054437e-5 +extralegal_A 1.0773191989054437e-5 +extralinguistic_A 1.0773191989054437e-5 +extramarital_A 2.1546383978108874e-5 +extramural_A 2.1546383978108874e-5 +extraneous_A 3.231957596716331e-5 +extraneousness_N 3.729715012475897e-6 +extraordinariness_N 3.729715012475897e-6 +extraordinary_A 6.248451353651573e-4 +extrapolate_V 2.2678822515534993e-5 +extrapolate_V2 1.609865254278217e-5 +extrapolation_N 3.729715012475897e-6 +extrasensory_A 1.0773191989054437e-5 +extrasystole_N 3.729715012475897e-6 +extrasystolic_A 1.0773191989054437e-5 +extraterrestrial_A 1.0773191989054437e-5 +extraterritorial_A 1.0773191989054437e-5 +extravagance_N 7.459430024951794e-6 +extravagant_A 2.1546383978108874e-5 +extravaganza_N 3.729715012475897e-6 +extravasation_N 3.729715012475897e-6 +extraversion_N 3.729715012475897e-6 +extreme_A 7.218038632666473e-4 +extreme_N 1.8648575062379485e-5 +extremeness_N 3.729715012475897e-6 +extremism_N 3.729715012475897e-6 +extremist_A 1.0773191989054437e-5 +extremist_N 1.4918860049903587e-5 +extremity_N 3.729715012475897e-6 +extremum_N 3.729715012475897e-6 +extricable_A 1.0773191989054437e-5 +extricate_V2 3.219730508556434e-5 +extrication_N 3.729715012475897e-6 +extrinsic_A 1.0773191989054437e-5 +extropic_A 1.0773191989054437e-5 +extropy_N 3.729715012475897e-6 +extrospective_A 1.0773191989054437e-5 +extroversion_N 3.729715012475897e-6 +extroversive_A 1.0773191989054437e-5 +extrovert_A 1.0773191989054437e-5 +extrovert_N 3.729715012475897e-6 +extroverted_A 1.0773191989054437e-5 +extrovertish_A 1.0773191989054437e-5 +extrude_V2 1.609865254278217e-5 +extrusion_N 2.237829007485538e-5 +extrusive_A 1.0773191989054437e-5 +exuberance_N 7.459430024951794e-6 +exuberant_A 1.0773191989054437e-5 +exudate_N 3.729715012475897e-6 +exudation_N 3.729715012475897e-6 +exude_V 2.2678822515534993e-5 +exude_V2 4.8295957628346505e-5 +exult_V 2.2678822515534993e-5 +exultant_A 1.0773191989054437e-5 +exultation_N 3.729715012475897e-6 +exurbia_N 3.729715012475897e-6 +exuviae_N 3.729715012475897e-6 +exuvial_A 1.0773191989054437e-5 +eyas_N 3.729715012475897e-6 +eye_N 3.058366310230235e-4 +eye_V2 8.049326271391085e-5 +eye_catching_A 3.231957596716331e-5 +eye_opener_N 3.729715012475897e-6 +eye_shadow_N 3.729715012475897e-6 +eye_up_V2 1.609865254278217e-5 +eyeball_N 1.118914503742769e-5 +eyeball_V2 3.219730508556434e-5 +eyebath_N 3.729715012475897e-6 +eyebrow_N 2.6108005087331277e-5 +eyecatching_A 1.0773191989054437e-5 +eyecup_N 3.729715012475897e-6 +eyedness_N 3.729715012475897e-6 +eyedrop_N 3.729715012475897e-6 +eyeful_N 3.729715012475897e-6 +eyeglass_N 7.459430024951794e-6 +eyelash_N 3.729715012475897e-6 +eyeless_A 1.0773191989054437e-5 +eyelessness_N 3.729715012475897e-6 +eyelet_N 3.729715012475897e-6 +eyelid_N 3.729715012475897e-6 +eyelike_A 1.0773191989054437e-5 +eyeliner_N 3.729715012475897e-6 +eyepatch_N 3.729715012475897e-6 +eyepiece_N 3.729715012475897e-6 +eyes_N 3.729715012475897e-6 +eyeshadow_N 3.729715012475897e-6 +eyeshot_N 3.729715012475897e-6 +eyesight_N 3.729715012475897e-6 +eyesore_N 3.729715012475897e-6 +eyespot_N 3.729715012475897e-6 +eyestrain_N 3.729715012475897e-6 +eyetooth_N 3.729715012475897e-6 +eyewash_N 3.729715012475897e-6 +eyewitness_N 1.118914503742769e-5 +eyrie_N 3.729715012475897e-6 +eyrir_N 3.729715012475897e-6 +eyry_N 3.729715012475897e-6 +fa_N 3.729715012475897e-6 +fab_A 1.0773191989054437e-5 +fabian_A 1.0773191989054437e-5 +fabian_N 3.729715012475897e-6 +fable_N 3.729715012475897e-6 +fabled_A 5.3865959945272184e-5 +fabric_N 5.2216010174662554e-5 +fabricate_V2 9.659191525669301e-5 +fabrication_N 3.356743511228307e-5 +fabulist_N 3.729715012475897e-6 +fabulous_A 3.231957596716331e-5 +facade_N 7.459430024951794e-6 +face_N 4.363766564596799e-4 +face_V 7.257223204971198e-4 +face_V2 3.1875332034708697e-3 +face_ache_N 3.729715012475897e-6 +face_card_N 3.729715012475897e-6 +face_cloth_N 3.729715012475897e-6 +face_cream_N 3.729715012475897e-6 +face_lift_N 3.729715012475897e-6 +face_lifting_N 3.729715012475897e-6 +face_off_V2 1.609865254278217e-5 +face_pack_N 3.729715012475897e-6 +face_powder_N 3.729715012475897e-6 +face_saver_N 3.729715012475897e-6 +face_saving_A 3.231957596716331e-5 +face_saving_N 3.729715012475897e-6 +face_up_to_V2 1.609865254278217e-5 +faceless_A 1.0773191989054437e-5 +faceplate_N 3.729715012475897e-6 +facer_N 3.729715012475897e-6 +facet_N 3.729715012475897e-6 +faceted_A 1.0773191989054437e-5 +facetious_A 2.1546383978108874e-5 +facetiousness_N 3.729715012475897e-6 +facia_N 3.729715012475897e-6 +facial_A 5.3865959945272184e-5 +facial_N 3.729715012475897e-6 +facile_A 1.0773191989054437e-5 +facilitate_V2 1.609865254278217e-4 +facilitation_N 3.729715012475897e-6 +facilitative_A 1.0773191989054437e-5 +facilitator_N 3.729715012475897e-6 +facilitatory_A 1.0773191989054437e-5 +facility_N 6.11673262046047e-4 +facing_N 7.459430024951794e-6 +facsimile_N 1.8648575062379485e-5 +fact_N 8.168075877322214e-4 +fact_finding_A 3.231957596716331e-5 +faction_N 2.9837720099807175e-5 +factious_A 1.0773191989054437e-5 +factitious_A 1.0773191989054437e-5 +factoid_N 3.729715012475897e-6 +factor_N 4.774035215969148e-4 +factor_in_V 2.2678822515534993e-5 +factorial_A 1.0773191989054437e-5 +factorial_N 3.729715012475897e-6 +factorization_N 3.729715012475897e-6 +factorize_V2 1.609865254278217e-5 +factory_N 3.095663460354994e-4 +factotum_N 3.729715012475897e-6 +factual_A 6.463915193432663e-5 +factuality_N 3.729715012475897e-6 +facula_N 3.729715012475897e-6 +facultative_A 1.0773191989054437e-5 +faculty_N 2.9837720099807175e-5 +fad_N 2.9837720099807175e-5 +faddish_A 1.0773191989054437e-5 +faddist_N 3.729715012475897e-6 +faddy_A 1.0773191989054437e-5 +fade_N 3.729715012475897e-6 +fade_V 3.175035152174899e-4 +fade_V2 1.609865254278217e-5 +fadeout_N 3.729715012475897e-6 +fado_N 3.729715012475897e-6 +faecal_A 1.0773191989054437e-5 +faerie_N 3.729715012475897e-6 +faery_N 3.729715012475897e-6 +faff_about_V 2.2678822515534993e-5 +faff_around_V 2.2678822515534993e-5 +fag_N 3.729715012475897e-6 +fag_V 2.2678822515534993e-5 +fag_V2 1.609865254278217e-5 +fag_end_N 3.729715012475897e-6 +faggot_N 3.729715012475897e-6 +fagot_N 3.729715012475897e-6 +fagoting_N 3.729715012475897e-6 +faience_N 3.729715012475897e-6 +fail_N 3.729715012475897e-6 +fail_V 1.5875175760874495e-3 +fail_V2 3.8636766102677204e-4 +fail_V2V 4.675081813931744e-4 +fail_VV 1.2492792619642513e-2 +fail_safe_A 1.0773191989054437e-5 +failing_N 7.459430024951794e-6 +faille_N 3.729715012475897e-6 +failure_N 3.655120712226379e-4 +fain_Adv 8.668966832532898e-6 +faineance_N 3.729715012475897e-6 +faineant_A 1.0773191989054437e-5 +faint_A 4.309276795621775e-5 +faint_N 3.729715012475897e-6 +faint_V 1.1339411257767497e-4 +faint_hearted_A 1.0773191989054437e-5 +faintheartedness_N 3.729715012475897e-6 +faintness_N 3.729715012475897e-6 +fair_A 1.0880923908944981e-3 +fair_Adv 8.668966832532898e-6 +fair_N 2.237829007485538e-5 +fair_minded_A 1.0773191989054437e-5 +fairground_N 3.729715012475897e-6 +fairish_A 1.0773191989054437e-5 +fairlead_N 3.729715012475897e-6 +fairness_N 4.475658014971076e-5 +fairway_N 7.459430024951794e-6 +fairy_N 7.459430024951794e-6 +fairyland_N 3.729715012475897e-6 +fairytale_N 3.729715012475897e-6 +fait_accompli_N 1.118914503742769e-5 +faith_N 4.848629516218666e-5 +faith_healing_N 3.729715012475897e-6 +faithful_A 5.3865959945272184e-5 +faithful_N 3.729715012475897e-6 +faithfulness_N 3.729715012475897e-6 +faithless_A 1.0773191989054437e-5 +faithlessness_N 3.729715012475897e-6 +fake_A 2.1546383978108874e-5 +fake_N 1.118914503742769e-5 +fake_V2 6.439461017112868e-5 +fakery_N 3.729715012475897e-6 +fakir_N 3.729715012475897e-6 +falafel_N 3.729715012475897e-6 +falangist_N 3.729715012475897e-6 +falcate_A 1.0773191989054437e-5 +falchion_N 3.729715012475897e-6 +falcon_N 7.459430024951794e-6 +falconer_N 3.729715012475897e-6 +falconine_A 1.0773191989054437e-5 +falconry_N 3.729715012475897e-6 +falkirk_PN 1.865462821325971e-5 +fall_N 4.32646941447204e-4 +fall_V 1.1951739465686942e-2 +fall_V2 4.153452356037799e-3 +fall_VA 1.0826771653543307e-2 +fall_about_V 2.2678822515534993e-5 +fall_apart_V 1.1339411257767497e-4 +fall_back_V 2.2678822515534993e-5 +fall_back_on_V2 1.609865254278217e-5 +fall_behind_V 2.2678822515534993e-5 +fall_behind_in_V2 1.609865254278217e-5 +fall_down_V 2.2678822515534993e-5 +fall_for_V2 1.609865254278217e-5 +fall_in_V 2.2678822515534993e-5 +fall_into_V2 1.609865254278217e-5 +fall_off_V 2.2678822515534993e-5 +fall_out_V 2.2678822515534993e-5 +fall_out_with_V2 1.609865254278217e-5 +fall_over_V 2.2678822515534993e-5 +fall_through_V 2.2678822515534993e-5 +fall_under_V2 1.609865254278217e-5 +fallacious_A 2.1546383978108874e-5 +fallaciousness_N 3.729715012475897e-6 +fallacy_N 3.729715012475897e-6 +fallboard_N 3.729715012475897e-6 +faller_N 3.729715012475897e-6 +fallibility_N 3.729715012475897e-6 +fallible_A 2.1546383978108874e-5 +fallopian_A 1.0773191989054437e-5 +fallout_N 2.9837720099807175e-5 +fallow_A 2.1546383978108874e-5 +fallow_N 3.729715012475897e-6 +fallow_deer_N 3.729715012475897e-6 +falls_N 3.729715012475897e-6 +falmouth_PN 1.865462821325971e-5 +false_A 3.555153356387964e-4 +false_Adv 8.668966832532898e-6 +falsehood_N 3.729715012475897e-6 +falseness_N 7.459430024951794e-6 +falsetto_A 1.0773191989054437e-5 +falsetto_N 3.729715012475897e-6 +falsie_N 3.729715012475897e-6 +falsification_N 3.729715012475897e-6 +falsifier_N 3.729715012475897e-6 +falsify_V2 8.049326271391085e-5 +falsity_N 3.729715012475897e-6 +falter_V 2.9482469270195494e-4 +falter_V2 1.609865254278217e-5 +falteringly_Adv 8.668966832532898e-6 +fame_N 2.237829007485538e-5 +fame_V2 9.659191525669301e-5 +familial_A 1.0773191989054437e-5 +familiar_A 1.6159787983581657e-4 +familiar_N 3.729715012475897e-6 +familiar_with_A2 0.5 +familiarity_N 7.459430024951794e-6 +familiarization_N 3.729715012475897e-6 +familiarize_V2 3.219730508556434e-5 +familiarizing_A 1.0773191989054437e-5 +family_N 9.212396080815465e-4 +famine_N 2.237829007485538e-5 +famish_V 2.2678822515534993e-5 +famish_V2 1.609865254278217e-5 +famotidine_N 3.729715012475897e-6 +famous_A 3.1242256768257865e-4 +famulus_N 3.729715012475897e-6 +fan_N 1.8648575062379482e-4 +fan_V 2.2678822515534993e-5 +fan_V2 3.219730508556434e-5 +fan_belt_N 3.729715012475897e-6 +fanaloka_N 3.729715012475897e-6 +fanatic_A 2.1546383978108874e-5 +fanatic_N 1.118914503742769e-5 +fanatical_A 1.0773191989054437e-5 +fanaticism_N 3.729715012475897e-6 +fancier_N 3.729715012475897e-6 +fanciful_A 4.309276795621775e-5 +fancy_A 1.6159787983581657e-4 +fancy_N 1.4918860049903587e-5 +fancy_V2 1.609865254278217e-5 +fancy_V3 3.1746031746031746e-3 +fancy_free_A 1.0773191989054437e-5 +fandango_N 3.729715012475897e-6 +fandom_N 3.729715012475897e-6 +fanfare_N 2.9837720099807175e-5 +fang_N 7.459430024951794e-6 +fanged_A 1.0773191989054437e-5 +fanion_N 3.729715012475897e-6 +fanjet_N 3.729715012475897e-6 +fanlight_N 3.729715012475897e-6 +fanlike_A 1.0773191989054437e-5 +fanny_N 7.459430024951794e-6 +fanny_PN 1.865462821325971e-5 +fantail_N 3.729715012475897e-6 +fantan_N 3.729715012475897e-6 +fantasia_N 3.729715012475897e-6 +fantasist_N 3.729715012475897e-6 +fantasize_V 6.803646754660499e-5 +fantast_N 3.729715012475897e-6 +fantastic_A 3.231957596716331e-5 +fantastically_Adv 8.668966832532898e-6 +fantasy_N 2.6108005087331277e-5 +fantods_N 3.729715012475897e-6 +fao_N 3.729715012475897e-6 +far_A 4.072266571862577e-3 +far_AdA 3.5496957403651115e-3 +far_V2 1.609865254278217e-5 +far_famed_A 1.0773191989054437e-5 +far_fetched_A 1.0773191989054437e-5 +far_flung_A 3.231957596716331e-5 +far_from_Prep 9.978546125829467e-6 +far_off_A 1.0773191989054437e-5 +far_reaching_A 1.4005149585770768e-4 +far_seeing_A 1.0773191989054437e-5 +far_sighted_A 1.0773191989054437e-5 +farad_N 3.729715012475897e-6 +farandole_N 3.729715012475897e-6 +faraway_A 1.0773191989054437e-5 +farce_N 1.118914503742769e-5 +farcical_A 1.0773191989054437e-5 +fardel_N 3.729715012475897e-6 +fare_N 1.118914503742769e-4 +fare_V 5.669705628883749e-4 +fare_stage_N 3.729715012475897e-6 +farewell_N 3.729715012475897e-6 +farfalle_N 3.729715012475897e-6 +farfetched_A 1.0773191989054437e-5 +farina_N 3.729715012475897e-6 +farinaceous_A 1.0773191989054437e-5 +farkleberry_N 3.729715012475897e-6 +farm_N 1.9767489566122252e-4 +farm_V 1.1339411257767497e-4 +farm_V2 3.219730508556434e-5 +farm_out_V2 1.609865254278217e-5 +farmer_N 3.6924178623511377e-4 +farmerette_N 3.729715012475897e-6 +farmhand_N 3.729715012475897e-6 +farmhouse_N 3.729715012475897e-6 +farming_N 3.729715012475897e-6 +farmland_N 3.729715012475897e-6 +farmplace_N 3.729715012475897e-6 +farmstead_N 7.459430024951794e-6 +farmyard_N 3.729715012475897e-6 +farness_N 3.729715012475897e-6 +farnham_PN 1.865462821325971e-5 +farnworth_PN 1.865462821325971e-5 +faro_N 3.729715012475897e-6 +farrago_N 3.729715012475897e-6 +farrier_N 3.729715012475897e-6 +farrow_N 3.729715012475897e-6 +farrow_V 2.2678822515534993e-5 +farseeing_A 1.0773191989054437e-5 +farsi_N 3.729715012475897e-6 +farsighted_A 1.0773191989054437e-5 +fart_N 3.729715012475897e-6 +fart_V 2.2678822515534993e-5 +fart_about_V 2.2678822515534993e-5 +fart_around_V 2.2678822515534993e-5 +farther_A 1.0773191989054437e-5 +farther_Adv 2.6006900497598697e-5 +farthermost_A 1.0773191989054437e-5 +farthest_Adv 8.668966832532898e-6 +farthing_N 3.729715012475897e-6 +farthingale_N 3.729715012475897e-6 +fartlek_N 3.729715012475897e-6 +fasces_N 3.729715012475897e-6 +fascia_N 3.729715012475897e-6 +fascicle_N 3.729715012475897e-6 +fasciculation_N 3.729715012475897e-6 +fascinate_V2 3.219730508556434e-5 +fascinating_A 4.309276795621775e-5 +fascination_N 3.729715012475897e-6 +fascioliasis_N 3.729715012475897e-6 +fasciolopsiasis_N 3.729715012475897e-6 +fascism_N 7.459430024951794e-6 +fascist_A 3.231957596716331e-5 +fascist_N 7.459430024951794e-6 +fascista_N 3.729715012475897e-6 +fashion_N 1.4545888548655997e-4 +fashion_V2 8.049326271391085e-5 +fashionable_A 1.1850511187959881e-4 +fast_A 4.5247406354028633e-4 +fast_Adv 2.7740693864105275e-4 +fast_N 1.5664803052398767e-4 +fast_V 2.2678822515534993e-5 +fastball_N 7.459430024951794e-6 +fasten_V 4.5357645031069986e-5 +fasten_V2 1.609865254278217e-5 +fasten_down_V2 1.609865254278217e-5 +fasten_on_V2 1.609865254278217e-5 +fasten_onto_V2 1.609865254278217e-5 +fasten_up_V2 1.609865254278217e-5 +fastener_N 3.356743511228307e-5 +fastening_N 3.729715012475897e-6 +fastidious_A 2.1546383978108874e-5 +fastidiousness_N 3.729715012475897e-6 +fastigiate_A 1.0773191989054437e-5 +fastnacht_N 3.729715012475897e-6 +fastness_N 3.729715012475897e-6 +fat_A 2.2623703177014317e-4 +fat_N 1.4918860049903587e-5 +fat_V2 1.609865254278217e-5 +fatal_A 7.541234392338106e-5 +fatalism_N 3.729715012475897e-6 +fatalist_A 1.0773191989054437e-5 +fatalist_N 3.729715012475897e-6 +fatalistic_A 1.0773191989054437e-5 +fatality_N 3.356743511228307e-5 +fatback_N 3.729715012475897e-6 +fate_N 5.594572518713845e-5 +fate_V2 1.609865254278217e-5 +fateful_A 1.0773191989054437e-5 +fathead_N 3.729715012475897e-6 +father_N 1.7902632059884304e-4 +father_V2 1.609865254278217e-5 +father_in_law_N 3.729715012475897e-6 +fatherhood_N 3.729715012475897e-6 +fatherland_N 3.729715012475897e-6 +fatherless_A 1.0773191989054437e-5 +fatherliness_N 3.729715012475897e-6 +fatherly_A 1.0773191989054437e-5 +fathom_N 3.729715012475897e-6 +fathom_V2 1.609865254278217e-5 +fathom_out_V2 1.609865254278217e-5 +fathomable_A 1.0773191989054437e-5 +fathomless_A 1.0773191989054437e-5 +fatigability_N 3.729715012475897e-6 +fatigue_N 3.729715012475897e-6 +fatigue_V2 1.609865254278217e-5 +fatigue_party_N 3.729715012475897e-6 +fatigues_N 3.729715012475897e-6 +fatless_A 1.0773191989054437e-5 +fatness_N 3.729715012475897e-6 +fatso_N 3.729715012475897e-6 +fatten_V 9.071529006213997e-5 +fatten_V2 6.439461017112868e-5 +fatten_up_V2 1.609865254278217e-5 +fattish_A 1.0773191989054437e-5 +fattism_N 3.729715012475897e-6 +fatty_A 1.0773191989054437e-5 +fatuity_N 3.729715012475897e-6 +fatuous_A 2.1546383978108874e-5 +fatuousness_N 3.729715012475897e-6 +fatwa_N 3.729715012475897e-6 +fatwah_N 3.729715012475897e-6 +faubourg_N 3.729715012475897e-6 +faucal_A 1.0773191989054437e-5 +fauces_N 3.729715012475897e-6 +faucet_N 3.729715012475897e-6 +fauld_N 3.729715012475897e-6 +fauldhouse_PN 1.865462821325971e-5 +fault_N 7.459430024951794e-5 +fault_V2 4.8295957628346505e-5 +fault_finder_N 3.729715012475897e-6 +fault_finding_N 3.729715012475897e-6 +faultfinding_N 3.729715012475897e-6 +faultless_A 3.231957596716331e-5 +faultlessness_N 3.729715012475897e-6 +faulty_A 5.3865959945272184e-5 +faun_N 3.729715012475897e-6 +fauna_N 3.729715012475897e-6 +fauteuil_N 3.729715012475897e-6 +fauvism_N 3.729715012475897e-6 +faux_pas_N 3.729715012475897e-6 +faversham_PN 1.865462821325971e-5 +favism_N 3.729715012475897e-6 +favorableness_N 3.729715012475897e-6 +favoritism_N 3.729715012475897e-6 +favour_N 1.8648575062379485e-5 +favour_V 1.5875175760874494e-4 +favour_V2 7.888339745963262e-4 +favour_VS 1.7328019407381737e-4 +favourable_A 2.1546383978108874e-5 +favourite_A 4.309276795621775e-5 +favourite_N 1.118914503742769e-5 +favouritism_N 3.729715012475897e-6 +favus_N 3.729715012475897e-6 +fawley_PN 1.865462821325971e-5 +fawn_N 3.729715012475897e-6 +fawn_V 4.5357645031069986e-5 +fawn_on_V2 1.609865254278217e-5 +fawn_over_V2 1.609865254278217e-5 +fbi_PN 1.865462821325971e-5 +fealty_N 3.729715012475897e-6 +fear_N 4.102686513723486e-4 +fear_V 3.175035152174899e-4 +fear_V2 3.541703559412077e-4 +fear_VS 2.714723040489805e-3 +fearful_A 7.541234392338106e-5 +fearfulness_N 3.729715012475897e-6 +fearless_A 2.1546383978108874e-5 +fearlessness_N 3.729715012475897e-6 +fearsome_A 2.1546383978108874e-5 +feasibility_N 1.118914503742769e-5 +feasible_A 6.463915193432663e-5 +feast_N 7.459430024951794e-6 +feast_V 4.5357645031069986e-5 +feast_V2 1.609865254278217e-5 +feast_day_N 3.729715012475897e-6 +feasting_N 3.729715012475897e-6 +feat_N 3.356743511228307e-5 +feather_N 7.459430024951794e-6 +feather_V2 1.609865254278217e-5 +feather_boa_N 3.729715012475897e-6 +featherbed_N 3.729715012475897e-6 +featherbed_V2 1.609865254278217e-5 +featherbedding_N 3.729715012475897e-6 +featherbrained_A 1.0773191989054437e-5 +featheredge_N 3.729715012475897e-6 +featherfoil_N 3.729715012475897e-6 +featherlike_A 1.0773191989054437e-5 +featherstone_PN 1.865462821325971e-5 +feathertop_N 3.729715012475897e-6 +featherweight_N 3.729715012475897e-6 +feathery_A 1.0773191989054437e-5 +feature_N 1.3426974044913228e-4 +feature_V2 8.693272373102371e-4 +featureless_A 2.1546383978108874e-5 +feb_PN 1.865462821325971e-5 +febrile_A 1.0773191989054437e-5 +february_N 3.729715012475897e-6 +february_PN 4.6636570533149275e-4 +feckless_A 3.231957596716331e-5 +fecklessness_N 3.729715012475897e-6 +fecula_N 3.729715012475897e-6 +feculence_N 3.729715012475897e-6 +feculent_A 1.0773191989054437e-5 +fecund_A 1.0773191989054437e-5 +fecundity_N 3.729715012475897e-6 +fed_N 1.118914503742769e-5 +fed_up_V 2.2678822515534993e-5 +fedayeen_N 3.729715012475897e-6 +fedelline_N 3.729715012475897e-6 +federal_A 7.121079904764983e-3 +federalism_N 3.729715012475897e-6 +federalist_N 3.729715012475897e-6 +federalization_N 3.729715012475897e-6 +federate_A 1.0773191989054437e-5 +federate_V 2.2678822515534993e-5 +federate_V2 1.609865254278217e-5 +federation_N 3.356743511228307e-5 +fedora_N 3.729715012475897e-6 +fee_N 7.086458523704204e-4 +fee_V2 1.609865254278217e-5 +feeble_A 3.231957596716331e-5 +feeble_minded_A 1.0773191989054437e-5 +feeblemindedness_N 3.729715012475897e-6 +feebleness_N 3.729715012475897e-6 +feed_N 3.729715012475897e-5 +feed_V 4.308976277951649e-4 +feed_V2 2.4147978814173252e-4 +feed_off_V2 1.609865254278217e-5 +feed_on_V2 1.609865254278217e-5 +feed_up_V2 1.609865254278217e-5 +feedback_N 7.459430024951794e-6 +feeder_N 3.729715012475897e-6 +feeding_N 3.729715012475897e-6 +feeding_bottle_N 3.729715012475897e-6 +feedlot_N 3.729715012475897e-6 +feedstock_N 3.729715012475897e-6 +feel_N 1.4918860049903587e-5 +feel_V 1.1566199482922848e-3 +feel_V2 5.634528389973759e-4 +feel_VA 5.4133858267716536e-2 +feel_VS 4.447524981227979e-3 +feel_out_V 2.2678822515534993e-5 +feel_up_V2 1.609865254278217e-5 +feel_up_to_V2 1.609865254278217e-5 +feeler_N 1.118914503742769e-5 +feeling_N 1.193508803992287e-4 +feelingly_Adv 8.668966832532898e-6 +feelings_N 3.729715012475897e-6 +feetfirst_Adv 8.668966832532898e-6 +feign_V2 1.609865254278217e-5 +feijoa_N 3.729715012475897e-6 +feint_N 3.729715012475897e-6 +feint_V 2.2678822515534993e-5 +feist_N 3.729715012475897e-6 +feisty_A 1.0773191989054437e-5 +feldspar_N 3.729715012475897e-6 +felicitate_V2 1.609865254278217e-5 +felicitation_N 3.729715012475897e-6 +felicitous_A 1.0773191989054437e-5 +felicity_N 3.729715012475897e-6 +felicity_PN 1.865462821325971e-5 +feline_A 2.1546383978108874e-5 +feline_N 3.729715012475897e-6 +felix_PN 1.865462821325971e-5 +felixstowe_PN 1.865462821325971e-5 +fell_A 3.231957596716331e-5 +fell_N 3.729715012475897e-6 +fell_V2 4.8295957628346505e-5 +fell_apart_V 2.2678822515534993e-5 +fell_off_V 2.2678822515534993e-5 +fell_through_V 2.2678822515534993e-5 +fellah_N 3.729715012475897e-6 +fellatio_N 3.729715012475897e-6 +felloe_N 3.729715012475897e-6 +fellow_N 1.0070230533684921e-4 +fellow_feeling_N 3.729715012475897e-6 +fellow_traveller_N 3.729715012475897e-6 +fellowship_N 3.729715012475897e-6 +felon_N 1.8648575062379485e-5 +felonious_A 1.0773191989054437e-5 +felony_N 6.340515521209024e-5 +felspar_N 3.729715012475897e-6 +felt_N 3.729715012475897e-6 +felted_A 1.0773191989054437e-5 +felucca_N 3.729715012475897e-6 +felwort_N 3.729715012475897e-6 +fem_PN 1.865462821325971e-5 +female_A 1.72371071824871e-4 +female_N 2.9837720099807175e-5 +femaleness_N 3.729715012475897e-6 +feminine_A 2.1546383978108874e-5 +feminine_N 3.729715012475897e-6 +femininity_N 7.459430024951794e-6 +feminism_N 7.459430024951794e-6 +feminist_A 1.0773191989054437e-5 +feminist_N 1.4918860049903587e-5 +feminization_N 3.729715012475897e-6 +femoral_A 1.0773191989054437e-5 +femtochemistry_N 3.729715012475897e-6 +femtometer_N 3.729715012475897e-6 +femtosecond_N 3.729715012475897e-6 +femtovolt_N 3.729715012475897e-6 +femur_N 3.729715012475897e-6 +fen_N 3.729715012475897e-6 +fence_N 2.9837720099807175e-5 +fence_V2 1.609865254278217e-5 +fence_in_V2 1.609865254278217e-5 +fence_off_V2 1.609865254278217e-5 +fencelike_A 1.0773191989054437e-5 +fencer_N 3.729715012475897e-6 +fencing_N 7.459430024951794e-6 +fend_V 4.762552728262349e-4 +fend_V2 1.609865254278217e-5 +fend_for_V2 1.609865254278217e-5 +fend_off_V2 4.8295957628346505e-5 +fender_N 7.459430024951794e-6 +fenestra_N 3.729715012475897e-6 +fenestral_A 1.0773191989054437e-5 +fenestration_N 3.729715012475897e-6 +fennel_N 1.118914503742769e-5 +fenoprofen_N 3.729715012475897e-6 +fenugreek_N 3.729715012475897e-6 +feoff_N 3.729715012475897e-6 +feral_A 1.0773191989054437e-5 +fergusonite_N 3.729715012475897e-6 +feria_N 3.729715012475897e-6 +ferial_A 1.0773191989054437e-5 +fermanagh_PN 1.865462821325971e-5 +fermata_N 3.729715012475897e-6 +ferment_N 3.729715012475897e-6 +ferment_V 2.2678822515534993e-5 +ferment_V2 1.609865254278217e-5 +fermentable_A 1.0773191989054437e-5 +fermentation_N 3.729715012475897e-6 +fermion_N 3.729715012475897e-6 +fermium_N 3.729715012475897e-6 +fern_N 3.729715012475897e-6 +ferned_A 1.0773191989054437e-5 +fernless_A 1.0773191989054437e-5 +fernlike_A 1.0773191989054437e-5 +ferny_A 1.0773191989054437e-5 +ferocious_A 7.541234392338106e-5 +ferociousness_N 3.729715012475897e-6 +ferocity_N 3.729715012475897e-6 +ferrara_PN 1.865462821325971e-5 +ferret_N 3.729715012475897e-6 +ferret_V 6.803646754660499e-5 +ferret_V2 1.609865254278217e-5 +ferret_out_V2 1.609865254278217e-5 +ferric_A 1.0773191989054437e-5 +ferricyanide_N 3.729715012475897e-6 +ferrimagnetism_N 3.729715012475897e-6 +ferrite_N 3.729715012475897e-6 +ferritin_N 3.729715012475897e-6 +ferrocerium_N 3.729715012475897e-6 +ferroconcrete_N 3.729715012475897e-6 +ferrocyanide_N 3.729715012475897e-6 +ferromagnetic_A 1.0773191989054437e-5 +ferromagnetism_N 3.729715012475897e-6 +ferrous_A 1.0773191989054437e-5 +ferrule_N 3.729715012475897e-6 +ferry_N 2.237829007485538e-5 +ferry_V 2.2678822515534993e-5 +ferry_V2 6.439461017112868e-5 +ferryboat_N 3.729715012475897e-6 +ferryhill_PN 1.865462821325971e-5 +ferryman_N 3.729715012475897e-6 +fertile_A 2.1546383978108874e-5 +fertility_N 1.118914503742769e-5 +fertilizable_A 1.0773191989054437e-5 +fertilization_N 7.459430024951794e-6 +fertilize_V2 9.659191525669301e-5 +fertilizer_N 4.848629516218666e-5 +ferule_N 3.729715012475897e-6 +fervency_N 3.729715012475897e-6 +fervent_A 3.231957596716331e-5 +fervid_A 1.0773191989054437e-5 +fervour_N 3.729715012475897e-6 +fescue_N 3.729715012475897e-6 +fess_up_V 2.2678822515534993e-5 +fess_up_V2 1.609865254278217e-5 +fess_up_to_V2 1.609865254278217e-5 +fesse_N 3.729715012475897e-6 +festal_A 1.0773191989054437e-5 +fester_N 3.729715012475897e-6 +fester_V 4.5357645031069986e-5 +festering_N 3.729715012475897e-6 +festination_N 3.729715012475897e-6 +festival_N 2.6108005087331277e-5 +festive_A 2.1546383978108874e-5 +festivity_N 1.4918860049903587e-5 +festoon_N 3.729715012475897e-6 +festoon_V2 4.8295957628346505e-5 +festschrift_N 3.729715012475897e-6 +fetal_A 6.463915193432663e-5 +fetch_N 3.729715012475897e-6 +fetch_V 9.071529006213997e-5 +fetch_V2 2.092824830561682e-4 +fetching_A 3.231957596716331e-5 +fete_N 3.729715012475897e-6 +fete_V2 1.609865254278217e-5 +fete_day_N 3.729715012475897e-6 +feterita_N 3.729715012475897e-6 +fetid_A 1.0773191989054437e-5 +fetish_N 7.459430024951794e-6 +fetishism_N 3.729715012475897e-6 +fetishist_N 3.729715012475897e-6 +fetlock_N 3.729715012475897e-6 +fetology_N 3.729715012475897e-6 +fetometry_N 3.729715012475897e-6 +fetoprotein_N 3.729715012475897e-6 +fetoscope_N 3.729715012475897e-6 +fetoscopy_N 3.729715012475897e-6 +fetter_N 3.729715012475897e-6 +fetter_V2 1.609865254278217e-5 +fetterbush_N 3.729715012475897e-6 +fettle_N 3.729715012475897e-6 +fettuccine_N 3.729715012475897e-6 +fetus_N 3.729715012475897e-6 +feud_N 1.118914503742769e-5 +feudal_A 2.1546383978108874e-5 +feudalism_N 3.729715012475897e-6 +feudatory_A 1.0773191989054437e-5 +feudatory_N 3.729715012475897e-6 +feude_V 1.1339411257767497e-4 +fever_N 4.1026865137234865e-5 +fevered_A 1.0773191989054437e-5 +feverfew_N 3.729715012475897e-6 +feverish_A 1.0773191989054437e-5 +feverroot_N 3.729715012475897e-6 +few_A 1.0773191989054437e-5 +few_N 3.729715012475897e-6 +few_Num 9.966991668767553e-5 +fewer_A 1.0773191989054437e-5 +fewer_than_AdN 6.389776357827476e-3 +fewness_N 3.729715012475897e-6 +fey_A 1.0773191989054437e-5 +fez_N 3.729715012475897e-6 +fiance_N 3.729715012475897e-6 +fiancee_N 3.729715012475897e-6 +fiasco_N 1.4918860049903587e-5 +fiat_N 7.459430024951794e-6 +fib_N 3.729715012475897e-6 +fib_V 2.2678822515534993e-5 +fibber_N 3.729715012475897e-6 +fibbing_N 3.729715012475897e-6 +fiberboard_N 3.729715012475897e-6 +fiberglass_N 3.729715012475897e-6 +fiberscope_N 3.729715012475897e-6 +fibre_N 2.6108005087331277e-5 +fibreboard_N 3.729715012475897e-6 +fibreglass_N 3.729715012475897e-6 +fibril_N 3.729715012475897e-6 +fibrillation_N 3.729715012475897e-6 +fibrillose_A 1.0773191989054437e-5 +fibrin_N 3.729715012475897e-6 +fibrinase_N 3.729715012475897e-6 +fibrinogen_N 3.729715012475897e-6 +fibrinolysis_N 3.729715012475897e-6 +fibrinopeptide_N 3.729715012475897e-6 +fibrinous_A 1.0773191989054437e-5 +fibroadenoma_N 3.729715012475897e-6 +fibroblast_N 3.729715012475897e-6 +fibrocalcific_A 1.0773191989054437e-5 +fibrocartilage_N 3.729715012475897e-6 +fibrocartilaginous_A 1.0773191989054437e-5 +fibroma_N 3.729715012475897e-6 +fibromyositis_N 3.729715012475897e-6 +fibrosis_N 3.729715012475897e-6 +fibrositis_N 3.729715012475897e-6 +fibrosity_N 3.729715012475897e-6 +fibrous_A 1.0773191989054437e-5 +fibula_N 3.729715012475897e-6 +fichu_N 3.729715012475897e-6 +fickle_A 3.231957596716331e-5 +fickleness_N 7.459430024951794e-6 +fictile_A 1.0773191989054437e-5 +fiction_N 2.237829007485538e-5 +fictional_A 4.309276795621775e-5 +fictionalization_N 3.729715012475897e-6 +fictitious_A 3.231957596716331e-5 +fictive_A 1.0773191989054437e-5 +fiddle_N 1.118914503742769e-5 +fiddle_V2 1.609865254278217e-5 +fiddle_about_V 2.2678822515534993e-5 +fiddle_around_V 2.2678822515534993e-5 +fiddle_away_V2 1.609865254278217e-5 +fiddleneck_N 3.729715012475897e-6 +fiddler_N 3.729715012475897e-6 +fiddlestick_N 3.729715012475897e-6 +fidelity_N 3.729715012475897e-6 +fidget_N 3.729715012475897e-6 +fidget_V 4.5357645031069986e-5 +fidget_V2 1.609865254278217e-5 +fidgety_A 1.0773191989054437e-5 +fiducial_A 1.0773191989054437e-5 +fiduciary_A 1.0773191989054437e-5 +fiduciary_N 3.729715012475897e-6 +fief_N 3.729715012475897e-6 +fiefdom_N 3.729715012475897e-6 +field_N 4.960520966592943e-4 +field_V 6.803646754660499e-5 +field_V2 1.4488787288503951e-4 +field_hospital_N 3.729715012475897e-6 +field_officer_N 3.729715012475897e-6 +fielder_N 3.729715012475897e-6 +fieldfare_N 3.729715012475897e-6 +fielding_N 3.729715012475897e-6 +fieldsman_N 3.729715012475897e-6 +fieldstone_N 3.729715012475897e-6 +fieldwork_N 3.729715012475897e-6 +fieldworker_N 3.729715012475897e-6 +fiend_N 3.729715012475897e-6 +fiendish_A 1.0773191989054437e-5 +fierce_A 2.2623703177014317e-4 +fierceness_N 3.729715012475897e-6 +fieriness_N 3.729715012475897e-6 +fiery_A 2.1546383978108874e-5 +fiesta_N 3.729715012475897e-6 +fife_N 3.729715012475897e-6 +fife_PN 1.865462821325971e-5 +fig_N 3.729715012475897e-6 +fig_leaf_N 3.729715012475897e-6 +fight_N 2.051343256861743e-4 +fight_V 1.0432258357146098e-3 +fight_V2 7.727353220535441e-4 +fight_V2V 4.675081813931744e-4 +fight_back_V 2.2678822515534993e-5 +fight_back_V2 1.609865254278217e-5 +fight_it_out_V2 1.609865254278217e-5 +fight_off_V2 1.609865254278217e-5 +fighter_N 5.2216010174662554e-5 +fighting_N 2.6108005087331277e-5 +figment_N 3.729715012475897e-6 +figural_A 1.0773191989054437e-5 +figuration_N 3.729715012475897e-6 +figurative_A 3.231957596716331e-5 +figure_N 9.175098930690706e-4 +figure_V 4.762552728262349e-4 +figure_V2 8.049326271391085e-5 +figure_V2V 4.675081813931744e-4 +figure_VS 2.4836827817247154e-3 +figure_on_V2 1.609865254278217e-5 +figure_out_V2 1.609865254278217e-5 +figure_up_V2 1.609865254278217e-5 +figurehead_N 3.729715012475897e-6 +figurine_N 3.729715012475897e-6 +figwort_N 3.729715012475897e-6 +fiji_PN 1.865462821325971e-5 +fijian_A 1.0773191989054437e-5 +fijian_N 3.729715012475897e-6 +filaggrin_N 3.729715012475897e-6 +filament_N 3.729715012475897e-6 +filamentous_A 1.0773191989054437e-5 +filar_A 1.0773191989054437e-5 +filaria_N 3.729715012475897e-6 +filarial_A 1.0773191989054437e-5 +filariasis_N 3.729715012475897e-6 +filariid_A 1.0773191989054437e-5 +filature_N 3.729715012475897e-6 +filbert_N 7.459430024951794e-6 +filch_V2 3.219730508556434e-5 +file_N 5.967544019961435e-5 +file_V 5.329523291150723e-3 +file_V2 2.7206722797301864e-3 +file_away_V2 1.609865254278217e-5 +file_for_V2 1.609865254278217e-5 +filefish_N 3.729715012475897e-6 +filename_N 3.729715012475897e-6 +filer_N 3.729715012475897e-6 +filet_N 3.729715012475897e-6 +filial_A 2.1546383978108874e-5 +filibuster_N 1.118914503742769e-5 +filibuster_V 2.2678822515534993e-5 +filicide_N 3.729715012475897e-6 +filigree_N 3.729715012475897e-6 +filing_N 3.729715012475897e-6 +filipino_A 4.309276795621775e-5 +filipino_N 1.118914503742769e-5 +fill_N 7.459430024951794e-6 +fill_V 5.442917403728399e-4 +fill_V2 1.1108070254519696e-3 +fill_in_V 2.2678822515534993e-5 +fill_in_V2 1.609865254278217e-5 +fill_in_for_V2 1.609865254278217e-5 +fill_in_on_V3 1.5873015873015873e-3 +fill_out_V 2.2678822515534993e-5 +fill_out_V2 1.609865254278217e-5 +fill_up_V2 1.609865254278217e-5 +filler_N 3.729715012475897e-6 +fillet_N 3.729715012475897e-6 +fillet_V2 1.609865254278217e-5 +filling_N 1.118914503742769e-5 +fillip_N 3.729715012475897e-6 +filly_N 7.459430024951794e-6 +film_N 3.878903612974933e-4 +film_V 9.071529006213997e-5 +film_V2 6.439461017112868e-5 +film_star_N 3.729715012475897e-6 +filmable_A 1.0773191989054437e-5 +filmdom_N 3.729715012475897e-6 +filming_N 3.729715012475897e-6 +filmy_A 1.0773191989054437e-5 +filovirus_N 3.729715012475897e-6 +fils_N 3.729715012475897e-6 +filter_N 3.729715012475897e-5 +filter_V 1.1339411257767497e-4 +filter_V2 3.219730508556434e-5 +filter_in_V 2.2678822515534993e-5 +filter_out_V2 1.609865254278217e-5 +filtertipped_A 1.0773191989054437e-5 +filth_N 7.459430024951794e-6 +filthiness_N 3.729715012475897e-6 +filthy_A 1.0773191989054437e-5 +filtrate_N 3.729715012475897e-6 +filtrate_V 2.2678822515534993e-5 +filtrate_V2 1.609865254278217e-5 +filtration_N 7.459430024951794e-6 +fimbria_N 3.729715012475897e-6 +fimbriate_A 1.0773191989054437e-5 +fin_N 3.729715012475897e-6 +finable_A 1.0773191989054437e-5 +finagle_V2 3.219730508556434e-5 +finagler_N 3.729715012475897e-6 +final_A 2.1330920138327783e-3 +final_N 1.8648575062379485e-5 +finale_N 3.729715012475897e-6 +finalist_N 7.459430024951794e-6 +finality_N 3.729715012475897e-6 +finalization_N 3.729715012475897e-6 +finalize_V2 8.049326271391085e-5 +finance_N 4.2891722643472813e-4 +finance_V2 2.1411207881900287e-3 +financial_A 6.647059457246587e-3 +financier_N 1.4172917047408407e-4 +financing_N 1.4918860049903587e-5 +finback_N 3.729715012475897e-6 +finch_N 3.729715012475897e-6 +find_N 7.459430024951794e-6 +find_V 1.4060869959631695e-3 +find_V2 3.4451116441553842e-3 +find_V2A 6.5e-2 +find_V2V 4.207573632538569e-3 +find_VS 9.761450932825044e-3 +find_out_V 2.2678822515534993e-5 +find_out_V2 1.609865254278217e-5 +finder_N 7.459430024951794e-6 +finding_N 1.6037774553646355e-4 +findings_N 3.729715012475897e-6 +fine_A 3.555153356387964e-4 +fine_Adv 1.7337933665065797e-5 +fine_N 1.5664803052398767e-4 +fine_V2 5.151568813690294e-4 +fine_tooth_A 1.0773191989054437e-5 +fineable_A 1.0773191989054437e-5 +fineness_N 3.729715012475897e-6 +finer_A 1.0773191989054437e-5 +finery_N 7.459430024951794e-6 +finespun_A 1.0773191989054437e-5 +finesse_N 3.729715012475897e-6 +finesse_V2 3.219730508556434e-5 +finger_N 5.967544019961435e-5 +finger_V2 8.049326271391085e-5 +finger_alphabet_N 3.729715012475897e-6 +finger_bowl_N 3.729715012475897e-6 +finger_plate_N 3.729715012475897e-6 +finger_post_N 3.729715012475897e-6 +fingerboard_N 3.729715012475897e-6 +fingering_N 3.729715012475897e-6 +fingerless_A 1.0773191989054437e-5 +fingerling_N 3.729715012475897e-6 +fingermark_N 3.729715012475897e-6 +fingernail_N 3.729715012475897e-6 +fingerpost_N 3.729715012475897e-6 +fingerprint_N 1.4918860049903587e-5 +fingerprinting_N 3.729715012475897e-6 +fingerstall_N 3.729715012475897e-6 +fingertip_N 3.729715012475897e-6 +finial_N 3.729715012475897e-6 +finical_A 1.0773191989054437e-5 +finicky_A 1.0773191989054437e-5 +finis_N 6.713487022456614e-5 +finish_N 2.237829007485538e-5 +finish_V 1.5875175760874495e-3 +finish_V2 2.2538113559895037e-4 +finish_VA 2.952755905511811e-3 +finish_off_V2 1.609865254278217e-5 +finish_up_V 2.2678822515534993e-5 +finish_up_with_V2 1.609865254278217e-5 +finish_with_V2 1.609865254278217e-5 +finisher_N 3.729715012475897e-6 +finite_A 2.1546383978108874e-5 +finiteness_N 3.729715012475897e-6 +fink_N 3.729715012475897e-6 +fink_on_V2 1.609865254278217e-5 +fink_out_V 2.2678822515534993e-5 +finland_PN 3.357833078386748e-4 +finn_N 3.729715012475897e-6 +finnan_N 3.729715012475897e-6 +finnan_haddie_N 3.729715012475897e-6 +finnan_haddock_N 3.729715012475897e-6 +finnish_A 1.0773191989054437e-5 +finnish_N 3.729715012475897e-6 +fiona_PN 1.865462821325971e-5 +fiord_N 3.729715012475897e-6 +fipple_N 3.729715012475897e-6 +fir_N 3.729715012475897e-6 +fir_cone_N 3.729715012475897e-6 +fire_N 2.6853948089826455e-4 +fire_V 4.762552728262349e-4 +fire_V2 2.8977574577007903e-4 +fire_alarm_N 3.729715012475897e-6 +fire_away_V 2.2678822515534993e-5 +fire_back_V 2.2678822515534993e-5 +fire_brigade_N 3.729715012475897e-6 +fire_control_N 3.729715012475897e-6 +fire_eater_N 3.729715012475897e-6 +fire_engine_N 3.729715012475897e-6 +fire_escape_N 3.729715012475897e-6 +fire_extinguisher_N 3.729715012475897e-6 +fire_fighter_N 3.729715012475897e-6 +fire_hose_N 3.729715012475897e-6 +fire_off_V2 1.609865254278217e-5 +fire_power_N 3.729715012475897e-6 +fire_raising_N 3.729715012475897e-6 +fire_up_V 2.2678822515534993e-5 +fire_up_V2 1.609865254278217e-5 +fire_walker_N 3.729715012475897e-6 +fire_walking_N 3.729715012475897e-6 +fire_watcher_N 3.729715012475897e-6 +fire_watching_N 3.729715012475897e-6 +firearm_N 3.729715012475897e-6 +fireball_N 1.4918860049903587e-5 +firebase_N 3.729715012475897e-6 +firebird_N 3.729715012475897e-6 +fireboat_N 3.729715012475897e-6 +firebomb_N 3.729715012475897e-6 +firebox_N 3.729715012475897e-6 +firebrand_N 3.729715012475897e-6 +firebrat_N 3.729715012475897e-6 +firebreak_N 3.729715012475897e-6 +firebrick_N 3.729715012475897e-6 +firebug_N 3.729715012475897e-6 +fireclay_N 3.729715012475897e-6 +firecracker_N 3.729715012475897e-6 +firedamp_N 3.729715012475897e-6 +firedog_N 3.729715012475897e-6 +firefly_N 3.729715012475897e-6 +fireguard_N 3.729715012475897e-6 +firelight_N 3.729715012475897e-6 +firelighter_N 3.729715012475897e-6 +fireman_N 1.4918860049903587e-5 +firenze_PN 1.865462821325971e-5 +fireplace_N 1.118914503742769e-5 +fireplug_N 3.729715012475897e-6 +firepower_N 3.729715012475897e-6 +fireproof_A 1.0773191989054437e-5 +fireside_N 3.729715012475897e-6 +firestone_N 3.729715012475897e-6 +firestorm_N 3.729715012475897e-6 +firetrap_N 3.729715012475897e-6 +firewall_N 3.729715012475897e-6 +firewater_N 7.459430024951794e-6 +fireweed_N 3.729715012475897e-6 +firewood_N 3.729715012475897e-6 +firework_N 1.118914503742769e-5 +firing_line_N 3.729715012475897e-6 +firing_party_N 3.729715012475897e-6 +firing_squad_N 3.729715012475897e-6 +firkin_N 3.729715012475897e-6 +firm_A 7.972162071900284e-4 +firm_Adv 8.668966832532898e-6 +firm_N 3.2336629158166027e-3 +firm_V 2.0410940263981494e-4 +firm_V2 1.4488787288503951e-4 +firm_up_V2 1.609865254278217e-5 +firmament_N 3.729715012475897e-6 +firmamental_A 1.0773191989054437e-5 +firmness_N 1.4918860049903587e-5 +firmware_N 3.729715012475897e-6 +first_class_A 3.231957596716331e-5 +first_class_Adv 8.668966832532898e-6 +first_hand_A 2.1546383978108874e-5 +first_hand_Adv 8.668966832532898e-6 +first_nighter_N 3.729715012475897e-6 +first_rate_A 3.231957596716331e-5 +firstborn_A 1.0773191989054437e-5 +firstborn_N 3.729715012475897e-6 +firsthand_A 1.0773191989054437e-5 +firsthand_Adv 8.668966832532898e-6 +firth_N 3.729715012475897e-6 +fisc_N 3.729715012475897e-6 +fiscal_A 3.0380401409133514e-3 +fish_N 4.1026865137234865e-5 +fish_V 4.5357645031069986e-5 +fish_V2 1.609865254278217e-5 +fish_for_V2 1.609865254278217e-5 +fish_hook_N 3.729715012475897e-6 +fish_knife_N 3.729715012475897e-6 +fish_out_V2 1.609865254278217e-5 +fish_slice_N 3.729715012475897e-6 +fishball_N 3.729715012475897e-6 +fishbone_N 3.729715012475897e-6 +fishbowl_N 3.729715012475897e-6 +fishcake_N 3.729715012475897e-6 +fisher_N 3.729715012475897e-6 +fisherman_N 1.8648575062379485e-5 +fishery_N 1.4918860049903587e-5 +fisheye_A 1.0773191989054437e-5 +fishhook_N 3.729715012475897e-6 +fishing_N 5.594572518713845e-5 +fishing_line_N 3.729715012475897e-6 +fishing_rod_N 3.729715012475897e-6 +fishing_tackle_N 3.729715012475897e-6 +fishmonger_N 3.729715012475897e-6 +fishnet_N 3.729715012475897e-6 +fishpaste_N 3.729715012475897e-6 +fishplate_N 3.729715012475897e-6 +fishpond_N 3.729715012475897e-6 +fishwife_N 3.729715012475897e-6 +fishy_A 1.0773191989054437e-5 +fissile_A 1.0773191989054437e-5 +fission_N 3.729715012475897e-6 +fissionable_A 1.0773191989054437e-5 +fissiparity_N 3.729715012475897e-6 +fissiparous_A 1.0773191989054437e-5 +fissure_N 7.459430024951794e-6 +fist_N 1.118914503742769e-5 +fistfight_N 3.729715012475897e-6 +fistmele_N 3.729715012475897e-6 +fistula_N 3.729715012475897e-6 +fistular_A 1.0773191989054437e-5 +fistulous_A 1.0773191989054437e-5 +fit_A 4.309276795621775e-5 +fit_N 5.967544019961435e-5 +fit_V 4.308976277951649e-4 +fit_V2 1.9318383051338602e-4 +fit_in_V 2.2678822515534993e-5 +fit_in_V2 1.609865254278217e-5 +fit_in_with_V2 1.609865254278217e-5 +fit_into_V2 1.609865254278217e-5 +fit_out_V2 1.609865254278217e-5 +fit_out_with_V2 1.609865254278217e-5 +fit_up_V2 1.609865254278217e-5 +fitful_A 1.0773191989054437e-5 +fitfulness_N 3.729715012475897e-6 +fitment_N 3.729715012475897e-6 +fitness_N 4.1026865137234865e-5 +fitter_A 1.0773191989054437e-5 +fitter_N 3.729715012475897e-6 +fitting_A 3.231957596716331e-5 +fitting_N 7.459430024951794e-6 +fivefold_A 3.231957596716331e-5 +fivepence_N 3.729715012475897e-6 +fivepenny_A 1.0773191989054437e-5 +fiver_N 3.729715012475897e-6 +fives_N 3.729715012475897e-6 +fix_N 1.4918860049903587e-5 +fix_V 8.164376105592598e-4 +fix_V2 8.049326271391085e-4 +fix_up_V2 1.609865254278217e-5 +fixate_V2 1.609865254278217e-5 +fixation_N 7.459430024951794e-6 +fixative_N 3.729715012475897e-6 +fixedly_Adv 8.668966832532898e-6 +fixedness_N 3.729715012475897e-6 +fixer_N 3.729715012475897e-6 +fixings_N 3.729715012475897e-6 +fixture_N 2.237829007485538e-5 +fizgig_N 3.729715012475897e-6 +fizz_N 3.729715012475897e-6 +fizz_V 2.2678822515534993e-5 +fizzle_V 6.803646754660499e-5 +fizzle_out_V 2.2678822515534993e-5 +fizzy_A 1.0773191989054437e-5 +fjord_N 3.729715012475897e-6 +flab_N 3.729715012475897e-6 +flabbergast_V2 3.219730508556434e-5 +flabbiness_N 7.459430024951794e-6 +flabby_A 1.0773191989054437e-5 +flaccid_A 1.0773191989054437e-5 +flaccidity_N 3.729715012475897e-6 +flag_N 1.3426974044913228e-4 +flag_V 4.5357645031069986e-5 +flag_V2 1.609865254278217e-5 +flag_captain_N 3.729715012475897e-6 +flag_day_N 3.729715012475897e-6 +flag_down_V2 1.609865254278217e-5 +flag_up_V2 1.609865254278217e-5 +flagellant_N 3.729715012475897e-6 +flagellate_A 1.0773191989054437e-5 +flagellate_N 3.729715012475897e-6 +flagellate_V2 1.609865254278217e-5 +flagellation_N 3.729715012475897e-6 +flagellum_N 3.729715012475897e-6 +flageolet_N 3.729715012475897e-6 +flagfish_N 3.729715012475897e-6 +flagging_N 3.729715012475897e-6 +flagitious_A 1.0773191989054437e-5 +flagon_N 3.729715012475897e-6 +flagpole_N 3.729715012475897e-6 +flagrant_A 3.231957596716331e-5 +flagship_N 4.848629516218666e-5 +flagstaff_N 3.729715012475897e-6 +flagstone_N 3.729715012475897e-6 +flail_N 3.729715012475897e-6 +flail_V2 1.609865254278217e-5 +flair_N 1.4918860049903587e-5 +flak_N 3.729715012475897e-6 +flake_N 3.729715012475897e-6 +flake_V 2.2678822515534993e-5 +flake_out_V 2.2678822515534993e-5 +flakiness_N 3.729715012475897e-6 +flaky_A 2.1546383978108874e-5 +flambeau_N 3.729715012475897e-6 +flamboyance_N 3.729715012475897e-6 +flamboyant_A 9.695872790148993e-5 +flame_N 2.6108005087331277e-5 +flame_V 4.5357645031069986e-5 +flame_out_V 2.2678822515534993e-5 +flame_up_V 2.2678822515534993e-5 +flamen_N 3.729715012475897e-6 +flamenco_N 3.729715012475897e-6 +flameproof_A 1.0773191989054437e-5 +flamethrower_N 3.729715012475897e-6 +flamingo_N 3.729715012475897e-6 +flammability_N 3.729715012475897e-6 +flammable_A 2.1546383978108874e-5 +flan_N 3.729715012475897e-6 +flange_N 3.729715012475897e-6 +flank_N 3.729715012475897e-6 +flank_V 4.5357645031069986e-5 +flank_V2 1.609865254278217e-5 +flanker_N 3.729715012475897e-6 +flannel_N 7.459430024951794e-6 +flannelbush_N 3.729715012475897e-6 +flannelette_N 3.729715012475897e-6 +flap_N 2.9837720099807175e-5 +flap_V 6.803646754660499e-5 +flap_V2 1.609865254278217e-5 +flapjack_N 3.729715012475897e-6 +flapper_N 3.729715012475897e-6 +flare_N 3.729715012475897e-6 +flare_V 9.071529006213997e-5 +flare_V2 1.609865254278217e-5 +flare_out_V 2.2678822515534993e-5 +flare_path_N 3.729715012475897e-6 +flare_up_N 3.729715012475897e-6 +flare_up_V 2.2678822515534993e-5 +flash_N 1.8648575062379485e-5 +flash_V 2.0410940263981494e-4 +flash_V2 4.8295957628346505e-5 +flashback_N 1.118914503742769e-5 +flashboard_N 3.729715012475897e-6 +flashbulb_N 3.729715012475897e-6 +flasher_N 3.729715012475897e-6 +flashgun_N 3.729715012475897e-6 +flashiness_N 3.729715012475897e-6 +flashing_N 3.729715012475897e-6 +flashlight_N 1.8648575062379485e-5 +flashover_N 3.729715012475897e-6 +flashpoint_N 7.459430024951794e-6 +flashy_A 9.695872790148993e-5 +flask_N 3.729715012475897e-6 +flat_A 1.012680046971117e-3 +flat_Adv 6.068276782773029e-5 +flat_N 1.8648575062379485e-5 +flat_bottomed_A 1.0773191989054437e-5 +flat_car_N 3.729715012475897e-6 +flat_footed_A 1.0773191989054437e-5 +flat_iron_N 3.729715012475897e-6 +flatbed_N 3.729715012475897e-6 +flatbottom_A 1.0773191989054437e-5 +flatbread_N 3.729715012475897e-6 +flatbrod_N 3.729715012475897e-6 +flatcar_N 3.729715012475897e-6 +flatfish_N 3.729715012475897e-6 +flatfoot_N 3.729715012475897e-6 +flathead_N 3.729715012475897e-6 +flatiron_N 3.729715012475897e-6 +flatlet_N 3.729715012475897e-6 +flatmate_N 3.729715012475897e-6 +flatness_N 1.118914503742769e-5 +flats_N 3.729715012475897e-6 +flatten_V 2.0410940263981494e-4 +flatten_V2 3.219730508556434e-5 +flatter_V2 1.609865254278217e-5 +flatterer_N 3.729715012475897e-6 +flattering_A 1.0773191989054437e-5 +flattery_N 7.459430024951794e-6 +flattop_N 3.729715012475897e-6 +flatulence_N 3.729715012475897e-6 +flatulent_A 1.0773191989054437e-5 +flatware_N 3.729715012475897e-6 +flatwork_N 3.729715012475897e-6 +flatworm_N 3.729715012475897e-6 +flaunt_N 3.729715012475897e-6 +flaunt_V 4.5357645031069986e-5 +flaunt_V2 4.8295957628346505e-5 +flaunty_A 1.0773191989054437e-5 +flautist_N 3.729715012475897e-6 +flavin_N 3.729715012475897e-6 +flavivirus_N 3.729715012475897e-6 +flavone_N 3.729715012475897e-6 +flavonoid_N 3.729715012475897e-6 +flavorer_N 3.729715012475897e-6 +flavorful_A 1.0773191989054437e-5 +flavorlessness_N 3.729715012475897e-6 +flavorsomeness_N 3.729715012475897e-6 +flavour_N 1.118914503742769e-5 +flavour_V2 1.609865254278217e-5 +flavouring_N 3.729715012475897e-6 +flavourless_A 1.0773191989054437e-5 +flaw_N 5.967544019961435e-5 +flaw_V2 1.4488787288503951e-4 +flawless_A 3.231957596716331e-5 +flax_N 3.729715012475897e-6 +flaxen_A 1.0773191989054437e-5 +flay_V2 3.219730508556434e-5 +flea_N 1.8648575062379485e-5 +flea_bite_N 3.729715012475897e-6 +flea_bitten_A 1.0773191989054437e-5 +fleabag_N 3.729715012475897e-6 +fleabane_N 3.729715012475897e-6 +fleapit_N 3.729715012475897e-6 +fleawort_N 3.729715012475897e-6 +flecainide_N 3.729715012475897e-6 +fleck_N 3.729715012475897e-6 +fleck_V2 1.609865254278217e-5 +fledged_A 1.0773191989054437e-5 +fledgeling_N 3.729715012475897e-6 +fledgling_A 1.0773191989054437e-5 +fledgling_N 2.9837720099807175e-5 +flee_V 5.442917403728399e-4 +flee_V2 1.1269056779947518e-4 +fleece_N 3.729715012475897e-6 +fleece_V2 3.219730508556434e-5 +fleeceable_A 1.0773191989054437e-5 +fleecy_A 1.0773191989054437e-5 +fleer_N 3.729715012475897e-6 +fleet_A 2.1546383978108874e-5 +fleet_N 1.268103104241805e-4 +fleet_PN 1.865462821325971e-5 +fleet_street_PN 1.865462821325971e-5 +fleeting_A 7.541234392338106e-5 +fleetness_N 3.729715012475897e-6 +fleetwood_PN 1.865462821325971e-5 +flemish_A 3.231957596716331e-5 +flemish_N 3.729715012475897e-6 +flesh_N 2.237829007485538e-5 +flesh_out_V2 1.609865254278217e-5 +flesh_wound_N 3.729715012475897e-6 +fleshiness_N 3.729715012475897e-6 +fleshly_A 1.0773191989054437e-5 +fleshy_A 1.0773191989054437e-5 +fleur_de_lis_N 3.729715012475897e-6 +flex_N 3.729715012475897e-6 +flex_V2 1.609865254278217e-5 +flexibility_N 1.0443202034932511e-4 +flexible_A 1.9391745580297985e-4 +flexion_N 3.729715012475897e-6 +flexuous_A 1.0773191989054437e-5 +flexure_N 3.729715012475897e-6 +flibbertigibbet_N 3.729715012475897e-6 +flick_N 7.459430024951794e-6 +flick_V2 1.609865254278217e-5 +flick_knife_N 3.729715012475897e-6 +flick_over_V 2.2678822515534993e-5 +flick_through_V2 1.609865254278217e-5 +flicker_N 3.729715012475897e-6 +flicker_V 4.5357645031069986e-5 +flickertail_N 3.729715012475897e-6 +flier_N 2.9837720099807175e-5 +flies_N 3.729715012475897e-6 +flight_N 4.1772808139730044e-4 +flight_V2 1.609865254278217e-5 +flightiness_N 3.729715012475897e-6 +flightless_A 1.0773191989054437e-5 +flighty_A 1.0773191989054437e-5 +flimsiness_N 3.729715012475897e-6 +flimsy_A 2.1546383978108874e-5 +flimsy_N 3.729715012475897e-6 +flinch_V 4.5357645031069986e-5 +flinders_N 3.729715012475897e-6 +fling_N 1.118914503742769e-5 +fling_V 2.2678822515534993e-5 +fling_V2 3.219730508556434e-5 +flint_N 3.729715012475897e-6 +flint_PN 1.865462821325971e-5 +flintlock_N 3.729715012475897e-6 +flintstone_N 3.729715012475897e-6 +flinty_A 1.0773191989054437e-5 +flip_A 3.231957596716331e-5 +flip_N 7.459430024951794e-6 +flip_V 9.071529006213997e-5 +flip_V2 4.8295957628346505e-5 +flip_off_V2 1.609865254278217e-5 +flip_out_V 2.2678822515534993e-5 +flip_through_V2 1.609865254278217e-5 +flippancy_N 3.729715012475897e-6 +flippant_A 2.1546383978108874e-5 +flipper_N 3.729715012475897e-6 +flirt_N 3.729715012475897e-6 +flirt_V 1.3607293509320997e-4 +flirtation_N 7.459430024951794e-6 +flirtatious_A 1.0773191989054437e-5 +flit_N 3.729715012475897e-6 +flit_V 2.2678822515534993e-5 +flitch_N 3.729715012475897e-6 +float_N 7.459430024951794e-6 +float_V 4.989340953417699e-4 +float_V2 9.659191525669301e-5 +float_VA 1.968503937007874e-3 +floatation_N 3.729715012475897e-6 +floater_N 3.729715012475897e-6 +floating_N 3.729715012475897e-6 +floatplane_N 3.729715012475897e-6 +floccose_A 1.0773191989054437e-5 +flocculation_N 3.729715012475897e-6 +floccule_N 3.729715012475897e-6 +flocculent_A 1.0773191989054437e-5 +flock_N 1.118914503742769e-5 +flock_V 1.8143058012427994e-4 +flock_V2V 4.675081813931744e-4 +floe_N 3.729715012475897e-6 +flog_V2 3.219730508556434e-5 +flog_off_V2 1.609865254278217e-5 +flogger_N 3.729715012475897e-6 +flogging_N 3.729715012475897e-6 +flood_N 3.729715012475897e-5 +flood_V 1.5875175760874494e-4 +flood_V2 1.7708517797060386e-4 +flood_tide_N 3.729715012475897e-6 +floodgate_N 3.729715012475897e-6 +floodhead_N 3.729715012475897e-6 +floodlight_V2 1.609865254278217e-5 +floodlit_A 1.0773191989054437e-5 +floodplain_N 3.729715012475897e-6 +floor_N 5.109709567091979e-4 +floor_V2 1.609865254278217e-5 +floor_it_V 2.2678822515534993e-5 +floor_walker_N 3.729715012475897e-6 +floorboard_N 3.729715012475897e-6 +flooring_N 7.459430024951794e-6 +floorwalker_N 3.729715012475897e-6 +floozie_N 3.729715012475897e-6 +floozy_N 3.729715012475897e-6 +flop_Adv 8.668966832532898e-6 +flop_N 7.459430024951794e-6 +flop_V 1.1339411257767497e-4 +flop_V2 3.219730508556434e-5 +flophouse_N 3.729715012475897e-6 +floppy_A 5.3865959945272184e-5 +flora_PN 1.865462821325971e-5 +floral_A 3.231957596716331e-5 +florence_PN 1.865462821325971e-5 +floret_N 3.729715012475897e-6 +floricultural_A 1.0773191989054437e-5 +floriculture_N 3.729715012475897e-6 +florid_A 1.0773191989054437e-5 +florida_PN 7.834943849569079e-4 +florilegium_N 3.729715012475897e-6 +florin_N 3.729715012475897e-6 +florist_N 3.729715012475897e-6 +florrie_PN 1.865462821325971e-5 +floss_N 3.729715012475897e-6 +flotation_N 7.459430024951794e-6 +flotilla_N 7.459430024951794e-6 +flotsam_N 3.729715012475897e-6 +flounce_N 3.729715012475897e-6 +flounce_V 2.2678822515534993e-5 +flounce_V2 1.609865254278217e-5 +flounce_off_V 2.2678822515534993e-5 +flounce_out_V 2.2678822515534993e-5 +flounder_N 3.729715012475897e-6 +flounder_V 9.071529006213997e-5 +flour_N 3.729715012475897e-6 +flour_V2 1.609865254278217e-5 +flourish_N 3.729715012475897e-6 +flourish_V 1.3607293509320997e-4 +flourish_V2 1.609865254278217e-5 +floury_A 1.0773191989054437e-5 +flout_V2 3.219730508556434e-5 +flow_N 2.7226919591074043e-4 +flow_V 5.896493854039099e-4 +flowage_N 3.729715012475897e-6 +flower_N 4.848629516218666e-5 +flower_V 2.2678822515534993e-5 +flower_girl_N 3.729715012475897e-6 +flowerbed_N 3.729715012475897e-6 +flowered_A 1.0773191989054437e-5 +flowerless_A 1.0773191989054437e-5 +flowerpot_N 3.729715012475897e-6 +flowery_A 1.0773191989054437e-5 +floxuridine_N 3.729715012475897e-6 +flu_N 7.459430024951794e-6 +fluctuate_V 1.8143058012427994e-4 +fluctuation_N 6.713487022456614e-5 +flue_N 3.729715012475897e-6 +fluency_N 3.729715012475897e-6 +fluent_A 4.309276795621775e-5 +fluff_N 7.459430024951794e-6 +fluff_V2 1.609865254278217e-5 +fluff_out_V2 1.609865254278217e-5 +fluff_up_V2 1.609865254278217e-5 +fluffy_A 2.1546383978108874e-5 +flugelhorn_N 3.729715012475897e-6 +fluid_A 4.309276795621775e-5 +fluid_N 1.4918860049903587e-5 +fluidity_N 3.729715012475897e-6 +fluidounce_N 3.729715012475897e-6 +fluidram_N 3.729715012475897e-6 +fluke_N 1.4918860049903587e-5 +flume_N 3.729715012475897e-6 +flummery_N 3.729715012475897e-6 +flummox_V2 1.609865254278217e-5 +flunitrazepan_N 3.729715012475897e-6 +flunk_V 4.5357645031069986e-5 +flunk_V2 4.8295957628346505e-5 +flunkey_N 3.729715012475897e-6 +flunky_N 7.459430024951794e-6 +fluorapatite_N 3.729715012475897e-6 +fluorescein_N 3.729715012475897e-6 +fluorescence_N 3.729715012475897e-6 +fluorescent_A 1.0773191989054437e-5 +fluorescent_N 3.729715012475897e-6 +fluoridate_V2 1.609865254278217e-5 +fluoridation_N 3.729715012475897e-6 +fluoride_N 7.459430024951794e-6 +fluoridization_N 3.729715012475897e-6 +fluoridize_V2 1.609865254278217e-5 +fluorine_N 3.729715012475897e-6 +fluorite_N 3.729715012475897e-6 +fluoroboride_N 3.729715012475897e-6 +fluorocarbon_N 3.729715012475897e-6 +fluorochrome_N 3.729715012475897e-6 +fluoroform_N 3.729715012475897e-6 +fluoroscope_N 3.729715012475897e-6 +fluoroscopy_N 3.729715012475897e-6 +fluorosis_N 3.729715012475897e-6 +fluorouracil_N 3.729715012475897e-6 +fluosilicate_N 3.729715012475897e-6 +fluoxetine_N 3.729715012475897e-6 +fluphenazine_N 3.729715012475897e-6 +flurazepam_N 3.729715012475897e-6 +flurbiprofen_N 3.729715012475897e-6 +flurry_N 3.356743511228307e-5 +flurry_V2 1.609865254278217e-5 +flush_A 5.3865959945272184e-5 +flush_Adv 8.668966832532898e-6 +flush_N 3.729715012475897e-6 +flush_V 4.5357645031069986e-5 +flush_V2 3.219730508556434e-5 +flush_out_V 2.2678822515534993e-5 +fluster_N 3.729715012475897e-6 +fluster_V2 1.609865254278217e-5 +flute_N 3.729715012475897e-6 +flute_V 2.2678822515534993e-5 +flute_V2 1.609865254278217e-5 +fluting_N 7.459430024951794e-6 +flutist_N 3.729715012475897e-6 +flutter_N 3.729715012475897e-6 +flutter_V 2.2678822515534993e-5 +flutter_V2 1.609865254278217e-5 +fluvastatin_N 3.729715012475897e-6 +fluvial_A 1.0773191989054437e-5 +flux_N 7.459430024951794e-6 +fluxmeter_N 3.729715012475897e-6 +fly_A 1.0773191989054437e-5 +fly_N 2.237829007485538e-5 +fly_V 1.4060869959631695e-3 +fly_V2 3.3807170339842556e-4 +fly_VS 2.3104025876508982e-4 +fly_about_V 2.2678822515534993e-5 +fly_around_V 2.2678822515534993e-5 +fly_at_V2 1.609865254278217e-5 +fly_by_V 2.2678822515534993e-5 +fly_fish_V 2.2678822515534993e-5 +fly_fishing_N 3.729715012475897e-6 +fly_into_V2 1.609865254278217e-5 +fly_out_V 2.2678822515534993e-5 +fly_swat_N 3.729715012475897e-6 +fly_swatter_N 3.729715012475897e-6 +flyaway_A 1.0773191989054437e-5 +flyblown_A 1.0773191989054437e-5 +flycatcher_N 3.729715012475897e-6 +flyer_N 3.729715012475897e-6 +flying_bomb_N 3.729715012475897e-6 +flying_fish_N 3.729715012475897e-6 +flying_fox_N 3.729715012475897e-6 +flying_squad_N 3.729715012475897e-6 +flyleaf_N 3.729715012475897e-6 +flyover_N 3.729715012475897e-6 +flypaper_N 3.729715012475897e-6 +flypast_N 3.729715012475897e-6 +flyspeck_N 3.729715012475897e-6 +flytrap_N 3.729715012475897e-6 +flyweight_N 3.729715012475897e-6 +flywheel_N 3.729715012475897e-6 +fm_N 7.459430024951794e-6 +fo'c'sle_N 3.729715012475897e-6 +fo_N 3.729715012475897e-6 +foal_N 3.729715012475897e-6 +foal_V 2.2678822515534993e-5 +foam_N 2.6108005087331277e-5 +foam_V 4.5357645031069986e-5 +foam_rubber_N 3.729715012475897e-6 +foamflower_N 3.729715012475897e-6 +foaminess_N 3.729715012475897e-6 +foamy_A 1.0773191989054437e-5 +fob_N 3.729715012475897e-6 +fob_V2 1.609865254278217e-5 +fob_off_V2 1.609865254278217e-5 +fob_off_on_V3 1.5873015873015873e-3 +fob_off_onto_V3 1.5873015873015873e-3 +fob_off_with_V3 1.5873015873015873e-3 +focal_A 2.1546383978108874e-5 +focalization_N 3.729715012475897e-6 +focus_N 1.7156689057389125e-4 +focus_V 2.0637728489136843e-3 +focus_V2 3.541703559412077e-4 +focus_on_V2 1.609865254278217e-5 +fodder_N 1.118914503742769e-5 +foe_N 3.356743511228307e-5 +foetal_A 1.0773191989054437e-5 +foetus_N 3.729715012475897e-6 +fog_N 1.118914503742769e-5 +fog_V2 3.219730508556434e-5 +fogbank_N 3.729715012475897e-6 +fogbound_A 1.0773191989054437e-5 +fogey_N 3.729715012475897e-6 +foggia_PN 1.865462821325971e-5 +foggy_A 2.1546383978108874e-5 +foghorn_N 3.729715012475897e-6 +foglamp_N 3.729715012475897e-6 +fogsignal_N 3.729715012475897e-6 +fogyish_A 1.0773191989054437e-5 +fohn_N 3.729715012475897e-6 +foible_N 3.729715012475897e-6 +foil_N 1.118914503742769e-5 +foil_V2 1.2878922034225736e-4 +foist_V2 1.609865254278217e-5 +fold_N 3.729715012475897e-6 +fold_V 2.0410940263981494e-4 +fold_V2 6.439461017112868e-5 +fold_up_V2 1.609865254278217e-5 +foldable_A 1.0773191989054437e-5 +folder_N 7.459430024951794e-6 +folderal_N 3.729715012475897e-6 +folderol_N 3.729715012475897e-6 +foldout_N 3.729715012475897e-6 +foliaceous_A 1.0773191989054437e-5 +foliage_N 3.729715012475897e-6 +foliate_A 1.0773191989054437e-5 +foliation_N 3.729715012475897e-6 +folio_N 7.459430024951794e-6 +foliolate_A 1.0773191989054437e-5 +folium_N 3.729715012475897e-6 +folk_N 7.832401526199384e-5 +folk_dance_N 3.729715012475897e-6 +folkestone_PN 1.865462821325971e-5 +folklore_N 1.4918860049903587e-5 +folks_N 3.729715012475897e-6 +folksong_N 3.729715012475897e-6 +folksy_A 2.1546383978108874e-5 +folktale_N 3.729715012475897e-6 +follicle_N 3.729715012475897e-6 +follicular_A 1.0773191989054437e-5 +folliculitis_N 3.729715012475897e-6 +follies_N 3.729715012475897e-6 +follow_V 5.125413888510909e-3 +follow_V2 3.2841251187275627e-3 +follow_VS 1.7328019407381737e-4 +follow_on_N 3.729715012475897e-6 +follow_on_V 2.2678822515534993e-5 +follow_on_from_V2 1.609865254278217e-5 +follow_through_N 3.729715012475897e-6 +follow_through_V 2.2678822515534993e-5 +follow_up_N 3.729715012475897e-6 +follow_up_V2 1.609865254278217e-5 +follower_N 2.6108005087331277e-5 +following_A 1.508246878467621e-4 +following_N 5.594572518713845e-5 +folly_N 1.4918860049903587e-5 +foment_V2 3.219730508556434e-5 +fomentation_N 3.729715012475897e-6 +fomite_N 3.729715012475897e-6 +fond_A 5.3865959945272184e-5 +fondant_N 3.729715012475897e-6 +fondle_V2 1.609865254278217e-5 +fondler_N 3.729715012475897e-6 +fondness_N 7.459430024951794e-6 +fondue_N 3.729715012475897e-6 +font_N 3.729715012475897e-6 +fontanelle_N 3.729715012475897e-6 +foochow_PN 1.865462821325971e-5 +food_N 8.65293882894408e-4 +foodless_A 1.0773191989054437e-5 +foodstuff_N 1.4918860049903587e-5 +fool_N 3.356743511228307e-5 +fool_V 6.803646754660499e-5 +fool_V2 6.439461017112868e-5 +fool_about_V 2.2678822515534993e-5 +fool_around_V 2.2678822515534993e-5 +fool_with_V2 1.609865254278217e-5 +foolery_N 3.729715012475897e-6 +foolhardiness_N 3.729715012475897e-6 +foolhardy_A 2.1546383978108874e-5 +foolish_A 4.309276795621775e-5 +foolishness_N 3.729715012475897e-6 +foolproof_A 1.0773191989054437e-5 +foolscap_N 3.729715012475897e-6 +foot_N 4.102686513723486e-4 +foot_V 4.5357645031069986e-5 +foot_V2 6.439461017112868e-5 +foot_and_mouth_A 1.0773191989054437e-5 +foot_and_mouth_N 3.729715012475897e-6 +foot_bath_N 3.729715012475897e-6 +foot_pound_N 3.729715012475897e-6 +foot_race_N 3.729715012475897e-6 +foot_rot_N 3.729715012475897e-6 +footage_N 1.8648575062379485e-5 +football_N 1.3799945546160818e-4 +footballer_N 3.729715012475897e-6 +footbath_N 3.729715012475897e-6 +footboard_N 3.729715012475897e-6 +footbridge_N 3.729715012475897e-6 +footcandle_N 3.729715012475897e-6 +footedness_N 3.729715012475897e-6 +footer_N 3.729715012475897e-6 +footfall_N 3.729715012475897e-6 +footfault_N 3.729715012475897e-6 +foothill_N 7.459430024951794e-6 +foothold_N 1.4918860049903587e-5 +footing_N 2.237829007485538e-5 +footle_V 2.2678822515534993e-5 +footle_V2 1.609865254278217e-5 +footless_A 1.0773191989054437e-5 +footlights_N 3.729715012475897e-6 +footlocker_N 3.729715012475897e-6 +footloose_A 1.0773191989054437e-5 +footman_N 3.729715012475897e-6 +footmark_N 3.729715012475897e-6 +footnote_N 1.4918860049903587e-5 +footpad_N 3.729715012475897e-6 +footpath_N 3.729715012475897e-6 +footplate_N 3.729715012475897e-6 +footprint_N 3.729715012475897e-6 +footrace_N 3.729715012475897e-6 +footslog_V 2.2678822515534993e-5 +footslogger_N 3.729715012475897e-6 +footsore_A 1.0773191989054437e-5 +footstep_N 1.118914503742769e-5 +footstool_N 3.729715012475897e-6 +footsure_A 1.0773191989054437e-5 +footwall_N 3.729715012475897e-6 +footwear_N 7.459430024951794e-6 +footwork_N 3.729715012475897e-6 +fop_N 3.729715012475897e-6 +foppish_A 1.0773191989054437e-5 +foppishness_N 3.729715012475897e-6 +for_Prep 9.902709175273162e-2 +for_example_Adv 1.959186504152435e-3 +for_instance_Adv 9.189104842484872e-4 +for_starters_Adv 4.33448341626645e-5 +for_sure_Adv 6.068276782773029e-5 +for_the_sake_of_Prep 2.99356383774884e-5 +forage_N 3.729715012475897e-6 +forage_V 2.2678822515534993e-5 +forager_N 3.729715012475897e-6 +foraging_N 3.729715012475897e-6 +foram_N 3.729715012475897e-6 +foramen_N 3.729715012475897e-6 +foray_N 2.237829007485538e-5 +foray_V 2.2678822515534993e-5 +forbear_N 3.729715012475897e-6 +forbear_V 2.2678822515534993e-5 +forbear_V2 1.609865254278217e-5 +forbearance_N 7.459430024951794e-6 +forbid_V2 1.7708517797060386e-4 +forbidding_A 1.0773191989054437e-5 +forby_Prep 9.978546125829467e-6 +force_N 8.466453078320286e-4 +force_V 8.391164330747948e-4 +force_V2 6.60044754254069e-4 +force_V2V 3.45956054230949e-2 +force_VS 7.508808409865419e-4 +force_feed_V2 1.609865254278217e-5 +force_land_V 2.2678822515534993e-5 +force_land_V2 1.609865254278217e-5 +force_majeure_N 3.729715012475897e-6 +force_out_V 2.2678822515534993e-5 +forceful_A 5.3865959945272184e-5 +forcefulness_N 7.459430024951794e-6 +forceless_A 1.0773191989054437e-5 +forcemeat_N 3.729715012475897e-6 +forceps_N 3.729715012475897e-6 +forcible_A 1.0773191989054437e-5 +forcipate_A 1.0773191989054437e-5 +ford_N 3.729715012475897e-6 +ford_V2 1.609865254278217e-5 +fordable_A 1.0773191989054437e-5 +fore_A 1.0773191989054437e-5 +fore_Adv 8.668966832532898e-6 +fore_N 1.4918860049903587e-5 +forearm_N 3.729715012475897e-6 +forearm_V2 1.609865254278217e-5 +forebear_N 3.729715012475897e-6 +forebode_V2 1.609865254278217e-5 +foreboding_N 3.729715012475897e-6 +forebrain_N 3.729715012475897e-6 +forecast_N 3.394040661353066e-4 +forecast_V 2.9482469270195494e-4 +forecast_V2 4.185649661123364e-4 +forecast_VS 6.931207762952695e-4 +forecaster_N 1.4918860049903587e-5 +forecastle_N 3.729715012475897e-6 +foreclose_V 9.071529006213997e-5 +foreclose_V2 8.049326271391085e-5 +foreclosure_N 2.6108005087331277e-5 +forecourt_N 3.729715012475897e-6 +foredeck_N 3.729715012475897e-6 +foredoom_V2 1.609865254278217e-5 +forefather_N 7.459430024951794e-6 +forefinger_N 3.729715012475897e-6 +forefoot_N 3.729715012475897e-6 +forefront_N 2.6108005087331277e-5 +foregather_V 2.2678822515534993e-5 +forego_V 2.2678822515534993e-5 +forego_V2 3.219730508556434e-5 +foreground_N 7.459430024951794e-6 +forehand_A 1.0773191989054437e-5 +forehand_N 3.729715012475897e-6 +forehanded_A 1.0773191989054437e-5 +forehead_N 7.459430024951794e-6 +foreign_A 4.3523695635779925e-3 +foreigner_N 1.0443202034932511e-4 +foreignness_N 3.729715012475897e-6 +foreknow_V 2.2678822515534993e-5 +foreknow_V2 1.609865254278217e-5 +foreknowledge_N 3.729715012475897e-6 +foreland_N 3.729715012475897e-6 +foreleg_N 3.729715012475897e-6 +forelimb_N 3.729715012475897e-6 +forelock_N 3.729715012475897e-6 +foreman_N 1.118914503742769e-5 +foremanship_N 3.729715012475897e-6 +foremast_N 3.729715012475897e-6 +foremost_A 2.1546383978108874e-5 +foremost_Adv 4.33448341626645e-5 +foremother_N 3.729715012475897e-6 +forename_N 3.729715012475897e-6 +forenenst_Prep 9.978546125829467e-6 +forenoon_N 3.729715012475897e-6 +forensic_A 2.1546383978108874e-5 +forensics_N 3.729715012475897e-6 +foreordain_V2 1.609865254278217e-5 +forepaw_N 3.729715012475897e-6 +foreperson_N 3.729715012475897e-6 +foreplay_N 3.729715012475897e-6 +forequarter_N 3.729715012475897e-6 +forerunner_N 7.459430024951794e-6 +foresail_N 3.729715012475897e-6 +foresee_V2 2.2538113559895037e-4 +foreseeable_A 7.541234392338106e-5 +foreshadow_V2 4.8295957628346505e-5 +foreshank_N 3.729715012475897e-6 +foreshock_N 3.729715012475897e-6 +foreshore_N 3.729715012475897e-6 +foreshorten_V2 1.609865254278217e-5 +foresight_N 7.459430024951794e-6 +foreskin_N 3.729715012475897e-6 +forest_N 1.5291831551151176e-4 +forestall_V2 1.609865254278217e-5 +forestay_N 3.729715012475897e-6 +forested_A 1.0773191989054437e-5 +forester_N 3.729715012475897e-6 +forestiera_N 3.729715012475897e-6 +forestry_N 1.118914503742769e-5 +foreswear_V2 1.609865254278217e-5 +foretaste_N 3.729715012475897e-6 +foretell_V2 1.609865254278217e-5 +forethought_N 3.729715012475897e-6 +forethoughtful_A 1.0773191989054437e-5 +foretop_N 3.729715012475897e-6 +forever_Adv 1.1269656882292768e-4 +forewarn_V2 1.609865254278217e-5 +forewarning_N 3.729715012475897e-6 +forewing_N 3.729715012475897e-6 +forewoman_N 3.729715012475897e-6 +foreword_N 3.729715012475897e-6 +forfar_PN 1.865462821325971e-5 +forfeit_N 3.729715012475897e-6 +forfeit_V2 6.439461017112868e-5 +forfeiture_N 7.459430024951794e-5 +forgather_V 2.2678822515534993e-5 +forge_N 1.118914503742769e-5 +forge_V 4.5357645031069986e-5 +forge_V2 1.4488787288503951e-4 +forge_ahead_V 2.2678822515534993e-5 +forger_N 7.459430024951794e-6 +forgery_N 1.4918860049903587e-5 +forget_V 2.2678822515534994e-4 +forget_V2 2.575784406845147e-4 +forget_VS 3.4656038814763474e-4 +forget_me_not_N 3.729715012475897e-6 +forgetful_A 1.0773191989054437e-5 +forgetfulness_N 3.729715012475897e-6 +forgettable_A 2.1546383978108874e-5 +forging_N 7.459430024951794e-6 +forgivable_A 1.0773191989054437e-5 +forgive_V 4.5357645031069986e-5 +forgive_V2 1.2878922034225736e-4 +forgiveness_N 7.459430024951794e-6 +forgivingly_Adv 8.668966832532898e-6 +forgivingness_N 3.729715012475897e-6 +forgo_V2 8.049326271391085e-5 +forint_N 3.729715012475897e-6 +fork_N 3.729715012475897e-6 +fork_V 9.071529006213997e-5 +fork_V2 1.609865254278217e-5 +fork_out_V 2.2678822515534993e-5 +fork_over_V 2.2678822515534993e-5 +forklift_N 3.729715012475897e-6 +forli_PN 1.865462821325971e-5 +forlorn_A 3.231957596716331e-5 +forlornness_N 3.729715012475897e-6 +form_N 4.960520966592943e-4 +form_V 6.123282079194448e-4 +form_V2 1.046412415280841e-3 +formal_A 7.002574792885384e-4 +formaldehyde_N 7.459430024951794e-6 +formalin_N 3.729715012475897e-6 +formalism_N 3.729715012475897e-6 +formalistic_A 1.0773191989054437e-5 +formality_N 1.4918860049903587e-5 +formalization_N 3.729715012475897e-6 +formalize_V2 3.219730508556434e-5 +formalwear_N 3.729715012475897e-6 +format_N 5.2216010174662554e-5 +formation_N 5.594572518713845e-5 +formative_A 1.0773191989054437e-5 +formative_N 3.729715012475897e-6 +formby_PN 1.865462821325971e-5 +former_A 4.179998491753122e-3 +former_N 3.729715012475897e-6 +formic_A 1.0773191989054437e-5 +formica_N 3.729715012475897e-6 +formication_N 3.729715012475897e-6 +formidability_N 3.729715012475897e-6 +formidable_A 3.231957596716331e-5 +formless_A 1.0773191989054437e-5 +formosa_PN 1.865462821325971e-5 +formula_N 8.951316029942152e-5 +formulaic_A 1.0773191989054437e-5 +formulary_A 1.0773191989054437e-5 +formulary_N 3.729715012475897e-6 +formulate_V2 1.1269056779947518e-4 +formulation_N 1.4918860049903587e-5 +fornenst_Prep 9.978546125829467e-6 +fornent_Prep 9.978546125829467e-6 +fornicate_V 2.2678822515534993e-5 +fornication_N 3.729715012475897e-6 +fornix_N 3.729715012475897e-6 +forrader_Adv 8.668966832532898e-6 +forsake_V2 3.219730508556434e-5 +forsaking_N 3.729715012475897e-6 +forsooth_Adv 8.668966832532898e-6 +forswear_V2 1.609865254278217e-5 +forsythia_N 3.729715012475897e-6 +fort_N 3.729715012475897e-6 +fort_lauderdale_PN 1.865462821325971e-5 +fort_william_PN 1.865462821325971e-5 +fort_worth_PN 1.865462821325971e-5 +fortaleza_PN 1.865462821325971e-5 +forte_A 1.0773191989054437e-5 +forte_Adv 8.668966832532898e-6 +forte_N 3.729715012475897e-6 +fortemente_A 1.0773191989054437e-5 +forth_Adv 9.535863515786188e-5 +forthcoming_A 6.463915193432663e-5 +forthright_A 3.231957596716331e-5 +forthwith_Adv 8.668966832532898e-6 +fortification_N 3.729715012475897e-6 +fortify_V2 1.609865254278217e-5 +fortissimo_A 1.0773191989054437e-5 +fortissimo_Adv 8.668966832532898e-6 +fortitude_N 3.729715012475897e-6 +fortnight_N 3.729715012475897e-6 +fortnightly_A 1.0773191989054437e-5 +fortnightly_Adv 8.668966832532898e-6 +fortress_N 3.729715012475897e-6 +fortuitous_A 2.1546383978108874e-5 +fortuitousness_N 3.729715012475897e-6 +fortunate_A 1.1850511187959881e-4 +fortune_N 8.205373027446973e-5 +fortuneteller_N 3.729715012475897e-6 +fortunetelling_N 3.729715012475897e-6 +forty_A 1.0773191989054437e-5 +forty_N 3.729715012475897e-6 +fortyish_A 1.0773191989054437e-5 +forum_N 2.6108005087331277e-5 +forward_A 3.231957596716331e-5 +forward_Adv 2.2539313764585535e-4 +forward_N 3.729715012475897e-5 +forward_V2 3.219730508556434e-5 +forwarding_N 3.729715012475897e-6 +forwardness_N 3.729715012475897e-6 +forwards_Adv 1.7337933665065797e-5 +foryml_N 3.729715012475897e-6 +fossa_N 3.729715012475897e-6 +fosse_N 3.729715012475897e-6 +fossil_A 1.0773191989054437e-5 +fossil_N 1.8648575062379485e-5 +fossiliferous_A 1.0773191989054437e-5 +fossilization_N 3.729715012475897e-6 +fossilize_V 2.2678822515534993e-5 +fossilize_V2 1.609865254278217e-5 +fossorial_A 1.0773191989054437e-5 +foster_A 1.0773191989054437e-5 +foster_V2 1.2878922034225736e-4 +foster_brother_N 3.729715012475897e-6 +foster_child_N 3.729715012475897e-6 +foster_father_N 3.729715012475897e-6 +foster_mother_N 3.729715012475897e-6 +foster_parent_N 3.729715012475897e-6 +foster_sister_N 3.729715012475897e-6 +fostering_N 3.729715012475897e-6 +fothergilla_N 3.729715012475897e-6 +foul_A 4.309276795621775e-5 +foul_N 3.729715012475897e-6 +foul_V 4.5357645031069986e-5 +foul_V2 3.219730508556434e-5 +foul_mouthed_A 3.231957596716331e-5 +foul_spoken_A 1.0773191989054437e-5 +foulard_N 3.729715012475897e-6 +foulness_N 3.729715012475897e-6 +found_N 3.729715012475897e-6 +found_V2 5.634528389973759e-4 +foundation_N 1.08161735361801e-4 +foundation_stone_N 3.729715012475897e-6 +founder_N 1.8648575062379482e-4 +founder_V 1.1339411257767497e-4 +founder_V2 1.609865254278217e-5 +foundering_N 3.729715012475897e-6 +foundling_N 3.729715012475897e-6 +foundress_N 3.729715012475897e-6 +foundry_N 3.729715012475897e-6 +fount_N 3.729715012475897e-6 +fountain_N 2.237829007485538e-5 +fountain_head_N 3.729715012475897e-6 +fountain_pen_N 3.729715012475897e-6 +fountainhead_N 3.729715012475897e-6 +four_in_hand_N 3.729715012475897e-6 +four_part_A 5.3865959945272184e-5 +four_ply_A 1.0773191989054437e-5 +four_poster_N 3.729715012475897e-6 +four_pounder_N 3.729715012475897e-6 +four_wheeler_N 3.729715012475897e-6 +fourfold_A 1.0773191989054437e-5 +fourfold_Adv 8.668966832532898e-6 +fourhanded_A 1.0773191989054437e-5 +fourpence_N 3.729715012475897e-6 +fourpenny_A 1.0773191989054437e-5 +fourscore_A 1.0773191989054437e-5 +fourscore_N 3.729715012475897e-6 +foursome_N 3.729715012475897e-6 +foursquare_A 1.0773191989054437e-5 +foursquare_Adv 8.668966832532898e-6 +fovea_N 3.729715012475897e-6 +fowey_PN 1.865462821325971e-5 +fowl_N 7.459430024951794e-6 +fowl_V 2.2678822515534993e-5 +fowl_run_N 3.729715012475897e-6 +fowler_N 3.729715012475897e-6 +fowlingpiece_N 3.729715012475897e-6 +fowlpest_N 3.729715012475897e-6 +fox_N 1.4918860049903587e-5 +fox_V2 1.609865254278217e-5 +fox_terrier_N 3.729715012475897e-6 +foxglove_N 3.729715012475897e-6 +foxhole_N 3.729715012475897e-6 +foxhound_N 3.729715012475897e-6 +foxhunt_N 3.729715012475897e-6 +foxhunt_V 2.2678822515534993e-5 +foxhunter_N 3.729715012475897e-6 +foxtail_N 3.729715012475897e-6 +foxtrot_N 3.729715012475897e-6 +foxy_A 1.0773191989054437e-5 +foyer_N 1.118914503742769e-5 +fr_PN 1.865462821325971e-5 +fracas_N 7.459430024951794e-6 +fractal_N 3.729715012475897e-6 +fraction_N 5.2216010174662554e-5 +fractional_A 9.695872790148993e-5 +fractionation_N 3.729715012475897e-6 +fractious_A 2.1546383978108874e-5 +fractiousness_N 3.729715012475897e-6 +fracture_N 7.459430024951794e-6 +fracture_V 4.5357645031069986e-5 +fracture_V2 3.219730508556434e-5 +fragile_A 1.508246878467621e-4 +fragility_N 1.4918860049903587e-5 +fragment_N 1.8648575062379485e-5 +fragment_V 4.5357645031069986e-5 +fragment_V2 4.8295957628346505e-5 +fragmental_A 1.0773191989054437e-5 +fragmentary_A 1.0773191989054437e-5 +fragmentation_N 7.459430024951794e-6 +fragrance_N 1.8648575062379485e-5 +fragrant_A 1.0773191989054437e-5 +frail_A 2.1546383978108874e-5 +frail_N 3.729715012475897e-6 +frailty_N 7.459430024951794e-6 +fraise_N 3.729715012475897e-6 +frame_N 4.1026865137234865e-5 +frame_V 6.803646754660499e-5 +frame_V2 1.1269056779947518e-4 +frame_up_N 3.729715012475897e-6 +framer_N 3.729715012475897e-6 +framework_N 1.118914503742769e-5 +framing_N 3.729715012475897e-6 +frampton_cotterell_PN 1.865462821325971e-5 +fran_PN 1.865462821325971e-5 +franc_N 4.923223816468183e-4 +france_PN 2.052009103458568e-3 +frances_PN 1.865462821325971e-5 +franchise_N 1.5664803052398767e-4 +francis_PN 1.865462821325971e-5 +franciscan_A 2.1546383978108874e-5 +franciscan_N 7.459430024951794e-6 +francium_N 3.729715012475897e-6 +frangible_A 1.0773191989054437e-5 +frangipane_N 3.729715012475897e-6 +frangipani_N 3.729715012475897e-6 +frank_A 1.4005149585770768e-4 +frank_N 3.729715012475897e-6 +frank_PN 1.865462821325971e-5 +frank_V2 1.609865254278217e-5 +frankfurt_PN 7.275305003171287e-4 +frankfurter_N 3.729715012475897e-6 +frankie_PN 1.865462821325971e-5 +frankincense_N 3.729715012475897e-6 +franking_machine_N 3.729715012475897e-6 +franklin_N 3.729715012475897e-6 +frankness_N 3.729715012475897e-6 +frantic_A 5.3865959945272184e-5 +frantically_Adv 6.935173466026319e-5 +frappe_N 3.729715012475897e-6 +fraserburgh_PN 1.865462821325971e-5 +fraternal_A 1.0773191989054437e-5 +fraternity_N 7.459430024951794e-6 +fraternization_N 3.729715012475897e-6 +fraternize_V 2.2678822515534993e-5 +fratricide_N 3.729715012475897e-6 +frau_N 3.729715012475897e-6 +fraud_N 2.610800508733128e-4 +fraudulence_N 3.729715012475897e-6 +fraudulent_A 1.72371071824871e-4 +fraught_A 3.231957596716331e-5 +fraulein_N 3.729715012475897e-6 +fraxinella_N 3.729715012475897e-6 +fray_N 2.6108005087331277e-5 +fray_V 4.5357645031069986e-5 +fray_V2 3.219730508556434e-5 +frazzle_N 3.729715012475897e-6 +freak_N 7.459430024951794e-6 +freak_V 4.5357645031069986e-5 +freak_V2 1.609865254278217e-5 +freak_out_N 3.729715012475897e-6 +freak_out_V2 1.609865254278217e-5 +freakish_A 2.1546383978108874e-5 +freakishness_N 3.729715012475897e-6 +freaky_A 1.0773191989054437e-5 +freckle_N 3.729715012475897e-6 +freckle_V 2.2678822515534993e-5 +freckle_V2 1.609865254278217e-5 +freckleton_PN 1.865462821325971e-5 +fred_PN 1.865462821325971e-5 +freda_PN 1.865462821325971e-5 +freddie_PN 1.865462821325971e-5 +freddy_PN 1.865462821325971e-5 +frederick_PN 1.865462821325971e-5 +frederiksberg_PN 1.865462821325971e-5 +free_A 1.5190200704566757e-3 +free_N 3.729715012475897e-6 +free_V2 3.702690084839899e-4 +free_V2V 1.402524544179523e-3 +free_and_easy_A 1.0773191989054437e-5 +free_for_all_N 3.729715012475897e-6 +free_handed_A 1.0773191989054437e-5 +free_list_N 3.729715012475897e-6 +free_liver_N 3.729715012475897e-6 +free_living_N 3.729715012475897e-6 +free_of_A2 6.962025316455696e-2 +free_range_A 1.0773191989054437e-5 +free_spoken_A 1.0773191989054437e-5 +free_standing_A 4.309276795621775e-5 +free_thinker_N 3.729715012475897e-6 +free_thinking_A 1.0773191989054437e-5 +free_thought_N 3.729715012475897e-6 +free_trader_N 3.729715012475897e-6 +free_up_V2 1.609865254278217e-5 +freebie_N 3.729715012475897e-6 +freebooter_N 3.729715012475897e-6 +freeborn_A 1.0773191989054437e-5 +freedman_N 3.729715012475897e-6 +freedom_N 1.6037774553646355e-4 +freehand_A 1.0773191989054437e-5 +freehold_N 3.729715012475897e-6 +freeholder_N 7.459430024951794e-6 +freelance_A 1.0773191989054437e-5 +freelance_N 3.729715012475897e-6 +freelance_V 2.2678822515534993e-5 +freelancer_N 3.729715012475897e-6 +freeloader_N 3.729715012475897e-6 +freemail_N 3.729715012475897e-6 +freeman_N 3.729715012475897e-6 +freemason_N 3.729715012475897e-6 +freemasonry_N 3.729715012475897e-6 +freesia_N 3.729715012475897e-6 +freestanding_A 1.0773191989054437e-5 +freestone_N 3.729715012475897e-6 +freestyle_N 3.729715012475897e-6 +freetail_N 3.729715012475897e-6 +freeware_N 3.729715012475897e-6 +freeway_N 1.0070230533684921e-4 +freewheel_N 3.729715012475897e-6 +freewheel_V 2.2678822515534993e-5 +freewill_A 1.0773191989054437e-5 +freeze_N 3.729715012475897e-5 +freeze_V 1.3607293509320997e-4 +freeze_V2 3.219730508556434e-4 +freeze_out_V2 1.609865254278217e-5 +freeze_over_V 2.2678822515534993e-5 +freeze_up_V 2.2678822515534993e-5 +freezer_N 1.8648575062379485e-5 +freezing_mixture_N 3.729715012475897e-6 +freezing_point_N 3.729715012475897e-6 +freiburg_PN 1.865462821325971e-5 +freight_N 1.2308059541170458e-4 +freight_V2 3.219730508556434e-5 +freight_train_N 3.729715012475897e-6 +freighter_N 7.459430024951794e-6 +freightliner_N 3.729715012475897e-6 +french_A 1.9391745580297985e-4 +french_N 7.459430024951794e-6 +frenchman_N 3.729715012475897e-6 +frenchwoman_N 3.729715012475897e-6 +frenetic_A 5.3865959945272184e-5 +frenzied_A 3.231957596716331e-5 +frenzy_N 4.1026865137234865e-5 +frequency_N 3.729715012475897e-5 +frequent_A 6.463915193432663e-4 +frequent_V2 3.219730508556434e-5 +frequentative_N 3.729715012475897e-6 +fresco_N 7.459430024951794e-6 +fresco_V2 1.609865254278217e-5 +fresh_A 4.5247406354028633e-4 +fresh_Adv 8.668966832532898e-6 +freshen_V 2.2678822515534993e-5 +freshen_V2 1.609865254278217e-5 +freshen_up_V 2.2678822515534993e-5 +freshen_up_V2 1.609865254278217e-5 +freshener_N 3.729715012475897e-6 +fresher_N 3.729715012475897e-6 +freshet_N 3.729715012475897e-6 +freshman_A 1.0773191989054437e-5 +freshman_N 4.1026865137234865e-5 +freshness_N 7.459430024951794e-6 +freshwater_A 1.0773191989054437e-5 +freshwater_PN 1.865462821325971e-5 +fret_N 7.459430024951794e-6 +fret_V 1.3607293509320997e-4 +fret_V2 1.609865254278217e-5 +fret_VS 2.8880032345636225e-4 +fretful_A 1.0773191989054437e-5 +fretsaw_N 3.729715012475897e-6 +fretwork_N 3.729715012475897e-6 +freudian_A 1.0773191989054437e-5 +fri_PN 1.865462821325971e-5 +friability_N 3.729715012475897e-6 +friable_A 1.0773191989054437e-5 +friar_N 7.459430024951794e-6 +friary_N 3.729715012475897e-6 +fricandeau_N 3.729715012475897e-6 +fricassee_N 3.729715012475897e-6 +fricassee_V2 1.609865254278217e-5 +fricative_A 1.0773191989054437e-5 +fricative_N 3.729715012475897e-6 +friction_N 1.4918860049903587e-5 +frictional_A 1.0773191989054437e-5 +frictionless_A 1.0773191989054437e-5 +friday_N 3.729715012475897e-6 +friday_PN 9.775025183748088e-3 +fridge_N 3.729715012475897e-6 +friedcake_N 3.729715012475897e-6 +friend_N 2.8718805596064407e-4 +friendless_A 1.0773191989054437e-5 +friendlessness_N 3.729715012475897e-6 +friendliness_N 7.459430024951794e-6 +friendly_A 4.95566831496504e-4 +friendly_N 3.729715012475897e-6 +friendship_N 4.475658014971076e-5 +frier_N 7.459430024951794e-6 +frieze_N 7.459430024951794e-6 +frigate_N 1.4918860049903587e-5 +fright_N 7.459430024951794e-6 +fright_V2 1.609865254278217e-5 +frighten_V2 1.609865254278217e-4 +frighten_away_V2 1.609865254278217e-5 +frighten_off_V2 1.609865254278217e-5 +frightening_A 6.463915193432663e-5 +frightful_A 1.0773191989054437e-5 +frightfulness_N 3.729715012475897e-6 +frigid_A 1.0773191989054437e-5 +frigidity_N 3.729715012475897e-6 +frigorific_A 1.0773191989054437e-5 +frijole_N 3.729715012475897e-6 +frill_N 3.729715012475897e-6 +frilled_A 1.0773191989054437e-5 +frilly_A 1.0773191989054437e-5 +fringe_N 1.8648575062379485e-5 +fringe_V2 1.609865254278217e-5 +fringepod_N 3.729715012475897e-6 +fringy_A 1.0773191989054437e-5 +frinton_PN 1.865462821325971e-5 +frippery_N 7.459430024951794e-6 +frisk_N 3.729715012475897e-6 +frisk_V 2.2678822515534993e-5 +frisk_V2 1.609865254278217e-5 +friskiness_N 3.729715012475897e-6 +frisky_A 1.0773191989054437e-5 +frisson_N 3.729715012475897e-6 +fritillary_N 3.729715012475897e-6 +frittata_N 3.729715012475897e-6 +fritter_N 3.729715012475897e-6 +fritter_V2 4.8295957628346505e-5 +fritter_away_V 2.2678822515534993e-5 +frivol_V 2.2678822515534993e-5 +frivol_V2 1.609865254278217e-5 +frivolity_N 3.729715012475897e-6 +frivolous_A 6.463915193432663e-5 +frizz_N 3.729715012475897e-6 +frizz_V2 1.609865254278217e-5 +frizzle_V 2.2678822515534993e-5 +frizzle_V2 1.609865254278217e-5 +frizzy_A 1.0773191989054437e-5 +fro_Adv 1.7337933665065797e-5 +frock_N 7.459430024951794e-6 +frock_coat_N 3.729715012475897e-6 +frodsham_PN 1.865462821325971e-5 +frog_N 7.459430024951794e-6 +frogbit_N 3.729715012475897e-6 +frogfish_N 3.729715012475897e-6 +froghopper_N 3.729715012475897e-6 +frogman_N 7.459430024951794e-6 +frogmarch_V2 1.609865254278217e-5 +frogmouth_N 3.729715012475897e-6 +frolic_N 3.729715012475897e-6 +frolic_V 6.803646754660499e-5 +frolicsome_A 1.0773191989054437e-5 +from_Prep 5.410367709424737e-2 +frome_PN 1.865462821325971e-5 +frond_N 1.118914503742769e-5 +front_N 1.268103104241805e-4 +front_V 2.2678822515534993e-5 +front_V2 1.609865254278217e-5 +front_bench_N 3.729715012475897e-6 +front_bencher_N 3.729715012475897e-6 +front_for_V2 1.609865254278217e-5 +front_off_V2 1.609865254278217e-5 +front_onto_V2 1.609865254278217e-5 +front_out_V2 1.609865254278217e-5 +front_up_V 2.2678822515534993e-5 +front_up_V2 1.609865254278217e-5 +frontage_N 3.729715012475897e-6 +frontal_A 2.1546383978108874e-5 +frontal_N 3.729715012475897e-6 +frontbencher_N 3.729715012475897e-6 +frontier_N 1.8648575062379485e-5 +frontiersman_N 3.729715012475897e-6 +frontierswoman_N 3.729715012475897e-6 +frontispiece_N 3.729715012475897e-6 +frontlet_N 3.729715012475897e-6 +frore_A 1.0773191989054437e-5 +frost_N 3.729715012475897e-6 +frost_V 2.2678822515534993e-5 +frost_V2 1.609865254278217e-5 +frost_bound_A 1.0773191989054437e-5 +frostbite_N 3.729715012475897e-6 +frostbitten_A 1.0773191989054437e-5 +frostiness_N 3.729715012475897e-6 +frosting_N 3.729715012475897e-6 +frostweed_N 3.729715012475897e-6 +frosty_A 2.1546383978108874e-5 +froth_N 7.459430024951794e-6 +froth_V 4.5357645031069986e-5 +frothiness_N 3.729715012475897e-6 +frothy_A 2.1546383978108874e-5 +frottage_N 3.729715012475897e-6 +frotteur_N 3.729715012475897e-6 +froward_A 1.0773191989054437e-5 +froward_Prep 9.978546125829467e-6 +frown_N 3.729715012475897e-6 +frown_V 2.2678822515534993e-5 +frown_on_V2 1.609865254278217e-5 +frowningly_Adv 8.668966832532898e-6 +frowsty_A 1.0773191989054437e-5 +frowsy_A 1.0773191989054437e-5 +frowzy_A 1.0773191989054437e-5 +frs_N 3.729715012475897e-6 +fructification_N 3.729715012475897e-6 +fructify_V 2.2678822515534993e-5 +fructify_V2 1.609865254278217e-5 +fructose_N 3.729715012475897e-6 +fructosuria_N 3.729715012475897e-6 +frugal_A 2.1546383978108874e-5 +frugality_N 1.118914503742769e-5 +fruit_N 6.340515521209024e-5 +fruit_V 2.2678822515534993e-5 +fruit_fly_N 3.729715012475897e-6 +fruitage_N 3.729715012475897e-6 +fruitcake_N 3.729715012475897e-6 +fruiterer_N 3.729715012475897e-6 +fruitful_A 2.1546383978108874e-5 +fruitfulness_N 3.729715012475897e-6 +fruition_N 1.118914503742769e-5 +fruitless_A 6.463915193432663e-5 +fruitlessness_N 3.729715012475897e-6 +fruitlet_N 3.729715012475897e-6 +fruitwood_N 3.729715012475897e-6 +fruity_A 1.0773191989054437e-5 +frumenty_N 3.729715012475897e-6 +frump_N 3.729715012475897e-6 +frumpish_A 1.0773191989054437e-5 +frumpy_A 2.1546383978108874e-5 +frustrate_V2 2.092824830561682e-4 +frustrating_A 1.0773191989054437e-5 +frustration_N 5.2216010174662554e-5 +frustum_N 3.729715012475897e-6 +fry_N 7.459430024951794e-6 +fry_V 4.5357645031069986e-5 +fry_V2 4.8295957628346505e-5 +fry_pan_N 3.729715012475897e-6 +fryer_N 3.729715012475897e-6 +frying_N 3.729715012475897e-6 +frying_pan_N 3.729715012475897e-6 +ft_PN 1.865462821325971e-5 +fuchsia_N 3.729715012475897e-6 +fuck_N 3.729715012475897e-6 +fuck_V 2.2678822515534993e-5 +fuck_V2 1.609865254278217e-5 +fuck_all_N 3.729715012475897e-6 +fucker_N 3.729715012475897e-6 +fucking_Adv 8.668966832532898e-6 +fucoid_N 3.729715012475897e-6 +fucus_N 3.729715012475897e-6 +fuddle_V2 1.609865254278217e-5 +fuddy_duddy_N 3.729715012475897e-6 +fudge_N 3.729715012475897e-6 +fudge_over_V 2.2678822515534993e-5 +fuel_N 2.0140461067369843e-4 +fuel_V 9.071529006213997e-5 +fuel_V2 6.922420593396333e-4 +fuel_up_V 2.2678822515534993e-5 +fueling_N 3.729715012475897e-6 +fug_N 3.729715012475897e-6 +fugacity_N 3.729715012475897e-6 +fugal_A 1.0773191989054437e-5 +fuggy_A 1.0773191989054437e-5 +fugitive_A 1.0773191989054437e-5 +fugitive_N 1.118914503742769e-5 +fugleman_N 3.729715012475897e-6 +fugly_A 1.0773191989054437e-5 +fugu_N 3.729715012475897e-6 +fugue_N 3.729715012475897e-6 +fuhrer_N 3.729715012475897e-6 +fuji_N 3.729715012475897e-6 +fulcrum_N 3.729715012475897e-6 +fulfil_V2 1.609865254278217e-5 +fulfill_V2 2.575784406845147e-4 +fulfillment_N 3.729715012475897e-6 +fulfilment_N 3.729715012475897e-6 +fulgurating_A 1.0773191989054437e-5 +full_A 3.35046270859593e-3 +full_blooded_A 1.0773191989054437e-5 +full_blown_A 3.231957596716331e-5 +full_dress_A 1.0773191989054437e-5 +full_fashioned_A 1.0773191989054437e-5 +full_fledged_A 5.3865959945272184e-5 +full_grown_A 1.0773191989054437e-5 +full_length_A 3.231957596716331e-5 +full_page_A 4.309276795621775e-5 +full_scale_A 4.309276795621775e-5 +full_time_A 1.4005149585770768e-4 +full_time_Adv 1.7337933665065797e-5 +fullback_N 3.729715012475897e-6 +fuller_N 3.729715012475897e-6 +fullerene_N 3.729715012475897e-6 +fullness_N 3.729715012475897e-6 +fully_fashioned_A 1.0773191989054437e-5 +fully_fledged_A 1.0773191989054437e-5 +fully_grown_A 1.0773191989054437e-5 +fulmar_N 3.729715012475897e-6 +fulminant_A 1.0773191989054437e-5 +fulminate_N 3.729715012475897e-6 +fulminate_V 2.2678822515534993e-5 +fulmination_N 7.459430024951794e-6 +fulsome_A 1.0773191989054437e-5 +fulsomeness_N 3.729715012475897e-6 +fumble_N 3.729715012475897e-6 +fumble_V 2.2678822515534993e-5 +fumble_V2 1.609865254278217e-5 +fumbler_N 3.729715012475897e-6 +fume_N 1.118914503742769e-5 +fume_V 6.803646754660499e-5 +fume_V2 1.609865254278217e-5 +fume_VS 1.1552012938254491e-4 +fumewort_N 3.729715012475897e-6 +fumigant_N 3.729715012475897e-6 +fumigate_V2 1.609865254278217e-5 +fumigation_N 3.729715012475897e-6 +fumigator_N 3.729715012475897e-6 +fumitory_N 3.729715012475897e-6 +fun_N 5.594572518713845e-5 +funambulism_N 3.729715012475897e-6 +funambulist_N 3.729715012475897e-6 +function_N 1.1562116538675279e-4 +function_V 2.4946704767088494e-4 +functional_A 2.1546383978108874e-5 +functionalism_N 3.729715012475897e-6 +functionalist_N 3.729715012475897e-6 +functionality_N 3.729715012475897e-6 +functionary_N 1.118914503742769e-5 +fund_N 3.1217714654423255e-3 +fund_V2 1.046412415280841e-3 +fundamental_A 5.602059834308307e-4 +fundamental_N 8.951316029942152e-5 +fundamentalism_N 7.459430024951794e-6 +fundamentalist_A 1.0773191989054437e-5 +fundamentalist_N 7.459430024951794e-6 +fundamentals_N 3.729715012475897e-6 +fundraiser_N 3.729715012475897e-6 +funds_N 3.729715012475897e-6 +fundus_N 3.729715012475897e-6 +funeral_N 1.118914503742769e-5 +funerary_A 1.0773191989054437e-5 +funereal_A 1.0773191989054437e-5 +funfair_N 3.729715012475897e-6 +fungal_A 1.0773191989054437e-5 +fungible_A 1.0773191989054437e-5 +fungible_N 3.729715012475897e-6 +fungicidal_A 1.0773191989054437e-5 +fungicide_N 3.729715012475897e-6 +fungoid_A 1.0773191989054437e-5 +fungous_A 1.0773191989054437e-5 +fungus_N 7.459430024951794e-6 +funicle_N 3.729715012475897e-6 +funicular_A 1.0773191989054437e-5 +funicular_N 3.729715012475897e-6 +funiculitis_N 3.729715012475897e-6 +funiculus_N 3.729715012475897e-6 +funk_N 3.729715012475897e-6 +funk_V 2.2678822515534993e-5 +funk_V2 1.609865254278217e-5 +funky_A 1.0773191989054437e-5 +funnel_N 3.729715012475897e-6 +funnel_V 2.2678822515534993e-5 +funnel_V2 8.049326271391085e-5 +funniness_N 3.729715012475897e-6 +funny_A 1.72371071824871e-4 +funny_bone_N 3.729715012475897e-6 +funrun_N 3.729715012475897e-6 +fur_N 8.951316029942152e-5 +furan_N 3.729715012475897e-6 +furbelow_N 3.729715012475897e-6 +furbish_V2 1.609865254278217e-5 +furcation_N 3.729715012475897e-6 +furcula_N 3.729715012475897e-6 +furfural_N 3.729715012475897e-6 +furious_A 8.61855359124355e-5 +furl_V 2.2678822515534993e-5 +furl_V2 1.609865254278217e-5 +furlike_A 1.0773191989054437e-5 +furlong_N 3.729715012475897e-6 +furlough_N 7.459430024951794e-6 +furnace_N 1.8648575062379485e-5 +furnish_V2 9.659191525669301e-5 +furnishing_N 3.729715012475897e-6 +furniture_N 7.459430024951794e-5 +furore_N 7.459430024951794e-6 +furosemide_N 3.729715012475897e-6 +furred_A 1.0773191989054437e-5 +furrier_N 4.475658014971076e-5 +furring_N 3.729715012475897e-6 +furrow_N 3.729715012475897e-6 +furrow_V 4.5357645031069986e-5 +furrow_V2 1.609865254278217e-5 +furry_A 1.0773191989054437e-5 +furth_PN 1.865462821325971e-5 +further_A 8.61855359124355e-5 +further_AdV 3.0208536347690507e-3 +further_Adv 4.507862752917107e-4 +further_V2 8.049326271391085e-5 +furtherance_N 3.729715012475897e-6 +furthermore_Adv 1.1269656882292768e-4 +furthermost_A 1.0773191989054437e-5 +furthest_A 1.0773191989054437e-5 +furthest_Adv 8.668966832532898e-6 +furtive_A 1.0773191989054437e-5 +furtiveness_N 3.729715012475897e-6 +furunculosis_N 3.729715012475897e-6 +fury_N 1.4918860049903587e-5 +furze_N 3.729715012475897e-6 +fuschia_N 3.729715012475897e-6 +fuscous_A 1.0773191989054437e-5 +fuse_N 7.459430024951794e-6 +fuse_V 4.5357645031069986e-5 +fuse_V2 1.609865254278217e-5 +fusee_N 3.729715012475897e-6 +fuselage_N 3.729715012475897e-6 +fushun_PN 1.865462821325971e-5 +fusible_A 1.0773191989054437e-5 +fusiform_A 1.0773191989054437e-5 +fusil_N 3.729715012475897e-6 +fusilier_N 3.729715012475897e-6 +fusillade_N 1.118914503742769e-5 +fusion_N 7.832401526199384e-5 +fuss_N 3.729715012475897e-6 +fuss_V 4.5357645031069986e-5 +fuss_V2 1.609865254278217e-5 +fussiness_N 3.729715012475897e-6 +fusspot_N 3.729715012475897e-6 +fussy_A 1.0773191989054437e-5 +fustian_N 3.729715012475897e-6 +fusty_A 1.0773191989054437e-5 +futile_A 4.309276795621775e-5 +futility_N 7.459430024951794e-6 +futon_N 3.729715012475897e-6 +future_1_N 1.9208032314250868e-3 +future_3_N 1.8648575062379485e-5 +future_A 1.508246878467621e-3 +futureless_A 1.0773191989054437e-5 +futurism_N 3.729715012475897e-6 +futurist_N 3.729715012475897e-6 +futuristic_A 3.231957596716331e-5 +futurity_N 3.729715012475897e-6 +futurology_N 3.729715012475897e-6 +fuze_N 3.729715012475897e-6 +fuzz_N 3.729715012475897e-6 +fuzzed_A 1.0773191989054437e-5 +fuzzy_A 3.231957596716331e-5 +fwd_PN 1.865462821325971e-5 +g_N 3.729715012475897e-6 +g_man_N 3.729715012475897e-6 +gab_N 3.729715012475897e-6 +gabapentin_N 3.729715012475897e-6 +gabardine_N 3.729715012475897e-6 +gabble_N 3.729715012475897e-6 +gabble_V 2.2678822515534993e-5 +gabble_V2 1.609865254278217e-5 +gabbro_N 3.729715012475897e-6 +gaberdine_N 3.729715012475897e-6 +gable_N 3.729715012475897e-6 +gabled_A 1.0773191989054437e-5 +gabon_PN 1.865462821325971e-5 +gabonese_A 1.0773191989054437e-5 +gabonese_N 3.729715012475897e-6 +gad_V 2.2678822515534993e-5 +gad_about_V 2.2678822515534993e-5 +gad_around_V 2.2678822515534993e-5 +gadabout_N 3.729715012475897e-6 +gaddi_N 3.729715012475897e-6 +gadfly_N 3.729715012475897e-6 +gadget_N 1.8648575062379485e-5 +gadgeteer_N 3.729715012475897e-6 +gadgetry_N 3.729715012475897e-6 +gadoid_N 3.729715012475897e-6 +gadolinite_N 3.729715012475897e-6 +gadolinium_N 3.729715012475897e-6 +gael_N 3.729715012475897e-6 +gaelic_A 2.1546383978108874e-5 +gaelic_N 3.729715012475897e-6 +gaff_N 3.729715012475897e-6 +gaffe_N 3.729715012475897e-6 +gaffer_N 3.729715012475897e-6 +gaffsail_N 3.729715012475897e-6 +gag_N 3.729715012475897e-6 +gag_V 2.2678822515534993e-5 +gag_V2 1.609865254278217e-5 +gag_for_V2 1.609865254278217e-5 +gaga_A 1.0773191989054437e-5 +gage_N 3.729715012475897e-6 +gage_V2 1.609865254278217e-5 +gaggle_N 3.729715012475897e-6 +gagman_N 3.729715012475897e-6 +gaiety_N 3.729715012475897e-6 +gaillardia_N 3.729715012475897e-6 +gain_N 2.021505536761936e-3 +gain_V 1.2019775933233545e-3 +gain_V2 2.9138561102435728e-3 +gain_back_V 2.2678822515534993e-5 +gainer_N 1.4918860049903587e-5 +gainful_A 1.0773191989054437e-5 +gainly_A 1.0773191989054437e-5 +gainsay_V2 1.609865254278217e-5 +gainsborough_N 3.729715012475897e-6 +gainsborough_PN 1.865462821325971e-5 +gait_N 3.729715012475897e-6 +gaiter_N 3.729715012475897e-6 +gal_N 3.729715012475897e-6 +gala_N 7.459430024951794e-6 +galactagogue_N 3.729715012475897e-6 +galactic_A 1.0773191989054437e-5 +galactocele_N 3.729715012475897e-6 +galactose_N 3.729715012475897e-6 +galactosemia_N 3.729715012475897e-6 +galactosis_N 3.729715012475897e-6 +galago_N 3.729715012475897e-6 +galangal_N 3.729715012475897e-6 +galantine_N 3.729715012475897e-6 +galashiels_PN 1.865462821325971e-5 +galax_N 3.729715012475897e-6 +galaxy_N 7.459430024951794e-6 +galbanum_N 3.729715012475897e-6 +galbulus_N 3.729715012475897e-6 +gale_N 3.729715012475897e-6 +galea_N 3.729715012475897e-6 +galena_N 3.729715012475897e-6 +galere_N 3.729715012475897e-6 +galingale_N 3.729715012475897e-6 +gall_N 1.118914503742769e-5 +gall_V2 1.609865254278217e-5 +gallamine_N 3.729715012475897e-6 +gallant_A 2.1546383978108874e-5 +gallant_N 3.729715012475897e-6 +gallantry_N 3.729715012475897e-6 +gallbladder_N 3.729715012475897e-6 +galleon_N 3.729715012475897e-6 +gallery_N 6.713487022456614e-5 +galley_N 3.729715012475897e-6 +galley_proof_N 3.729715012475897e-6 +galley_slave_N 3.729715012475897e-6 +gallfly_N 3.729715012475897e-6 +gallic_A 1.0773191989054437e-5 +gallicism_N 3.729715012475897e-6 +gallinaceous_A 1.0773191989054437e-5 +gallinule_N 3.729715012475897e-6 +gallium_N 7.459430024951794e-6 +gallivant_V 2.2678822515534993e-5 +gallon_N 4.848629516218666e-5 +gallop_N 3.729715012475897e-6 +gallop_V 4.5357645031069986e-5 +gallop_V2 1.609865254278217e-5 +galloway_PN 1.865462821325971e-5 +gallows_N 3.729715012475897e-6 +gallows_bird_N 3.729715012475897e-6 +gallstone_N 1.118914503742769e-5 +gallup_PN 1.865462821325971e-5 +galoot_N 3.729715012475897e-6 +galore_Adv 8.668966832532898e-6 +galosh_N 3.729715012475897e-6 +galumph_V 2.2678822515534993e-5 +galvanic_A 1.0773191989054437e-5 +galvanism_N 3.729715012475897e-6 +galvanization_N 3.729715012475897e-6 +galvanize_V2 2.092824830561682e-4 +galvanize_VS 1.1552012938254491e-4 +galvanizer_N 3.729715012475897e-6 +galvanometer_N 3.729715012475897e-6 +galway_PN 1.865462821325971e-5 +gam_N 3.729715012475897e-6 +gambia_PN 1.865462821325971e-5 +gambian_A 1.0773191989054437e-5 +gambian_N 3.729715012475897e-6 +gambist_N 3.729715012475897e-6 +gambit_N 1.118914503742769e-5 +gamble_N 2.9837720099807175e-5 +gamble_V 2.2678822515534994e-4 +gamble_V2 1.609865254278217e-5 +gambler_N 1.8648575062379485e-5 +gambling_N 4.1026865137234865e-5 +gambling_den_N 3.729715012475897e-6 +gamboge_N 3.729715012475897e-6 +gambol_N 3.729715012475897e-6 +gambol_V 2.2678822515534993e-5 +gambrel_N 3.729715012475897e-6 +game_A 1.0773191989054437e-5 +game_N 6.15402977058523e-4 +game_V 1.3607293509320997e-4 +game_V2 1.609865254278217e-5 +game_bag_N 3.729715012475897e-6 +game_bird_N 3.729715012475897e-6 +game_licence_N 3.729715012475897e-6 +gamebag_N 3.729715012475897e-6 +gamecock_N 3.729715012475897e-6 +gamekeeper_N 3.729715012475897e-6 +gamelan_N 3.729715012475897e-6 +games_master_N 3.729715012475897e-6 +games_mistress_N 3.729715012475897e-6 +gamesmanship_N 3.729715012475897e-6 +gametangium_N 3.729715012475897e-6 +gamete_N 3.729715012475897e-6 +gametocyte_N 3.729715012475897e-6 +gametoecium_N 3.729715012475897e-6 +gametogenesis_N 3.729715012475897e-6 +gametophore_N 3.729715012475897e-6 +gametophyte_N 3.729715012475897e-6 +gamey_A 1.0773191989054437e-5 +gamine_N 3.729715012475897e-6 +gaminess_N 3.729715012475897e-6 +gaming_house_N 3.729715012475897e-6 +gaming_table_N 3.729715012475897e-6 +gamma_N 7.459430024951794e-6 +gammon_N 3.729715012475897e-6 +gammopathy_N 3.729715012475897e-6 +gammy_A 1.0773191989054437e-5 +gamopetalous_A 1.0773191989054437e-5 +gamp_N 3.729715012475897e-6 +gamut_N 1.118914503742769e-5 +gamy_A 1.0773191989054437e-5 +gander_N 3.729715012475897e-6 +gang_N 5.2216010174662554e-5 +gang_V 2.2678822515534993e-5 +gang_up_V 2.2678822515534993e-5 +gang_up_against_V2 1.609865254278217e-5 +gang_up_on_V2 1.609865254278217e-5 +ganger_N 3.729715012475897e-6 +gangling_A 1.0773191989054437e-5 +ganglion_N 7.459430024951794e-6 +gangplank_N 3.729715012475897e-6 +gangrene_N 3.729715012475897e-6 +gangrene_V 2.2678822515534993e-5 +gangrene_V2 1.609865254278217e-5 +gangrenous_A 1.0773191989054437e-5 +gangsaw_N 3.729715012475897e-6 +gangsta_N 3.729715012475897e-6 +gangster_N 7.459430024951794e-6 +gangway_N 3.729715012475897e-6 +gannet_N 3.729715012475897e-6 +ganoid_N 3.729715012475897e-6 +ganoin_N 3.729715012475897e-6 +gantlet_N 3.729715012475897e-6 +gantry_N 3.729715012475897e-6 +gaol_N 3.729715012475897e-6 +gaol_V2 1.609865254278217e-5 +gaolbird_N 3.729715012475897e-6 +gaolbreak_N 3.729715012475897e-6 +gaoler_N 3.729715012475897e-6 +gap_N 1.5664803052398767e-4 +gap_toothed_A 1.0773191989054437e-5 +gape_N 3.729715012475897e-6 +gape_V 6.803646754660499e-5 +gar_N 3.729715012475897e-6 +garage_N 3.356743511228307e-5 +garage_V2 1.609865254278217e-5 +garambulla_N 3.729715012475897e-6 +garb_N 3.729715012475897e-6 +garb_V2 1.609865254278217e-5 +garbage_N 3.356743511228307e-5 +garbage_can_N 3.729715012475897e-6 +garble_V2 1.609865254278217e-5 +garboard_N 3.729715012475897e-6 +garbology_N 3.729715012475897e-6 +garden_N 1.5664803052398767e-4 +garden_V 6.803646754660499e-5 +garden_truck_N 3.729715012475897e-6 +gardener_N 1.4918860049903587e-5 +gardenia_N 3.729715012475897e-6 +gardening_N 1.118914503742769e-5 +gareth_PN 1.865462821325971e-5 +garforth_PN 1.865462821325971e-5 +garganey_N 3.729715012475897e-6 +gargantuan_A 6.463915193432663e-5 +gargle_N 3.729715012475897e-6 +gargle_V 2.2678822515534993e-5 +gargle_V2 1.609865254278217e-5 +gargoyle_N 3.729715012475897e-6 +garibaldi_N 3.729715012475897e-6 +garish_A 2.1546383978108874e-5 +garishness_N 3.729715012475897e-6 +garland_N 3.729715012475897e-6 +garland_V2 1.609865254278217e-5 +garlic_N 3.729715012475897e-6 +garlicky_A 1.0773191989054437e-5 +garment_N 1.4918860049903587e-5 +garmentmaker_N 3.729715012475897e-6 +garner_N 3.729715012475897e-6 +garner_V2 1.2878922034225736e-4 +garnet_N 3.729715012475897e-6 +garnierite_N 3.729715012475897e-6 +garnish_N 3.729715012475897e-6 +garnish_V2 1.609865254278217e-5 +garnishee_N 3.729715012475897e-6 +garnishment_N 3.729715012475897e-6 +garotte_N 3.729715012475897e-6 +garotte_V2 1.609865254278217e-5 +garret_N 3.729715012475897e-6 +garrison_N 1.118914503742769e-5 +garrison_V2 1.609865254278217e-5 +garrote_N 3.729715012475897e-6 +garroter_N 3.729715012475897e-6 +garrotte_N 3.729715012475897e-6 +garrotte_V2 1.609865254278217e-5 +garrowhill_PN 1.865462821325971e-5 +garrulity_N 3.729715012475897e-6 +garrulous_A 1.0773191989054437e-5 +garter_N 3.729715012475897e-6 +gary_PN 1.865462821325971e-5 +gas_N 7.795104376074624e-4 +gas_V 2.2678822515534993e-5 +gas_V2 1.609865254278217e-5 +gas_bracket_N 3.729715012475897e-6 +gas_cooker_N 3.729715012475897e-6 +gas_engine_N 3.729715012475897e-6 +gas_fitter_N 3.729715012475897e-6 +gas_helmet_N 3.729715012475897e-6 +gas_holder_N 3.729715012475897e-6 +gas_mask_N 3.729715012475897e-6 +gas_meter_N 3.729715012475897e-6 +gas_oven_N 3.729715012475897e-6 +gas_ring_N 3.729715012475897e-6 +gas_station_N 3.729715012475897e-6 +gas_stove_N 3.729715012475897e-6 +gasbag_N 3.729715012475897e-6 +gaseous_A 2.1546383978108874e-5 +gaseousness_N 3.729715012475897e-6 +gasfield_N 3.729715012475897e-6 +gash_N 3.729715012475897e-6 +gash_V2 1.609865254278217e-5 +gasification_N 3.729715012475897e-6 +gasify_V 2.2678822515534993e-5 +gasify_V2 1.609865254278217e-5 +gasket_N 3.729715012475897e-6 +gaskin_N 3.729715012475897e-6 +gaslight_N 3.729715012475897e-6 +gasman_N 3.729715012475897e-6 +gasmask_N 3.729715012475897e-6 +gasohol_N 3.729715012475897e-6 +gasolene_N 3.729715012475897e-6 +gasoline_N 1.9021546563627073e-4 +gasometer_N 3.729715012475897e-6 +gasp_N 3.729715012475897e-6 +gasp_V 6.803646754660499e-5 +gasp_V2 1.609865254278217e-5 +gassing_N 3.729715012475897e-6 +gassy_A 1.0773191989054437e-5 +gasteromycete_N 3.729715012475897e-6 +gastrectomy_N 3.729715012475897e-6 +gastric_A 1.0773191989054437e-5 +gastrin_N 3.729715012475897e-6 +gastritis_N 3.729715012475897e-6 +gastrocnemius_N 3.729715012475897e-6 +gastroduodenal_A 1.0773191989054437e-5 +gastroenteritis_N 3.729715012475897e-6 +gastroenterologist_N 3.729715012475897e-6 +gastroenterology_N 3.729715012475897e-6 +gastroenterostomy_N 3.729715012475897e-6 +gastroesophageal_A 1.0773191989054437e-5 +gastrogavage_N 3.729715012475897e-6 +gastrointestinal_A 1.0773191989054437e-5 +gastromy_N 3.729715012475897e-6 +gastronomic_A 1.0773191989054437e-5 +gastronomy_N 3.729715012475897e-6 +gastropod_N 3.729715012475897e-6 +gastroscope_N 3.729715012475897e-6 +gastroscopy_N 3.729715012475897e-6 +gastrostomy_N 3.729715012475897e-6 +gastrula_N 3.729715012475897e-6 +gastrulation_N 3.729715012475897e-6 +gasworks_N 3.729715012475897e-6 +gat_N 3.729715012475897e-6 +gate_N 4.475658014971076e-5 +gate_V2 1.609865254278217e-5 +gateau_N 3.729715012475897e-6 +gatecrash_V2 1.609865254278217e-5 +gatecrasher_N 3.729715012475897e-6 +gatehouse_N 3.729715012475897e-6 +gatekeeper_N 3.729715012475897e-6 +gatepost_N 3.729715012475897e-6 +gateshead_PN 1.865462821325971e-5 +gateway_N 7.459430024951794e-6 +gather_N 3.729715012475897e-6 +gather_V 2.2678822515534994e-4 +gather_V2 3.8636766102677204e-4 +gatherer_N 7.459430024951794e-6 +gathering_N 5.967544019961435e-5 +gatt_N 3.729715012475897e-6 +gauche_A 1.0773191989054437e-5 +gaucherie_N 3.729715012475897e-6 +gaucho_N 3.729715012475897e-6 +gaud_N 3.729715012475897e-6 +gaudery_N 3.729715012475897e-6 +gaudy_A 1.0773191989054437e-5 +gaudy_N 3.729715012475897e-6 +gauge_N 2.6108005087331277e-5 +gauge_V2 1.2878922034225736e-4 +gaul_N 3.729715012475897e-6 +gaumless_A 1.0773191989054437e-5 +gaunt_A 1.0773191989054437e-5 +gauntlet_N 3.729715012475897e-6 +gauntleted_A 1.0773191989054437e-5 +gauntness_N 3.729715012475897e-6 +gaur_N 3.729715012475897e-6 +gauss_N 3.729715012475897e-6 +gauze_N 7.459430024951794e-6 +gauzy_A 1.0773191989054437e-5 +gavel_N 3.729715012475897e-6 +gavial_N 3.729715012475897e-6 +gavin_PN 1.865462821325971e-5 +gavotte_N 3.729715012475897e-6 +gawk_N 3.729715012475897e-6 +gawker_N 3.729715012475897e-6 +gawkiness_N 3.729715012475897e-6 +gawky_A 3.231957596716331e-5 +gawp_V 2.2678822515534993e-5 +gay_A 4.309276795621775e-5 +gay_N 3.729715012475897e-6 +gayal_N 3.729715012475897e-6 +gayness_N 3.729715012475897e-6 +gazania_N 3.729715012475897e-6 +gaze_N 3.729715012475897e-6 +gaze_V 4.5357645031069986e-5 +gazebo_N 3.729715012475897e-6 +gazelle_N 3.729715012475897e-6 +gazette_N 3.729715012475897e-6 +gazette_V2 1.609865254278217e-5 +gazetteer_N 3.729715012475897e-6 +gazpacho_N 3.729715012475897e-6 +gazump_V 2.2678822515534993e-5 +gazump_V2 1.609865254278217e-5 +gb_PN 1.865462821325971e-5 +gcse_N 3.729715012475897e-6 +gcses_N 3.729715012475897e-6 +gdansk_PN 1.865462821325971e-5 +gdn_PN 1.865462821325971e-5 +gdns_PN 1.865462821325971e-5 +gean_N 3.729715012475897e-6 +gear_N 4.1026865137234865e-5 +gear_V 1.5875175760874494e-4 +gear_V2 9.659191525669301e-5 +gear_case_N 3.729715012475897e-6 +gear_to_V2 1.609865254278217e-5 +gear_towards_V2 1.609865254278217e-5 +gear_up_V 2.2678822515534993e-5 +gearbox_N 3.729715012475897e-6 +gearing_N 3.729715012475897e-6 +gearset_N 3.729715012475897e-6 +gearshift_N 3.729715012475897e-6 +gecko_N 3.729715012475897e-6 +gee_gee_N 3.729715012475897e-6 +geebung_N 3.729715012475897e-6 +geek_N 3.729715012475897e-6 +geek_out_V 2.2678822515534993e-5 +geezer_N 3.729715012475897e-6 +geiger_N 3.729715012475897e-6 +geisha_N 3.729715012475897e-6 +gel_N 3.729715012475897e-6 +gel_V 2.2678822515534993e-5 +gelatin_N 7.459430024951794e-6 +gelatine_N 3.729715012475897e-6 +gelatinous_A 1.0773191989054437e-5 +gelatinousness_N 3.729715012475897e-6 +geld_V2 1.609865254278217e-5 +gelding_N 3.729715012475897e-6 +gelechiid_N 3.729715012475897e-6 +gelignite_N 3.729715012475897e-6 +gelligaer_PN 1.865462821325971e-5 +gelsenkirchen_PN 1.865462821325971e-5 +gem_N 2.237829007485538e-5 +gemfibrozil_N 3.729715012475897e-6 +geminate_N 3.729715012475897e-6 +gemination_N 3.729715012475897e-6 +gemini_PN 1.865462821325971e-5 +gemma_N 3.729715012475897e-6 +gemmed_A 1.0773191989054437e-5 +gemmiferous_A 1.0773191989054437e-5 +gemmule_N 3.729715012475897e-6 +gempylid_N 3.729715012475897e-6 +gemsbok_N 3.729715012475897e-6 +gen_N 3.729715012475897e-6 +gen_PN 1.865462821325971e-5 +gen_V2 1.609865254278217e-5 +gendarme_N 7.459430024951794e-6 +gendarmerie_N 3.729715012475897e-6 +gender_N 1.4918860049903587e-5 +gene_N 3.7297150124758965e-4 +gene_PN 1.865462821325971e-5 +genealogic_A 1.0773191989054437e-5 +genealogical_A 1.0773191989054437e-5 +genealogist_N 3.729715012475897e-6 +genealogy_N 3.729715012475897e-6 +general_A 4.320049987610829e-3 +general_N 2.0140461067369843e-4 +generalissimo_N 3.729715012475897e-6 +generality_N 3.729715012475897e-6 +generalization_N 1.118914503742769e-5 +generalize_V 9.071529006213997e-5 +generalize_V2 1.609865254278217e-5 +generalship_N 3.729715012475897e-6 +generate_V2 1.1913002881658804e-3 +generation_N 2.349720457859815e-4 +generational_A 1.0773191989054437e-5 +generative_A 1.0773191989054437e-5 +generator_N 2.9837720099807175e-5 +generic_A 1.1850511187959881e-4 +generic_N 3.729715012475897e-6 +generically_Adv 1.7337933665065797e-5 +generosity_N 3.729715012475897e-6 +generous_A 1.4005149585770768e-4 +genesis_N 7.459430024951794e-6 +genet_N 3.729715012475897e-6 +genetic_A 3.770617196169053e-4 +genetically_Adv 6.935173466026319e-5 +geneticism_N 3.729715012475897e-6 +geneticist_N 7.459430024951794e-6 +genetics_N 3.729715012475897e-6 +geneva_N 3.729715012475897e-6 +geneva_PN 3.5443793605193446e-4 +genial_A 2.1546383978108874e-5 +geniality_N 3.729715012475897e-6 +genic_A 1.0773191989054437e-5 +geniculate_A 1.0773191989054437e-5 +genie_N 7.459430024951794e-6 +genip_N 3.729715012475897e-6 +genipa_N 3.729715012475897e-6 +genipap_N 3.729715012475897e-6 +genital_A 2.1546383978108874e-5 +genitalia_N 3.729715012475897e-6 +genitive_A 1.0773191989054437e-5 +genitive_N 3.729715012475897e-6 +genitor_N 3.729715012475897e-6 +genitourinary_A 1.0773191989054437e-5 +genius_N 7.459430024951794e-6 +genius_loci_N 1.8648575062379485e-5 +genlisea_N 3.729715012475897e-6 +genoa_PN 1.865462821325971e-5 +genocide_N 1.8648575062379485e-5 +genoise_N 3.729715012475897e-6 +genome_N 3.729715012475897e-6 +genomics_N 3.729715012475897e-6 +genotype_N 3.729715012475897e-6 +genotypical_A 1.0773191989054437e-5 +genova_PN 1.865462821325971e-5 +genre_N 1.4918860049903587e-5 +genre_painting_N 3.729715012475897e-6 +gent_N 3.729715012475897e-6 +gentamicin_N 3.729715012475897e-6 +genteel_A 3.231957596716331e-5 +gentian_N 3.729715012475897e-6 +gentianella_N 3.729715012475897e-6 +gentile_A 2.1546383978108874e-5 +gentile_N 3.729715012475897e-6 +gentility_N 7.459430024951794e-6 +gentle_A 8.61855359124355e-5 +gentlefolk_N 3.729715012475897e-6 +gentleman_N 1.4918860049903587e-5 +gentleman_at_arms_N 3.729715012475897e-6 +gentlemanlike_A 1.0773191989054437e-5 +gentlemanly_A 1.0773191989054437e-5 +gentleness_N 7.459430024951794e-6 +gentlewoman_N 3.729715012475897e-6 +gently_Adv 6.068276782773029e-5 +gentrification_N 3.729715012475897e-6 +gentry_N 7.459430024951794e-6 +genuflect_V 2.2678822515534993e-5 +genuflection_N 3.729715012475897e-6 +genuflexion_N 3.729715012475897e-6 +genuine_A 2.046906477920343e-4 +genuineness_N 3.729715012475897e-6 +genus_N 3.729715012475897e-6 +geocentric_A 1.0773191989054437e-5 +geochemistry_N 3.729715012475897e-6 +geode_N 7.459430024951794e-6 +geodesic_N 3.729715012475897e-6 +geodesy_N 3.729715012475897e-6 +geodetic_A 1.0773191989054437e-5 +geoduck_N 3.729715012475897e-6 +geoff_PN 1.865462821325971e-5 +geoffrey_PN 1.865462821325971e-5 +geographer_N 3.729715012475897e-6 +geographic_A 1.0773191989054437e-5 +geographical_A 1.0773191989054437e-5 +geography_N 2.9837720099807175e-5 +geological_A 2.1546383978108874e-5 +geologist_N 3.729715012475897e-6 +geology_N 7.459430024951794e-6 +geomancer_N 3.729715012475897e-6 +geomancy_N 3.729715012475897e-6 +geometer_N 3.729715012475897e-6 +geometric_A 2.1546383978108874e-5 +geometrical_A 2.1546383978108874e-5 +geometrid_N 3.729715012475897e-6 +geometry_N 7.459430024951794e-6 +geomorphologic_A 1.0773191989054437e-5 +geophagy_N 3.729715012475897e-6 +geophysical_A 1.0773191989054437e-5 +geophysicist_N 3.729715012475897e-6 +geophysics_N 3.729715012475897e-6 +geophyte_N 3.729715012475897e-6 +geophytic_A 1.0773191989054437e-5 +geopolitical_A 1.0773191989054437e-5 +geopolitics_N 3.729715012475897e-6 +geordie_N 3.729715012475897e-6 +george_PN 1.865462821325971e-5 +georgette_N 3.729715012475897e-6 +georgia_PN 2.4251016677237622e-4 +georgian_A 3.231957596716331e-5 +georgian_N 3.729715012475897e-6 +georgie_PN 1.865462821325971e-5 +geostationary_A 1.0773191989054437e-5 +geostrategic_A 1.0773191989054437e-5 +geostrategy_N 3.729715012475897e-6 +geosynchronous_A 1.0773191989054437e-5 +geothermal_A 1.0773191989054437e-5 +geotropism_N 3.729715012475897e-6 +gerald_PN 1.865462821325971e-5 +geraldine_PN 1.865462821325971e-5 +geranium_N 3.729715012475897e-6 +gerard_PN 1.865462821325971e-5 +gerardia_N 3.729715012475897e-6 +gerbil_N 3.729715012475897e-6 +gerenuk_N 3.729715012475897e-6 +geriatric_A 1.0773191989054437e-5 +geriatrician_N 3.729715012475897e-6 +geriatrics_N 3.729715012475897e-6 +germ_N 7.459430024951794e-6 +german_A 1.72371071824871e-4 +german_N 3.729715012475897e-6 +germander_N 3.729715012475897e-6 +germane_A 1.0773191989054437e-5 +germaneness_N 3.729715012475897e-6 +germanic_A 1.0773191989054437e-5 +germanite_N 3.729715012475897e-6 +germanium_N 3.729715012475897e-6 +germany_PN 6.902212438906093e-4 +germfree_A 1.0773191989054437e-5 +germicide_N 3.729715012475897e-6 +germinal_A 1.0773191989054437e-5 +germinate_V 2.2678822515534993e-5 +germinate_V2 1.609865254278217e-5 +germination_N 3.729715012475897e-6 +germy_A 1.0773191989054437e-5 +gerontocracy_N 3.729715012475897e-6 +gerontologist_N 3.729715012475897e-6 +gerontology_N 3.729715012475897e-6 +gerry_PN 1.865462821325971e-5 +gerrymander_N 3.729715012475897e-6 +gerrymander_V2 1.609865254278217e-5 +gertie_PN 1.865462821325971e-5 +gertrude_PN 1.865462821325971e-5 +gerund_N 3.729715012475897e-6 +gerundial_A 1.0773191989054437e-5 +gesneria_N 3.729715012475897e-6 +gesneriad_N 3.729715012475897e-6 +gesso_N 3.729715012475897e-6 +gestalt_N 3.729715012475897e-6 +gestapo_N 3.729715012475897e-6 +gestation_N 3.729715012475897e-6 +gestational_A 1.0773191989054437e-5 +gesticulate_V 2.2678822515534993e-5 +gesticulation_N 3.729715012475897e-6 +gestural_A 1.0773191989054437e-5 +gesture_N 4.1026865137234865e-5 +gesture_V 4.5357645031069986e-5 +get_N 3.729715012475897e-6 +get_V 9.910645439288792e-3 +get_V2 7.0673084662813725e-3 +get_V2V 1.3557737260402058e-2 +get_VA 9.448818897637795e-2 +get_VS 2.714723040489805e-3 +get_VV 2.1141649048625794e-3 +get_about_V 2.2678822515534993e-5 +get_above_V2 1.609865254278217e-5 +get_across_V 2.2678822515534993e-5 +get_across_V2 1.609865254278217e-5 +get_across_to_V2 1.609865254278217e-5 +get_after_V2 1.609865254278217e-5 +get_ahead_V 2.2678822515534993e-5 +get_ahead_of_V2 1.609865254278217e-5 +get_along_V 2.2678822515534993e-5 +get_along_in_V2 1.609865254278217e-5 +get_along_with_V2 1.609865254278217e-5 +get_around_V 2.2678822515534993e-5 +get_around_V2 1.609865254278217e-5 +get_around_to_V2 1.609865254278217e-5 +get_at_V2 1.609865254278217e-5 +get_at_able_A 1.0773191989054437e-5 +get_away_V 2.2678822515534993e-5 +get_away_from_V2 1.609865254278217e-5 +get_away_with_V2 1.609865254278217e-5 +get_back_V 2.2678822515534993e-5 +get_back_V2 1.609865254278217e-5 +get_back_at_V2 1.609865254278217e-5 +get_back_into_V2 1.609865254278217e-5 +get_back_to_V2 1.609865254278217e-5 +get_back_together_V 2.2678822515534993e-5 +get_behind_V2 1.609865254278217e-5 +get_behind_with_V2 1.609865254278217e-5 +get_by_V 2.2678822515534993e-5 +get_by_V2 1.609865254278217e-5 +get_by_on_V2 1.609865254278217e-5 +get_by_with_V2 1.609865254278217e-5 +get_down_V 2.2678822515534993e-5 +get_down_V2 1.609865254278217e-5 +get_down_on_V2 1.609865254278217e-5 +get_down_to_V2 1.609865254278217e-5 +get_even_V 2.2678822515534993e-5 +get_in_V 2.2678822515534993e-5 +get_in_V2 1.609865254278217e-5 +get_in_on_V2 1.609865254278217e-5 +get_in_with_V2 1.609865254278217e-5 +get_into_V2 1.609865254278217e-5 +get_it_V 2.2678822515534993e-5 +get_it_off_V 2.2678822515534993e-5 +get_it_off_with_V2 1.609865254278217e-5 +get_it_on_V 2.2678822515534993e-5 +get_it_on_with_V2 1.609865254278217e-5 +get_it_together_V 2.2678822515534993e-5 +get_it_up_V 2.2678822515534993e-5 +get_off_V 4.5357645031069986e-5 +get_off_V2 1.609865254278217e-5 +get_off_it_V2 1.609865254278217e-5 +get_off_on_V2 1.609865254278217e-5 +get_off_with_V2 1.609865254278217e-5 +get_on_1_V2 1.609865254278217e-5 +get_on_2_V2 1.609865254278217e-5 +get_on_V 2.2678822515534993e-5 +get_on_at_V2 1.609865254278217e-5 +get_on_for_V2 1.609865254278217e-5 +get_on_to_V2 1.609865254278217e-5 +get_on_with_V2 1.609865254278217e-5 +get_onto_V2 1.609865254278217e-5 +get_out_V 2.2678822515534993e-5 +get_out_V2 1.609865254278217e-5 +get_out_of_V2 1.609865254278217e-5 +get_over_V 2.2678822515534993e-5 +get_over_V2 1.609865254278217e-5 +get_over_with_V2 1.609865254278217e-5 +get_round_V 2.2678822515534993e-5 +get_round_V2 1.609865254278217e-5 +get_round_to_V2 1.609865254278217e-5 +get_through_V 2.2678822515534993e-5 +get_through_V2 1.609865254278217e-5 +get_through_V3 1.5873015873015873e-3 +get_through_to_V2 1.609865254278217e-5 +get_to_V2 1.609865254278217e-5 +get_together_N 3.729715012475897e-6 +get_together_V 2.2678822515534993e-5 +get_up_N 3.729715012475897e-6 +get_up_V 2.2678822515534993e-5 +get_up_V2 1.609865254278217e-5 +get_up_to_V2 1.609865254278217e-5 +getaway_N 3.729715012475897e-6 +gettable_A 1.0773191989054437e-5 +geum_N 3.729715012475897e-6 +geyser_N 7.459430024951794e-6 +ghana_PN 1.865462821325971e-5 +ghanaian_A 1.0773191989054437e-5 +ghanaian_N 3.729715012475897e-6 +gharry_N 3.729715012475897e-6 +ghastliness_N 3.729715012475897e-6 +ghastly_A 2.1546383978108874e-5 +ghat_N 3.729715012475897e-6 +ghatti_N 3.729715012475897e-6 +ghee_N 3.729715012475897e-6 +ghent_PN 1.865462821325971e-5 +gherkin_N 3.729715012475897e-6 +ghetto_N 7.459430024951794e-6 +ghillie_N 3.729715012475897e-6 +ghost_N 1.3799945546160818e-4 +ghost_V 2.2678822515534993e-5 +ghost_V2 1.609865254278217e-5 +ghost_away_V2 1.609865254278217e-5 +ghost_writer_N 3.729715012475897e-6 +ghostliness_N 3.729715012475897e-6 +ghostly_A 2.1546383978108874e-5 +ghostwriter_N 3.729715012475897e-6 +ghoul_N 3.729715012475897e-6 +ghoulish_A 1.0773191989054437e-5 +ghq_PN 1.865462821325971e-5 +ghrelin_N 3.729715012475897e-6 +gi_N 3.729715012475897e-6 +giant_N 2.9464748598559583e-4 +giantess_N 3.729715012475897e-6 +giantism_N 3.729715012475897e-6 +giardia_N 3.729715012475897e-6 +giardiasis_N 3.729715012475897e-6 +gib_N 3.729715012475897e-6 +gibber_V 2.2678822515534993e-5 +gibberellin_N 3.729715012475897e-6 +gibberish_N 7.459430024951794e-6 +gibbet_N 3.729715012475897e-6 +gibbet_V2 1.609865254278217e-5 +gibbon_N 3.729715012475897e-6 +gibbous_A 1.0773191989054437e-5 +gibbsite_N 3.729715012475897e-6 +gibe_N 3.729715012475897e-6 +gibe_V 2.2678822515534993e-5 +gibibit_N 3.729715012475897e-6 +gibingly_Adv 8.668966832532898e-6 +giblet_N 3.729715012475897e-6 +gibraltar_PN 1.865462821325971e-5 +gibraltarian_A 1.0773191989054437e-5 +gibraltarian_N 3.729715012475897e-6 +giddiness_N 3.729715012475897e-6 +giddy_A 3.231957596716331e-5 +gidgee_N 3.729715012475897e-6 +giffnock_PN 1.865462821325971e-5 +gift_N 8.205373027446973e-5 +gift_V2 4.8295957628346505e-5 +gig_N 7.459430024951794e-6 +gigabit_N 3.729715012475897e-6 +gigabyte_N 3.729715012475897e-6 +gigahertz_N 3.729715012475897e-6 +gigantic_A 2.1546383978108874e-5 +gigantism_N 3.729715012475897e-6 +giggle_N 7.459430024951794e-6 +giggle_V 2.2678822515534993e-5 +gigolo_N 1.118914503742769e-5 +gilbert_N 3.729715012475897e-6 +gilbert_PN 1.865462821325971e-5 +gilbertian_A 1.0773191989054437e-5 +gild_N 3.729715012475897e-6 +gild_V2 3.219730508556434e-5 +gilder_N 3.729715012475897e-6 +gildhall_N 3.729715012475897e-6 +gilding_N 7.459430024951794e-6 +giles_PN 1.865462821325971e-5 +gilfach_goch_PN 1.865462821325971e-5 +gill_N 3.729715012475897e-6 +gill_PN 1.865462821325971e-5 +gillian_PN 1.865462821325971e-5 +gillie_N 3.729715012475897e-6 +gillingham_PN 1.865462821325971e-5 +gilt_N 2.237829007485538e-5 +gilt_edged_A 1.0773191989054437e-5 +gimbal_N 3.729715012475897e-6 +gimbaled_A 1.0773191989054437e-5 +gimcrack_A 1.0773191989054437e-5 +gimel_N 3.729715012475897e-6 +gimlet_N 3.729715012475897e-6 +gimmick_N 2.6108005087331277e-5 +gimmickry_N 3.729715012475897e-6 +gin_N 4.1026865137234865e-5 +gin_V2 1.609865254278217e-5 +gin_up_V2 1.609865254278217e-5 +gina_PN 1.865462821325971e-5 +ginger_A 3.231957596716331e-5 +ginger_N 7.459430024951794e-6 +ginger_V2 1.609865254278217e-5 +ginger_up_V2 1.609865254278217e-5 +gingerbread_N 3.729715012475897e-6 +gingerly_A 2.1546383978108874e-5 +gingerol_N 3.729715012475897e-6 +gingersnap_N 3.729715012475897e-6 +gingery_A 1.0773191989054437e-5 +gingham_N 3.729715012475897e-6 +gingiva_N 3.729715012475897e-6 +gingival_A 1.0773191989054437e-5 +gingivitis_N 3.729715012475897e-6 +gingko_N 3.729715012475897e-6 +ginkgo_N 3.729715012475897e-6 +ginseng_N 7.459430024951794e-6 +gipsy_N 3.729715012475897e-6 +gipsywort_N 3.729715012475897e-6 +giraffe_N 3.729715012475897e-6 +girandole_N 3.729715012475897e-6 +gird_V 9.071529006213997e-5 +gird_V2 1.609865254278217e-5 +girder_N 7.459430024951794e-6 +girdle_N 3.729715012475897e-6 +girdle_V2 1.609865254278217e-5 +girl_N 6.713487022456614e-5 +girlfriend_N 2.9837720099807175e-5 +girlhood_N 3.729715012475897e-6 +girlish_A 1.0773191989054437e-5 +girlishness_N 3.729715012475897e-6 +giro_N 3.729715012475897e-6 +girth_N 3.729715012475897e-6 +girvan_PN 1.865462821325971e-5 +gist_N 1.4918860049903587e-5 +gitana_N 3.729715012475897e-6 +gitano_N 3.729715012475897e-6 +give_N 3.729715012475897e-6 +give_V 1.1566199482922847e-2 +give_V2 3.155335898385305e-3 +give_V3 3.80952380952381e-2 +give_away_V 2.2678822515534993e-5 +give_away_V2 1.609865254278217e-5 +give_back_V2 1.609865254278217e-5 +give_in_V 2.2678822515534993e-5 +give_in_V2 1.609865254278217e-5 +give_in_to_V2 1.609865254278217e-5 +give_it_to_V2 1.609865254278217e-5 +give_it_up_for_V2 1.609865254278217e-5 +give_it_up_to_V2 1.609865254278217e-5 +give_of_V2 1.609865254278217e-5 +give_off_V 2.2678822515534993e-5 +give_off_V2 1.609865254278217e-5 +give_onto_V2 1.609865254278217e-5 +give_out_V 2.2678822515534993e-5 +give_out_V2 1.609865254278217e-5 +give_over_V 2.2678822515534993e-5 +give_over_V2 1.609865254278217e-5 +give_over_to_V3 1.5873015873015873e-3 +give_up_V 4.5357645031069986e-5 +give_up_V2 3.219730508556434e-5 +give_up_on_V2 1.609865254278217e-5 +give_up_to_V2 1.609865254278217e-5 +give_way_V 2.2678822515534993e-5 +give_way_to_V2 1.609865254278217e-5 +give_yourself_up_V 2.2678822515534993e-5 +give_yourself_up_to_V2 1.609865254278217e-5 +giveaway_N 3.356743511228307e-5 +given_N 3.729715012475897e-6 +givenness_N 3.729715012475897e-6 +giver_N 3.729715012475897e-6 +giveth_V2 1.609865254278217e-5 +giving_N 3.729715012475897e-6 +gizzard_N 3.729715012475897e-6 +glabella_N 3.729715012475897e-6 +glabellar_A 1.0773191989054437e-5 +glabrescent_A 1.0773191989054437e-5 +glabrous_A 1.0773191989054437e-5 +glace_A 1.0773191989054437e-5 +glacial_A 3.231957596716331e-5 +glaciated_A 1.0773191989054437e-5 +glaciation_N 3.729715012475897e-6 +glacier_N 3.729715012475897e-6 +glad_A 7.541234392338106e-5 +gladden_V2 1.609865254278217e-5 +glade_N 7.459430024951794e-6 +gladiator_N 3.729715012475897e-6 +gladiatorial_A 1.0773191989054437e-5 +gladiolus_N 3.729715012475897e-6 +gladness_N 3.729715012475897e-6 +gladsome_A 1.0773191989054437e-5 +gladys_PN 1.865462821325971e-5 +glamor_N 3.729715012475897e-6 +glamorgan_PN 1.865462821325971e-5 +glamorization_N 3.729715012475897e-6 +glamorize_V2 6.439461017112868e-5 +glamorous_A 9.695872790148993e-5 +glamour_N 2.237829007485538e-5 +glance_N 1.8648575062379485e-5 +glance_V 4.5357645031069986e-5 +glance_V2 1.609865254278217e-5 +gland_N 3.729715012475897e-6 +glanders_N 3.729715012475897e-6 +glandular_A 1.0773191989054437e-5 +glans_N 3.729715012475897e-6 +glare_N 2.6108005087331277e-5 +glare_V 4.5357645031069986e-5 +glare_V2 1.609865254278217e-5 +glaring_A 2.1546383978108874e-5 +glasgow_PN 1.865462821325971e-5 +glasnost_N 3.729715012475897e-6 +glass_N 1.268103104241805e-4 +glass_V2 1.609865254278217e-5 +glass_blower_N 3.729715012475897e-6 +glass_cutter_N 3.729715012475897e-6 +glass_wool_N 3.729715012475897e-6 +glassblower_N 3.729715012475897e-6 +glassful_N 3.729715012475897e-6 +glasshouse_N 3.729715012475897e-6 +glassmaker_N 3.729715012475897e-6 +glassware_N 3.729715012475897e-6 +glassworks_N 3.729715012475897e-6 +glasswort_N 3.729715012475897e-6 +glassy_A 1.0773191989054437e-5 +glastonbury_PN 1.865462821325971e-5 +glaswegian_A 1.0773191989054437e-5 +glaswegian_N 3.729715012475897e-6 +glaucoma_N 3.729715012475897e-6 +glauconite_N 3.729715012475897e-6 +glaucous_A 1.0773191989054437e-5 +glaze_N 3.729715012475897e-6 +glaze_V 4.5357645031069986e-5 +glaze_V2 1.609865254278217e-5 +glazier_N 3.729715012475897e-6 +gleam_N 3.729715012475897e-6 +gleam_V 4.5357645031069986e-5 +glean_V 2.2678822515534993e-5 +glean_V2 4.8295957628346505e-5 +gleaner_N 3.729715012475897e-6 +gleba_N 3.729715012475897e-6 +glebe_N 3.729715012475897e-6 +glee_N 7.459430024951794e-6 +gleeful_A 4.309276795621775e-5 +gleet_N 3.729715012475897e-6 +glen_N 3.729715012475897e-6 +glen_PN 1.865462821325971e-5 +glengarry_N 3.729715012475897e-6 +glenrothes_PN 1.865462821325971e-5 +glial_A 1.0773191989054437e-5 +glib_A 2.1546383978108874e-5 +glibness_N 3.729715012475897e-6 +glide_N 3.729715012475897e-6 +glide_V 6.803646754660499e-5 +glider_N 3.729715012475897e-6 +gliding_N 3.729715012475897e-6 +glimmer_N 7.459430024951794e-6 +glimmer_V 2.2678822515534993e-5 +glimmery_A 1.0773191989054437e-5 +glimpse_N 1.4918860049903587e-5 +glimpse_V2 1.609865254278217e-5 +glint_N 7.459430024951794e-6 +glint_V 2.2678822515534993e-5 +glioblastoma_N 3.729715012475897e-6 +glioma_N 3.729715012475897e-6 +glipizide_N 3.729715012475897e-6 +gliricidia_N 3.729715012475897e-6 +glissade_N 3.729715012475897e-6 +glissade_V 2.2678822515534993e-5 +glissando_A 1.0773191989054437e-5 +glissando_Adv 8.668966832532898e-6 +glissando_N 3.729715012475897e-6 +glisten_V 2.2678822515534993e-5 +glister_N 3.729715012475897e-6 +glister_V 2.2678822515534993e-5 +glitter_N 7.459430024951794e-6 +glitter_V 2.2678822515534993e-5 +gloaming_N 3.729715012475897e-6 +gloat_N 3.729715012475897e-6 +gloat_V 9.071529006213997e-5 +gloat_VS 1.1552012938254491e-4 +gloatingly_Adv 8.668966832532898e-6 +global_A 7.325770552557017e-4 +globalization_N 3.729715012475897e-6 +globe_N 4.475658014971076e-5 +globeflower_N 3.729715012475897e-6 +globetrot_V 2.2678822515534993e-5 +globetrotter_N 3.729715012475897e-6 +globigerina_N 3.729715012475897e-6 +globin_N 3.729715012475897e-6 +globular_A 1.0773191989054437e-5 +globule_N 3.729715012475897e-6 +globulin_N 3.729715012475897e-6 +glochidium_N 3.729715012475897e-6 +glockenspiel_N 3.729715012475897e-6 +glogg_N 3.729715012475897e-6 +glomerular_A 1.0773191989054437e-5 +glomerule_N 3.729715012475897e-6 +glomerulonephritis_N 3.729715012475897e-6 +glomerulus_N 3.729715012475897e-6 +gloom_N 1.8648575062379485e-5 +gloominess_N 3.729715012475897e-6 +glooming_A 1.0773191989054437e-5 +gloomy_A 9.695872790148993e-5 +glop_N 3.729715012475897e-6 +gloria_PN 1.865462821325971e-5 +glorification_N 3.729715012475897e-6 +glorify_V2 1.609865254278217e-5 +gloriosa_N 3.729715012475897e-6 +glorious_A 4.309276795621775e-5 +glory_N 3.729715012475897e-5 +glory_V 2.2678822515534993e-5 +glory_hole_N 3.729715012475897e-6 +gloss_N 3.729715012475897e-6 +gloss_V2 3.219730508556434e-5 +gloss_over_V2 1.609865254278217e-5 +glossalgia_N 3.729715012475897e-6 +glossarist_N 3.729715012475897e-6 +glossary_N 3.729715012475897e-6 +glossiness_N 3.729715012475897e-6 +glossitis_N 3.729715012475897e-6 +glossolalia_N 3.729715012475897e-6 +glossop_PN 1.865462821325971e-5 +glossopharyngeal_A 1.0773191989054437e-5 +glossoptosis_N 3.729715012475897e-6 +glossy_A 8.61855359124355e-5 +glossy_N 3.729715012475897e-6 +glottal_A 1.0773191989054437e-5 +glottis_N 3.729715012475897e-6 +glottochronological_A 1.0773191989054437e-5 +glottochronology_N 3.729715012475897e-6 +gloucester_PN 1.865462821325971e-5 +gloucestershire_PN 1.865462821325971e-5 +glove_N 1.8648575062379485e-5 +glove_compartment_N 3.729715012475897e-6 +gloved_A 1.0773191989054437e-5 +gloveless_A 1.0773191989054437e-5 +glow_N 7.459430024951794e-6 +glow_V 9.071529006213997e-5 +glow_worm_N 3.729715012475897e-6 +glower_V 2.2678822515534993e-5 +gloweringly_Adv 8.668966832532898e-6 +glowingly_Adv 8.668966832532898e-6 +glowworm_N 3.729715012475897e-6 +gloxinia_N 3.729715012475897e-6 +glucagon_N 3.729715012475897e-6 +glucocorticoid_N 3.729715012475897e-6 +glucosamine_N 3.729715012475897e-6 +glucose_N 7.459430024951794e-6 +glucoside_N 3.729715012475897e-6 +glucosuria_N 3.729715012475897e-6 +glue_N 1.8648575062379485e-5 +glue_V2 1.609865254278217e-5 +glue_down_V 2.2678822515534993e-5 +glued_A 1.0773191989054437e-5 +gluey_A 1.0773191989054437e-5 +glum_A 2.1546383978108874e-5 +glume_N 3.729715012475897e-6 +glumness_N 3.729715012475897e-6 +gluon_N 3.729715012475897e-6 +glusburn_PN 1.865462821325971e-5 +glut_N 2.237829007485538e-5 +glut_V2 6.439461017112868e-5 +glutamate_N 3.729715012475897e-6 +glutamine_N 3.729715012475897e-6 +gluteal_A 1.0773191989054437e-5 +glutelin_N 3.729715012475897e-6 +gluten_N 3.729715012475897e-6 +glutethimide_N 3.729715012475897e-6 +gluteus_N 3.729715012475897e-6 +glutinous_A 1.0773191989054437e-5 +glutton_N 3.729715012475897e-6 +gluttonous_A 1.0773191989054437e-5 +gluttony_N 3.729715012475897e-6 +glyburide_N 3.729715012475897e-6 +glyceraldehyde_N 3.729715012475897e-6 +glyceride_N 3.729715012475897e-6 +glycerine_N 3.729715012475897e-6 +glycerite_N 3.729715012475897e-6 +glycerogelatin_N 3.729715012475897e-6 +glycerol_N 3.729715012475897e-6 +glyceryl_N 3.729715012475897e-6 +glycine_N 3.729715012475897e-6 +glycogen_N 3.729715012475897e-6 +glycogenesis_N 3.729715012475897e-6 +glycogenic_A 1.0773191989054437e-5 +glycolysis_N 3.729715012475897e-6 +glycoprotein_N 3.729715012475897e-6 +glycoside_N 3.729715012475897e-6 +glycosuria_N 3.729715012475897e-6 +glyph_N 3.729715012475897e-6 +glyptics_N 3.729715012475897e-6 +glyptography_N 3.729715012475897e-6 +gmt_PN 1.865462821325971e-5 +gnarled_A 1.0773191989054437e-5 +gnash_V 2.2678822515534993e-5 +gnash_V2 1.609865254278217e-5 +gnat_N 3.729715012475897e-6 +gnatcatcher_N 3.729715012475897e-6 +gnathion_N 3.729715012475897e-6 +gnathostome_N 3.729715012475897e-6 +gnaw_V 4.5357645031069986e-5 +gnaw_V2 1.609865254278217e-5 +gnaw_at_V2 1.609865254278217e-5 +gnaw_away_at_V2 1.609865254278217e-5 +gneiss_N 3.729715012475897e-6 +gnetum_N 3.729715012475897e-6 +gnocchi_N 3.729715012475897e-6 +gnome_N 3.729715012475897e-6 +gnomic_A 1.0773191989054437e-5 +gnomish_A 1.0773191989054437e-5 +gnomon_N 3.729715012475897e-6 +gnosis_N 3.729715012475897e-6 +gnostic_A 1.0773191989054437e-5 +gnp_N 1.118914503742769e-5 +gnu_N 3.729715012475897e-6 +go_A 1.0773191989054437e-5 +go_N 1.118914503742769e-5 +go_V 1.5421599310563796e-2 +go_V2 7.083407118824154e-4 +go_VA 4.7244094488188976e-2 +go_VS 5.198405822214521e-4 +go_VV 2.402460119162022e-2 +go_about_V 2.2678822515534993e-5 +go_about_V2 1.609865254278217e-5 +go_across_V 2.2678822515534993e-5 +go_after_V2 3.219730508556434e-5 +go_against_V2 1.609865254278217e-5 +go_ahead_N 3.729715012475897e-6 +go_ahead_V 2.2678822515534993e-5 +go_ahead_with_V2 1.609865254278217e-5 +go_along_V 2.2678822515534993e-5 +go_along_with_V2 1.609865254278217e-5 +go_around_V 2.2678822515534993e-5 +go_as_you_please_A 1.0773191989054437e-5 +go_at_V2 1.609865254278217e-5 +go_away_V 2.2678822515534993e-5 +go_back_V 2.2678822515534993e-5 +go_back_V2 1.609865254278217e-5 +go_back_on_V2 1.609865254278217e-5 +go_before_V 2.2678822515534993e-5 +go_below_V 2.2678822515534993e-5 +go_between_N 3.729715012475897e-6 +go_by_N 3.729715012475897e-6 +go_by_V 2.2678822515534993e-5 +go_by_V2 1.609865254278217e-5 +go_cart_N 3.729715012475897e-6 +go_down_V 2.2678822515534993e-5 +go_down_on_V2 1.609865254278217e-5 +go_down_to_V2 1.609865254278217e-5 +go_down_with_V2 1.609865254278217e-5 +go_for_V 2.2678822515534993e-5 +go_for_V2 1.609865254278217e-5 +go_for_it_V 2.2678822515534993e-5 +go_forth_V 2.2678822515534993e-5 +go_forward_V 2.2678822515534993e-5 +go_getter_N 3.729715012475897e-6 +go_in_V 2.2678822515534993e-5 +go_in_for_V2 1.609865254278217e-5 +go_in_with_V2 1.609865254278217e-5 +go_into_V2 1.609865254278217e-5 +go_it_V 2.2678822515534993e-5 +go_it_alone_V 2.2678822515534993e-5 +go_kart_N 3.729715012475897e-6 +go_off_V 2.2678822515534993e-5 +go_off_V2 1.609865254278217e-5 +go_off_with_V2 1.609865254278217e-5 +go_on_V 2.2678822515534993e-5 +go_on_V2 1.609865254278217e-5 +go_on_about_V2 1.609865254278217e-5 +go_on_at_V2 1.609865254278217e-5 +go_on_to_V2 1.609865254278217e-5 +go_on_with_V2 1.609865254278217e-5 +go_one_V 2.2678822515534993e-5 +go_out_V 2.2678822515534993e-5 +go_out_for_V2 1.609865254278217e-5 +go_out_to_V2 1.609865254278217e-5 +go_out_with_V2 1.609865254278217e-5 +go_over_V 2.2678822515534993e-5 +go_over_V2 1.609865254278217e-5 +go_over_to_V2 1.609865254278217e-5 +go_past_V2 1.609865254278217e-5 +go_round_V 2.2678822515534993e-5 +go_slow_N 3.729715012475897e-6 +go_through_V 2.2678822515534993e-5 +go_through_V2 1.609865254278217e-5 +go_through_with_V2 1.609865254278217e-5 +go_to_V2 1.609865254278217e-5 +go_to_meeting_A 1.0773191989054437e-5 +go_together_V 2.2678822515534993e-5 +go_towards_V2 1.609865254278217e-5 +go_under_V 2.2678822515534993e-5 +go_up_V 4.5357645031069986e-5 +go_up_to_V2 1.609865254278217e-5 +go_with_V2 1.609865254278217e-5 +go_without_V2 1.609865254278217e-5 +goad_N 3.729715012475897e-6 +goad_V2 1.609865254278217e-5 +goal_N 3.61782356210162e-4 +goal_kick_N 3.729715012475897e-6 +goal_line_N 3.729715012475897e-6 +goalie_N 3.729715012475897e-6 +goalkeeper_N 3.729715012475897e-6 +goalless_A 1.0773191989054437e-5 +goalmouth_N 3.729715012475897e-6 +goalpost_N 3.729715012475897e-6 +goat_N 1.118914503742769e-5 +goatee_N 7.459430024951794e-6 +goateed_A 1.0773191989054437e-5 +goatfish_N 3.729715012475897e-6 +goatherd_N 3.729715012475897e-6 +goatsfoot_N 3.729715012475897e-6 +goatskin_N 3.729715012475897e-6 +goatsucker_N 3.729715012475897e-6 +gob_N 3.729715012475897e-6 +gobbet_N 3.729715012475897e-6 +gobble_N 3.729715012475897e-6 +gobble_V 4.5357645031069986e-5 +gobble_V2 1.609865254278217e-5 +gobbledygook_N 7.459430024951794e-6 +gobbler_N 3.729715012475897e-6 +goblet_N 3.729715012475897e-6 +goblin_N 7.459430024951794e-6 +gobsmacked_A 1.0773191989054437e-5 +goby_N 3.729715012475897e-6 +god_N 7.459430024951794e-6 +god_PN 1.865462821325971e-5 +god_damn_A 1.0773191989054437e-5 +god_damned_A 1.0773191989054437e-5 +godalming_PN 1.865462821325971e-5 +godchild_N 3.729715012475897e-6 +goddam_A 1.0773191989054437e-5 +goddam_Adv 8.668966832532898e-6 +goddaughter_N 3.729715012475897e-6 +goddess_N 1.118914503742769e-5 +godfather_N 3.729715012475897e-6 +godfearing_A 1.0773191989054437e-5 +godforsaken_A 1.0773191989054437e-5 +godfrey_PN 1.865462821325971e-5 +godhead_N 3.729715012475897e-6 +godless_A 1.0773191989054437e-5 +godlessness_N 3.729715012475897e-6 +godlike_A 1.0773191989054437e-5 +godliness_N 3.729715012475897e-6 +godly_A 1.0773191989054437e-5 +godmanchester_PN 1.865462821325971e-5 +godmother_N 3.729715012475897e-6 +godown_N 3.729715012475897e-6 +godparent_N 3.729715012475897e-6 +godsend_N 3.729715012475897e-6 +godson_N 3.729715012475897e-6 +godspeed_N 3.729715012475897e-6 +godwit_N 3.729715012475897e-6 +goethite_N 3.729715012475897e-6 +gofer_N 3.729715012475897e-6 +goffer_N 3.729715012475897e-6 +goffs_oak_PN 1.865462821325971e-5 +goggle_V 2.2678822515534993e-5 +goggle_box_N 3.729715012475897e-6 +goggle_eyed_A 1.0773191989054437e-5 +goggles_N 3.729715012475897e-6 +going_N 1.118914503742769e-5 +going_over_N 3.729715012475897e-6 +goiter_N 3.729715012475897e-6 +goitre_N 3.729715012475897e-6 +goitrogen_N 3.729715012475897e-6 +golbourne_PN 1.865462821325971e-5 +gold_A 1.0773191989054437e-5 +gold_N 4.997818116717702e-4 +gold_beater_N 3.729715012475897e-6 +gold_digger_N 3.729715012475897e-6 +gold_dust_N 3.729715012475897e-6 +gold_foil_N 3.729715012475897e-6 +gold_leaf_N 3.729715012475897e-6 +gold_plate_N 3.729715012475897e-6 +gold_rush_N 3.729715012475897e-6 +goldbeater_N 3.729715012475897e-6 +goldbrick_N 3.729715012475897e-6 +goldcrest_N 3.729715012475897e-6 +golden_A 3.1242256768257865e-4 +goldenbush_N 3.729715012475897e-6 +goldeneye_N 3.729715012475897e-6 +goldenrod_N 3.729715012475897e-6 +goldenseal_N 3.729715012475897e-6 +goldfield_N 3.729715012475897e-6 +goldfields_N 3.729715012475897e-6 +goldfinch_N 3.729715012475897e-6 +goldfish_N 3.729715012475897e-6 +goldilocks_N 3.729715012475897e-6 +goldmine_N 3.729715012475897e-6 +goldsmith_N 3.729715012475897e-6 +goldstone_N 3.729715012475897e-6 +goldthread_N 3.729715012475897e-6 +golem_N 3.729715012475897e-6 +golf_N 6.713487022456614e-5 +golf_V 4.5357645031069986e-5 +golf_ball_N 3.729715012475897e-6 +golf_club_N 3.729715012475897e-6 +golf_course_N 3.729715012475897e-6 +golf_links_N 3.729715012475897e-6 +golfcart_N 3.729715012475897e-6 +golfer_N 7.459430024951794e-6 +golfing_N 3.729715012475897e-6 +goliard_N 3.729715012475897e-6 +goliath_N 7.459430024951794e-6 +golliwog_N 3.729715012475897e-6 +golosh_N 3.729715012475897e-6 +gomphothere_N 3.729715012475897e-6 +gonad_N 3.729715012475897e-6 +gonadal_A 1.0773191989054437e-5 +gonadotropic_A 1.0773191989054437e-5 +gonadotropin_N 3.729715012475897e-6 +gondola_N 3.729715012475897e-6 +gondolier_N 3.729715012475897e-6 +goner_N 3.729715012475897e-6 +gong_N 3.729715012475897e-6 +gong_V2 1.609865254278217e-5 +gonif_N 3.729715012475897e-6 +goniometer_N 3.729715012475897e-6 +gonion_N 3.729715012475897e-6 +gonioscopy_N 3.729715012475897e-6 +gonococcus_N 3.729715012475897e-6 +gonorrhea_N 3.729715012475897e-6 +gonorrhoea_N 3.729715012475897e-6 +goo_N 3.729715012475897e-6 +good_A 8.61855359124355e-3 +good_N 6.377812671333784e-4 +good_afternoon_Interj 7.633587786259542e-3 +good_evening_Interj 7.633587786259542e-3 +good_fellowship_N 3.729715012475897e-6 +good_for_naught_A 1.0773191989054437e-5 +good_for_naught_N 3.729715012475897e-6 +good_for_nothing_A 1.0773191989054437e-5 +good_for_nothing_N 3.729715012475897e-6 +good_humoured_A 1.0773191989054437e-5 +good_looking_A 2.1546383978108874e-5 +good_luck_Interj 7.633587786259542e-3 +good_morning_Interj 7.633587786259542e-3 +good_natured_A 4.309276795621775e-5 +good_neighbourliness_N 3.729715012475897e-6 +good_night_Interj 7.633587786259542e-3 +good_tempered_A 1.0773191989054437e-5 +good_time_A 1.0773191989054437e-5 +goodbye_Interj 1.5267175572519083e-2 +goodish_A 1.0773191989054437e-5 +goodly_A 1.0773191989054437e-5 +goodness_N 1.118914503742769e-5 +goodwill_N 2.9837720099807175e-5 +goody_N 1.8648575062379485e-5 +goody_goody_A 1.0773191989054437e-5 +goody_goody_N 3.729715012475897e-6 +gooey_A 1.0773191989054437e-5 +goof_N 3.729715012475897e-6 +goof_V 2.2678822515534993e-5 +goof_V2 1.609865254278217e-5 +goof_around_V 2.2678822515534993e-5 +goof_off_V 2.2678822515534993e-5 +goof_up_V2 1.609865254278217e-5 +goofy_A 1.0773191989054437e-5 +googly_N 3.729715012475897e-6 +googol_N 3.729715012475897e-6 +googolplex_N 3.729715012475897e-6 +gook_N 3.729715012475897e-6 +goole_PN 1.865462821325971e-5 +goon_N 3.729715012475897e-6 +goosander_N 3.729715012475897e-6 +goose_N 7.459430024951794e-6 +goose_flesh_N 3.729715012475897e-6 +goose_step_N 3.729715012475897e-6 +gooseberry_N 7.459430024951794e-6 +goosefish_N 3.729715012475897e-6 +goosefoot_N 3.729715012475897e-6 +gooseneck_N 3.729715012475897e-6 +gopher_N 3.729715012475897e-6 +goral_N 3.729715012475897e-6 +gordian_A 1.0773191989054437e-5 +gordon_PN 1.865462821325971e-5 +gore_N 3.729715012475897e-6 +gore_V2 4.8295957628346505e-5 +gorge_N 3.729715012475897e-6 +gorge_V 2.2678822515534993e-5 +gorge_V2 1.609865254278217e-5 +gorgeous_A 3.231957596716331e-5 +gorgerin_N 3.729715012475897e-6 +gorget_N 3.729715012475897e-6 +gorgon_N 3.729715012475897e-6 +gorgonian_N 3.729715012475897e-6 +gorgonzola_N 3.729715012475897e-6 +gorilla_N 1.118914503742769e-5 +gorky_PN 1.865462821325971e-5 +gormandize_V 2.2678822515534993e-5 +gormless_A 1.0773191989054437e-5 +gorse_N 3.729715012475897e-6 +gorseinon_PN 1.865462821325971e-5 +gory_A 1.0773191989054437e-5 +goshawk_N 3.729715012475897e-6 +gosling_N 3.729715012475897e-6 +gospel_N 1.4918860049903587e-5 +gosport_PN 1.865462821325971e-5 +gossamer_N 3.729715012475897e-6 +gossip_N 2.9837720099807175e-5 +gossip_V 4.5357645031069986e-5 +gossiping_N 3.729715012475897e-6 +goteborg_PN 1.865462821325971e-5 +goth_N 3.729715012475897e-6 +gothenburg_PN 1.865462821325971e-5 +gothic_A 1.0773191989054437e-5 +gothic_N 3.729715012475897e-6 +gottingen_PN 1.865462821325971e-5 +gouache_N 3.729715012475897e-6 +gouge_N 3.729715012475897e-6 +gouge_V2 1.609865254278217e-5 +gouger_N 3.729715012475897e-6 +goulash_N 3.729715012475897e-6 +gourd_N 3.729715012475897e-6 +gourde_N 3.729715012475897e-6 +gourmand_N 3.729715012475897e-6 +gourmandism_N 3.729715012475897e-6 +gourmet_N 1.118914503742769e-5 +gourock_PN 1.865462821325971e-5 +gout_N 3.729715012475897e-6 +gouty_A 2.1546383978108874e-5 +gov_PN 1.865462821325971e-5 +govern_V 1.5875175760874494e-4 +govern_V2 3.702690084839899e-4 +governance_N 1.118914503742769e-5 +governed_N 3.729715012475897e-6 +governess_N 3.729715012475897e-6 +government_N 3.8453361778626495e-3 +governmental_A 5.3865959945272184e-5 +governor_N 1.6410746054893946e-4 +governor_general_N 3.729715012475897e-6 +governorship_N 3.729715012475897e-6 +govt_N 3.729715012475897e-6 +gown_N 3.729715012475897e-6 +gown_V2 1.609865254278217e-5 +gp_N 3.729715012475897e-6 +grab_N 1.8648575062379485e-5 +grab_V 1.1339411257767497e-4 +grab_V2 2.575784406845147e-4 +grabber_N 3.729715012475897e-6 +grace_N 2.9837720099807175e-5 +grace_V2 3.219730508556434e-5 +graceful_A 7.541234392338106e-5 +gracefulness_N 3.729715012475897e-6 +graceless_A 1.0773191989054437e-5 +gracelessness_N 3.729715012475897e-6 +gracilariid_N 3.729715012475897e-6 +gracile_A 1.0773191989054437e-5 +gracious_A 4.309276795621775e-5 +graciousness_N 3.729715012475897e-6 +grackle_N 3.729715012475897e-6 +grad_N 3.729715012475897e-6 +gradable_A 1.0773191989054437e-5 +gradation_N 3.729715012475897e-6 +gradational_A 1.0773191989054437e-5 +grade_N 6.340515521209024e-5 +grade_V2 1.609865254278217e-5 +grader_N 3.729715012475897e-6 +gradient_N 3.729715012475897e-6 +grading_N 3.729715012475897e-6 +gradual_A 3.016493756935242e-4 +gradual_N 3.729715012475897e-6 +graduality_N 3.729715012475897e-6 +gradualness_N 3.729715012475897e-6 +graduate_N 5.594572518713845e-5 +graduate_V 1.1339411257767497e-4 +graduate_V2 3.219730508556434e-5 +graduation_N 1.8648575062379485e-5 +graffito_N 3.729715012475897e-6 +graft_N 7.459430024951794e-6 +graft_V 2.2678822515534993e-5 +graft_V2 3.219730508556434e-5 +grail_N 3.729715012475897e-6 +grain_N 1.9767489566122252e-4 +grained_A 1.0773191989054437e-5 +grainfield_N 3.729715012475897e-6 +graining_N 3.729715012475897e-6 +gram_N 1.4918860049903587e-5 +grama_N 3.729715012475897e-6 +gramicidin_N 3.729715012475897e-6 +grammar_N 1.118914503742769e-5 +grammarian_N 3.729715012475897e-6 +grammatical_A 2.1546383978108874e-5 +gramme_N 3.729715012475897e-6 +gramophone_N 3.729715012475897e-6 +grampian_PN 1.865462821325971e-5 +grampus_N 3.729715012475897e-6 +granada_PN 1.865462821325971e-5 +granadilla_N 3.729715012475897e-6 +granary_N 3.729715012475897e-6 +grand_A 3.770617196169053e-4 +grand_prix_N 1.118914503742769e-5 +grandad_N 3.729715012475897e-6 +grandaunt_N 3.729715012475897e-6 +grandchild_N 1.4918860049903587e-5 +granddad_N 3.729715012475897e-6 +granddaughter_N 3.729715012475897e-6 +grandee_N 7.459430024951794e-6 +grandeur_N 7.459430024951794e-6 +grandfather_N 1.8648575062379485e-5 +grandiloquence_N 3.729715012475897e-6 +grandiloquent_A 1.0773191989054437e-5 +grandiose_A 6.463915193432663e-5 +grandiosity_N 3.729715012475897e-6 +grandma_N 3.729715012475897e-6 +grandmaster_N 3.729715012475897e-6 +grandmother_N 1.8648575062379485e-5 +grandnephew_N 3.729715012475897e-6 +grandniece_N 3.729715012475897e-6 +grandpa_N 3.729715012475897e-6 +grandparent_N 1.118914503742769e-5 +grandson_N 1.4918860049903587e-5 +grandstand_N 3.729715012475897e-6 +grandstander_N 3.729715012475897e-6 +granduncle_N 3.729715012475897e-6 +grange_N 1.118914503742769e-5 +grangemouth_PN 1.865462821325971e-5 +granite_N 2.237829007485538e-5 +graniteware_N 3.729715012475897e-6 +granitic_A 1.0773191989054437e-5 +grannie_N 3.729715012475897e-6 +granny_N 3.729715012475897e-6 +granola_N 3.729715012475897e-6 +grant_N 1.5291831551151176e-4 +grant_V2 6.278474491685046e-4 +grant_V3 3.1746031746031746e-3 +grantee_N 3.729715012475897e-6 +granter_N 3.729715012475897e-6 +grantham_PN 1.865462821325971e-5 +grantor_N 3.729715012475897e-6 +granular_A 2.1546383978108874e-5 +granularity_N 3.729715012475897e-6 +granulate_V 2.2678822515534993e-5 +granulate_V2 1.609865254278217e-5 +granulation_N 3.729715012475897e-6 +granule_N 3.729715012475897e-6 +granuliferous_A 1.0773191989054437e-5 +granulocyte_N 3.729715012475897e-6 +granulocytic_A 1.0773191989054437e-5 +granuloma_N 3.729715012475897e-6 +granulomatous_A 1.0773191989054437e-5 +grape_N 2.237829007485538e-5 +grape_sugar_N 3.729715012475897e-6 +grapefruit_N 3.729715012475897e-6 +grapelike_A 1.0773191989054437e-5 +grapeshot_N 3.729715012475897e-6 +grapevine_N 1.8648575062379485e-5 +grapey_A 1.0773191989054437e-5 +graph_N 1.8648575062379485e-5 +graphic_A 2.1546383978108874e-5 +graphic_N 3.729715012475897e-6 +graphical_A 1.0773191989054437e-5 +graphics_N 1.0443202034932511e-4 +graphite_N 7.459430024951794e-6 +graphologist_N 3.729715012475897e-6 +graphology_N 3.729715012475897e-6 +grapnel_N 3.729715012475897e-6 +grappa_N 3.729715012475897e-6 +grapple_V 1.1339411257767497e-4 +grappling_iron_N 3.729715012475897e-6 +grasp_N 1.118914503742769e-5 +grasp_V 2.2678822515534993e-5 +grasp_V2 6.439461017112868e-5 +grasp_at_V2 1.609865254278217e-5 +grasping_N 3.729715012475897e-6 +grass_N 1.4918860049903587e-5 +grass_V 2.2678822515534993e-5 +grass_V2 1.609865254278217e-5 +grass_on_V2 1.609865254278217e-5 +grass_up_V2 1.609865254278217e-5 +grassfinch_N 3.729715012475897e-6 +grassfire_N 3.729715012475897e-6 +grasshopper_N 3.729715012475897e-6 +grassland_N 3.729715012475897e-6 +grassless_A 1.0773191989054437e-5 +grasslike_A 1.0773191989054437e-5 +grassroots_A 1.0773191989054437e-5 +grassy_A 2.1546383978108874e-5 +grate_N 3.729715012475897e-6 +grate_V 2.2678822515534993e-5 +grate_V2 1.609865254278217e-5 +grateful_A 5.3865959945272184e-5 +gratefulness_N 3.729715012475897e-6 +grater_N 3.729715012475897e-6 +gratification_N 3.729715012475897e-6 +gratify_V2 1.609865254278217e-5 +gratifying_A 1.0773191989054437e-5 +grating_N 3.729715012475897e-6 +gratingly_Adv 8.668966832532898e-6 +gratis_A 1.0773191989054437e-5 +gratis_Adv 8.668966832532898e-6 +gratitude_N 7.459430024951794e-6 +gratuitous_A 5.3865959945272184e-5 +gratuity_N 1.4918860049903587e-5 +grave_A 9.695872790148993e-5 +grave_N 1.4918860049903587e-5 +grave_V2 1.609865254278217e-5 +gravedigger_N 3.729715012475897e-6 +gravel_N 3.729715012475897e-6 +gravel_V2 1.609865254278217e-5 +gravelly_A 1.0773191989054437e-5 +gravelweed_N 3.729715012475897e-6 +graven_A 1.0773191989054437e-5 +graveness_N 3.729715012475897e-6 +gravenhage_PN 1.865462821325971e-5 +graver_N 3.729715012475897e-6 +graverobber_N 3.729715012475897e-6 +gravesend_PN 1.865462821325971e-5 +gravestone_N 3.729715012475897e-6 +graveyard_N 1.118914503742769e-5 +gravida_N 3.729715012475897e-6 +gravidity_N 3.729715012475897e-6 +gravimeter_N 3.729715012475897e-6 +graving_dock_N 1.8648575062379485e-5 +gravitate_V 2.2678822515534993e-5 +gravitation_N 3.729715012475897e-6 +gravitational_A 1.0773191989054437e-5 +graviton_N 3.729715012475897e-6 +gravity_N 1.118914503742769e-5 +gravure_N 3.729715012475897e-6 +gravy_N 1.118914503742769e-5 +gravy_boat_N 3.729715012475897e-6 +gray_A 1.4005149585770768e-4 +gray_N 7.459430024951794e-6 +gray_V 9.071529006213997e-5 +gray_V2 1.609865254278217e-5 +grayly_Adv 8.668966832532898e-6 +graz_PN 1.865462821325971e-5 +graze_N 3.729715012475897e-6 +graze_V 1.1339411257767497e-4 +graze_V2 1.609865254278217e-5 +grazier_N 3.729715012475897e-6 +grazing_N 3.729715012475897e-6 +grazing_land_N 3.729715012475897e-6 +grease_N 1.8648575062379485e-5 +grease_V2 1.609865254278217e-5 +grease_gun_N 3.729715012475897e-6 +greasepaint_N 3.729715012475897e-6 +greaseproof_A 1.0773191989054437e-5 +greaser_N 3.729715012475897e-6 +greasewood_N 3.729715012475897e-6 +greasiness_N 3.729715012475897e-6 +greasy_A 1.0773191989054437e-5 +great_A 3.328916324617821e-3 +great_N 3.729715012475897e-6 +great_harwood_PN 1.865462821325971e-5 +great_malvern_PN 1.865462821325971e-5 +great_shelford_PN 1.865462821325971e-5 +great_yarmouth_PN 1.865462821325971e-5 +greatcoat_N 3.729715012475897e-6 +greater_A 1.0773191989054437e-5 +greatest_A 1.0773191989054437e-5 +greathearted_A 1.0773191989054437e-5 +greatness_N 1.4918860049903587e-5 +greave_N 3.729715012475897e-6 +greaves_N 3.729715012475897e-6 +grebe_N 3.729715012475897e-6 +grecian_A 1.0773191989054437e-5 +greece_PN 4.6636570533149275e-4 +greed_N 2.237829007485538e-5 +greediness_N 3.729715012475897e-6 +greedy_A 9.695872790148993e-5 +greek_A 1.0773191989054437e-5 +greek_N 7.459430024951794e-6 +green_A 2.2623703177014317e-4 +green_N 3.356743511228307e-5 +greenback_N 7.459430024951794e-6 +greenbelt_N 3.729715012475897e-6 +greenbottle_N 3.729715012475897e-6 +greenery_N 3.729715012475897e-6 +greeneye_N 3.729715012475897e-6 +greeneyed_A 1.0773191989054437e-5 +greenfly_N 3.729715012475897e-6 +greengage_N 3.729715012475897e-6 +greengrocer_N 3.729715012475897e-6 +greengrocery_N 3.729715012475897e-6 +greenhorn_N 3.729715012475897e-6 +greenhouse_A 1.0773191989054437e-5 +greenhouse_N 5.594572518713845e-5 +greenish_A 2.1546383978108874e-5 +greenishness_N 3.729715012475897e-6 +greenling_N 3.729715012475897e-6 +greenmail_N 3.729715012475897e-6 +greenness_N 3.729715012475897e-6 +greenock_PN 1.865462821325971e-5 +greenockite_N 3.729715012475897e-6 +greenroom_N 3.729715012475897e-6 +greens_N 3.729715012475897e-6 +greensand_N 3.729715012475897e-6 +greenshank_N 3.729715012475897e-6 +greenside_A 1.0773191989054437e-5 +greenskeeper_N 3.729715012475897e-6 +greensward_N 3.729715012475897e-6 +greenwich_PN 1.865462821325971e-5 +greenwing_N 3.729715012475897e-6 +greenwood_N 3.729715012475897e-6 +greet_V2 1.4488787288503951e-4 +greeter_N 3.729715012475897e-6 +greeting_N 3.729715012475897e-6 +greg_PN 1.865462821325971e-5 +gregarine_N 3.729715012475897e-6 +gregarious_A 1.0773191989054437e-5 +gregariousness_N 3.729715012475897e-6 +gregorian_A 1.0773191989054437e-5 +gregory_PN 1.865462821325971e-5 +greisen_N 3.729715012475897e-6 +gremlin_N 3.729715012475897e-6 +grenada_PN 1.865462821325971e-5 +grenade_N 7.459430024951794e-6 +grenadian_A 1.0773191989054437e-5 +grenadian_N 3.729715012475897e-6 +grenadier_N 3.729715012475897e-6 +grenadine_N 3.729715012475897e-6 +grevillea_N 3.729715012475897e-6 +grey_A 1.0773191989054437e-5 +grey_N 3.729715012475897e-6 +grey_V 2.2678822515534993e-5 +grey_V2 1.609865254278217e-5 +grey_headed_A 1.0773191989054437e-5 +grey_out_V2 1.609865254278217e-5 +greyback_N 3.729715012475897e-6 +greybeard_N 3.729715012475897e-6 +greyhen_N 3.729715012475897e-6 +greyhound_N 3.729715012475897e-6 +greyish_A 1.0773191989054437e-5 +greylag_N 3.729715012475897e-6 +grid_N 2.237829007485538e-5 +griddle_N 3.729715012475897e-6 +gridiron_N 7.459430024951794e-6 +gridlock_N 3.729715012475897e-6 +grief_N 7.459430024951794e-6 +grievance_N 2.9837720099807175e-5 +grieve_V 2.2678822515534993e-5 +grieve_V2 1.609865254278217e-5 +grievous_A 2.1546383978108874e-5 +griffin_N 3.729715012475897e-6 +griffon_N 3.729715012475897e-6 +grigri_N 3.729715012475897e-6 +grill_N 3.729715012475897e-6 +grill_V 2.2678822515534993e-5 +grill_V2 3.219730508556434e-5 +grille_N 3.729715012475897e-6 +grillroom_N 3.729715012475897e-6 +grim_A 1.6159787983581657e-4 +grimace_N 7.459430024951794e-6 +grimace_V 6.803646754660499e-5 +grime_N 3.729715012475897e-6 +grime_V2 1.609865254278217e-5 +grimethorpe_PN 1.865462821325971e-5 +griminess_N 3.729715012475897e-6 +grimness_N 7.459430024951794e-6 +grimoire_N 3.729715012475897e-6 +grimsby_PN 1.865462821325971e-5 +grimy_A 1.0773191989054437e-5 +grin_N 7.459430024951794e-6 +grin_V 2.2678822515534993e-5 +grin_V2 1.609865254278217e-5 +grind_N 3.729715012475897e-6 +grind_V 2.0410940263981494e-4 +grind_V2 1.609865254278217e-5 +grind_away_V 2.2678822515534993e-5 +grind_down_V2 1.609865254278217e-5 +grind_into_V2 1.609865254278217e-5 +grind_on_V 2.2678822515534993e-5 +grind_out_V2 1.609865254278217e-5 +grind_up_V2 1.609865254278217e-5 +grinder_N 1.118914503742769e-5 +grinding_N 3.729715012475897e-6 +grindstone_N 3.729715012475897e-6 +gringo_N 3.729715012475897e-6 +grinner_N 3.729715012475897e-6 +grinstead_PN 1.865462821325971e-5 +griot_N 3.729715012475897e-6 +grip_N 6.713487022456614e-5 +grip_V 1.1339411257767497e-4 +grip_V2 1.609865254278217e-5 +gripe_N 3.729715012475897e-6 +gripe_VS 1.1552012938254491e-4 +grippe_N 3.729715012475897e-6 +gripsack_N 3.729715012475897e-6 +grisaille_N 3.729715012475897e-6 +griseofulvin_N 3.729715012475897e-6 +grisly_A 4.309276795621775e-5 +grison_N 3.729715012475897e-6 +grissino_N 3.729715012475897e-6 +grist_N 3.729715012475897e-6 +gristle_N 3.729715012475897e-6 +gristmill_N 3.729715012475897e-6 +grit_N 3.729715012475897e-6 +grit_V2 1.609865254278217e-5 +grits_N 3.729715012475897e-6 +gritty_A 3.231957596716331e-5 +grivet_N 3.729715012475897e-6 +grizzle_N 3.729715012475897e-6 +grizzle_V 2.2678822515534993e-5 +grizzled_A 1.0773191989054437e-5 +grizzly_N 3.729715012475897e-6 +groan_N 3.729715012475897e-6 +groan_V 6.803646754660499e-5 +groan_V2 1.609865254278217e-5 +groaner_N 3.729715012475897e-6 +groat_N 3.729715012475897e-6 +groats_N 3.729715012475897e-6 +grocer_N 3.729715012475897e-6 +grocery_N 7.086458523704203e-5 +groenendael_N 3.729715012475897e-6 +grog_N 3.729715012475897e-6 +grogginess_N 3.729715012475897e-6 +groggy_A 1.0773191989054437e-5 +grogram_N 3.729715012475897e-6 +groin_N 3.729715012475897e-6 +groin_V2 1.609865254278217e-5 +gromwell_N 3.729715012475897e-6 +groningen_PN 1.865462821325971e-5 +groom_N 3.729715012475897e-6 +groom_V2 1.609865254278217e-5 +groomsman_N 3.729715012475897e-6 +groove_N 7.459430024951794e-6 +groove_V2 1.609865254278217e-5 +groover_N 3.729715012475897e-6 +grooving_N 3.729715012475897e-6 +groovy_A 1.0773191989054437e-5 +grope_N 3.729715012475897e-6 +grope_V 2.2678822515534993e-5 +grope_V2 1.609865254278217e-5 +gropingly_Adv 8.668966832532898e-6 +grosbeak_N 3.729715012475897e-6 +groschen_N 3.729715012475897e-6 +grosgrain_N 3.729715012475897e-6 +gross_A 6.140719433761029e-4 +gross_N 3.729715012475897e-6 +gross_V2 3.219730508556434e-5 +grossness_N 3.729715012475897e-6 +grosz_N 3.729715012475897e-6 +grot_N 3.729715012475897e-6 +grotesque_A 2.1546383978108874e-5 +grotesque_N 3.729715012475897e-6 +grotesqueness_N 3.729715012475897e-6 +grotto_N 3.729715012475897e-6 +grotty_A 1.0773191989054437e-5 +grouch_N 3.729715012475897e-6 +grouch_V 2.2678822515534993e-5 +grouchy_A 1.0773191989054437e-5 +ground_N 3.058366310230235e-4 +ground_V 6.803646754660499e-5 +ground_V2 8.049326271391085e-5 +ground_bait_N 3.729715012475897e-6 +ground_fish_N 3.729715012475897e-6 +ground_plan_N 3.729715012475897e-6 +ground_rent_N 3.729715012475897e-6 +groundbreaking_N 3.729715012475897e-6 +groundcover_N 3.729715012475897e-6 +grounder_N 3.729715012475897e-6 +groundfish_N 3.729715012475897e-6 +groundhog_N 3.729715012475897e-6 +grounding_N 7.459430024951794e-6 +groundless_A 1.0773191989054437e-5 +groundlessness_N 3.729715012475897e-6 +groundling_N 3.729715012475897e-6 +groundmass_N 3.729715012475897e-6 +groundnut_N 3.729715012475897e-6 +grounds_N 3.729715012475897e-6 +groundsel_N 3.729715012475897e-6 +groundsheet_N 3.729715012475897e-6 +groundsman_N 3.729715012475897e-6 +groundspeed_N 3.729715012475897e-6 +groundwork_N 2.237829007485538e-5 +group_N 3.5283104018021985e-3 +group_V 2.2678822515534993e-5 +group_V2 3.219730508556434e-5 +grouper_N 3.729715012475897e-6 +groupie_N 3.729715012475897e-6 +grouping_N 3.729715012475897e-6 +groupthink_N 3.729715012475897e-6 +groupware_N 3.729715012475897e-6 +grouse_N 3.729715012475897e-6 +grouse_V 2.2678822515534993e-5 +grouse_VS 1.7328019407381737e-4 +grouseberry_N 3.729715012475897e-6 +grout_N 3.729715012475897e-6 +grove_N 7.459430024951794e-6 +grovel_V 4.5357645031069986e-5 +groveller_N 3.729715012475897e-6 +grow_V 6.667573819567288e-3 +grow_V2 9.176231949385836e-4 +grow_V2V 4.675081813931744e-4 +grow_VA 2.7559055118110236e-2 +grow_VS 3.4656038814763474e-4 +grow_apart_V 2.2678822515534993e-5 +grow_away_from_V2 1.609865254278217e-5 +grow_back_V 2.2678822515534993e-5 +grow_from_V2 1.609865254278217e-5 +grow_into_V2 1.609865254278217e-5 +grow_on_V2 1.609865254278217e-5 +grow_out_V 2.2678822515534993e-5 +grow_out_of_V2 1.609865254278217e-5 +grow_to_V 2.2678822515534993e-5 +grow_together_V 2.2678822515534993e-5 +grow_under_V 2.2678822515534993e-5 +grow_up_V 4.5357645031069986e-5 +grow_up_on_V2 1.609865254278217e-5 +grow_upon_V2 1.609865254278217e-5 +grower_N 9.697259032437332e-5 +growing_N 3.729715012475897e-6 +growl_N 3.729715012475897e-6 +growl_V 4.5357645031069986e-5 +growl_V2 1.609865254278217e-5 +growler_N 3.729715012475897e-6 +growling_N 3.729715012475897e-6 +growlingly_Adv 8.668966832532898e-6 +grown_up_A 1.0773191989054437e-5 +grown_up_N 3.729715012475897e-6 +growth_N 1.7044797607014847e-3 +groyne_N 3.729715012475897e-6 +grub_N 3.729715012475897e-6 +grub_V 2.2678822515534993e-5 +grub_V2 1.609865254278217e-5 +grubbiness_N 3.729715012475897e-6 +grubby_A 1.0773191989054437e-5 +grubby_N 3.729715012475897e-6 +grubstake_N 3.729715012475897e-6 +grudge_N 3.729715012475897e-6 +grudge_V2 1.609865254278217e-5 +grudging_A 2.1546383978108874e-5 +gruel_N 3.729715012475897e-6 +gruelling_A 1.0773191989054437e-5 +gruesome_A 3.231957596716331e-5 +gruesomeness_N 3.729715012475897e-6 +gruff_A 2.1546383978108874e-5 +gruffness_N 3.729715012475897e-6 +grugru_N 3.729715012475897e-6 +grumble_N 3.729715012475897e-6 +grumble_V 6.803646754660499e-5 +grumble_V2 1.609865254278217e-5 +grumble_VS 1.1552012938254491e-4 +grumbler_N 3.729715012475897e-6 +grume_N 3.729715012475897e-6 +grumpiness_N 3.729715012475897e-6 +grumpy_A 1.0773191989054437e-5 +grundyism_N 3.729715012475897e-6 +grunt_N 3.729715012475897e-6 +grunt_V 2.2678822515534993e-5 +grunt_V2 1.609865254278217e-5 +grunter_N 3.729715012475897e-6 +gryphon_N 3.729715012475897e-6 +guacamole_N 3.729715012475897e-6 +guadalajara_PN 1.865462821325971e-5 +guaiacum_N 3.729715012475897e-6 +guama_N 3.729715012475897e-6 +guan_N 3.729715012475897e-6 +guanabenz_N 3.729715012475897e-6 +guanaco_N 3.729715012475897e-6 +guanine_N 3.729715012475897e-6 +guano_N 3.729715012475897e-6 +guar_N 3.729715012475897e-6 +guarani_N 3.729715012475897e-6 +guarantee_N 3.1329606104797534e-4 +guarantee_V 5.216129178573049e-4 +guarantee_V2 8.371299322246728e-4 +guarantee_VS 3.4656038814763474e-4 +guarantor_N 7.459430024951794e-6 +guaranty_N 3.729715012475897e-6 +guard_N 7.459430024951794e-5 +guard_V 9.071529006213997e-5 +guard_V2 1.609865254278217e-4 +guard_boat_N 3.729715012475897e-6 +guardhouse_N 3.729715012475897e-6 +guardian_N 1.118914503742769e-5 +guardianship_N 3.729715012475897e-6 +guardrail_N 3.729715012475897e-6 +guardroom_N 3.729715012475897e-6 +guardship_N 3.729715012475897e-6 +guardsman_N 3.729715012475897e-6 +guatemala_PN 1.865462821325971e-5 +guatemala_city_PN 1.865462821325971e-5 +guatemalan_A 1.0773191989054437e-5 +guatemalan_N 3.729715012475897e-6 +guava_N 3.729715012475897e-6 +guayaquil_PN 1.865462821325971e-5 +guayule_N 3.729715012475897e-6 +gubernatorial_A 1.0773191989054437e-5 +gudgeon_N 3.729715012475897e-6 +guelder_rose_N 3.729715012475897e-6 +guenon_N 3.729715012475897e-6 +guerdon_N 3.729715012475897e-6 +guereza_N 3.729715012475897e-6 +gueridon_N 3.729715012475897e-6 +guerilla_N 3.729715012475897e-6 +guerrilla_N 7.459430024951794e-5 +guess_N 1.118914503742769e-5 +guess_V 1.1339411257767497e-4 +guess_V2 8.049326271391085e-5 +guess_VS 7.508808409865419e-4 +guesser_N 3.729715012475897e-6 +guesstimate_N 3.729715012475897e-6 +guesswork_N 7.459430024951794e-6 +guest_N 7.832401526199384e-5 +guest_night_N 3.729715012475897e-6 +guesthouse_N 3.729715012475897e-6 +guestroom_N 3.729715012475897e-6 +guffaw_N 3.729715012475897e-6 +guffaw_V 2.2678822515534993e-5 +guidance_N 1.4918860049903587e-5 +guide_N 1.0070230533684921e-4 +guide_V2 2.092824830561682e-4 +guidebook_N 3.729715012475897e-6 +guideline_N 2.349720457859815e-4 +guidepost_N 3.729715012475897e-6 +guiding_A 1.0773191989054437e-5 +guild_N 2.9837720099807175e-5 +guild_hall_N 3.729715012475897e-6 +guilder_N 7.086458523704203e-5 +guildford_PN 1.865462821325971e-5 +guildhall_N 3.729715012475897e-6 +guile_N 7.459430024951794e-6 +guileful_A 1.0773191989054437e-5 +guileless_A 1.0773191989054437e-5 +guillemot_N 3.729715012475897e-6 +guilloche_N 3.729715012475897e-6 +guillotine_N 3.729715012475897e-6 +guillotine_V2 1.609865254278217e-5 +guilt_N 2.237829007485538e-5 +guiltiness_N 3.729715012475897e-6 +guiltless_A 1.0773191989054437e-5 +guilty_A 7.325770552557017e-4 +guimpe_N 3.729715012475897e-6 +guinea_N 1.8648575062379485e-5 +guinea_PN 1.865462821325971e-5 +guinea_fowl_N 3.729715012475897e-6 +guinea_pig_N 3.729715012475897e-6 +guinean_A 1.0773191989054437e-5 +guinean_N 3.729715012475897e-6 +guinness_N 3.729715012475897e-6 +guisborough_PN 1.865462821325971e-5 +guise_N 1.4918860049903587e-5 +guitar_N 3.729715012475897e-6 +guitarfish_N 3.729715012475897e-6 +guitarist_N 3.729715012475897e-6 +gulag_N 3.729715012475897e-6 +gulch_N 3.729715012475897e-6 +gulden_N 3.729715012475897e-6 +gulf_N 1.118914503742769e-5 +gulfweed_N 3.729715012475897e-6 +gull_N 3.729715012475897e-6 +gull_V2 1.609865254278217e-5 +gullet_N 3.729715012475897e-6 +gullibility_N 3.729715012475897e-6 +gullible_A 2.1546383978108874e-5 +gully_N 3.729715012475897e-6 +gulp_N 3.729715012475897e-6 +gulp_V 2.2678822515534993e-5 +gulp_V2 1.609865254278217e-5 +gulper_N 3.729715012475897e-6 +gulping_N 3.729715012475897e-6 +gum_N 3.729715012475897e-5 +gum_V2 1.609865254278217e-5 +gumbo_N 3.729715012475897e-6 +gumboil_N 3.729715012475897e-6 +gumboot_N 3.729715012475897e-6 +gumdrop_N 3.729715012475897e-6 +gumma_N 3.729715012475897e-6 +gummite_N 3.729715012475897e-6 +gummosis_N 3.729715012475897e-6 +gummy_A 1.0773191989054437e-5 +gumption_N 3.729715012475897e-6 +gumshoe_N 3.729715012475897e-6 +gumweed_N 3.729715012475897e-6 +gumwood_N 3.729715012475897e-6 +gun_N 5.967544019961435e-5 +gun_V2 6.439461017112868e-5 +gun_carriage_N 3.729715012475897e-6 +gun_for_V2 1.609865254278217e-5 +gunboat_N 3.729715012475897e-6 +guncotton_N 3.729715012475897e-6 +gundog_N 3.729715012475897e-6 +gunfight_N 3.729715012475897e-6 +gunfire_N 3.729715012475897e-6 +gunflint_N 3.729715012475897e-6 +gunite_N 3.729715012475897e-6 +gunlock_N 3.729715012475897e-6 +gunman_N 1.4918860049903587e-5 +gunmetal_N 3.729715012475897e-6 +gunnel_N 3.729715012475897e-6 +gunner_N 1.118914503742769e-5 +gunnery_N 3.729715012475897e-6 +gunny_N 7.459430024951794e-6 +gunnysack_N 3.729715012475897e-6 +gunplay_N 3.729715012475897e-6 +gunpoint_N 7.459430024951794e-6 +gunpowder_N 3.729715012475897e-6 +gunroom_N 3.729715012475897e-6 +gunrunner_N 3.729715012475897e-6 +gunrunning_N 3.729715012475897e-6 +gunshot_N 7.459430024951794e-6 +gunsight_N 3.729715012475897e-6 +gunsmith_N 3.729715012475897e-6 +gunwale_N 3.729715012475897e-6 +guppy_N 3.729715012475897e-6 +gurgle_N 3.729715012475897e-6 +gurgle_V 2.2678822515534993e-5 +gurkha_N 3.729715012475897e-6 +gurnard_N 3.729715012475897e-6 +gurney_N 3.729715012475897e-6 +guru_N 2.237829007485538e-5 +gush_N 3.729715012475897e-6 +gush_V 4.5357645031069986e-5 +gusher_N 3.729715012475897e-6 +gushingly_Adv 8.668966832532898e-6 +gusset_N 3.729715012475897e-6 +gusseted_A 1.0773191989054437e-5 +gussy_up_V2 1.609865254278217e-5 +gust_N 3.729715012475897e-6 +gustation_N 3.729715012475897e-6 +gustatory_A 1.0773191989054437e-5 +gusto_N 7.459430024951794e-6 +gusty_A 1.0773191989054437e-5 +gut_N 2.9837720099807175e-5 +gut_V2 3.219730508556434e-5 +gutless_A 1.0773191989054437e-5 +gutlessness_N 3.729715012475897e-6 +gutsiness_N 3.729715012475897e-6 +gutsy_A 1.0773191989054437e-5 +gutta_percha_N 3.729715012475897e-6 +gutter_N 7.459430024951794e-6 +gutter_V 2.2678822515534993e-5 +guttersnipe_N 3.729715012475897e-6 +guttural_A 1.0773191989054437e-5 +guttural_N 3.729715012475897e-6 +guvnor_N 3.729715012475897e-6 +guy's_PN 1.865462821325971e-5 +guy_N 2.349720457859815e-4 +guy_PN 1.865462821325971e-5 +guy_V2 1.609865254278217e-5 +guyana_PN 1.865462821325971e-5 +guyanese_A 1.0773191989054437e-5 +guyanese_N 3.729715012475897e-6 +guyot_N 3.729715012475897e-6 +guzzle_V 4.5357645031069986e-5 +guzzle_V2 1.609865254278217e-5 +guzzler_N 3.729715012475897e-6 +gwen_PN 1.865462821325971e-5 +gwendoline_PN 1.865462821325971e-5 +gwent_PN 1.865462821325971e-5 +gwersyllt_PN 1.865462821325971e-5 +gwynedd_PN 1.865462821325971e-5 +gybe_V 2.2678822515534993e-5 +gybe_V2 1.609865254278217e-5 +gym_N 3.729715012475897e-6 +gymkhana_N 3.729715012475897e-6 +gymnasium_N 3.729715012475897e-6 +gymnast_N 3.729715012475897e-6 +gymnastic_A 2.1546383978108874e-5 +gymnastics_N 7.459430024951794e-6 +gymnosophical_A 1.0773191989054437e-5 +gymnosophist_N 3.729715012475897e-6 +gymnosophy_N 3.729715012475897e-6 +gymnosperm_N 3.729715012475897e-6 +gymnospermous_A 1.0773191989054437e-5 +gymslip_N 3.729715012475897e-6 +gynaecological_A 1.0773191989054437e-5 +gynaecologist_N 3.729715012475897e-6 +gynaecology_N 3.729715012475897e-6 +gynandromorphic_A 1.0773191989054437e-5 +gynecocracy_N 3.729715012475897e-6 +gynecological_A 1.0773191989054437e-5 +gynecologist_N 3.729715012475897e-6 +gynecology_N 3.729715012475897e-6 +gynecomastia_N 3.729715012475897e-6 +gyneolatry_N 3.729715012475897e-6 +gynobase_N 3.729715012475897e-6 +gynoecium_N 3.729715012475897e-6 +gynogenesis_N 3.729715012475897e-6 +gynophobia_N 3.729715012475897e-6 +gynophore_N 3.729715012475897e-6 +gynostegium_N 3.729715012475897e-6 +gyp_N 3.729715012475897e-6 +gyp_V2 1.609865254278217e-5 +gypsum_N 3.729715012475897e-6 +gypsy_N 7.459430024951794e-6 +gyral_A 1.0773191989054437e-5 +gyrate_V 1.1339411257767497e-4 +gyration_N 1.1562116538675279e-4 +gyrfalcon_N 3.729715012475897e-6 +gyro_N 3.729715012475897e-6 +gyrocompass_N 3.729715012475897e-6 +gyromitra_N 3.729715012475897e-6 +gyroscope_N 3.729715012475897e-6 +gyroscopic_A 1.0773191989054437e-5 +gyrostabilizer_N 3.729715012475897e-6 +gyrus_N 3.729715012475897e-6 +h'm_V 2.2678822515534993e-5 +h_bomb_N 3.729715012475897e-6 +ha'p'orth_N 3.729715012475897e-6 +ha'penny_N 3.729715012475897e-6 +haarlem_PN 1.865462821325971e-5 +habanera_N 3.729715012475897e-6 +habeas_corpus_N 3.729715012475897e-6 +haberdasher_N 3.729715012475897e-6 +haberdashery_N 7.459430024951794e-6 +habergeon_N 3.729715012475897e-6 +habit_N 7.086458523704203e-5 +habitability_N 3.729715012475897e-6 +habitable_A 1.0773191989054437e-5 +habitat_N 1.118914503742769e-5 +habitation_N 3.729715012475897e-6 +habited_A 1.0773191989054437e-5 +habitual_A 1.0773191989054437e-5 +habituate_V2 1.609865254278217e-5 +habituation_N 3.729715012475897e-6 +habitude_N 3.729715012475897e-6 +habitue_N 3.729715012475897e-6 +habitus_N 3.729715012475897e-6 +hacek_N 3.729715012475897e-6 +hacienda_N 3.729715012475897e-6 +hack_N 7.459430024951794e-6 +hack_V 4.5357645031069986e-5 +hack_V2 1.609865254278217e-5 +hack_around_V 2.2678822515534993e-5 +hack_away_V 2.2678822515534993e-5 +hack_into_V2 1.609865254278217e-5 +hack_off_V2 1.609865254278217e-5 +hack_up_V2 1.609865254278217e-5 +hackberry_N 3.729715012475897e-6 +hacker_N 3.729715012475897e-6 +hackle_N 3.729715012475897e-6 +hackney_N 3.729715012475897e-6 +hackney_PN 1.865462821325971e-5 +hackneyed_A 1.0773191989054437e-5 +hacksaw_N 3.729715012475897e-6 +hackwork_N 3.729715012475897e-6 +hadal_A 1.0773191989054437e-5 +haddington_PN 1.865462821325971e-5 +haddock_N 3.729715012475897e-6 +hades_PN 1.865462821325971e-5 +hadji_N 3.729715012475897e-6 +hadron_N 3.729715012475897e-6 +hadrosaur_N 3.729715012475897e-6 +haematite_N 3.729715012475897e-6 +haemoglobin_N 3.729715012475897e-6 +haemophilia_N 3.729715012475897e-6 +haemophiliac_N 3.729715012475897e-6 +haemophilic_A 1.0773191989054437e-5 +haemoproteid_N 3.729715012475897e-6 +haemorrhage_N 3.729715012475897e-6 +haemosporidian_N 3.729715012475897e-6 +hafnium_N 3.729715012475897e-6 +haft_N 3.729715012475897e-6 +hag_N 3.729715012475897e-6 +hag_ridden_A 1.0773191989054437e-5 +hagberry_N 3.729715012475897e-6 +hagen_PN 1.865462821325971e-5 +hagfish_N 3.729715012475897e-6 +haggard_A 1.0773191989054437e-5 +haggis_N 3.729715012475897e-6 +haggle_N 3.729715012475897e-6 +haggle_V 6.803646754660499e-5 +haggler_N 3.729715012475897e-6 +hagiographer_N 3.729715012475897e-6 +hagiography_N 3.729715012475897e-6 +hagiolatry_N 3.729715012475897e-6 +hagiology_N 3.729715012475897e-6 +hagley_PN 1.865462821325971e-5 +haha_N 3.729715012475897e-6 +haik_N 3.729715012475897e-6 +haiku_N 3.729715012475897e-6 +hail_N 1.118914503742769e-5 +hail_V 4.5357645031069986e-5 +hail_V2 2.2538113559895037e-4 +hailsham_PN 1.865462821325971e-5 +hailstone_N 3.729715012475897e-6 +hailstorm_N 3.729715012475897e-6 +haiphong_PN 1.865462821325971e-5 +hair's_breadth_N 3.729715012475897e-6 +hair_N 6.340515521209024e-5 +hair_breadth_N 3.729715012475897e-6 +hair_dye_N 3.729715012475897e-6 +hair_oil_N 3.729715012475897e-6 +hair_raising_A 1.0773191989054437e-5 +hair_shirt_N 3.729715012475897e-6 +hair_slide_N 3.729715012475897e-6 +hair_trigger_N 3.729715012475897e-6 +hairball_N 3.729715012475897e-6 +hairbrush_N 3.729715012475897e-6 +haircloth_N 3.729715012475897e-6 +haircut_N 3.729715012475897e-6 +hairdo_N 3.729715012475897e-6 +hairdresser_N 7.459430024951794e-6 +hairdressing_N 3.729715012475897e-6 +hairiness_N 3.729715012475897e-6 +hairless_A 1.0773191989054437e-5 +hairlessness_N 3.729715012475897e-6 +hairlike_A 1.0773191989054437e-5 +hairline_N 7.459430024951794e-6 +hairnet_N 3.729715012475897e-6 +hairpiece_N 3.729715012475897e-6 +hairpin_N 3.729715012475897e-6 +hairsplitter_N 3.729715012475897e-6 +hairsplitting_A 1.0773191989054437e-5 +hairsplitting_N 3.729715012475897e-6 +hairspring_N 3.729715012475897e-6 +hairstreak_N 3.729715012475897e-6 +hairstyle_N 3.729715012475897e-6 +hairstylist_N 3.729715012475897e-6 +hairweaving_N 3.729715012475897e-6 +hairy_A 2.1546383978108874e-5 +haiti_PN 1.865462821325971e-5 +haitian_A 1.0773191989054437e-5 +haitian_N 3.729715012475897e-6 +hajj_N 3.729715012475897e-6 +hajji_N 3.729715012475897e-6 +hake_N 3.729715012475897e-6 +hakim_N 3.729715012475897e-6 +hal_PN 1.865462821325971e-5 +halal_A 1.0773191989054437e-5 +halal_N 3.729715012475897e-6 +halberd_N 3.729715012475897e-6 +halberdier_N 3.729715012475897e-6 +halcyon_A 1.0773191989054437e-5 +halcyon_N 3.729715012475897e-6 +hale_A 1.0773191989054437e-5 +haler_N 3.729715012475897e-6 +halesowen_PN 1.865462821325971e-5 +half_A 1.0773191989054437e-5 +half_Adv 8.668966832532898e-6 +half_N 7.608618625450829e-4 +half_Predet 0.125 +half_baked_A 2.1546383978108874e-5 +half_blood_N 3.729715012475897e-6 +half_breed_N 3.729715012475897e-6 +half_brother_N 3.729715012475897e-6 +half_caste_N 3.729715012475897e-6 +half_crazed_A 1.0773191989054437e-5 +half_crown_N 3.729715012475897e-6 +half_hardy_A 1.0773191989054437e-5 +half_hearted_A 1.0773191989054437e-5 +half_holiday_N 3.729715012475897e-6 +half_hour_N 3.729715012475897e-6 +half_hourly_A 1.0773191989054437e-5 +half_hourly_Adv 8.668966832532898e-6 +half_length_A 1.0773191989054437e-5 +half_pay_N 3.729715012475897e-6 +half_price_Adv 8.668966832532898e-6 +half_seas_over_A 1.0773191989054437e-5 +half_sister_N 3.729715012475897e-6 +half_size_A 1.0773191989054437e-5 +half_timbered_A 1.0773191989054437e-5 +half_time_N 3.729715012475897e-6 +half_track_N 3.729715012475897e-6 +half_tracked_A 1.0773191989054437e-5 +half_truth_N 3.729715012475897e-6 +half_volley_N 3.729715012475897e-6 +half_yearly_A 1.0773191989054437e-5 +half_yearly_Adv 8.668966832532898e-6 +halfback_N 3.729715012475897e-6 +halfbeak_N 3.729715012475897e-6 +halfhearted_A 1.0773191989054437e-5 +halfpenny_N 3.729715012475897e-6 +halfpennyworth_N 3.729715012475897e-6 +halftime_N 3.729715012475897e-6 +halftone_N 3.729715012475897e-6 +halfway_A 1.0773191989054437e-5 +halfway_Adv 8.668966832532898e-6 +halfwit_N 3.729715012475897e-6 +halfwitted_A 1.0773191989054437e-5 +halibut_N 3.729715012475897e-6 +halide_N 3.729715012475897e-6 +halifax_PN 1.865462821325971e-5 +halite_N 3.729715012475897e-6 +halitosis_N 3.729715012475897e-6 +halitus_N 3.729715012475897e-6 +hall_N 6.340515521209024e-5 +hall_stand_N 3.729715012475897e-6 +halle_PN 1.865462821325971e-5 +hallelujah_N 3.729715012475897e-6 +halliard_N 3.729715012475897e-6 +hallmark_N 1.118914503742769e-5 +halloo_N 3.729715012475897e-6 +halloo_V 2.2678822515534993e-5 +hallow_N 3.729715012475897e-6 +hallow_V2 3.219730508556434e-5 +hallowe'en_N 3.729715012475897e-6 +hallowe'en_PN 1.865462821325971e-5 +hallstand_N 3.729715012475897e-6 +hallucination_N 3.729715012475897e-6 +hallucinatory_A 1.0773191989054437e-5 +hallucinogen_N 3.729715012475897e-6 +hallucinogenic_A 1.0773191989054437e-5 +hallucinosis_N 3.729715012475897e-6 +hallway_N 3.729715012475897e-6 +halma_N 3.729715012475897e-6 +halo_N 7.459430024951794e-6 +halobacteria_N 3.729715012475897e-6 +halocarbon_N 3.729715012475897e-6 +haloform_N 3.729715012475897e-6 +halogen_N 3.729715012475897e-6 +halogeton_N 3.729715012475897e-6 +halon_N 3.729715012475897e-6 +haloperidol_N 3.729715012475897e-6 +halophile_N 3.729715012475897e-6 +halophyte_N 3.729715012475897e-6 +halothane_N 3.729715012475897e-6 +halstead_PN 1.865462821325971e-5 +halt_A 1.0773191989054437e-5 +halt_N 1.6783717556141534e-4 +halt_V 4.989340953417699e-4 +halt_V2 5.634528389973759e-4 +halter_N 3.729715012475897e-6 +haltingly_Adv 1.7337933665065797e-5 +halve_V2 1.1269056779947518e-4 +halyard_N 3.729715012475897e-6 +ham_N 7.459430024951794e-6 +ham_V 4.5357645031069986e-5 +ham_V2 1.609865254278217e-5 +ham_fisted_A 1.0773191989054437e-5 +ham_handed_A 2.1546383978108874e-5 +ham_up_V2 1.609865254278217e-5 +hamadryad_N 3.729715012475897e-6 +hamartoma_N 3.729715012475897e-6 +hamate_N 3.729715012475897e-6 +hamburg_PN 3.730925642651942e-5 +hamburger_N 2.237829007485538e-5 +hame_N 3.729715012475897e-6 +hamelia_N 3.729715012475897e-6 +hamhung_PN 1.865462821325971e-5 +hamilton_PN 1.865462821325971e-5 +hamlet_N 3.729715012475897e-6 +hammer_N 3.729715012475897e-6 +hammer_V 1.5875175760874494e-4 +hammer_V2 1.4488787288503951e-4 +hammer_away_at_V2 1.609865254278217e-5 +hammer_into_V2 1.609865254278217e-5 +hammer_out_V2 1.609865254278217e-5 +hammerhead_N 3.729715012475897e-6 +hammerlock_N 3.729715012475897e-6 +hammersmith_PN 1.865462821325971e-5 +hammertoe_N 3.729715012475897e-6 +hamming_N 3.729715012475897e-6 +hammock_N 3.729715012475897e-6 +hammy_A 1.0773191989054437e-5 +hamper_N 3.729715012475897e-6 +hamper_V2 3.8636766102677204e-4 +hampreston_PN 1.865462821325971e-5 +hampshire_PN 1.865462821325971e-5 +hamster_N 3.729715012475897e-6 +hamstring_N 3.729715012475897e-6 +hamstring_V2 4.8295957628346505e-5 +hand_N 7.795104376074624e-4 +hand_V2 3.219730508556434e-4 +hand_back_V2 1.609865254278217e-5 +hand_barrow_N 3.729715012475897e-6 +hand_carry_V2 3.219730508556434e-5 +hand_down_V2 1.609865254278217e-5 +hand_grenade_N 3.729715012475897e-6 +hand_in_V2 1.609865254278217e-5 +hand_luggage_N 3.729715012475897e-6 +hand_me_down_N 3.729715012475897e-6 +hand_on_V2 1.609865254278217e-5 +hand_organ_N 3.729715012475897e-6 +hand_out_N 3.729715012475897e-6 +hand_out_V2 1.609865254278217e-5 +hand_over_V2 1.609865254278217e-5 +hand_picked_A 2.1546383978108874e-5 +handbag_N 3.729715012475897e-6 +handball_N 3.729715012475897e-6 +handbarrow_N 3.729715012475897e-6 +handbell_N 3.729715012475897e-6 +handbill_N 7.459430024951794e-6 +handbook_N 7.459430024951794e-6 +handbow_N 3.729715012475897e-6 +handbrake_N 3.729715012475897e-6 +handbreadth_N 3.729715012475897e-6 +handcar_N 3.729715012475897e-6 +handcart_N 3.729715012475897e-6 +handclap_N 3.729715012475897e-6 +handcuff_N 7.459430024951794e-6 +handcuff_V2 3.219730508556434e-5 +handedness_N 3.729715012475897e-6 +handful_N 1.3799945546160818e-4 +handhold_N 3.729715012475897e-6 +handicap_N 1.4918860049903587e-5 +handicap_V2 6.439461017112868e-5 +handicraft_N 3.729715012475897e-6 +handiness_N 3.729715012475897e-6 +handiwork_N 3.729715012475897e-6 +handkerchief_N 3.729715012475897e-6 +handle_N 3.729715012475897e-6 +handle_V 8.617952555903298e-4 +handle_V2 1.5776679491926525e-3 +handlebar_N 3.729715012475897e-6 +handleless_A 1.0773191989054437e-5 +handler_N 1.8648575062379485e-5 +handless_A 1.0773191989054437e-5 +handline_N 3.729715012475897e-6 +handling_N 3.729715012475897e-6 +handloom_N 3.729715012475897e-6 +handmade_A 1.0773191989054437e-5 +handmaid_N 3.729715012475897e-6 +handoff_N 3.729715012475897e-6 +handout_N 3.729715012475897e-6 +handover_N 3.729715012475897e-6 +handrail_N 3.729715012475897e-6 +handrest_N 3.729715012475897e-6 +hands_N 3.729715012475897e-6 +handsaw_N 3.729715012475897e-6 +handset_N 3.729715012475897e-6 +handsewn_A 1.0773191989054437e-5 +handshake_N 7.459430024951794e-6 +handshaking_N 3.729715012475897e-6 +handsome_A 9.695872790148993e-5 +handsomeness_N 3.729715012475897e-6 +handspike_N 3.729715012475897e-6 +handspring_N 3.729715012475897e-6 +handstamp_N 3.729715012475897e-6 +handstand_N 7.459430024951794e-6 +handwear_N 3.729715012475897e-6 +handwheel_N 3.729715012475897e-6 +handwork_N 3.729715012475897e-6 +handwriting_N 1.118914503742769e-5 +handwritten_A 1.0773191989054437e-5 +handy_A 1.1850511187959881e-4 +handyman_N 3.729715012475897e-6 +hang_N 3.729715012475897e-6 +hang_V 4.535764503106999e-4 +hang_V2 8.049326271391085e-5 +hang_about_V 2.2678822515534993e-5 +hang_around_V 2.2678822515534993e-5 +hang_around_V2 1.609865254278217e-5 +hang_back_V 2.2678822515534993e-5 +hang_back_from_V2 1.609865254278217e-5 +hang_in_there_V 2.2678822515534993e-5 +hang_it_up_V 2.2678822515534993e-5 +hang_on_V 2.2678822515534993e-5 +hang_onto_V2 1.609865254278217e-5 +hang_out_V 2.2678822515534993e-5 +hang_out_V2 1.609865254278217e-5 +hang_out_for_V2 1.609865254278217e-5 +hang_over_V2 3.219730508556434e-5 +hang_together_V 2.2678822515534993e-5 +hang_up_N 3.729715012475897e-6 +hang_up_V 2.2678822515534993e-5 +hang_up_V2 1.609865254278217e-5 +hang_up_on_V2 1.609865254278217e-5 +hang_with_V2 1.609865254278217e-5 +hangar_N 7.459430024951794e-6 +hangchon_PN 1.865462821325971e-5 +hangdog_A 1.0773191989054437e-5 +hanger_N 3.729715012475897e-6 +hanger_on_N 3.729715012475897e-6 +hanging_N 7.459430024951794e-6 +hangman_N 3.729715012475897e-6 +hangnail_N 3.729715012475897e-6 +hangover_N 1.118914503742769e-5 +hank_N 7.459430024951794e-6 +hanker_V 2.2678822515534993e-5 +hanker_after_V2 1.609865254278217e-5 +hanker_for_V2 1.609865254278217e-5 +hankering_N 3.729715012475897e-6 +hanky_N 3.729715012475897e-6 +hanky_panky_N 3.729715012475897e-6 +hanoi_PN 1.865462821325971e-5 +hanover_PN 1.865462821325971e-5 +hansard_N 3.729715012475897e-6 +hansom_N 3.729715012475897e-6 +hao_N 3.729715012475897e-6 +hap_N 3.729715012475897e-6 +hap_V 2.2678822515534993e-5 +haphazard_A 1.0773191989054437e-5 +haphazard_Adv 8.668966832532898e-6 +hapless_A 2.1546383978108874e-5 +haploid_A 1.0773191989054437e-5 +haploid_N 3.729715012475897e-6 +haploidy_N 3.729715012475897e-6 +haplosporidian_N 3.729715012475897e-6 +haplotype_N 3.729715012475897e-6 +haply_Adv 8.668966832532898e-6 +happen_V 3.038962217081689e-3 +happen_V2 2.092824830561682e-4 +happen_VV 1.1531808571977706e-3 +happening_N 2.237829007485538e-5 +happiness_N 7.459430024951794e-6 +happy_A 3.986081035950142e-4 +happy_go_lucky_A 1.0773191989054437e-5 +haptic_A 1.0773191989054437e-5 +haptoglobin_N 3.729715012475897e-6 +hara_kiri_N 3.729715012475897e-6 +harakiri_N 3.729715012475897e-6 +harangue_N 1.118914503742769e-5 +harangue_V 2.2678822515534993e-5 +harangue_V2 1.609865254278217e-5 +haranguer_N 3.729715012475897e-6 +harass_V2 9.659191525669301e-5 +harasser_N 3.729715012475897e-6 +harassment_N 1.118914503742769e-5 +harbin_PN 1.865462821325971e-5 +harbinger_N 2.237829007485538e-5 +harbour_N 3.729715012475897e-6 +harbour_V 2.2678822515534993e-5 +harbour_V2 6.439461017112868e-5 +harbourage_N 3.729715012475897e-6 +hard_A 2.1330920138327783e-3 +hard_Adv 3.6409660696638173e-4 +hard_baked_A 1.0773191989054437e-5 +hard_bitten_A 3.231957596716331e-5 +hard_boiled_A 2.1546383978108874e-5 +hard_headed_A 1.0773191989054437e-5 +hardback_N 3.729715012475897e-6 +hardbacked_A 1.0773191989054437e-5 +hardbake_N 3.729715012475897e-6 +hardball_N 3.729715012475897e-6 +hardboard_N 3.729715012475897e-6 +hardbound_A 2.1546383978108874e-5 +hardcover_N 7.459430024951794e-6 +hardcovered_A 1.0773191989054437e-5 +harden_V 2.2678822515534993e-5 +harden_V2 4.8295957628346505e-5 +hardening_N 3.729715012475897e-6 +hardheaded_A 1.0773191989054437e-5 +hardhearted_A 1.0773191989054437e-5 +hardhitting_A 1.0773191989054437e-5 +hardihood_N 3.729715012475897e-6 +hardiness_N 3.729715012475897e-6 +hardinggrass_N 3.729715012475897e-6 +hardliner_N 7.459430024951794e-6 +hardness_N 3.729715012475897e-6 +hardscrabble_A 1.0773191989054437e-5 +hardship_N 1.4918860049903587e-5 +hardtack_N 3.729715012475897e-6 +hardtop_N 3.729715012475897e-6 +hardware_N 1.0443202034932511e-4 +hardwood_N 7.459430024951794e-6 +hardworking_A 2.1546383978108874e-5 +hardy_A 4.309276795621775e-5 +hare_N 3.729715012475897e-6 +hare_V 2.2678822515534993e-5 +harebell_N 3.729715012475897e-6 +harebrained_A 1.0773191989054437e-5 +harelip_N 3.729715012475897e-6 +harem_N 3.729715012475897e-6 +haricot_N 3.729715012475897e-6 +haringey_PN 1.865462821325971e-5 +hark_V 2.2678822515534993e-5 +harlequin_N 3.729715012475897e-6 +harlequinade_N 3.729715012475897e-6 +harley_street_PN 1.865462821325971e-5 +harlot_N 3.729715012475897e-6 +harlow_PN 1.865462821325971e-5 +harm_N 4.1026865137234865e-5 +harm_V2 2.2538113559895037e-4 +harmattan_N 3.729715012475897e-6 +harmful_A 1.0773191989054437e-4 +harmfulness_N 3.729715012475897e-6 +harmless_A 2.1546383978108874e-5 +harmonic_A 1.0773191989054437e-5 +harmonic_N 3.729715012475897e-6 +harmonica_N 3.729715012475897e-6 +harmonically_Adv 8.668966832532898e-6 +harmonics_N 3.729715012475897e-6 +harmonious_A 3.231957596716331e-5 +harmonium_N 3.729715012475897e-6 +harmonizable_A 1.0773191989054437e-5 +harmonization_N 3.729715012475897e-6 +harmonize_V 2.2678822515534993e-5 +harmonize_V2 1.609865254278217e-5 +harmonizer_N 3.729715012475897e-6 +harmony_N 2.6108005087331277e-5 +harness_N 3.729715012475897e-6 +harness_V2 3.219730508556434e-5 +harold_PN 1.865462821325971e-5 +harp_N 3.729715012475897e-6 +harp_V 6.803646754660499e-5 +harp_on_V 2.2678822515534993e-5 +harpenden_PN 1.865462821325971e-5 +harper_N 3.729715012475897e-6 +harpist_N 3.729715012475897e-6 +harpoon_N 3.729715012475897e-6 +harpoon_V2 1.609865254278217e-5 +harpooner_N 3.729715012475897e-6 +harpsichord_N 3.729715012475897e-6 +harpsichordist_N 3.729715012475897e-6 +harpulla_N 3.729715012475897e-6 +harpullia_N 3.729715012475897e-6 +harpy_N 3.729715012475897e-6 +harridan_N 3.729715012475897e-6 +harrier_N 3.729715012475897e-6 +harriet_PN 1.865462821325971e-5 +harrogate_PN 1.865462821325971e-5 +harrow_N 3.729715012475897e-6 +harrow_PN 1.865462821325971e-5 +harrow_V2 1.609865254278217e-5 +harry_PN 1.865462821325971e-5 +harry_V2 4.8295957628346505e-5 +harsh_A 2.2623703177014317e-4 +harshness_N 7.459430024951794e-6 +hart_N 3.729715012475897e-6 +hartebeest_N 3.729715012475897e-6 +hartlepool_PN 1.865462821325971e-5 +hartley_PN 1.865462821325971e-5 +harum_scarum_A 1.0773191989054437e-5 +harum_scarum_N 3.729715012475897e-6 +harvest_N 6.340515521209024e-5 +harvest_V2 1.1269056779947518e-4 +harvester_N 3.729715012475897e-6 +harvestfish_N 3.729715012475897e-6 +harvestman_N 3.729715012475897e-6 +harvey_PN 1.865462821325971e-5 +harwich_PN 1.865462821325971e-5 +harwood_PN 1.865462821325971e-5 +harworth_PN 1.865462821325971e-5 +has_been_N 3.729715012475897e-6 +hash_N 3.729715012475897e-6 +hash_V2 3.219730508556434e-5 +hash_out_V 2.2678822515534993e-5 +hashish_N 7.459430024951794e-6 +haslemere_PN 1.865462821325971e-5 +haslet_N 3.729715012475897e-6 +haslingden_PN 1.865462821325971e-5 +hasp_N 3.729715012475897e-6 +hassium_N 3.729715012475897e-6 +hassle_N 1.118914503742769e-5 +hassle_V 2.2678822515534993e-5 +hassle_V2 1.609865254278217e-5 +hassock_N 3.729715012475897e-6 +hastate_A 1.0773191989054437e-5 +haste_N 1.118914503742769e-5 +hasten_V 2.2678822515534993e-5 +hasten_V2 4.8295957628346505e-5 +hastiness_N 3.729715012475897e-6 +hastings_PN 1.865462821325971e-5 +hasty_A 1.0773191989054437e-4 +hat_N 7.832401526199384e-5 +hatband_N 3.729715012475897e-6 +hatbox_N 3.729715012475897e-6 +hatch_N 3.729715012475897e-6 +hatch_V 2.2678822515534993e-5 +hatch_V2 6.439461017112868e-5 +hatchback_N 3.729715012475897e-6 +hatchel_N 3.729715012475897e-6 +hatchery_N 3.729715012475897e-6 +hatchet_N 7.459430024951794e-6 +hatching_N 3.729715012475897e-6 +hatchling_N 3.729715012475897e-6 +hatchway_N 3.729715012475897e-6 +hate_N 7.459430024951794e-6 +hate_V2 1.609865254278217e-4 +hate_V2V 4.675081813931744e-4 +hate_VV 1.9219680953296174e-4 +hate_on_V2 1.609865254278217e-5 +hateful_A 1.0773191989054437e-5 +hatefulness_N 3.729715012475897e-6 +hatemonger_N 3.729715012475897e-6 +hater_N 3.729715012475897e-6 +hatfield_PN 1.865462821325971e-5 +hatful_N 3.729715012475897e-6 +hatless_A 1.0773191989054437e-5 +hatmaker_N 3.729715012475897e-6 +hatpin_N 3.729715012475897e-6 +hatred_N 7.459430024951794e-6 +hatted_A 1.0773191989054437e-5 +hatter_N 3.729715012475897e-6 +hauberk_N 3.729715012475897e-6 +haughtiness_N 3.729715012475897e-6 +haughty_A 2.1546383978108874e-5 +haul_N 2.9837720099807175e-5 +haul_V 9.071529006213997e-5 +haul_V2 8.049326271391085e-5 +haul_out_V2 3.219730508556434e-5 +haulage_N 7.459430024951794e-6 +hauler_N 3.729715012475897e-6 +haulier_N 3.729715012475897e-6 +hauling_N 3.729715012475897e-6 +haulm_N 3.729715012475897e-6 +haunch_N 3.729715012475897e-6 +haunt_N 2.6108005087331277e-5 +haunt_V2 1.9318383051338602e-4 +haunting_A 1.0773191989054437e-5 +hausmannite_N 3.729715012475897e-6 +haustorium_N 3.729715012475897e-6 +hautboy_N 3.729715012475897e-6 +hauteur_N 7.459430024951794e-6 +havana_N 3.729715012475897e-6 +havana_PN 1.865462821325971e-5 +have_V 1.6328752211185196e-2 +have_V2 3.643125070431605e-2 +have_V2V 5.142589995324918e-3 +have_VS 5.891526598509791e-3 +have_VV 3.786277147799347e-2 +have_against_V2 1.609865254278217e-5 +have_around_V2 1.609865254278217e-5 +have_down_as_V3 1.5873015873015873e-3 +have_in_V2 1.609865254278217e-5 +have_it_away_V 2.2678822515534993e-5 +have_it_in_for_V2 1.609865254278217e-5 +have_it_off_V 2.2678822515534993e-5 +have_it_out_with_V2 1.609865254278217e-5 +have_off_V2 1.609865254278217e-5 +have_on_V 2.2678822515534993e-5 +have_on_V2 1.609865254278217e-5 +have_over_V2 1.609865254278217e-5 +have_round_V2 1.609865254278217e-5 +have_up_V2 1.609865254278217e-5 +havelock_N 3.729715012475897e-6 +haven_N 3.729715012475897e-5 +haverfordwest_PN 1.865462821325971e-5 +haverhill_PN 1.865462821325971e-5 +havering_PN 1.865462821325971e-5 +haversack_N 3.729715012475897e-6 +havoc_N 2.9837720099807175e-5 +haw_N 3.729715012475897e-6 +haw_V 2.2678822515534993e-5 +haw_haw_N 3.729715012475897e-6 +hawaii_PN 2.9847405141215536e-4 +hawala_N 3.729715012475897e-6 +hawfinch_N 3.729715012475897e-6 +hawick_PN 1.865462821325971e-5 +hawk_N 1.8648575062379485e-5 +hawk_V2 3.219730508556434e-5 +hawk_eyed_A 1.0773191989054437e-5 +hawkbit_N 3.729715012475897e-6 +hawke's_bay_PN 1.865462821325971e-5 +hawker_N 7.459430024951794e-6 +hawkishness_N 3.729715012475897e-6 +hawkmoth_N 3.729715012475897e-6 +hawkweed_N 3.729715012475897e-6 +hawse_N 3.729715012475897e-6 +hawser_N 3.729715012475897e-6 +hawthorn_N 3.729715012475897e-6 +hay_N 1.118914503742769e-5 +haycock_N 3.729715012475897e-6 +hayfield_N 3.729715012475897e-6 +hayfork_N 3.729715012475897e-6 +haying_N 3.729715012475897e-6 +hayling_PN 1.865462821325971e-5 +hayloft_N 3.729715012475897e-6 +haymaker_N 3.729715012475897e-6 +haymaking_N 3.729715012475897e-6 +haymow_N 3.729715012475897e-6 +hayrack_N 3.729715012475897e-6 +hayrick_N 3.729715012475897e-6 +haystack_N 3.729715012475897e-6 +haywards_heath_PN 1.865462821325971e-5 +haywire_A 1.0773191989054437e-5 +haywire_N 3.729715012475897e-6 +hazard_N 5.594572518713845e-5 +hazard_V2 1.609865254278217e-5 +hazardous_A 9.695872790148993e-5 +hazardousness_N 3.729715012475897e-6 +haze_N 3.729715012475897e-6 +haze_V2 1.609865254278217e-5 +hazel_A 1.0773191989054437e-5 +hazel_N 3.729715012475897e-6 +hazel_PN 1.865462821325971e-5 +hazelnut_N 3.729715012475897e-6 +haziness_N 3.729715012475897e-6 +hazy_A 1.0773191989054437e-5 +he_Pron 0.2168114444408564 +he_goat_N 3.729715012475897e-6 +he_man_N 3.729715012475897e-6 +head_N 6.974567073329927e-4 +head_V 1.3834081734476345e-3 +head_V2 1.4971746864787417e-3 +head_for_V2 1.609865254278217e-5 +head_hunter_N 3.729715012475897e-6 +head_off_V 2.2678822515534993e-5 +head_off_V2 1.609865254278217e-5 +head_on_A 1.0773191989054437e-5 +head_on_Adv 8.668966832532898e-6 +head_out_V 2.2678822515534993e-5 +head_up_V2 1.609865254278217e-5 +headache_N 3.356743511228307e-5 +headband_N 3.729715012475897e-6 +headboard_N 3.729715012475897e-6 +headcheese_N 3.729715012475897e-6 +headdress_N 3.729715012475897e-6 +header_N 3.729715012475897e-6 +headfast_N 3.729715012475897e-6 +headfirst_A 1.0773191989054437e-5 +headful_N 3.729715012475897e-6 +headgear_N 3.729715012475897e-6 +headhunter_N 3.729715012475897e-6 +heading_N 3.729715012475897e-6 +headlamp_N 3.729715012475897e-6 +headland_N 3.729715012475897e-6 +headless_A 1.0773191989054437e-5 +headlight_N 7.459430024951794e-6 +headlike_A 1.0773191989054437e-5 +headline_N 8.205373027446973e-5 +headliner_N 3.729715012475897e-6 +headlinese_N 3.729715012475897e-6 +headlock_N 3.729715012475897e-6 +headlong_A 1.0773191989054437e-5 +headlong_Adv 1.7337933665065797e-5 +headman_N 3.729715012475897e-6 +headmaster_N 3.729715012475897e-6 +headmastership_N 3.729715012475897e-6 +headmistress_N 3.729715012475897e-6 +headmistressship_N 3.729715012475897e-6 +headpiece_N 3.729715012475897e-6 +headpin_N 3.729715012475897e-6 +headquarter_N 1.0070230533684921e-4 +headrace_N 3.729715012475897e-6 +headrest_N 7.459430024951794e-6 +headroom_N 3.729715012475897e-6 +headsail_N 3.729715012475897e-6 +headscarf_N 3.729715012475897e-6 +headset_N 7.459430024951794e-6 +headshake_N 3.729715012475897e-6 +headship_N 3.729715012475897e-6 +headshot_N 3.729715012475897e-6 +headsman_N 3.729715012475897e-6 +headspace_N 3.729715012475897e-6 +headstall_N 3.729715012475897e-6 +headstand_N 3.729715012475897e-6 +headstock_N 3.729715012475897e-6 +headstone_N 3.729715012475897e-6 +headstream_N 3.729715012475897e-6 +headstrong_A 1.0773191989054437e-5 +headwater_N 3.729715012475897e-6 +headway_N 1.4918860049903587e-5 +headwind_N 3.729715012475897e-6 +headword_N 3.729715012475897e-6 +heady_A 7.541234392338106e-5 +heal_V 1.1339411257767497e-4 +heal_V2 4.8295957628346505e-5 +healer_N 3.729715012475897e-6 +healing_N 3.729715012475897e-6 +health_N 7.94429297657366e-4 +healthcare_N 3.729715012475897e-6 +healthful_A 1.0773191989054437e-5 +healthfulness_N 3.729715012475897e-6 +healthy_A 7.218038632666473e-4 +heanor_PN 1.865462821325971e-5 +heap_N 1.8648575062379485e-5 +heap_V2 4.8295957628346505e-5 +heaps_Adv 8.668966832532898e-6 +hear_V 7.937587880437248e-4 +hear_V2 8.693272373102371e-4 +hear_V2V 2.805049088359046e-3 +hear_VS 9.241610350603593e-4 +hear_about_V2 1.609865254278217e-5 +hear_from_V2 1.609865254278217e-5 +hear_of_V2 9.659191525669301e-5 +hear_of_V3 1.5873015873015873e-3 +hear_out_V2 1.609865254278217e-5 +hearer_N 3.729715012475897e-6 +hearing_N 3.468634961602584e-4 +hearing_aid_N 3.729715012475897e-6 +hearken_V 2.2678822515534993e-5 +hearsay_A 1.0773191989054437e-5 +hearsay_N 3.729715012475897e-6 +hearse_N 3.729715012475897e-6 +heart's_ease_N 3.729715012475897e-6 +heart_N 2.610800508733128e-4 +heart_disease_N 3.729715012475897e-6 +heart_failure_N 3.729715012475897e-6 +heart_rending_A 2.1546383978108874e-5 +heartache_N 3.729715012475897e-6 +heartbeat_N 7.459430024951794e-6 +heartbreak_N 3.729715012475897e-6 +heartbreaker_N 3.729715012475897e-6 +heartbreaking_A 1.0773191989054437e-5 +heartbroken_A 1.0773191989054437e-5 +heartburn_N 3.729715012475897e-6 +heartburning_N 3.729715012475897e-6 +hearted_A 1.0773191989054437e-5 +hearten_V2 3.219730508556434e-5 +heartening_A 1.0773191989054437e-5 +heartfelt_A 2.1546383978108874e-5 +hearth_N 3.729715012475897e-6 +hearthrug_N 3.729715012475897e-6 +hearthstone_N 3.729715012475897e-6 +heartiness_N 3.729715012475897e-6 +heartland_N 7.459430024951794e-6 +heartleaf_N 3.729715012475897e-6 +heartless_A 1.0773191989054437e-5 +heartlessness_N 3.729715012475897e-6 +heartrot_N 3.729715012475897e-6 +hearts_N 3.729715012475897e-6 +heartseed_N 3.729715012475897e-6 +heartsick_A 1.0773191989054437e-5 +heartstrings_N 3.729715012475897e-6 +heartthrob_N 3.729715012475897e-6 +heartwarming_A 1.0773191989054437e-5 +heartwood_N 3.729715012475897e-6 +hearty_A 2.1546383978108874e-5 +heat_N 1.6037774553646355e-4 +heat_V 3.175035152174899e-4 +heat_V2 8.049326271391085e-5 +heat_flash_N 3.729715012475897e-6 +heat_up_V2 1.609865254278217e-5 +heatable_A 1.0773191989054437e-5 +heated_A 2.1546383978108874e-5 +heater_N 1.118914503742769e-5 +heath_N 3.729715012475897e-6 +heathen_A 1.0773191989054437e-5 +heathen_N 3.729715012475897e-6 +heathenish_A 1.0773191989054437e-5 +heather_N 3.729715012475897e-6 +heather_PN 1.865462821325971e-5 +heather_mixture_N 3.729715012475897e-6 +heathlike_A 1.0773191989054437e-5 +heating_N 4.848629516218666e-5 +heatless_A 1.0773191989054437e-5 +heatspot_N 3.729715012475897e-6 +heatstroke_N 3.729715012475897e-6 +heatwave_N 3.729715012475897e-6 +heaume_N 3.729715012475897e-6 +heave_N 3.729715012475897e-6 +heave_V 6.803646754660499e-5 +heave_V2 3.219730508556434e-5 +heave_out_V 2.2678822515534993e-5 +heaven_N 1.118914503742769e-5 +heavenly_A 1.0773191989054437e-5 +heavensent_A 1.0773191989054437e-5 +heavenward_A 1.0773191989054437e-5 +heavenward_Adv 8.668966832532898e-6 +heavenwards_A 1.0773191989054437e-5 +heavenwards_Adv 8.668966832532898e-6 +heaver_N 3.729715012475897e-6 +heaves_N 3.729715012475897e-6 +heaviness_N 3.729715012475897e-6 +heaviside_PN 1.865462821325971e-5 +heavy_A 2.5317001174277928e-3 +heavy_Adv 8.668966832532898e-6 +heavy_N 3.729715012475897e-6 +heavy_handed_A 3.231957596716331e-5 +heavy_hearted_A 1.0773191989054437e-5 +heavy_laden_A 1.0773191989054437e-5 +heavyhearted_A 1.0773191989054437e-5 +heavyheartedness_N 3.729715012475897e-6 +heavyweight_N 7.459430024951794e-6 +hebden_royal_PN 1.865462821325971e-5 +hebdomadal_A 1.0773191989054437e-5 +hebephrenia_N 3.729715012475897e-6 +hebephrenic_A 1.0773191989054437e-5 +hebetude_N 3.729715012475897e-6 +hebraic_A 1.0773191989054437e-5 +hebrew_A 1.0773191989054437e-5 +hebrew_N 3.729715012475897e-6 +hecatomb_N 3.729715012475897e-6 +heck_N 1.118914503742769e-5 +heckelphone_N 3.729715012475897e-6 +heckle_V2 3.219730508556434e-5 +heckler_N 3.729715012475897e-6 +heckling_N 3.729715012475897e-6 +hectare_N 3.729715012475897e-6 +hectic_A 8.61855359124355e-5 +hectogram_N 3.729715012475897e-6 +hectograph_N 3.729715012475897e-6 +hectoliter_N 3.729715012475897e-6 +hectometer_N 3.729715012475897e-6 +hector_V 2.2678822515534993e-5 +hector_V2 1.609865254278217e-5 +hedge_N 3.729715012475897e-5 +hedge_V 4.308976277951649e-4 +hedge_V2 8.049326271391085e-5 +hedge_end_PN 1.865462821325971e-5 +hedge_sparrow_N 3.729715012475897e-6 +hedgehog_N 3.729715012475897e-6 +hedgehop_V 2.2678822515534993e-5 +hedger_N 3.729715012475897e-6 +hedgerow_N 3.729715012475897e-6 +hedonic_A 1.0773191989054437e-5 +hedonism_N 3.729715012475897e-6 +hedonist_N 3.729715012475897e-6 +hedonistic_A 1.0773191989054437e-5 +heed_N 7.459430024951794e-6 +heed_V2 9.659191525669301e-5 +heedful_A 1.0773191989054437e-5 +heedless_A 1.0773191989054437e-5 +heedlessness_N 3.729715012475897e-6 +heehaw_N 3.729715012475897e-6 +heel_N 5.2216010174662554e-5 +heel_V 2.2678822515534993e-5 +heel_V2 1.609865254278217e-5 +heelbone_N 3.729715012475897e-6 +heft_N 3.729715012475897e-6 +hefty_A 3.3396895166068756e-4 +hegari_N 3.729715012475897e-6 +hegemon_N 3.729715012475897e-6 +hegemony_N 1.118914503742769e-5 +hegira_N 3.729715012475897e-6 +heidelburg_PN 1.865462821325971e-5 +heifer_N 3.729715012475897e-6 +height_N 3.729715012475897e-5 +heighten_V 1.1339411257767497e-4 +heighten_V2 2.2538113559895037e-4 +heinous_A 2.1546383978108874e-5 +heinousness_N 3.729715012475897e-6 +heir_N 3.729715012475897e-5 +heiress_N 3.729715012475897e-6 +heirloom_N 3.729715012475897e-6 +heist_N 3.729715012475897e-6 +hejira_N 3.729715012475897e-6 +helen_PN 1.865462821325971e-5 +helensburgh_PN 1.865462821325971e-5 +heliacal_A 1.0773191989054437e-5 +helianthemum_N 3.729715012475897e-6 +helicon_N 3.729715012475897e-6 +helicopter_N 7.086458523704203e-5 +heliocentric_A 1.0773191989054437e-5 +heliogram_N 3.729715012475897e-6 +heliograph_N 3.729715012475897e-6 +heliograph_V2 1.609865254278217e-5 +heliolatry_N 3.729715012475897e-6 +heliometer_N 3.729715012475897e-6 +heliopause_N 3.729715012475897e-6 +heliophila_N 3.729715012475897e-6 +heliopsis_N 3.729715012475897e-6 +heliosphere_N 3.729715012475897e-6 +heliotherapy_N 3.729715012475897e-6 +heliotrope_N 3.729715012475897e-6 +heliotropism_N 3.729715012475897e-6 +heliozoan_N 3.729715012475897e-6 +heliport_N 3.729715012475897e-6 +helium_N 3.729715012475897e-6 +helix_N 3.729715012475897e-6 +hell_Interj 1.5267175572519083e-2 +hell_N 4.848629516218666e-5 +hellbender_N 3.729715012475897e-6 +hellcat_N 3.729715012475897e-6 +hellebore_N 3.729715012475897e-6 +helleborine_N 3.729715012475897e-6 +hellene_N 3.729715012475897e-6 +hellenic_A 1.0773191989054437e-5 +hellfire_N 3.729715012475897e-6 +hellgrammiate_N 3.729715012475897e-6 +hellhound_N 3.729715012475897e-6 +hellion_N 3.729715012475897e-6 +hellish_A 1.0773191989054437e-5 +hello_Interj 3.0534351145038167e-2 +helm_N 2.237829007485538e-5 +helmet_N 3.729715012475897e-6 +helmeted_A 2.1546383978108874e-5 +helmetflower_N 3.729715012475897e-6 +helminth_N 3.729715012475897e-6 +helminthiasis_N 3.729715012475897e-6 +helmsman_N 3.729715012475897e-6 +helot_N 3.729715012475897e-6 +help_N 2.610800508733128e-4 +help_V 2.585385766770989e-3 +help_V2 1.5132733390215238e-3 +help_V2V 3.927068723702665e-2 +help_VS 3.176803558019985e-3 +help_VV 1.8258696905631366e-2 +help_out_V2 1.609865254278217e-5 +help_to_VV 9.609840476648087e-5 +helper_N 3.729715012475897e-6 +helpful_A 1.1850511187959881e-4 +helpfulness_N 3.729715012475897e-6 +helping_N 3.729715012475897e-6 +helpless_A 5.3865959945272184e-5 +helplessness_N 3.729715012475897e-6 +helpmate_N 3.729715012475897e-6 +helpmeet_N 3.729715012475897e-6 +helsinki_PN 1.865462821325971e-5 +helston_PN 1.865462821325971e-5 +helter_skelter_Adv 8.668966832532898e-6 +helter_skelter_N 3.729715012475897e-6 +helve_N 3.729715012475897e-6 +helvella_N 3.729715012475897e-6 +hem_N 7.459430024951794e-6 +hem_V 2.2678822515534993e-5 +hem_V2 1.609865254278217e-5 +hemagglutination_N 3.729715012475897e-6 +hemal_A 1.0773191989054437e-5 +hemangioma_N 3.729715012475897e-6 +hematemesis_N 3.729715012475897e-6 +hematinic_N 3.729715012475897e-6 +hematite_N 3.729715012475897e-6 +hematocele_N 3.729715012475897e-6 +hematochezia_N 3.729715012475897e-6 +hematochrome_N 3.729715012475897e-6 +hematocolpometra_N 3.729715012475897e-6 +hematocolpos_N 3.729715012475897e-6 +hematocrit_N 3.729715012475897e-6 +hematocytopenia_N 3.729715012475897e-6 +hematocyturia_N 3.729715012475897e-6 +hematologic_A 1.0773191989054437e-5 +hematologist_N 3.729715012475897e-6 +hematology_N 3.729715012475897e-6 +hematoma_N 3.729715012475897e-6 +hematopoiesis_N 3.729715012475897e-6 +hematopoietic_A 1.0773191989054437e-5 +hematuria_N 3.729715012475897e-6 +heme_N 3.729715012475897e-6 +hemel_hempstead_PN 1.865462821325971e-5 +hemeralopia_N 3.729715012475897e-6 +hemiacetal_N 3.729715012475897e-6 +hemianopia_N 3.729715012475897e-6 +hemic_A 1.0773191989054437e-5 +hemiepiphyte_N 3.729715012475897e-6 +hemimetabolous_A 1.0773191989054437e-5 +hemimetamorphosis_N 3.729715012475897e-6 +hemimorphite_N 3.729715012475897e-6 +hemin_N 3.729715012475897e-6 +hemiparasite_N 3.729715012475897e-6 +hemiparasitic_A 1.0773191989054437e-5 +hemiplegia_N 3.729715012475897e-6 +hemiplegic_N 3.729715012475897e-6 +hemisphere_N 7.459430024951794e-6 +hemispheric_A 1.0773191989054437e-5 +hemispherical_A 1.0773191989054437e-5 +hemline_N 3.729715012475897e-6 +hemlock_N 3.729715012475897e-6 +hemming_stitch_N 3.729715012475897e-6 +hemochromatosis_N 3.729715012475897e-6 +hemodialysis_N 3.729715012475897e-6 +hemodynamic_A 1.0773191989054437e-5 +hemodynamics_N 3.729715012475897e-6 +hemoglobin_N 1.4918860049903587e-5 +hemoglobinemia_N 3.729715012475897e-6 +hemoglobinopathy_N 3.729715012475897e-6 +hemoglobinuria_N 3.729715012475897e-6 +hemolysin_N 3.729715012475897e-6 +hemolysis_N 3.729715012475897e-6 +hemolytic_A 1.0773191989054437e-5 +hemophilia_N 3.729715012475897e-6 +hemophiliac_N 3.729715012475897e-6 +hemoprotein_N 3.729715012475897e-6 +hemoptysis_N 3.729715012475897e-6 +hemorrhage_N 3.729715012475897e-6 +hemorrhage_V 1.5875175760874494e-4 +hemorrhage_V2 3.219730508556434e-5 +hemorrhagic_A 1.0773191989054437e-5 +hemorrhoid_N 3.729715012475897e-6 +hemorrhoidectomy_N 3.729715012475897e-6 +hemosiderin_N 3.729715012475897e-6 +hemosiderosis_N 3.729715012475897e-6 +hemostasis_N 3.729715012475897e-6 +hemostat_N 3.729715012475897e-6 +hemothorax_N 3.729715012475897e-6 +hemp_N 3.729715012475897e-6 +hempen_A 1.0773191989054437e-5 +hemstitch_N 3.729715012475897e-6 +hemstitch_V2 1.609865254278217e-5 +hemsworth_PN 1.865462821325971e-5 +hen_N 1.118914503742769e-5 +hen_party_N 3.729715012475897e-6 +henbane_N 3.729715012475897e-6 +henbit_N 3.729715012475897e-6 +hence_Adv 1.1269656882292768e-4 +henceforth_Adv 8.668966832532898e-6 +henceforward_Adv 8.668966832532898e-6 +henchman_N 3.729715012475897e-6 +hencoop_N 3.729715012475897e-6 +hendiadys_N 3.729715012475897e-6 +henhouse_N 3.729715012475897e-6 +henley_on_thames_PN 1.865462821325971e-5 +henna_N 3.729715012475897e-6 +hennaed_A 1.0773191989054437e-5 +henpecked_A 1.0773191989054437e-5 +henroost_N 3.729715012475897e-6 +henry_N 3.729715012475897e-6 +henry_PN 1.865462821325971e-5 +hep_A 1.0773191989054437e-5 +hepadnavirus_N 3.729715012475897e-6 +heparin_N 3.729715012475897e-6 +hepatic_A 1.0773191989054437e-5 +hepatica_N 3.729715012475897e-6 +hepatitis_N 1.8648575062379485e-5 +hepatoma_N 3.729715012475897e-6 +hepatomegaly_N 3.729715012475897e-6 +hepatotoxic_A 1.0773191989054437e-5 +hepatotoxin_N 3.729715012475897e-6 +heptagon_N 3.729715012475897e-6 +heptane_N 3.729715012475897e-6 +herald_N 3.729715012475897e-6 +herald_V2 1.1269056779947518e-4 +heraldic_A 1.0773191989054437e-5 +heraldry_N 3.729715012475897e-6 +herb_N 1.118914503742769e-5 +herb_PN 1.865462821325971e-5 +herbaceous_A 1.0773191989054437e-5 +herbage_N 3.729715012475897e-6 +herbal_A 3.231957596716331e-5 +herbalist_N 3.729715012475897e-6 +herbarium_N 3.729715012475897e-6 +herbert_PN 1.865462821325971e-5 +herbicide_N 3.729715012475897e-6 +herbivore_N 3.729715012475897e-6 +herbivorous_A 1.0773191989054437e-5 +herculean_A 1.0773191989054437e-5 +herd_N 2.9837720099807175e-5 +herd_V 4.5357645031069986e-5 +herd_V2 3.219730508556434e-5 +herder_N 3.729715012475897e-6 +herdsman_N 3.729715012475897e-6 +here_Adv 3.0514763250515803e-3 +hereabout_Adv 8.668966832532898e-6 +hereabouts_Adv 1.7337933665065797e-5 +hereafter_Adv 1.7337933665065797e-5 +hereafter_N 3.729715012475897e-6 +hereby_Adv 8.668966832532898e-6 +hereditament_N 3.729715012475897e-6 +hereditarianism_N 3.729715012475897e-6 +hereditary_A 2.1546383978108874e-5 +heredity_N 1.118914503742769e-5 +hereford_PN 1.865462821325971e-5 +herein_Adv 8.668966832532898e-6 +hereinafter_Adv 8.668966832532898e-6 +hereinbefore_Adv 8.668966832532898e-6 +hereness_N 3.729715012475897e-6 +hereof_Adv 8.668966832532898e-6 +heresy_N 3.729715012475897e-6 +heretic_N 3.729715012475897e-6 +heretical_A 2.1546383978108874e-5 +hereto_Adv 8.668966832532898e-6 +heretofore_Adv 1.7337933665065797e-5 +hereunder_Adv 8.668966832532898e-6 +hereupon_Adv 8.668966832532898e-6 +herewith_Adv 8.668966832532898e-6 +heritable_A 1.0773191989054437e-5 +heritage_N 1.4918860049903587e-5 +herm_N 3.729715012475897e-6 +hermaphrodite_N 3.729715012475897e-6 +hermaphroditic_A 1.0773191989054437e-5 +hermaphroditism_N 3.729715012475897e-6 +hermeneutic_A 1.0773191989054437e-5 +hermeneutics_N 3.729715012475897e-6 +hermetic_A 1.0773191989054437e-5 +hermetically_Adv 8.668966832532898e-6 +hermit_N 3.729715012475897e-6 +hermitage_N 3.729715012475897e-6 +herne_PN 1.865462821325971e-5 +herne_bay_PN 1.865462821325971e-5 +hernia_N 3.729715012475897e-6 +hero_N 7.459430024951794e-5 +heroic_A 3.231957596716331e-5 +heroically_Adv 8.668966832532898e-6 +heroics_N 3.729715012475897e-6 +heroin_N 3.729715012475897e-6 +heroine_N 7.459430024951794e-6 +heroism_N 3.729715012475897e-6 +heron_N 1.118914503742769e-5 +heronry_N 3.729715012475897e-6 +herpangia_N 3.729715012475897e-6 +herpes_N 3.729715012475897e-6 +herpetologist_N 3.729715012475897e-6 +herpetology_N 3.729715012475897e-6 +herr_N 3.729715012475897e-6 +herrerasaur_N 3.729715012475897e-6 +herring_N 7.459430024951794e-6 +herringbone_N 3.729715012475897e-6 +herself_NP 4.095540775203958e-5 +hertford_PN 1.865462821325971e-5 +hertfordshire_PN 1.865462821325971e-5 +hertz_N 3.729715012475897e-6 +hertzian_A 1.0773191989054437e-5 +hesitance_N 3.729715012475897e-6 +hesitancy_N 3.729715012475897e-6 +hesitant_A 5.3865959945272184e-5 +hesitate_V 6.803646754660499e-5 +hesitate_VV 6.726888333653661e-4 +hesitatingly_Adv 8.668966832532898e-6 +hesitation_N 1.8648575062379485e-5 +hessian_N 3.729715012475897e-6 +het_up_A 1.0773191989054437e-5 +heterocercal_A 1.0773191989054437e-5 +heterocyclic_A 1.0773191989054437e-5 +heterodactyl_A 1.0773191989054437e-5 +heterodox_A 1.0773191989054437e-5 +heterodoxy_N 3.729715012475897e-6 +heterodyne_A 1.0773191989054437e-5 +heteroecious_A 1.0773191989054437e-5 +heterogeneity_N 3.729715012475897e-6 +heterogeneous_A 3.231957596716331e-5 +heterogenous_A 1.0773191989054437e-5 +heterograft_N 3.729715012475897e-6 +heteroicous_A 1.0773191989054437e-5 +heterologous_A 1.0773191989054437e-5 +heterology_N 3.729715012475897e-6 +heterometabolism_N 3.729715012475897e-6 +heterometabolous_A 1.0773191989054437e-5 +heteronym_N 3.729715012475897e-6 +heteroploid_N 3.729715012475897e-6 +heteroploidy_N 3.729715012475897e-6 +heterosexism_N 3.729715012475897e-6 +heterosexual_A 1.0773191989054437e-5 +heterosexual_N 3.729715012475897e-6 +heterosexuality_N 3.729715012475897e-6 +heterosis_N 3.729715012475897e-6 +heterosporous_A 1.0773191989054437e-5 +heterospory_N 3.729715012475897e-6 +heterostracan_N 3.729715012475897e-6 +heterotroph_N 3.729715012475897e-6 +heterotrophic_A 1.0773191989054437e-5 +heterozygosity_N 3.729715012475897e-6 +heterozygote_N 3.729715012475897e-6 +heterozygous_A 1.0773191989054437e-5 +heth_N 3.729715012475897e-6 +hetton_PN 1.865462821325971e-5 +heulandite_N 3.729715012475897e-6 +heuristic_A 1.0773191989054437e-5 +heuristic_N 3.729715012475897e-6 +heuristics_N 3.729715012475897e-6 +hew_V 6.803646754660499e-5 +hew_V2 1.609865254278217e-5 +hewer_N 3.729715012475897e-6 +hewn_A 1.0773191989054437e-5 +hex_N 3.729715012475897e-6 +hexachlorophene_N 3.729715012475897e-6 +hexadecimal_A 1.0773191989054437e-5 +hexagon_N 3.729715012475897e-6 +hexagonal_A 1.0773191989054437e-5 +hexagram_N 3.729715012475897e-6 +hexahedron_N 3.729715012475897e-6 +hexameter_N 3.729715012475897e-6 +hexane_N 3.729715012475897e-6 +hexangular_A 1.0773191989054437e-5 +hexapod_N 3.729715012475897e-6 +hexed_A 1.0773191989054437e-5 +hexestrol_N 3.729715012475897e-6 +hexham_PN 1.865462821325971e-5 +hexose_N 3.729715012475897e-6 +hey_Interj 1.5267175572519083e-2 +heyday_N 7.459430024951794e-6 +heysham_PN 1.865462821325971e-5 +heywood_PN 1.865462821325971e-5 +hi_Interj 7.633587786259542e-3 +hi_fi_A 1.0773191989054437e-5 +hi_fi_N 3.729715012475897e-6 +hiatus_N 7.459430024951794e-6 +hibachi_N 3.729715012475897e-6 +hibernate_V 2.2678822515534993e-5 +hibernation_N 3.729715012475897e-6 +hibiscus_N 3.729715012475897e-6 +hiccough_N 3.729715012475897e-6 +hiccough_V 2.2678822515534993e-5 +hiccup_N 3.729715012475897e-6 +hiccup_V 2.2678822515534993e-5 +hick_A 1.0773191989054437e-5 +hick_N 7.459430024951794e-6 +hickey_N 3.729715012475897e-6 +hickory_N 3.729715012475897e-6 +hiddenite_N 3.729715012475897e-6 +hiddenness_N 3.729715012475897e-6 +hide_N 7.459430024951794e-6 +hide_V 4.5357645031069986e-5 +hide_V2 4.5076227119790073e-4 +hide_and_seek_N 3.729715012475897e-6 +hide_away_V 2.2678822515534993e-5 +hide_away_V2 1.609865254278217e-5 +hide_out_N 3.729715012475897e-6 +hide_out_V 2.2678822515534993e-5 +hideaway_N 1.118914503742769e-5 +hidebound_A 3.231957596716331e-5 +hideous_A 2.1546383978108874e-5 +hideousness_N 3.729715012475897e-6 +hideout_N 3.729715012475897e-6 +hiding_N 1.118914503742769e-5 +hiding_place_N 3.729715012475897e-6 +hidrotic_A 1.0773191989054437e-5 +hie_V 2.2678822515534993e-5 +hierarch_N 3.729715012475897e-6 +hierarchic_A 1.0773191989054437e-5 +hierarchical_A 2.1546383978108874e-5 +hierarchy_N 1.118914503742769e-5 +hieratic_A 1.0773191989054437e-5 +hieratic_N 3.729715012475897e-6 +hierocracy_N 3.729715012475897e-6 +hieroglyph_N 3.729715012475897e-6 +hieroglyphic_A 1.0773191989054437e-5 +hieroglyphically_Adv 8.668966832532898e-6 +hieroglyphics_N 3.729715012475897e-6 +higgledy_piggledy_A 1.0773191989054437e-5 +higgledy_piggledy_Adv 8.668966832532898e-6 +high_A 1.0977882636846471e-2 +high_Adv 1.6471036981812508e-4 +high_N 1.0443202034932511e-4 +high_class_A 1.0773191989054437e-5 +high_falutin_A 1.0773191989054437e-5 +high_fidelity_A 1.0773191989054437e-5 +high_fidelity_N 3.729715012475897e-6 +high_frequency_N 3.729715012475897e-6 +high_grade_A 2.1546383978108874e-4 +high_handed_A 2.1546383978108874e-5 +high_keyed_A 1.0773191989054437e-5 +high_level_A 6.463915193432663e-5 +high_minded_A 3.231957596716331e-5 +high_mindedness_N 3.729715012475897e-6 +high_necked_A 1.0773191989054437e-5 +high_octane_A 3.231957596716331e-5 +high_pitched_A 1.0773191989054437e-5 +high_powered_A 5.3865959945272184e-5 +high_pressure_N 3.729715012475897e-6 +high_priced_A 1.2927830386865325e-4 +high_principled_A 1.0773191989054437e-5 +high_ranking_A 3.231957596716331e-5 +high_rise_A 2.1546383978108874e-5 +high_sounding_A 1.0773191989054437e-5 +high_speed_A 5.3865959945272184e-5 +high_spen_PN 1.865462821325971e-5 +high_spirited_A 1.0773191989054437e-5 +high_tension_A 1.0773191989054437e-5 +high_toned_A 2.1546383978108874e-5 +high_up_N 3.729715012475897e-6 +high_wycombe_PN 1.865462821325971e-5 +highball_N 3.729715012475897e-6 +highbinder_N 3.729715012475897e-6 +highboard_N 3.729715012475897e-6 +highborn_A 1.0773191989054437e-5 +highboy_N 3.729715012475897e-6 +highbrow_A 1.0773191989054437e-5 +highbrow_N 3.729715012475897e-6 +highchair_N 3.729715012475897e-6 +highflier_N 3.729715012475897e-6 +highflown_A 1.0773191989054437e-5 +highflyer_N 3.729715012475897e-6 +highflying_A 1.0773191989054437e-5 +highjack_N 3.729715012475897e-6 +highjack_V2 1.609865254278217e-5 +highjacker_N 3.729715012475897e-6 +highjacking_N 3.729715012475897e-6 +highland_N 3.729715012475897e-6 +highland_PN 1.865462821325971e-5 +highlander_N 3.729715012475897e-6 +highlight_N 1.4918860049903587e-5 +highlight_V2 2.4147978814173252e-4 +highlighter_N 3.729715012475897e-6 +highness_N 3.729715012475897e-6 +highroad_N 3.729715012475897e-6 +highway_N 2.275126157610297e-4 +highwayman_N 3.729715012475897e-6 +hijab_N 3.729715012475897e-6 +hijack_N 3.729715012475897e-6 +hijack_V2 1.609865254278217e-5 +hijacker_N 3.729715012475897e-6 +hike_N 1.118914503742769e-5 +hike_V 4.5357645031069986e-5 +hiker_N 2.6108005087331277e-5 +hilar_A 1.0773191989054437e-5 +hilarious_A 2.1546383978108874e-5 +hilarity_N 3.729715012475897e-6 +hilary_PN 1.865462821325971e-5 +hilda_PN 1.865462821325971e-5 +hill_N 2.9837720099807175e-5 +hill_billy_N 3.729715012475897e-6 +hillbilly_N 3.729715012475897e-6 +hilliness_N 3.729715012475897e-6 +hillingdon_PN 1.865462821325971e-5 +hillock_N 3.729715012475897e-6 +hillside_N 7.459430024951794e-6 +hilltop_N 3.729715012475897e-6 +hilly_A 2.1546383978108874e-5 +hilt_N 3.729715012475897e-6 +hilum_N 3.729715012475897e-6 +hilus_N 3.729715012475897e-6 +himself_NP 2.8395749374747443e-4 +hin_N 3.729715012475897e-6 +hinckley_PN 1.865462821325971e-5 +hind_A 1.0773191989054437e-5 +hind_N 3.729715012475897e-6 +hindbrain_N 3.729715012475897e-6 +hinder_V2 2.092824830561682e-4 +hindfoot_N 3.729715012475897e-6 +hindgut_N 3.729715012475897e-6 +hindi_A 1.0773191989054437e-5 +hindi_N 3.729715012475897e-6 +hindmost_A 1.0773191989054437e-5 +hindquarter_N 3.729715012475897e-6 +hindquarters_N 3.729715012475897e-6 +hindrance_N 3.729715012475897e-6 +hindshank_N 3.729715012475897e-6 +hindsight_N 3.729715012475897e-6 +hindu_A 1.0773191989054437e-5 +hindu_N 3.729715012475897e-6 +hinduism_N 3.729715012475897e-6 +hindustani_A 1.0773191989054437e-5 +hindustani_N 3.729715012475897e-6 +hinge_N 3.729715012475897e-6 +hinge_V 4.5357645031069986e-5 +hinge_V2 1.609865254278217e-5 +hinge_on_V2 1.609865254278217e-5 +hinge_upon_V2 1.609865254278217e-5 +hinny_N 3.729715012475897e-6 +hint_N 4.1026865137234865e-5 +hint_V 1.5875175760874494e-4 +hint_V2 1.609865254278217e-5 +hint_VS 5.776006469127245e-4 +hinterland_N 7.459430024951794e-6 +hip_A 1.0773191989054437e-5 +hip_N 1.118914503742769e-5 +hip_bath_N 3.729715012475897e-6 +hip_flask_N 3.729715012475897e-6 +hip_pocket_N 3.729715012475897e-6 +hipbone_N 3.729715012475897e-6 +hipflask_N 3.729715012475897e-6 +hiplength_A 1.0773191989054437e-5 +hipless_A 1.0773191989054437e-5 +hipline_N 3.729715012475897e-6 +hippeastrum_N 3.729715012475897e-6 +hipped_A 1.0773191989054437e-5 +hippie_N 7.459430024951794e-6 +hippo_N 3.729715012475897e-6 +hippocampus_N 3.729715012475897e-6 +hippocratic_A 1.0773191989054437e-5 +hippodrome_N 3.729715012475897e-6 +hippopotamus_N 3.729715012475897e-6 +hippy_N 3.729715012475897e-6 +hircine_A 1.0773191989054437e-5 +hire_N 1.4918860049903587e-5 +hire_V 7.710799655281898e-4 +hire_V2 9.498205000241479e-4 +hire_V2V 2.805049088359046e-3 +hire_VS 1.1552012938254491e-4 +hireling_N 3.729715012475897e-6 +hiroshima_PN 1.865462821325971e-5 +hirsute_A 1.0773191989054437e-5 +hirsuteness_N 3.729715012475897e-6 +hispid_A 1.0773191989054437e-5 +hiss_N 3.729715012475897e-6 +hiss_V 2.2678822515534993e-5 +hiss_V2 1.609865254278217e-5 +hiss_VQ 3.333333333333333e-2 +hisser_N 3.729715012475897e-6 +histaminase_N 3.729715012475897e-6 +histamine_N 3.729715012475897e-6 +histidine_N 3.729715012475897e-6 +histiocyte_N 3.729715012475897e-6 +histiocytosis_N 3.729715012475897e-6 +histocompatibility_N 3.729715012475897e-6 +histogram_N 3.729715012475897e-6 +histoincompatibility_N 3.729715012475897e-6 +histological_A 1.0773191989054437e-5 +histologist_N 3.729715012475897e-6 +histology_N 3.729715012475897e-6 +histone_N 3.729715012475897e-6 +historian_N 2.6108005087331277e-5 +historic_A 1.4005149585770768e-4 +historical_A 3.878349116059597e-4 +historicalness_N 3.729715012475897e-6 +historicism_N 3.729715012475897e-6 +historicize_V2 3.219730508556434e-5 +historiography_N 3.729715012475897e-6 +history_N 4.885926666343425e-4 +histrionic_A 1.0773191989054437e-5 +histrionics_N 3.729715012475897e-6 +hit_N 1.8275603561131894e-4 +hit_V 1.6328752211185195e-3 +hit_V2 1.5937666017354348e-3 +hit_and_run_A 1.0773191989054437e-5 +hit_back_V2 1.609865254278217e-5 +hit_for_V3 1.5873015873015873e-3 +hit_it_off_V 2.2678822515534993e-5 +hit_it_off_with_V2 1.609865254278217e-5 +hit_on_V2 1.609865254278217e-5 +hit_out_at_V2 1.609865254278217e-5 +hit_up_V 2.2678822515534993e-5 +hit_up_V2 1.609865254278217e-5 +hit_up_on_V2 1.609865254278217e-5 +hit_upon_V2 1.609865254278217e-5 +hit_with_V3 1.5873015873015873e-3 +hitch_N 2.237829007485538e-5 +hitch_V 2.2678822515534993e-5 +hitch_V2 3.219730508556434e-5 +hitchhike_V 2.2678822515534993e-5 +hitchhiker_N 3.729715012475897e-6 +hitchin_PN 1.865462821325971e-5 +hitchrack_N 3.729715012475897e-6 +hither_Adv 1.7337933665065797e-5 +hitherto_Adv 8.668966832532898e-6 +hitless_A 1.0773191989054437e-5 +hitter_N 3.729715012475897e-6 +hive_N 3.729715012475897e-6 +hive_V 2.2678822515534993e-5 +hive_V2 1.609865254278217e-5 +hive_off_V2 1.609865254278217e-5 +hm_PN 1.865462821325971e-5 +hmso_PN 1.865462821325971e-5 +hoar_A 1.0773191989054437e-5 +hoard_N 1.118914503742769e-5 +hoard_V 2.2678822515534993e-5 +hoard_V2 4.8295957628346505e-5 +hoarder_N 7.459430024951794e-6 +hoarding_N 7.459430024951794e-6 +hoarfrost_N 3.729715012475897e-6 +hoariness_N 3.729715012475897e-6 +hoarse_A 1.0773191989054437e-5 +hoarseness_N 3.729715012475897e-6 +hoary_A 1.0773191989054437e-5 +hoatzin_N 3.729715012475897e-6 +hoax_N 3.729715012475897e-6 +hoax_V2 1.609865254278217e-5 +hoaxer_N 3.729715012475897e-6 +hob_N 3.729715012475897e-6 +hobbit_N 3.729715012475897e-6 +hobble_N 3.729715012475897e-6 +hobble_V 2.2678822515534993e-5 +hobble_V2 9.659191525669301e-5 +hobble_skirt_N 3.729715012475897e-6 +hobbledehoy_N 3.729715012475897e-6 +hobbler_N 3.729715012475897e-6 +hobby_N 2.237829007485538e-5 +hobbyhorse_N 3.729715012475897e-6 +hobbyism_N 3.729715012475897e-6 +hobbyist_N 3.729715012475897e-6 +hobgoblin_N 3.729715012475897e-6 +hobnail_N 3.729715012475897e-6 +hobnailed_A 1.0773191989054437e-5 +hobnob_V 2.2678822515534993e-5 +hobo_N 7.459430024951794e-6 +hobson_PN 1.865462821325971e-5 +hock_N 7.459430024951794e-6 +hock_V2 1.609865254278217e-5 +hockey_N 3.729715012475897e-6 +hockley_PN 1.865462821325971e-5 +hocus_pocus_N 3.729715012475897e-6 +hod_N 3.729715012475897e-6 +hoddesdon_PN 1.865462821325971e-5 +hodgepodge_N 7.459430024951794e-6 +hodoscope_N 3.729715012475897e-6 +hoe_N 3.729715012475897e-6 +hoe_V 2.2678822515534993e-5 +hoe_V2 3.219730508556434e-5 +hoecake_N 3.729715012475897e-6 +hofei_PN 1.865462821325971e-5 +hog_N 3.729715012475897e-5 +hog_V2 1.609865254278217e-5 +hogan_N 3.729715012475897e-6 +hogback_N 3.729715012475897e-6 +hogchoker_N 3.729715012475897e-6 +hogfish_N 3.729715012475897e-6 +hoggish_A 1.0773191989054437e-5 +hogmanay_N 3.729715012475897e-6 +hogmanay_PN 1.865462821325971e-5 +hogshead_N 3.729715012475897e-6 +hogwash_N 3.729715012475897e-6 +hoist_N 3.729715012475897e-6 +hoist_V2 3.219730508556434e-5 +hoister_N 3.729715012475897e-6 +hoity_toity_A 1.0773191989054437e-5 +hold_N 7.832401526199384e-5 +hold_V 7.166507914909058e-3 +hold_V2 5.5057391696315015e-3 +hold_V2V 9.350163627863488e-4 +hold_V3 3.1746031746031746e-3 +hold_VS 1.790562005429446e-3 +hold_against_V3 1.5873015873015873e-3 +hold_back_V 2.2678822515534993e-5 +hold_back_V2 1.609865254278217e-5 +hold_back_from_V2 1.609865254278217e-5 +hold_down_V2 1.609865254278217e-5 +hold_forth_V 2.2678822515534993e-5 +hold_off_V 2.2678822515534993e-5 +hold_off_V2 1.609865254278217e-5 +hold_off_on_V2 1.609865254278217e-5 +hold_on_V 2.2678822515534993e-5 +hold_on_to_V2 1.609865254278217e-5 +hold_onto_V 2.2678822515534993e-5 +hold_onto_V2 1.609865254278217e-5 +hold_out_V 2.2678822515534993e-5 +hold_out_V2 3.219730508556434e-5 +hold_out_against_V2 1.609865254278217e-5 +hold_out_for_V2 1.609865254278217e-5 +hold_out_on_V2 1.609865254278217e-5 +hold_over_V2 1.609865254278217e-5 +hold_together_V 2.2678822515534993e-5 +hold_up_N 3.729715012475897e-6 +hold_up_V2 1.609865254278217e-5 +hold_with_V2 1.609865254278217e-5 +holdall_N 3.729715012475897e-6 +holder_N 8.205373027446972e-4 +holding_N 5.184303867341496e-4 +holdout_N 3.729715012475897e-6 +holdover_N 3.729715012475897e-6 +holdup_N 7.459430024951794e-6 +hole_N 5.2216010174662554e-5 +hole_V 6.803646754660499e-5 +hole_V2 1.609865254278217e-5 +hole_and_corner_A 1.0773191989054437e-5 +hole_up_V 2.2678822515534993e-5 +holey_A 1.0773191989054437e-5 +holiday_N 9.697259032437332e-5 +holiday_V 2.2678822515534993e-5 +holiday_maker_N 3.729715012475897e-6 +holiness_N 3.729715012475897e-6 +holism_N 3.729715012475897e-6 +holistic_A 1.0773191989054437e-5 +holland_PN 1.865462821325971e-5 +hollandaise_N 3.729715012475897e-6 +hollander_A 1.0773191989054437e-5 +hollander_N 3.729715012475897e-6 +holler_V 4.5357645031069986e-5 +holler_V2 1.609865254278217e-5 +holloa_N 3.729715012475897e-6 +hollow_A 3.231957596716331e-5 +hollow_N 3.729715012475897e-6 +hollow_V2 1.609865254278217e-5 +hollowness_N 3.729715012475897e-6 +hollowware_N 3.729715012475897e-6 +holly_N 3.729715012475897e-6 +hollyhock_N 3.729715012475897e-6 +hollywood_PN 5.596388463977913e-4 +holm_oak_N 3.729715012475897e-6 +holmfirth_PN 1.865462821325971e-5 +holmium_N 3.729715012475897e-6 +holocaust_N 3.729715012475897e-6 +holocephalan_N 3.729715012475897e-6 +hologram_N 3.729715012475897e-6 +holograph_N 3.729715012475897e-6 +holographic_A 1.0773191989054437e-5 +holography_N 3.729715012475897e-6 +holometabola_N 3.729715012475897e-6 +holometabolic_A 1.0773191989054437e-5 +holometabolism_N 3.729715012475897e-6 +holonym_N 3.729715012475897e-6 +holonymy_N 3.729715012475897e-6 +holophyte_N 3.729715012475897e-6 +holophytic_A 1.0773191989054437e-5 +holozoic_A 1.0773191989054437e-5 +holster_N 3.729715012475897e-6 +holy_A 4.309276795621775e-5 +holy_N 3.729715012475897e-6 +holyhead_PN 1.865462821325971e-5 +holystone_N 3.729715012475897e-6 +holystone_V2 1.609865254278217e-5 +homage_N 7.459430024951794e-6 +home_A 1.0773191989054437e-5 +home_Adv 1.3003450248799347e-4 +home_N 1.3203191144164675e-3 +home_baked_A 1.0773191989054437e-5 +home_brewed_A 1.0773191989054437e-5 +home_cured_A 1.0773191989054437e-5 +home_farm_N 3.729715012475897e-6 +home_grown_A 1.0773191989054437e-5 +home_in_on_V2 1.609865254278217e-5 +home_made_A 1.0773191989054437e-5 +homebound_A 1.0773191989054437e-5 +homebound_N 3.729715012475897e-6 +homeboy_N 3.729715012475897e-6 +homebuilder_N 3.729715012475897e-6 +homecoming_N 1.8648575062379485e-5 +homefolk_N 3.729715012475897e-6 +homegirl_N 3.729715012475897e-6 +homegrown_A 1.0773191989054437e-5 +homeland_N 2.237829007485538e-5 +homeless_A 1.6159787983581657e-4 +homeless_N 3.729715012475897e-6 +homelessness_N 7.459430024951794e-6 +homelike_A 1.0773191989054437e-5 +homeliness_N 3.729715012475897e-6 +homely_A 1.0773191989054437e-5 +homemade_A 1.0773191989054437e-5 +homemaking_N 3.729715012475897e-6 +homeobox_N 3.729715012475897e-6 +homeopath_N 3.729715012475897e-6 +homeopathic_A 1.0773191989054437e-5 +homeopathy_N 3.729715012475897e-6 +homeostasis_N 3.729715012475897e-6 +homeostatic_A 1.0773191989054437e-5 +homeostatically_Adv 8.668966832532898e-6 +homeotherm_N 3.729715012475897e-6 +homeowner_N 3.729715012475897e-6 +homer_N 7.459430024951794e-6 +homer_V 4.5357645031069986e-5 +homeric_A 1.0773191989054437e-5 +homesick_A 1.0773191989054437e-5 +homesickness_N 3.729715012475897e-6 +homespun_A 1.0773191989054437e-5 +homespun_N 3.729715012475897e-6 +homestead_N 3.729715012475897e-6 +homestretch_N 3.729715012475897e-6 +hometown_N 3.729715012475897e-6 +homeward_A 1.0773191989054437e-5 +homeward_Adv 8.668966832532898e-6 +homewards_Adv 8.668966832532898e-6 +homework_N 1.8648575062379485e-5 +homey_A 1.0773191989054437e-5 +homicidal_A 1.0773191989054437e-5 +homicide_N 1.118914503742769e-5 +homiletic_A 1.0773191989054437e-5 +homiletics_N 3.729715012475897e-6 +homily_N 3.729715012475897e-6 +hominal_A 1.0773191989054437e-5 +homing_A 1.0773191989054437e-5 +hominian_A 1.0773191989054437e-5 +hominid_N 3.729715012475897e-6 +hominine_A 1.0773191989054437e-5 +hominoid_N 3.729715012475897e-6 +hominy_N 3.729715012475897e-6 +homo_N 3.729715012475897e-6 +homo_sapiens_N 7.459430024951794e-6 +homocercal_A 1.0773191989054437e-5 +homocyclic_A 1.0773191989054437e-5 +homoeopath_N 3.729715012475897e-6 +homoeopathy_N 3.729715012475897e-6 +homoerotic_A 1.0773191989054437e-5 +homogenate_N 3.729715012475897e-6 +homogeneity_N 3.729715012475897e-6 +homogeneous_A 1.0773191989054437e-5 +homogenization_N 3.729715012475897e-6 +homogenize_V2 1.609865254278217e-5 +homogeny_N 3.729715012475897e-6 +homograft_N 3.729715012475897e-6 +homograph_N 3.729715012475897e-6 +homoiothermic_A 1.0773191989054437e-5 +homologic_A 1.0773191989054437e-5 +homologous_A 2.1546383978108874e-5 +homology_N 3.729715012475897e-6 +homomorphism_N 3.729715012475897e-6 +homonym_N 3.729715012475897e-6 +homonymic_A 1.0773191989054437e-5 +homonymy_N 3.729715012475897e-6 +homophobe_N 3.729715012475897e-6 +homophobia_N 3.729715012475897e-6 +homophobic_A 1.0773191989054437e-5 +homophone_N 3.729715012475897e-6 +homophonic_A 1.0773191989054437e-5 +homophonous_A 1.0773191989054437e-5 +homophony_N 3.729715012475897e-6 +homosexual_A 6.463915193432663e-5 +homosexual_N 2.6108005087331277e-5 +homosexuality_N 3.729715012475897e-6 +homosporous_A 1.0773191989054437e-5 +homospory_N 3.729715012475897e-6 +homostylous_A 1.0773191989054437e-5 +homozygosity_N 3.729715012475897e-6 +homozygote_N 3.729715012475897e-6 +homozygous_A 1.0773191989054437e-5 +homunculus_N 3.729715012475897e-6 +hon_PN 1.865462821325971e-5 +honduran_A 2.1546383978108874e-5 +honduran_N 7.459430024951794e-6 +honduras_PN 1.865462821325971e-5 +hone_N 3.729715012475897e-6 +hone_V2 9.659191525669301e-5 +hone_in_on_V2 1.609865254278217e-5 +honest_A 1.508246878467621e-4 +honesty_N 2.6108005087331277e-5 +honey_A 1.0773191989054437e-5 +honey_N 1.8648575062379485e-5 +honeybee_N 3.729715012475897e-6 +honeycomb_N 3.729715012475897e-6 +honeycomb_V2 1.609865254278217e-5 +honeycreeper_N 3.729715012475897e-6 +honeydew_N 3.729715012475897e-6 +honeyed_A 1.0773191989054437e-5 +honeyflower_N 3.729715012475897e-6 +honeylike_A 1.0773191989054437e-5 +honeymoon_N 7.459430024951794e-6 +honeymoon_V 2.2678822515534993e-5 +honeypot_N 3.729715012475897e-6 +honeysuckle_N 3.729715012475897e-6 +hong_kong_PN 2.107972988098347e-3 +honiton_PN 1.865462821325971e-5 +honk_N 3.729715012475897e-6 +honk_V 2.2678822515534993e-5 +honker_N 3.729715012475897e-6 +honkytonk_N 3.729715012475897e-6 +honorarium_N 1.118914503742769e-5 +honorary_A 2.1546383978108874e-5 +honoree_N 3.729715012475897e-6 +honorific_A 1.0773191989054437e-5 +honorific_N 3.729715012475897e-6 +honoring_N 3.729715012475897e-6 +honour_N 1.118914503742769e-5 +honour_V2 1.9318383051338602e-4 +honourable_A 1.0773191989054437e-5 +honourableness_N 3.729715012475897e-6 +hoo_PN 1.865462821325971e-5 +hooch_N 3.729715012475897e-6 +hood_N 1.4918860049903587e-5 +hood_V2 1.609865254278217e-5 +hoodlum_N 3.729715012475897e-6 +hoodoo_N 3.729715012475897e-6 +hoodoo_V2 1.609865254278217e-5 +hoodwink_V2 3.219730508556434e-5 +hooey_N 3.729715012475897e-6 +hoof_N 3.729715012475897e-6 +hoofer_N 3.729715012475897e-6 +hooflike_A 1.0773191989054437e-5 +hoofprint_N 3.729715012475897e-6 +hook_N 2.9837720099807175e-5 +hook_V 1.1339411257767497e-4 +hook_V2 6.439461017112868e-5 +hook_into_V2 1.609865254278217e-5 +hook_nosed_A 1.0773191989054437e-5 +hook_up_N 3.729715012475897e-6 +hook_up_V 2.2678822515534993e-5 +hook_up_V2 1.609865254278217e-5 +hook_up_to_V2 1.609865254278217e-5 +hookah_N 3.729715012475897e-6 +hooker_N 3.729715012475897e-6 +hooklike_A 1.0773191989054437e-5 +hooks_N 3.729715012475897e-6 +hookup_N 3.729715012475897e-6 +hookworm_N 3.729715012475897e-6 +hooky_N 3.729715012475897e-6 +hooligan_N 3.729715012475897e-6 +hooliganism_N 7.459430024951794e-6 +hoon_around_V 2.2678822515534993e-5 +hoop_N 3.729715012475897e-6 +hoop_V2 1.609865254278217e-5 +hoop_la_N 7.459430024951794e-6 +hoopoe_N 3.729715012475897e-6 +hoopskirt_N 3.729715012475897e-6 +hoosegow_N 3.729715012475897e-6 +hoot_N 3.729715012475897e-6 +hoot_V 2.2678822515534993e-5 +hoot_V2 1.609865254278217e-5 +hooter_N 3.729715012475897e-6 +hoover_N 3.729715012475897e-6 +hoover_V2 1.609865254278217e-5 +hop_N 7.459430024951794e-6 +hop_V 1.1339411257767497e-4 +hop_V2 1.609865254278217e-5 +hop_field_N 3.729715012475897e-6 +hop_garden_N 3.729715012475897e-6 +hop_picker_N 3.729715012475897e-6 +hop_pole_N 3.729715012475897e-6 +hope_N 3.319446361103548e-4 +hope_PN 1.865462821325971e-5 +hope_V 5.669705628883749e-4 +hope_VS 5.256165886905794e-3 +hope_VV 9.89813569094753e-3 +hopeful_A 1.6159787983581657e-4 +hopefulness_N 3.729715012475897e-6 +hopeless_A 7.541234392338106e-5 +hopelessness_N 3.729715012475897e-6 +hoper_N 3.729715012475897e-6 +hopped_up_A 1.0773191989054437e-5 +hopper_N 3.729715012475897e-6 +hopsacking_N 3.729715012475897e-6 +hopscotch_N 3.729715012475897e-6 +hopscotch_V 4.5357645031069986e-5 +horace_PN 1.865462821325971e-5 +horary_A 1.0773191989054437e-5 +horde_N 7.459430024951794e-6 +horehound_N 3.729715012475897e-6 +horizon_N 4.848629516218666e-5 +horizontal_A 2.1546383978108874e-5 +horizontal_N 3.729715012475897e-6 +horizontality_N 3.729715012475897e-6 +horley_PN 1.865462821325971e-5 +hormonal_A 1.0773191989054437e-5 +hormone_N 2.6108005087331277e-5 +horn_N 3.729715012475897e-5 +horn_V 2.2678822515534993e-5 +horn_rimmed_A 1.0773191989054437e-5 +hornbeam_N 3.729715012475897e-6 +hornbill_N 3.729715012475897e-6 +hornblende_N 3.729715012475897e-6 +hornbook_N 3.729715012475897e-6 +horned_A 1.0773191989054437e-5 +hornet_N 3.729715012475897e-6 +hornfels_N 3.729715012475897e-6 +horniness_N 3.729715012475897e-6 +hornist_N 3.729715012475897e-6 +hornless_A 1.0773191989054437e-5 +hornlike_A 1.0773191989054437e-5 +hornpipe_N 3.729715012475897e-6 +hornsea_PN 1.865462821325971e-5 +hornwort_N 3.729715012475897e-6 +horny_A 1.0773191989054437e-5 +horology_N 3.729715012475897e-6 +horoscope_N 7.459430024951794e-6 +horoscopy_N 3.729715012475897e-6 +horrible_A 1.0773191989054437e-4 +horrid_A 1.0773191989054437e-5 +horridness_N 3.729715012475897e-6 +horrific_A 2.1546383978108874e-5 +horrify_V2 1.609865254278217e-5 +horrifyingly_Adv 8.668966832532898e-6 +horror_N 2.6108005087331277e-5 +horror_stricken_A 1.0773191989054437e-5 +horror_struck_A 1.0773191989054437e-5 +hors_de_combat_A 2.1546383978108874e-5 +horse_N 1.1562116538675279e-4 +horse_around_V 2.2678822515534993e-5 +horse_chestnut_N 3.729715012475897e-6 +horse_laugh_N 3.729715012475897e-6 +horse_pond_N 3.729715012475897e-6 +horse_sense_N 3.729715012475897e-6 +horseback_Adv 8.668966832532898e-6 +horseback_N 3.729715012475897e-6 +horsebox_N 3.729715012475897e-6 +horsecar_N 3.729715012475897e-6 +horsecloth_N 3.729715012475897e-6 +horseflesh_N 3.729715012475897e-6 +horsefly_N 3.729715012475897e-6 +horsehair_N 3.729715012475897e-6 +horsehide_N 3.729715012475897e-6 +horseleech_N 3.729715012475897e-6 +horseman_N 3.729715012475897e-6 +horsemanship_N 3.729715012475897e-6 +horsemeat_N 3.729715012475897e-6 +horsemint_N 3.729715012475897e-6 +horseplay_N 3.729715012475897e-6 +horsepond_N 3.729715012475897e-6 +horsepower_N 7.459430024951794e-6 +horserace_N 3.729715012475897e-6 +horseracing_N 3.729715012475897e-6 +horseradish_N 3.729715012475897e-6 +horseshoe_N 3.729715012475897e-6 +horseshow_N 3.729715012475897e-6 +horsetail_N 3.729715012475897e-6 +horseweed_N 3.729715012475897e-6 +horsewhip_N 3.729715012475897e-6 +horsewhip_V2 1.609865254278217e-5 +horsewhipping_N 3.729715012475897e-6 +horsewoman_N 3.729715012475897e-6 +horsham_PN 1.865462821325971e-5 +horsley_PN 1.865462821325971e-5 +horst_N 3.729715012475897e-6 +horsy_A 1.0773191989054437e-5 +hortative_A 1.0773191989054437e-5 +hortensia_N 3.729715012475897e-6 +horticultural_A 4.309276795621775e-5 +horticulture_N 1.118914503742769e-5 +horticulturist_N 7.459430024951794e-6 +horwich_PN 1.865462821325971e-5 +hosanna_N 7.459430024951794e-6 +hose_N 1.8648575062379485e-5 +hose_V2 3.219730508556434e-5 +hose_down_V2 1.609865254278217e-5 +hosepipe_N 3.729715012475897e-6 +hosier_N 3.729715012475897e-6 +hosiery_N 3.729715012475897e-6 +hosp_PN 1.865462821325971e-5 +hospice_N 3.729715012475897e-6 +hospitable_A 5.3865959945272184e-5 +hospitableness_N 3.729715012475897e-6 +hospital_N 2.4616119082340916e-4 +hospitality_N 1.118914503742769e-5 +hospitalization_N 2.237829007485538e-5 +hospitalize_V2 8.049326271391085e-5 +host_N 1.3799945546160818e-4 +host_V2 1.2878922034225736e-4 +hostage_N 3.356743511228307e-5 +hostel_N 3.729715012475897e-6 +hosteller_N 3.729715012475897e-6 +hostelry_N 3.729715012475897e-6 +hostess_N 3.729715012475897e-6 +hostile_A 5.925255593979941e-4 +hostile_N 3.729715012475897e-6 +hostilities_N 3.729715012475897e-6 +hostility_N 1.4918860049903587e-5 +hot_A 5.063400234855585e-4 +hot_V 2.2678822515534993e-5 +hot_V2 1.609865254278217e-5 +hot_blooded_A 1.0773191989054437e-5 +hot_headed_A 1.0773191989054437e-5 +hot_tempered_A 2.1546383978108874e-5 +hot_water_bottle_N 3.729715012475897e-6 +hotbed_N 3.729715012475897e-6 +hotbox_N 3.729715012475897e-6 +hotchpotch_N 3.729715012475897e-6 +hotdog_N 3.729715012475897e-6 +hotel_N 3.170257760604512e-4 +hotelier_N 7.459430024951794e-6 +hotfoot_Adv 8.668966832532898e-6 +hotfoot_N 3.729715012475897e-6 +hotfoot_V 2.2678822515534993e-5 +hothead_N 3.729715012475897e-6 +hotheaded_A 1.0773191989054437e-5 +hothouse_N 3.729715012475897e-6 +hotness_N 3.729715012475897e-6 +hotplate_N 3.729715012475897e-6 +hotspur_N 3.729715012475897e-6 +hottish_A 1.0773191989054437e-5 +houghton_PN 1.865462821325971e-5 +hound_N 3.729715012475897e-6 +hound_V2 4.8295957628346505e-5 +hound_out_V2 1.609865254278217e-5 +hounslow_PN 1.865462821325971e-5 +hour_N 9.697259032437331e-4 +hourglass_N 3.729715012475897e-6 +houri_N 3.729715012475897e-6 +hourlong_A 1.0773191989054437e-5 +hourly_A 7.541234392338106e-5 +hourly_Adv 8.668966832532898e-6 +hours_N 3.729715012475897e-6 +house_N 8.578344528694563e-4 +house_V2 1.609865254278217e-4 +house_party_N 3.729715012475897e-6 +house_warming_N 3.729715012475897e-6 +houseboat_N 3.729715012475897e-6 +housebound_A 1.0773191989054437e-5 +housebreaker_N 3.729715012475897e-6 +housebreaking_N 3.729715012475897e-6 +housebroken_A 1.0773191989054437e-5 +housecleaning_N 3.729715012475897e-6 +housecoat_N 3.729715012475897e-6 +housecraft_N 3.729715012475897e-6 +housedog_N 3.729715012475897e-6 +housefather_N 3.729715012475897e-6 +housefly_N 3.729715012475897e-6 +houseful_N 3.729715012475897e-6 +household_N 2.3124233077350558e-4 +householder_N 3.729715012475897e-6 +housekeeper_N 1.118914503742769e-5 +houselights_N 3.729715012475897e-6 +housemaid_N 3.729715012475897e-6 +houseman_N 7.459430024951794e-6 +housemaster_N 3.729715012475897e-6 +housemate_N 3.729715012475897e-6 +housemother_N 3.729715012475897e-6 +houseplant_N 3.729715012475897e-6 +houseproud_A 1.0773191989054437e-5 +houseroom_N 3.729715012475897e-6 +housetop_N 3.729715012475897e-6 +housetrained_A 1.0773191989054437e-5 +housewarming_N 3.729715012475897e-6 +housewife_N 2.6108005087331277e-5 +housewifely_A 1.0773191989054437e-5 +housewifery_N 3.729715012475897e-6 +housework_N 1.118914503742769e-5 +housewrecker_N 3.729715012475897e-6 +housing_N 4.102686513723486e-4 +houston_PN 7.648397567436481e-4 +hove_PN 1.865462821325971e-5 +hovea_N 3.729715012475897e-6 +hovel_N 3.729715012475897e-6 +hover_V 2.4946704767088494e-4 +hover_around_V 2.2678822515534993e-5 +hovercraft_N 3.729715012475897e-6 +how8many_IDet 0.3333333333333333 +how8much_IDet 0.5238095238095238 +how_IAdv 0.2727272727272727 +how_d'ye_do_N 3.729715012475897e-6 +howard_PN 1.865462821325971e-5 +howdah_N 3.729715012475897e-6 +however_Adv 4.3778282504291135e-3 +howitzer_N 7.459430024951794e-6 +howl_N 7.459430024951794e-6 +howl_V 4.5357645031069986e-5 +howl_V2 1.609865254278217e-5 +howler_N 3.729715012475897e-6 +hoya_N 3.729715012475897e-6 +hoyden_N 3.729715012475897e-6 +hoydenish_A 1.0773191989054437e-5 +hoydenism_N 3.729715012475897e-6 +hoylake_PN 1.865462821325971e-5 +hoyland_nether_PN 1.865462821325971e-5 +hp_N 3.729715012475897e-6 +hq_PN 1.865462821325971e-5 +hrh_PN 1.865462821325971e-5 +hryvnia_N 3.729715012475897e-6 +huarache_N 3.729715012475897e-6 +hub_N 2.9837720099807175e-5 +hubble_bubble_N 3.729715012475897e-6 +hubbub_N 3.729715012475897e-6 +hubby_N 3.729715012475897e-6 +hubcap_N 3.729715012475897e-6 +hubert_PN 1.865462821325971e-5 +hubris_N 3.729715012475897e-6 +huck_N 3.729715012475897e-6 +huckaback_N 3.729715012475897e-6 +huckleberry_N 3.729715012475897e-6 +hucknall_PN 1.865462821325971e-5 +huckster_N 3.729715012475897e-6 +huddersfield_PN 1.865462821325971e-5 +huddle_N 3.729715012475897e-6 +huddle_V 9.071529006213997e-5 +huddle_V2 1.609865254278217e-5 +huddler_N 3.729715012475897e-6 +hudud_N 3.729715012475897e-6 +hue_N 3.729715012475897e-6 +hued_A 1.0773191989054437e-5 +hueless_A 1.0773191989054437e-5 +huff_N 3.729715012475897e-6 +huff_V 2.2678822515534993e-5 +huffiness_N 3.729715012475897e-6 +huffish_A 1.0773191989054437e-5 +huffy_A 1.0773191989054437e-5 +hug_N 1.4918860049903587e-5 +hug_V2 6.439461017112868e-5 +huge_A 1.8098962541611453e-3 +hugger_N 3.729715012475897e-6 +hugger_mugger_A 1.0773191989054437e-5 +hugger_mugger_Adv 8.668966832532898e-6 +hugger_mugger_N 3.729715012475897e-6 +hugh_PN 1.865462821325971e-5 +hughie_PN 1.865462821325971e-5 +huguenot_N 3.729715012475897e-6 +huhehot_PN 1.865462821325971e-5 +huisache_N 3.729715012475897e-6 +huitre_N 3.729715012475897e-6 +hula_N 3.729715012475897e-6 +hulk_N 7.459430024951794e-6 +hulking_A 1.0773191989054437e-5 +hull_N 3.729715012475897e-6 +hull_V2 1.609865254278217e-5 +hullabaloo_N 7.459430024951794e-6 +hum_N 7.459430024951794e-6 +hum_V 4.5357645031069986e-5 +hum_V2 1.609865254278217e-5 +human_A 7.541234392338106e-4 +human_N 8.205373027446973e-5 +humane_A 1.0773191989054437e-5 +humaneness_N 3.729715012475897e-6 +humanism_N 7.459430024951794e-6 +humanist_A 1.0773191989054437e-5 +humanist_N 3.729715012475897e-6 +humanistic_A 1.0773191989054437e-5 +humanitarian_A 1.0773191989054437e-4 +humanitarian_N 3.729715012475897e-6 +humanitarianism_N 3.729715012475897e-6 +humanity_N 1.8648575062379485e-5 +humanization_N 3.729715012475897e-6 +humanize_V 2.2678822515534993e-5 +humanize_V2 3.219730508556434e-5 +humankind_N 3.729715012475897e-6 +humanness_N 3.729715012475897e-6 +humate_N 3.729715012475897e-6 +humberside_PN 1.865462821325971e-5 +humberston_PN 1.865462821325971e-5 +humble_A 4.309276795621775e-5 +humble_V2 3.219730508556434e-5 +humbleness_N 3.729715012475897e-6 +humbug_N 3.729715012475897e-6 +humbug_V2 1.609865254278217e-5 +humdinger_N 3.729715012475897e-6 +humdrum_A 1.0773191989054437e-5 +humectant_N 3.729715012475897e-6 +humerus_N 3.729715012475897e-6 +humic_A 1.0773191989054437e-5 +humid_A 2.1546383978108874e-5 +humidify_V2 1.609865254278217e-5 +humidity_N 3.729715012475897e-6 +humification_N 3.729715012475897e-6 +humified_A 1.0773191989054437e-5 +humiliate_V2 1.609865254278217e-5 +humiliatingly_Adv 8.668966832532898e-6 +humiliation_N 7.459430024951794e-6 +humility_N 7.459430024951794e-6 +humin_N 3.729715012475897e-6 +hummer_N 3.729715012475897e-6 +humming_N 3.729715012475897e-6 +humming_top_N 3.729715012475897e-6 +hummingbird_N 3.729715012475897e-6 +hummock_N 3.729715012475897e-6 +hummus_N 3.729715012475897e-6 +humongous_A 1.0773191989054437e-5 +humor_N 3.729715012475897e-6 +humoral_A 1.0773191989054437e-5 +humorist_N 7.459430024951794e-6 +humorless_A 1.0773191989054437e-5 +humorous_A 1.0773191989054437e-5 +humour_N 1.118914503742769e-5 +humour_V2 1.609865254278217e-5 +humourist_N 3.729715012475897e-6 +humourless_A 1.0773191989054437e-5 +hump_N 3.729715012475897e-6 +hump_V2 1.609865254278217e-5 +humpback_N 3.729715012475897e-6 +humpbacked_A 1.0773191989054437e-5 +humphrey_PN 1.865462821325971e-5 +humus_N 3.729715012475897e-6 +hun_N 3.729715012475897e-6 +hunch_N 7.459430024951794e-6 +hunch_V2 3.219730508556434e-5 +hunchback_A 1.0773191989054437e-5 +hunchback_N 3.729715012475897e-6 +hunchbacked_A 1.0773191989054437e-5 +hundredfold_Adv 8.668966832532898e-6 +hundredweight_N 7.459430024951794e-6 +hung_on_V 2.2678822515534993e-5 +hung_out_V 2.2678822515534993e-5 +hungarian_A 2.1546383978108874e-5 +hungarian_N 7.459430024951794e-6 +hungary_PN 8.021490131701675e-4 +hunger_N 2.237829007485538e-5 +hunger_V 2.2678822515534993e-5 +hunger_march_N 3.729715012475897e-6 +hunger_marcher_N 3.729715012475897e-6 +hungry_A 4.309276795621775e-5 +hunk_N 1.4918860049903587e-5 +hunker_down_V 2.2678822515534993e-5 +hunt_N 2.6108005087331277e-5 +hunt_V 4.5357645031069986e-5 +hunt_V2 4.8295957628346505e-5 +hunt_down_V2 1.609865254278217e-5 +hunt_out_V2 1.609865254278217e-5 +hunt_up_V2 1.609865254278217e-5 +hunter_N 4.475658014971076e-5 +hunting_N 5.594572518713845e-5 +hunting_crop_N 3.729715012475897e-6 +huntingdon_PN 1.865462821325971e-5 +huntress_N 3.729715012475897e-6 +huntsman_N 3.729715012475897e-6 +hurdle_N 6.713487022456614e-5 +hurdle_V 2.2678822515534993e-5 +hurdle_V2 1.609865254278217e-5 +hurdler_N 3.729715012475897e-6 +hurdles_N 3.729715012475897e-6 +hurdy_gurdy_N 3.729715012475897e-6 +hurl_N 3.729715012475897e-6 +hurl_V2 8.049326271391085e-5 +hurling_N 3.729715012475897e-6 +hurly_burly_N 3.729715012475897e-6 +hurrah_N 3.729715012475897e-6 +hurrah_V 2.2678822515534993e-5 +hurricane_N 9.697259032437332e-5 +hurried_A 2.1546383978108874e-5 +hurry_N 3.356743511228307e-5 +hurry_V 6.803646754660499e-5 +hurry_V2 4.8295957628346505e-5 +hurry_V2V 4.675081813931744e-4 +hurstpierpoint_PN 1.865462821325971e-5 +hurt_N 1.4918860049903587e-5 +hurt_V 7.710799655281898e-4 +hurt_V2 1.7869504322488208e-3 +hurt_VS 2.3104025876508982e-4 +hurtful_A 1.0773191989054437e-5 +hurtle_V 4.5357645031069986e-5 +husband_N 1.5291831551151176e-4 +husband_V2 1.609865254278217e-5 +husbandly_A 1.0773191989054437e-5 +husbandman_N 3.729715012475897e-6 +husbandry_N 3.729715012475897e-6 +hush_N 3.729715012475897e-6 +hush_V 2.2678822515534993e-5 +hush_V2 1.609865254278217e-5 +hush_hush_A 2.1546383978108874e-5 +hush_money_N 3.729715012475897e-6 +hush_up_V2 1.609865254278217e-5 +husk_N 1.118914503742769e-5 +husk_V2 1.609865254278217e-5 +huskiness_N 3.729715012475897e-6 +husky_A 2.1546383978108874e-5 +husky_N 3.729715012475897e-6 +hussar_N 3.729715012475897e-6 +hussy_N 3.729715012475897e-6 +hustings_N 3.729715012475897e-6 +hustle_N 3.729715012475897e-6 +hustle_V 4.5357645031069986e-5 +hustle_V2 1.609865254278217e-5 +hustler_N 7.459430024951794e-6 +hut_N 3.729715012475897e-6 +hutch_N 3.729715012475897e-6 +hutment_N 3.729715012475897e-6 +hutted_A 1.0773191989054437e-5 +hwainan_PN 1.865462821325971e-5 +hyacinth_N 3.729715012475897e-6 +hyaena_N 3.729715012475897e-6 +hyaline_A 1.0773191989054437e-5 +hyaline_N 3.729715012475897e-6 +hyalinization_N 3.729715012475897e-6 +hyaloplasm_N 3.729715012475897e-6 +hyaloplasmic_A 1.0773191989054437e-5 +hyaluronidase_N 3.729715012475897e-6 +hybrid_A 1.4005149585770768e-4 +hybrid_N 3.356743511228307e-5 +hybridization_N 3.729715012475897e-6 +hybridize_V 2.2678822515534993e-5 +hybridize_V2 1.609865254278217e-5 +hybridoma_N 3.729715012475897e-6 +hydantoin_N 3.729715012475897e-6 +hydathode_N 3.729715012475897e-6 +hydatid_N 3.729715012475897e-6 +hyde_PN 1.865462821325971e-5 +hyderabad_PN 1.865462821325971e-5 +hydra_N 3.729715012475897e-6 +hydralazine_N 3.729715012475897e-6 +hydramnios_N 3.729715012475897e-6 +hydrangea_N 3.729715012475897e-6 +hydrant_N 3.729715012475897e-6 +hydrarthrosis_N 3.729715012475897e-6 +hydrate_N 3.729715012475897e-6 +hydrate_V 2.2678822515534993e-5 +hydrate_V2 1.609865254278217e-5 +hydration_N 3.729715012475897e-6 +hydraulic_A 4.309276795621775e-5 +hydraulically_Adv 8.668966832532898e-6 +hydraulics_N 3.729715012475897e-6 +hydrazine_N 3.729715012475897e-6 +hydrazoite_N 3.729715012475897e-6 +hydremia_N 3.729715012475897e-6 +hydric_A 1.0773191989054437e-5 +hydride_N 3.729715012475897e-6 +hydrilla_N 3.729715012475897e-6 +hydrocarbon_N 7.459430024951794e-6 +hydrocele_N 3.729715012475897e-6 +hydrocephalic_A 1.0773191989054437e-5 +hydrocephalus_N 3.729715012475897e-6 +hydrochloric_A 1.0773191989054437e-5 +hydrochloride_N 3.729715012475897e-6 +hydrochlorofluorocarbon_N 3.729715012475897e-6 +hydrochlorothiazide_N 3.729715012475897e-6 +hydrocolloid_N 3.729715012475897e-6 +hydrocortisone_N 3.729715012475897e-6 +hydrocracking_N 3.729715012475897e-6 +hydrodynamic_A 1.0773191989054437e-5 +hydrodynamics_N 3.729715012475897e-6 +hydroelectric_A 2.1546383978108874e-5 +hydroelectricity_N 3.729715012475897e-6 +hydroflumethiazide_N 3.729715012475897e-6 +hydrofluorocarbon_N 3.729715012475897e-6 +hydrofoil_N 3.729715012475897e-6 +hydrogel_N 3.729715012475897e-6 +hydrogen_N 2.237829007485538e-5 +hydrogenation_N 3.729715012475897e-6 +hydrographic_A 1.0773191989054437e-5 +hydrography_N 3.729715012475897e-6 +hydrokinetic_A 1.0773191989054437e-5 +hydrologist_N 3.729715012475897e-6 +hydrology_N 3.729715012475897e-6 +hydrolysate_N 3.729715012475897e-6 +hydrolysis_N 3.729715012475897e-6 +hydrolyzable_A 1.0773191989054437e-5 +hydromancer_N 3.729715012475897e-6 +hydromancy_N 3.729715012475897e-6 +hydromel_N 3.729715012475897e-6 +hydrometer_N 3.729715012475897e-6 +hydrometric_A 1.0773191989054437e-5 +hydrometry_N 3.729715012475897e-6 +hydronephrosis_N 3.729715012475897e-6 +hydropathic_A 1.0773191989054437e-5 +hydropathy_N 3.729715012475897e-6 +hydrophilic_A 1.0773191989054437e-5 +hydrophobia_N 3.729715012475897e-6 +hydrophobic_A 1.0773191989054437e-5 +hydrophobicity_N 3.729715012475897e-6 +hydrophytic_A 1.0773191989054437e-5 +hydroplane_N 3.729715012475897e-6 +hydroponics_N 3.729715012475897e-6 +hydrosphere_N 3.729715012475897e-6 +hydrostatic_A 1.0773191989054437e-5 +hydrostatics_N 3.729715012475897e-6 +hydrothorax_N 3.729715012475897e-6 +hydrous_A 1.0773191989054437e-5 +hydroxide_N 3.729715012475897e-6 +hydroxy_A 1.0773191989054437e-5 +hydroxychloroquine_N 3.729715012475897e-6 +hydroxyl_N 3.729715012475897e-6 +hydroxymethyl_N 3.729715012475897e-6 +hydroxyproline_N 3.729715012475897e-6 +hydrozoan_N 3.729715012475897e-6 +hyena_N 7.459430024951794e-6 +hygiene_N 7.459430024951794e-6 +hygienic_A 1.0773191989054437e-5 +hygienically_Adv 8.668966832532898e-6 +hygienist_N 3.729715012475897e-6 +hygrodeik_N 3.729715012475897e-6 +hygrometer_N 3.729715012475897e-6 +hygrophyte_N 3.729715012475897e-6 +hygrophytic_A 1.0773191989054437e-5 +hygroscope_N 3.729715012475897e-6 +hygroscopic_A 1.0773191989054437e-5 +hymen_N 3.729715012475897e-6 +hymenal_A 1.0773191989054437e-5 +hymeneal_A 1.0773191989054437e-5 +hymeneal_N 3.729715012475897e-6 +hymenium_N 3.729715012475897e-6 +hymenopterous_A 1.0773191989054437e-5 +hymn_N 3.729715012475897e-6 +hymn_V2 1.609865254278217e-5 +hymnal_N 3.729715012475897e-6 +hyoid_A 1.0773191989054437e-5 +hyoid_N 3.729715012475897e-6 +hyoscyamine_N 3.729715012475897e-6 +hypaethral_A 1.0773191989054437e-5 +hypallage_N 3.729715012475897e-6 +hypanthium_N 3.729715012475897e-6 +hype_V2 4.8295957628346505e-5 +hyperacidity_N 3.729715012475897e-6 +hyperactive_A 1.0773191989054437e-5 +hyperactivity_N 3.729715012475897e-6 +hyperacusis_N 3.729715012475897e-6 +hyperbaton_N 3.729715012475897e-6 +hyperbetalipoproteinemia_N 3.729715012475897e-6 +hyperbilirubinemia_N 3.729715012475897e-6 +hyperbola_N 3.729715012475897e-6 +hyperbole_N 3.729715012475897e-6 +hyperbolic_A 1.0773191989054437e-5 +hyperbolically_Adv 8.668966832532898e-6 +hyperboloid_N 3.729715012475897e-6 +hyperboloidal_A 1.0773191989054437e-5 +hypercalcemia_N 3.729715012475897e-6 +hypercalciuria_N 3.729715012475897e-6 +hypercapnia_N 3.729715012475897e-6 +hypercatalectic_A 1.0773191989054437e-5 +hypercatalectic_N 3.729715012475897e-6 +hypercellularity_N 3.729715012475897e-6 +hypercholesterolemia_N 3.729715012475897e-6 +hypercoaster_N 3.729715012475897e-6 +hypercritical_A 1.0773191989054437e-5 +hyperemesis_N 3.729715012475897e-6 +hyperemia_N 3.729715012475897e-6 +hyperemic_A 1.0773191989054437e-5 +hyperextension_N 3.729715012475897e-6 +hyperfine_A 1.0773191989054437e-5 +hyperglycemia_N 3.729715012475897e-6 +hyperhidrosis_N 3.729715012475897e-6 +hypericism_N 3.729715012475897e-6 +hyperinflation_N 1.118914503742769e-5 +hyperkalemia_N 3.729715012475897e-6 +hyperlink_N 3.729715012475897e-6 +hyperlipoproteinemia_N 3.729715012475897e-6 +hypermarket_N 1.118914503742769e-5 +hypermastigote_N 3.729715012475897e-6 +hypermedia_N 3.729715012475897e-6 +hypermotility_N 3.729715012475897e-6 +hypernatremia_N 3.729715012475897e-6 +hypernym_N 3.729715012475897e-6 +hypernymy_N 3.729715012475897e-6 +hyperon_N 3.729715012475897e-6 +hyperope_N 3.729715012475897e-6 +hyperopia_N 3.729715012475897e-6 +hyperopic_A 1.0773191989054437e-5 +hyperparathyroidism_N 3.729715012475897e-6 +hyperpigmentation_N 3.729715012475897e-6 +hyperpituitarism_N 3.729715012475897e-6 +hyperplasia_N 3.729715012475897e-6 +hyperpnea_N 3.729715012475897e-6 +hyperpyrexia_N 3.729715012475897e-6 +hypersecretion_N 3.729715012475897e-6 +hypersensitive_A 1.0773191989054437e-5 +hypersensitivity_N 3.729715012475897e-6 +hypersomnia_N 3.729715012475897e-6 +hypersplenism_N 3.729715012475897e-6 +hypertensive_A 1.0773191989054437e-5 +hypertensive_N 3.729715012475897e-6 +hypertext_N 3.729715012475897e-6 +hyperthermal_A 1.0773191989054437e-5 +hyperthermia_N 3.729715012475897e-6 +hyperthyroidism_N 3.729715012475897e-6 +hypertonia_N 3.729715012475897e-6 +hypertonic_A 1.0773191989054437e-5 +hypertonicity_N 3.729715012475897e-6 +hypertrophied_A 1.0773191989054437e-5 +hypertrophy_N 3.729715012475897e-6 +hypervelocity_N 3.729715012475897e-6 +hyperventilation_N 3.729715012475897e-6 +hypervitaminosis_N 3.729715012475897e-6 +hypervolemia_N 3.729715012475897e-6 +hypha_N 3.729715012475897e-6 +hyphema_N 3.729715012475897e-6 +hyphen_N 3.729715012475897e-6 +hyphen_V2 1.609865254278217e-5 +hyphenate_V2 1.609865254278217e-5 +hyphenation_N 3.729715012475897e-6 +hypnagogue_N 3.729715012475897e-6 +hypnoanalysis_N 3.729715012475897e-6 +hypnogenesis_N 3.729715012475897e-6 +hypnoid_A 1.0773191989054437e-5 +hypnophobia_N 3.729715012475897e-6 +hypnosis_N 3.729715012475897e-6 +hypnotherapy_N 3.729715012475897e-6 +hypnotic_A 2.1546383978108874e-5 +hypnotically_Adv 8.668966832532898e-6 +hypnotism_N 3.729715012475897e-6 +hypnotist_N 3.729715012475897e-6 +hypnotize_V2 4.8295957628346505e-5 +hypo_N 3.729715012475897e-6 +hypoactive_A 1.0773191989054437e-5 +hypobasidium_N 3.729715012475897e-6 +hypobetalipoproteinemia_N 3.729715012475897e-6 +hypocalcemia_N 3.729715012475897e-6 +hypocapnia_N 3.729715012475897e-6 +hypocellularity_N 3.729715012475897e-6 +hypochlorite_N 3.729715012475897e-6 +hypochondria_N 3.729715012475897e-6 +hypochondriac_A 1.0773191989054437e-5 +hypochondriac_N 3.729715012475897e-6 +hypochondriacal_A 1.0773191989054437e-5 +hypochondrium_N 3.729715012475897e-6 +hypocrisy_N 1.8648575062379485e-5 +hypocrite_N 7.459430024951794e-6 +hypocritical_A 1.0773191989054437e-5 +hypocycloid_N 3.729715012475897e-6 +hypodermal_A 1.0773191989054437e-5 +hypodermic_A 1.0773191989054437e-5 +hypodermic_N 3.729715012475897e-6 +hypodermis_N 3.729715012475897e-6 +hypoesthesia_N 3.729715012475897e-6 +hypogammaglobulinemia_N 3.729715012475897e-6 +hypoglossal_N 3.729715012475897e-6 +hypoglycemia_N 3.729715012475897e-6 +hypoglycemic_A 1.0773191989054437e-5 +hypogonadism_N 3.729715012475897e-6 +hypokalemia_N 3.729715012475897e-6 +hypolipoproteinemia_N 3.729715012475897e-6 +hyponatremia_N 3.729715012475897e-6 +hyponym_N 3.729715012475897e-6 +hyponymy_N 3.729715012475897e-6 +hypoparathyroidism_N 3.729715012475897e-6 +hypophyseal_A 1.0773191989054437e-5 +hypophysectomized_A 1.0773191989054437e-5 +hypophysectomy_N 3.729715012475897e-6 +hypopigmentation_N 3.729715012475897e-6 +hypoplasia_N 3.729715012475897e-6 +hypopnea_N 3.729715012475897e-6 +hypoproteinemia_N 3.729715012475897e-6 +hyposmia_N 3.729715012475897e-6 +hypospadias_N 3.729715012475897e-6 +hypostasis_N 3.729715012475897e-6 +hypostatization_N 3.729715012475897e-6 +hypotension_N 3.729715012475897e-6 +hypotensive_A 1.0773191989054437e-5 +hypotensive_N 3.729715012475897e-6 +hypotenuse_N 3.729715012475897e-6 +hypothalamic_A 1.0773191989054437e-5 +hypothalamically_Adv 8.668966832532898e-6 +hypothalamus_N 3.729715012475897e-6 +hypothecate_V2 1.609865254278217e-5 +hypothermia_N 3.729715012475897e-6 +hypothermic_A 1.0773191989054437e-5 +hypothesis_N 3.729715012475897e-6 +hypothesize_V2 3.219730508556434e-5 +hypothetical_A 7.541234392338106e-5 +hypothetical_N 3.729715012475897e-6 +hypothrombinemia_N 3.729715012475897e-6 +hypothyroidism_N 3.729715012475897e-6 +hypotonia_N 3.729715012475897e-6 +hypotonic_A 1.0773191989054437e-5 +hypotonicity_N 3.729715012475897e-6 +hypovolemia_N 3.729715012475897e-6 +hypovolemic_A 1.0773191989054437e-5 +hypoxia_N 3.729715012475897e-6 +hypozeugma_N 3.729715012475897e-6 +hypozeuxis_N 3.729715012475897e-6 +hypsography_N 3.729715012475897e-6 +hypsometer_N 3.729715012475897e-6 +hypsometry_N 3.729715012475897e-6 +hyrax_N 3.729715012475897e-6 +hyson_N 3.729715012475897e-6 +hyssop_N 3.729715012475897e-6 +hysterectomy_N 3.729715012475897e-6 +hysteresis_N 3.729715012475897e-6 +hysteria_N 1.4918860049903587e-5 +hysteric_A 1.0773191989054437e-5 +hysteric_N 3.729715012475897e-6 +hysterical_A 3.231957596716331e-5 +hysterics_N 3.729715012475897e-6 +hysterocatalepsy_N 3.729715012475897e-6 +hysterosalpingogram_N 3.729715012475897e-6 +hysteroscopy_N 3.729715012475897e-6 +hysterotomy_N 3.729715012475897e-6 +hythe_PN 1.865462821325971e-5 +i_Pron 6.125875932444215e-2 +i_e__Adv 8.668966832532898e-6 +iamb_N 3.729715012475897e-6 +iambic_A 2.1546383978108874e-5 +iambic_N 3.729715012475897e-6 +iambics_N 3.729715012475897e-6 +iambus_N 3.729715012475897e-6 +ian_PN 1.865462821325971e-5 +iatrogenic_A 1.0773191989054437e-5 +iba_N 3.729715012475897e-6 +ibadan_PN 1.865462821325971e-5 +ibex_N 3.729715012475897e-6 +ibid_PN 1.865462821325971e-5 +ibid__Adv 8.668966832532898e-6 +ibidem_Adv 8.668966832532898e-6 +ibis_N 3.729715012475897e-6 +ibuprofen_N 3.729715012475897e-6 +icbm_N 3.729715012475897e-6 +ice_N 7.086458523704203e-5 +ice_V 2.2678822515534993e-5 +ice_V2 3.219730508556434e-5 +ice_axe_N 3.729715012475897e-6 +ice_cream_N 1.118914503742769e-5 +ice_lolly_N 3.729715012475897e-6 +ice_show_N 3.729715012475897e-6 +ice_skate_N 3.729715012475897e-6 +ice_skate_V 2.2678822515534993e-5 +ice_skating_N 3.729715012475897e-6 +ice_tray_N 3.729715012475897e-6 +iceberg_N 1.4918860049903587e-5 +iceboat_N 3.729715012475897e-6 +icebound_A 1.0773191989054437e-5 +icebox_N 3.729715012475897e-6 +icebreaker_N 3.729715012475897e-6 +icecap_N 3.729715012475897e-6 +icecube_N 3.729715012475897e-6 +icefall_N 3.729715012475897e-6 +icefield_N 3.729715012475897e-6 +icefloe_N 3.729715012475897e-6 +icefree_A 1.0773191989054437e-5 +icehouse_N 3.729715012475897e-6 +iceland_PN 1.865462821325971e-5 +icelander_A 1.0773191989054437e-5 +icelander_N 3.729715012475897e-6 +icelandic_A 1.0773191989054437e-5 +icelandic_N 3.729715012475897e-6 +iceman_N 3.729715012475897e-6 +icepack_N 3.729715012475897e-6 +icepick_N 3.729715012475897e-6 +icerink_N 3.729715012475897e-6 +icetray_N 3.729715012475897e-6 +ichneumon_N 3.729715012475897e-6 +ichneumon_fly_N 3.729715012475897e-6 +ichor_N 3.729715012475897e-6 +ichorous_A 1.0773191989054437e-5 +ichthyolatry_N 3.729715012475897e-6 +ichthyologist_N 3.729715012475897e-6 +ichthyology_N 3.729715012475897e-6 +ichthyosaur_N 3.729715012475897e-6 +ichthyosaurus_N 3.729715012475897e-6 +ichthyosis_N 3.729715012475897e-6 +icicle_N 3.729715012475897e-6 +icing_N 3.729715012475897e-6 +icky_A 1.0773191989054437e-5 +icon_N 7.459430024951794e-6 +iconic_A 1.0773191989054437e-5 +iconoclasm_N 3.729715012475897e-6 +iconoclast_N 3.729715012475897e-6 +iconoclastic_A 1.0773191989054437e-5 +iconography_N 3.729715012475897e-6 +iconolatry_N 3.729715012475897e-6 +iconology_N 3.729715012475897e-6 +iconoscope_N 3.729715012475897e-6 +icosahedral_A 1.0773191989054437e-5 +icosahedron_N 3.729715012475897e-6 +ictal_A 1.0773191989054437e-5 +icterogenic_A 1.0773191989054437e-5 +ictodosaur_N 3.729715012475897e-6 +icy_A 1.0773191989054437e-5 +id_N 7.459430024951794e-6 +ida_PN 1.865462821325971e-5 +idaho_PN 1.865462821325971e-5 +idea_N 4.102686513723486e-4 +idea_of_N2 3.6011080332409975e-2 +ideal_A 1.1850511187959881e-4 +ideal_N 3.356743511228307e-5 +idealism_N 1.4918860049903587e-5 +idealist_N 1.118914503742769e-5 +idealistic_A 6.463915193432663e-5 +ideality_N 3.729715012475897e-6 +idealization_N 3.729715012475897e-6 +idealize_V2 3.219730508556434e-5 +ideation_N 3.729715012475897e-6 +idem_PN 1.865462821325971e-5 +idempotent_A 1.0773191989054437e-5 +identical_A 9.695872790148993e-5 +identifiable_A 3.231957596716331e-5 +identification_N 1.8648575062379485e-5 +identifier_N 3.729715012475897e-6 +identify_V 2.4946704767088494e-4 +identify_V2 1.2073989407086626e-3 +identikit_N 3.729715012475897e-6 +identity_N 6.340515521209024e-5 +ideogram_N 3.729715012475897e-6 +ideograph_N 3.729715012475897e-6 +ideographic_A 1.0773191989054437e-5 +ideographically_Adv 8.668966832532898e-6 +ideography_N 3.729715012475897e-6 +ideological_A 1.508246878467621e-4 +ideologist_N 3.729715012475897e-6 +ideology_N 2.6108005087331277e-5 +ides_N 3.729715012475897e-6 +idesia_N 3.729715012475897e-6 +idiocy_N 7.459430024951794e-6 +idiographic_A 1.0773191989054437e-5 +idiolatry_N 3.729715012475897e-6 +idiolect_N 3.729715012475897e-6 +idiom_N 3.729715012475897e-6 +idiomatic_A 2.1546383978108874e-5 +idiomatically_Adv 8.668966832532898e-6 +idiopathic_A 1.0773191989054437e-5 +idiosyncrasy_N 3.729715012475897e-6 +idiosyncratic_A 2.1546383978108874e-5 +idiot_N 1.118914503742769e-5 +idiotic_A 1.0773191989054437e-5 +idiotically_Adv 8.668966832532898e-6 +idle_A 1.6159787983581657e-4 +idle_N 3.729715012475897e-6 +idle_V 1.1339411257767497e-4 +idle_V2 1.7708517797060386e-4 +idleness_N 3.729715012475897e-6 +idler_N 3.729715012475897e-6 +idly_Adv 8.668966832532898e-6 +idol_N 3.729715012475897e-6 +idolater_N 3.729715012475897e-6 +idolatress_N 3.729715012475897e-6 +idolatrous_A 1.0773191989054437e-5 +idolatry_N 3.729715012475897e-6 +idolization_N 3.729715012475897e-6 +idolize_V2 1.609865254278217e-5 +idolizer_N 3.729715012475897e-6 +idyll_N 3.729715012475897e-6 +idyllic_A 1.0773191989054437e-5 +idyllically_Adv 8.668966832532898e-6 +ie_PN 1.865462821325971e-5 +if_Subj 5.8634538152610445e-2 +igloo_N 3.729715012475897e-6 +igneous_A 1.0773191989054437e-5 +ignescent_A 1.0773191989054437e-5 +ignis_fatuus_N 3.729715012475897e-6 +ignite_V 2.2678822515534993e-5 +ignite_V2 4.8295957628346505e-5 +igniter_N 3.729715012475897e-6 +ignition_N 7.459430024951794e-6 +ignoble_A 2.1546383978108874e-5 +ignobleness_N 3.729715012475897e-6 +ignominious_A 2.1546383978108874e-5 +ignominy_N 3.729715012475897e-6 +ignoramus_N 7.459430024951794e-6 +ignorance_N 2.6108005087331277e-5 +ignorant_A 1.0773191989054437e-5 +ignorantness_N 3.729715012475897e-6 +ignore_V 2.9482469270195494e-4 +ignore_V2 8.371299322246728e-4 +iguana_N 3.729715012475897e-6 +iguanid_N 3.729715012475897e-6 +iguanodon_N 3.729715012475897e-6 +ijtihad_N 3.729715012475897e-6 +ikon_N 3.729715012475897e-6 +ilama_N 3.729715012475897e-6 +ileitis_N 3.729715012475897e-6 +ileostomy_N 3.729715012475897e-6 +ileum_N 3.729715012475897e-6 +ilex_N 3.729715012475897e-6 +ilfracombe_PN 1.865462821325971e-5 +iliac_A 1.0773191989054437e-5 +ilium_N 3.729715012475897e-6 +ilk_N 7.459430024951794e-6 +ilkeston_PN 1.865462821325971e-5 +ilkley_PN 1.865462821325971e-5 +ill_A 1.1850511187959881e-4 +ill_Adv 2.6006900497598697e-5 +ill_N 1.118914503742769e-5 +ill_advised_A 3.231957596716331e-5 +ill_affected_A 1.0773191989054437e-5 +ill_bred_A 1.0773191989054437e-5 +ill_breeding_N 3.729715012475897e-6 +ill_disposed_A 2.1546383978108874e-5 +ill_fated_A 2.1546383978108874e-5 +ill_favoured_A 1.0773191989054437e-5 +ill_gotten_A 2.1546383978108874e-5 +ill_judged_A 1.0773191989054437e-5 +ill_mannered_A 2.1546383978108874e-5 +ill_natured_A 1.0773191989054437e-5 +ill_omened_A 1.0773191989054437e-5 +ill_starred_A 1.0773191989054437e-5 +ill_timed_A 1.0773191989054437e-5 +ill_treat_V2 1.609865254278217e-5 +ill_treatment_N 3.729715012475897e-6 +ill_usage_N 3.729715012475897e-6 +ill_use_V2 1.609865254278217e-5 +illative_A 1.0773191989054437e-5 +illegal_A 7.541234392338106e-4 +illegality_N 7.459430024951794e-6 +illegibility_N 3.729715012475897e-6 +illegible_A 1.0773191989054437e-5 +illegitimacy_N 3.729715012475897e-6 +illegitimate_A 4.309276795621775e-5 +illegitimate_N 3.729715012475897e-6 +illiberal_A 1.0773191989054437e-5 +illiberality_N 3.729715012475897e-6 +illicit_A 2.1546383978108874e-5 +illicitness_N 3.729715012475897e-6 +illimitable_A 1.0773191989054437e-5 +illinois_PN 3.917471924784539e-4 +illiteracy_N 7.459430024951794e-6 +illiterate_A 1.0773191989054437e-5 +illiterate_N 3.729715012475897e-6 +illness_N 4.475658014971076e-5 +illogical_A 2.1546383978108874e-5 +illogicality_N 3.729715012475897e-6 +illogicalness_N 3.729715012475897e-6 +illume_V2 1.609865254278217e-5 +illuminance_N 3.729715012475897e-6 +illuminant_N 3.729715012475897e-6 +illuminate_V2 3.219730508556434e-5 +illumination_N 3.729715012475897e-6 +illumine_V2 1.609865254278217e-5 +illusion_N 2.9837720099807175e-5 +illusional_A 1.0773191989054437e-5 +illusionist_N 7.459430024951794e-6 +illusive_A 1.0773191989054437e-5 +illusory_A 1.0773191989054437e-5 +illustrate_V 1.3607293509320997e-4 +illustrate_V2 3.058743983128612e-4 +illustrate_VS 2.8880032345636225e-4 +illustration_N 5.2216010174662554e-5 +illustrative_A 1.0773191989054437e-5 +illustrator_N 3.729715012475897e-6 +illustrious_A 1.0773191989054437e-5 +ilmenite_N 3.729715012475897e-6 +ilo_N 3.729715012475897e-6 +image_N 3.6924178623511377e-4 +image_V2 1.609865254278217e-5 +imagery_N 1.118914503742769e-5 +imaginable_A 2.1546383978108874e-5 +imaginary_A 2.1546383978108874e-5 +imagination_N 2.6108005087331277e-5 +imaginative_A 6.463915193432663e-5 +imagine_V 9.071529006213997e-5 +imagine_V2 1.1269056779947518e-4 +imagine_VS 6.35360711603997e-4 +imaging_N 3.729715012475897e-6 +imagism_N 3.729715012475897e-6 +imago_N 3.729715012475897e-6 +imam_N 3.729715012475897e-6 +imaret_N 3.729715012475897e-6 +imbalance_N 8.205373027446973e-5 +imbecile_A 1.0773191989054437e-5 +imbecile_N 3.729715012475897e-6 +imbecility_N 3.729715012475897e-6 +imbed_V2 1.609865254278217e-5 +imbibe_V2 1.609865254278217e-5 +imbibition_N 3.729715012475897e-6 +imbricate_A 1.0773191989054437e-5 +imbrication_N 3.729715012475897e-6 +imbroglio_N 7.459430024951794e-6 +imbue_V2 1.609865254278217e-5 +imf_N 3.729715012475897e-6 +imidazole_N 3.729715012475897e-6 +imide_N 3.729715012475897e-6 +imipramine_N 3.729715012475897e-6 +imitate_V2 6.439461017112868e-5 +imitation_N 1.8648575062379485e-5 +imitative_A 1.0773191989054437e-5 +imitator_N 3.729715012475897e-6 +immaculate_A 1.0773191989054437e-5 +immanence_N 3.729715012475897e-6 +immanent_A 1.0773191989054437e-5 +immaterial_A 1.0773191989054437e-5 +immateriality_N 3.729715012475897e-6 +immature_A 1.0773191989054437e-5 +immaturity_N 7.459430024951794e-6 +immeasurable_A 1.0773191989054437e-5 +immediacy_N 1.118914503742769e-5 +immediate_A 1.4759273025004578e-3 +immemorial_A 1.0773191989054437e-5 +immense_A 6.463915193432663e-5 +immensity_N 3.729715012475897e-6 +immerse_V2 3.219730508556434e-5 +immersion_N 3.729715012475897e-6 +immigrant_N 2.237829007485538e-5 +immigrate_V 4.5357645031069986e-5 +immigration_N 1.8648575062379485e-5 +imminence_N 3.729715012475897e-6 +imminent_A 1.9391745580297985e-4 +immingham_PN 1.865462821325971e-5 +immiscible_A 1.0773191989054437e-5 +immobile_A 1.0773191989054437e-5 +immobility_N 3.729715012475897e-6 +immobilization_N 3.729715012475897e-6 +immobilize_V2 1.609865254278217e-5 +immoderate_A 1.0773191989054437e-5 +immoderation_N 3.729715012475897e-6 +immodest_A 2.1546383978108874e-5 +immodesty_N 3.729715012475897e-6 +immolate_V2 1.609865254278217e-5 +immolation_N 3.729715012475897e-6 +immoral_A 3.231957596716331e-5 +immorality_N 7.459430024951794e-6 +immortal_A 1.0773191989054437e-5 +immortal_N 3.729715012475897e-6 +immortality_N 3.729715012475897e-6 +immortalize_V2 1.609865254278217e-5 +immortelle_N 3.729715012475897e-6 +immotility_N 3.729715012475897e-6 +immovability_N 3.729715012475897e-6 +immovable_A 1.0773191989054437e-5 +immune_A 2.1546383978108874e-4 +immune_N 3.729715012475897e-6 +immunity_N 2.9837720099807175e-5 +immunization_N 3.729715012475897e-6 +immunize_V2 1.609865254278217e-5 +immunoassay_N 3.729715012475897e-6 +immunochemical_A 1.0773191989054437e-5 +immunochemistry_N 3.729715012475897e-6 +immunocompetence_N 3.729715012475897e-6 +immunocompetent_A 1.0773191989054437e-5 +immunocompromised_A 1.0773191989054437e-5 +immunodeficiency_N 3.729715012475897e-6 +immunodeficient_A 1.0773191989054437e-5 +immunoelectrophoresis_N 3.729715012475897e-6 +immunofluorescence_N 3.729715012475897e-6 +immunogen_N 3.729715012475897e-6 +immunogenic_A 1.0773191989054437e-5 +immunogenicity_N 3.729715012475897e-6 +immunoglobulin_N 3.729715012475897e-6 +immunohistochemistry_N 3.729715012475897e-6 +immunological_A 1.0773191989054437e-5 +immunologist_N 3.729715012475897e-6 +immunology_N 3.729715012475897e-6 +immunopathology_N 3.729715012475897e-6 +immunosuppressant_N 3.729715012475897e-6 +immunosuppressed_A 1.0773191989054437e-5 +immunosuppression_N 3.729715012475897e-6 +immunosuppressive_A 1.0773191989054437e-5 +immunotherapeutic_A 1.0773191989054437e-5 +immunotherapy_N 3.729715012475897e-6 +immure_V2 1.609865254278217e-5 +immutability_N 3.729715012475897e-6 +immutable_A 1.0773191989054437e-5 +imp_N 3.729715012475897e-6 +impact_N 5.07241241696722e-4 +impact_V2 8.049326271391085e-5 +impaction_N 3.729715012475897e-6 +impair_V2 1.1269056779947518e-4 +impairer_N 3.729715012475897e-6 +impairment_N 7.459430024951794e-6 +impala_N 3.729715012475897e-6 +impale_V2 1.609865254278217e-5 +impalement_N 3.729715012475897e-6 +impalpable_A 1.0773191989054437e-5 +impanel_V2 1.609865254278217e-5 +impart_V2 3.219730508556434e-5 +impartial_A 3.231957596716331e-5 +impartiality_N 3.729715012475897e-6 +impassable_A 1.0773191989054437e-5 +impasse_N 1.4918860049903587e-5 +impassioned_A 2.1546383978108874e-5 +impassive_A 3.231957596716331e-5 +impassiveness_N 7.459430024951794e-6 +impassivity_N 3.729715012475897e-6 +impasto_N 3.729715012475897e-6 +impatience_N 7.459430024951794e-6 +impatient_A 3.231957596716331e-5 +impeach_V2 6.439461017112868e-5 +impeachability_N 3.729715012475897e-6 +impeachment_N 7.086458523704203e-5 +impeccability_N 3.729715012475897e-6 +impeccable_A 4.309276795621775e-5 +impeccant_A 1.0773191989054437e-5 +impecunious_A 1.0773191989054437e-5 +impecuniousness_N 3.729715012475897e-6 +impede_V2 1.2878922034225736e-4 +impediment_N 1.8648575062379485e-5 +impedimenta_N 3.729715012475897e-6 +impel_V2 1.609865254278217e-5 +impellent_A 1.0773191989054437e-5 +impeller_N 3.729715012475897e-6 +impelling_A 1.0773191989054437e-5 +impend_V 3.401823377330249e-4 +impenetrability_N 3.729715012475897e-6 +impenetrable_A 2.1546383978108874e-5 +impenitence_N 3.729715012475897e-6 +impenitent_A 1.0773191989054437e-5 +imperative_A 4.309276795621775e-5 +imperative_N 3.729715012475897e-6 +imperativeness_N 3.729715012475897e-6 +imperceptibility_N 3.729715012475897e-6 +imperceptible_A 1.0773191989054437e-5 +imperfect_A 2.1546383978108874e-5 +imperfect_N 3.729715012475897e-6 +imperfectibility_N 3.729715012475897e-6 +imperfectible_A 1.0773191989054437e-5 +imperfection_N 1.118914503742769e-5 +imperfective_N 3.729715012475897e-6 +imperforate_A 1.0773191989054437e-5 +imperial_A 7.541234392338106e-5 +imperial_N 3.729715012475897e-6 +imperialism_N 1.118914503742769e-5 +imperialist_N 1.118914503742769e-5 +imperialistic_A 1.0773191989054437e-5 +imperil_V2 1.609865254278217e-5 +imperile_V2 3.219730508556434e-5 +imperious_A 2.1546383978108874e-5 +imperiousness_N 3.729715012475897e-6 +imperishability_N 3.729715012475897e-6 +imperishable_A 1.0773191989054437e-5 +imperium_N 3.729715012475897e-6 +impermanence_N 3.729715012475897e-6 +impermanent_A 1.0773191989054437e-5 +impermeability_N 3.729715012475897e-6 +impermeable_A 1.0773191989054437e-5 +impermissibility_N 3.729715012475897e-6 +impermissible_A 1.0773191989054437e-5 +impersonal_A 1.0773191989054437e-5 +impersonate_V2 1.609865254278217e-5 +impersonation_N 7.459430024951794e-6 +impersonator_N 7.459430024951794e-6 +impertinence_N 3.729715012475897e-6 +impertinent_A 1.0773191989054437e-5 +imperturbability_N 3.729715012475897e-6 +imperturbable_A 1.0773191989054437e-5 +impervious_A 4.309276795621775e-5 +impetiginous_A 1.0773191989054437e-5 +impetigo_N 3.729715012475897e-6 +impetuosity_N 3.729715012475897e-6 +impetuous_A 2.1546383978108874e-5 +impetuousness_N 3.729715012475897e-6 +impetus_N 2.6108005087331277e-5 +impiety_N 3.729715012475897e-6 +impinge_V 2.2678822515534993e-5 +impingement_N 3.729715012475897e-6 +impious_A 1.0773191989054437e-5 +impish_A 1.0773191989054437e-5 +impishness_N 3.729715012475897e-6 +implacable_A 1.0773191989054437e-5 +implant_N 3.729715012475897e-6 +implant_V2 8.049326271391085e-5 +implantation_N 3.729715012475897e-6 +implausibility_N 3.729715012475897e-6 +implausible_A 2.1546383978108874e-5 +implement_N 3.729715012475897e-6 +implement_V2 4.185649661123364e-4 +implemental_A 1.0773191989054437e-5 +implementation_N 1.118914503742769e-5 +implicate_V2 1.1269056779947518e-4 +implication_N 1.305400254366564e-4 +implicational_A 1.0773191989054437e-5 +implicative_A 1.0773191989054437e-5 +implicit_A 1.0773191989054437e-4 +implicitness_N 3.729715012475897e-6 +implore_V2 3.219730508556434e-5 +implore_VS 1.1552012938254491e-4 +imploringly_Adv 8.668966832532898e-6 +implosion_N 3.729715012475897e-6 +imply_V 6.803646754660499e-5 +imply_V2 2.4147978814173252e-4 +imply_VS 7.508808409865419e-4 +impolite_A 1.0773191989054437e-5 +impoliteness_N 3.729715012475897e-6 +impolitic_A 1.0773191989054437e-5 +imponderable_A 1.0773191989054437e-5 +imponderable_N 7.459430024951794e-6 +import_N 5.892949719711917e-4 +import_V2 7.244393644251976e-4 +importance_N 1.118914503742769e-4 +important_A 2.316236277646704e-3 +importation_N 3.729715012475897e-6 +importer_N 4.1026865137234865e-5 +importing_N 3.729715012475897e-6 +importunate_A 1.0773191989054437e-5 +importune_V2 1.609865254278217e-5 +importunity_N 3.729715012475897e-6 +impose_V 3.175035152174899e-4 +impose_V2 1.0142151101952767e-3 +imposition_N 1.4918860049903587e-5 +impossibility_N 3.729715012475897e-6 +impossible_A 4.7402044751839524e-4 +impossible_N 3.729715012475897e-6 +imposter_N 3.729715012475897e-6 +impostor_N 3.729715012475897e-6 +imposture_N 3.729715012475897e-6 +impotence_N 3.729715012475897e-6 +impotent_A 1.0773191989054437e-5 +impound_V2 4.8295957628346505e-5 +impoundment_N 3.729715012475897e-6 +impoverish_V2 4.8295957628346505e-5 +impoverishment_N 3.729715012475897e-6 +impracticability_N 3.729715012475897e-6 +impracticable_A 1.0773191989054437e-5 +impracticableness_N 3.729715012475897e-6 +impractical_A 3.231957596716331e-5 +impracticality_N 3.729715012475897e-6 +imprecate_V2 1.609865254278217e-5 +imprecation_N 3.729715012475897e-6 +imprecise_A 1.0773191989054437e-5 +impreciseness_N 3.729715012475897e-6 +imprecision_N 3.729715012475897e-6 +impregnability_N 3.729715012475897e-6 +impregnable_A 1.0773191989054437e-5 +impregnate_V2 1.609865254278217e-5 +impregnation_N 3.729715012475897e-6 +impresario_N 3.729715012475897e-6 +impress_N 3.729715012475897e-6 +impress_V 1.1339411257767497e-4 +impress_V2 1.4488787288503951e-4 +impression_N 5.2216010174662554e-5 +impressionable_A 1.0773191989054437e-5 +impressionism_N 3.729715012475897e-6 +impressionist_A 1.0773191989054437e-5 +impressionist_N 3.729715012475897e-6 +impressionistic_A 1.0773191989054437e-5 +impressive_A 1.72371071824871e-4 +impressiveness_N 3.729715012475897e-6 +imprimatur_N 3.729715012475897e-6 +imprint_N 3.729715012475897e-6 +imprint_V2 1.609865254278217e-5 +imprinting_N 3.729715012475897e-6 +imprison_V2 1.1269056779947518e-4 +imprisonment_N 2.9837720099807175e-5 +improbability_N 7.459430024951794e-6 +improbable_A 4.309276795621775e-5 +impromptu_A 2.1546383978108874e-5 +impromptu_Adv 8.668966832532898e-6 +impromptu_N 3.729715012475897e-6 +improper_A 2.2623703177014317e-4 +impropriety_N 3.729715012475897e-6 +improvable_A 1.0773191989054437e-5 +improve_V 1.6555540436340545e-3 +improve_V2 2.495291144131236e-3 +improvement_N 3.990795063349209e-4 +improver_N 3.729715012475897e-6 +improvidence_N 3.729715012475897e-6 +improvident_A 1.0773191989054437e-5 +improvisation_N 7.459430024951794e-6 +improvise_V 4.5357645031069986e-5 +improvise_V2 1.609865254278217e-5 +imprudence_N 3.729715012475897e-6 +imprudent_A 1.0773191989054437e-5 +impudence_N 3.729715012475897e-6 +impudent_A 2.1546383978108874e-5 +impugn_V2 3.219730508556434e-5 +impugnable_A 1.0773191989054437e-5 +impuissant_A 1.0773191989054437e-5 +impulse_N 1.4918860049903587e-5 +impulse_buy_V 2.2678822515534993e-5 +impulse_buy_V2 1.609865254278217e-5 +impulsion_N 3.729715012475897e-6 +impulsive_A 3.231957596716331e-5 +impulsiveness_N 3.729715012475897e-6 +impunity_N 7.459430024951794e-6 +impure_A 1.0773191989054437e-5 +impurity_N 3.729715012475897e-6 +imputation_N 3.729715012475897e-6 +impute_V2 3.219730508556434e-5 +imputrescible_A 1.0773191989054437e-5 +in_A 1.0773191989054437e-5 +in_Adv 5.2013800995197394e-5 +in_N 1.118914503742769e-5 +in_Prep 0.20401137554258345 +in_accordance_with_Prep 2.99356383774884e-5 +in_addition_Adv 1.4390484942004612e-3 +in_addition_to_Prep 4.590131217881555e-4 +in_case_of_Prep 3.991418450331787e-5 +in_chief_A 1.0773191989054437e-5 +in_fighting_N 3.729715012475897e-6 +in_front_of_Prep 1.796138302649304e-4 +in_general_Adv 1.5604140298559218e-4 +in_lieu_of_Prep 4.9892730629147335e-5 +in_loco_parentis_Adv 8.668966832532898e-6 +in_order_to_Prep 1.9957092251658934e-5 +in_particular_Adv 1.5604140298559218e-4 +in_patient_N 3.729715012475897e-6 +in_place_of_Prep 4.9892730629147335e-5 +in_point_of_Prep 2.99356383774884e-5 +in_service_A 1.0773191989054437e-5 +in_situ_Adv 8.668966832532898e-6 +in_spite_of_Prep 8.98069151324652e-5 +in_toto_Adv 5.201380099519739e-4 +in_tray_N 3.729715012475897e-6 +inability_N 4.848629516218666e-5 +inaccessibility_N 3.729715012475897e-6 +inaccessible_A 3.231957596716331e-5 +inaccuracy_N 7.459430024951794e-6 +inaccurate_A 1.1850511187959881e-4 +inaction_N 7.459430024951794e-6 +inactivate_V2 1.609865254278217e-5 +inactivation_N 3.729715012475897e-6 +inactive_A 1.0773191989054437e-5 +inactiveness_N 3.729715012475897e-6 +inactivity_N 3.729715012475897e-6 +inadequacy_N 1.4918860049903587e-5 +inadequate_A 2.046906477920343e-4 +inadmissibility_N 3.729715012475897e-6 +inadmissible_A 1.0773191989054437e-5 +inadvertence_N 7.459430024951794e-6 +inadvertent_A 3.231957596716331e-5 +inadvisability_N 3.729715012475897e-6 +inadvisable_A 1.0773191989054437e-5 +inaesthetic_A 1.0773191989054437e-5 +inalienable_A 1.0773191989054437e-5 +inamorata_N 3.729715012475897e-6 +inamorato_N 3.729715012475897e-6 +inane_A 1.0773191989054437e-5 +inanimate_A 1.0773191989054437e-5 +inanimateness_N 3.729715012475897e-6 +inanition_N 3.729715012475897e-6 +inanity_N 3.729715012475897e-6 +inapplicability_N 3.729715012475897e-6 +inapplicable_A 1.0773191989054437e-5 +inapposite_A 1.0773191989054437e-5 +inappreciable_A 1.0773191989054437e-5 +inappropriate_A 1.4005149585770768e-4 +inappropriateness_N 3.729715012475897e-6 +inapt_A 1.0773191989054437e-5 +inaptitude_N 3.729715012475897e-6 +inaptness_N 3.729715012475897e-6 +inarguable_A 1.0773191989054437e-5 +inarticulate_A 1.0773191989054437e-5 +inartistic_A 1.0773191989054437e-5 +inasmuch_as_Adv 6.076945749605562e-3 +inattention_N 7.459430024951794e-6 +inattentive_A 1.0773191989054437e-5 +inattentiveness_N 3.729715012475897e-6 +inaudibility_N 3.729715012475897e-6 +inaudible_A 1.0773191989054437e-5 +inaugural_A 2.1546383978108874e-5 +inaugural_N 3.729715012475897e-6 +inaugurate_V2 3.219730508556434e-5 +inauguration_N 7.459430024951794e-6 +inauspicious_A 2.1546383978108874e-5 +inauspiciousness_N 3.729715012475897e-6 +inauthentic_A 1.0773191989054437e-5 +inboard_A 1.0773191989054437e-5 +inborn_A 1.0773191989054437e-5 +inbound_A 2.1546383978108874e-5 +inbred_A 1.0773191989054437e-5 +inbreeding_N 3.729715012475897e-6 +inbuilt_A 1.0773191989054437e-5 +inc_PN 1.865462821325971e-5 +incalculable_A 2.1546383978108874e-5 +incandescence_N 3.729715012475897e-6 +incandescent_A 1.0773191989054437e-5 +incantation_N 3.729715012475897e-6 +incapability_N 3.729715012475897e-6 +incapable_A 6.463915193432663e-5 +incapacitate_V2 1.609865254278217e-5 +incapacity_N 3.729715012475897e-6 +incarcerate_V2 3.219730508556434e-5 +incarceration_N 3.729715012475897e-6 +incarnate_A 1.0773191989054437e-5 +incarnate_V2 1.609865254278217e-5 +incarnation_N 3.729715012475897e-6 +incaution_N 3.729715012475897e-6 +incautious_A 1.0773191989054437e-5 +incendiarism_N 3.729715012475897e-6 +incendiary_A 2.1546383978108874e-5 +incendiary_N 3.729715012475897e-6 +incense_N 1.118914503742769e-5 +incense_V2 1.609865254278217e-5 +incentive_N 2.4616119082340916e-4 +inception_N 2.6108005087331277e-5 +incertitude_N 3.729715012475897e-6 +incessant_A 2.1546383978108874e-5 +incest_N 8.578344528694562e-5 +incestuous_A 1.0773191989054437e-5 +inch_N 7.832401526199384e-5 +inch_V 4.308976277951649e-4 +inch_V2 1.609865254278217e-5 +inch_up_V 2.2678822515534993e-5 +inchoate_A 1.0773191989054437e-5 +inchoative_A 1.0773191989054437e-5 +inchoative_N 3.729715012475897e-6 +inchon_PN 1.865462821325971e-5 +incidence_N 1.118914503742769e-5 +incident_A 1.0773191989054437e-5 +incident_N 8.951316029942152e-5 +incidental_A 3.231957596716331e-5 +incidental_N 3.729715012475897e-6 +incinerate_V2 1.609865254278217e-5 +incineration_N 7.459430024951794e-6 +incinerator_N 3.729715012475897e-5 +incipiency_N 3.729715012475897e-6 +incipient_A 1.0773191989054437e-5 +incise_V2 1.609865254278217e-5 +incision_N 1.118914503742769e-5 +incisive_A 1.0773191989054437e-5 +incisiveness_N 3.729715012475897e-6 +incisor_N 3.729715012475897e-6 +incisure_N 3.729715012475897e-6 +incitation_N 3.729715012475897e-6 +incite_V2 3.219730508556434e-5 +incitement_N 3.729715012475897e-6 +incivility_N 3.729715012475897e-6 +incl_PN 1.865462821325971e-5 +inclemency_N 3.729715012475897e-6 +inclement_A 1.0773191989054437e-5 +inclination_N 2.6108005087331277e-5 +incline_N 3.729715012475897e-6 +incline_V 1.3607293509320997e-4 +incline_V2 3.219730508556434e-5 +incline_V2V 9.350163627863488e-4 +inclinometer_N 3.729715012475897e-6 +inclose_V2 1.609865254278217e-5 +inclosure_N 3.729715012475897e-6 +include_V 1.1362090080283032e-2 +include_V2 9.482106347698697e-3 +include_VV 1.3453776667307323e-3 +inclusion_N 2.237829007485538e-5 +inclusive_A 1.0773191989054437e-5 +incognito_A 1.0773191989054437e-5 +incognito_Adv 8.668966832532898e-6 +incognizable_A 1.0773191989054437e-5 +incognizance_N 3.729715012475897e-6 +incoherence_N 3.729715012475897e-6 +incoherent_A 2.1546383978108874e-5 +incombustible_A 1.0773191989054437e-5 +income_N 2.1595049922235442e-3 +income_tax_N 3.729715012475897e-6 +incoming_A 3.231957596716331e-5 +incommensurable_A 1.0773191989054437e-5 +incommensurate_A 1.0773191989054437e-5 +incommode_V2 1.609865254278217e-5 +incommodious_A 1.0773191989054437e-5 +incommunicado_A 1.0773191989054437e-5 +incommutability_N 3.729715012475897e-6 +incommutable_A 1.0773191989054437e-5 +incomparable_A 1.0773191989054437e-5 +incompatibility_N 7.459430024951794e-6 +incompatible_A 3.231957596716331e-5 +incompetence_N 2.237829007485538e-5 +incompetency_N 7.459430024951794e-6 +incompetent_A 7.541234392338106e-5 +incompetent_N 3.729715012475897e-6 +incomplete_A 1.0773191989054437e-4 +incompleteness_N 3.729715012475897e-6 +incomprehensibility_N 3.729715012475897e-6 +incomprehensible_A 1.0773191989054437e-5 +incomprehension_N 3.729715012475897e-6 +incompressibility_N 3.729715012475897e-6 +incompressible_A 1.0773191989054437e-5 +incomputable_A 1.0773191989054437e-5 +inconceivability_N 3.729715012475897e-6 +inconceivable_A 5.3865959945272184e-5 +inconclusive_A 3.231957596716331e-5 +inconclusiveness_N 3.729715012475897e-6 +incongruent_A 1.0773191989054437e-5 +incongruity_N 7.459430024951794e-6 +incongruous_A 1.0773191989054437e-5 +inconsequence_N 3.729715012475897e-6 +inconsequent_A 1.0773191989054437e-5 +inconsequential_A 1.0773191989054437e-5 +inconsiderable_A 2.1546383978108874e-5 +inconsiderate_A 1.0773191989054437e-5 +inconsideration_N 3.729715012475897e-6 +inconsistency_N 1.118914503742769e-5 +inconsistent_A 3.231957596716331e-5 +inconsolable_A 1.0773191989054437e-5 +inconspicuous_A 1.0773191989054437e-5 +inconspicuousness_N 3.729715012475897e-6 +inconstancy_N 3.729715012475897e-6 +inconstant_A 1.0773191989054437e-5 +incontestable_A 1.0773191989054437e-5 +incontinence_N 3.729715012475897e-6 +incontinent_A 1.0773191989054437e-5 +incontrovertibility_N 3.729715012475897e-6 +incontrovertible_A 1.0773191989054437e-5 +inconvenience_N 1.118914503742769e-5 +inconvenience_V2 1.609865254278217e-5 +inconvenient_A 2.1546383978108874e-5 +inconvertibility_N 3.729715012475897e-6 +inconvertible_A 1.0773191989054437e-5 +incoordination_N 3.729715012475897e-6 +incorporate_A 1.0773191989054437e-5 +incorporate_V 1.3607293509320997e-4 +incorporate_V2 2.2538113559895037e-4 +incorporation_N 3.729715012475897e-6 +incorporative_A 1.0773191989054437e-5 +incorporeal_A 1.0773191989054437e-5 +incorrect_A 1.9391745580297985e-4 +incorrectness_N 3.729715012475897e-6 +incorrigible_A 1.0773191989054437e-5 +incorrupt_A 1.0773191989054437e-5 +incorruptibility_N 3.729715012475897e-6 +incorruptible_A 1.0773191989054437e-5 +incorruptness_N 3.729715012475897e-6 +increase_N 1.7193986207513885e-3 +increase_V 4.966662130902163e-3 +increase_V2 6.584348889997907e-3 +increasingly_AdA 8.113590263691683e-3 +increasingly_AdV 2.3387253946599105e-3 +increasingly_Adv 3.7276557379891463e-4 +incredibility_N 3.729715012475897e-6 +incredible_A 1.0773191989054437e-4 +incredulity_N 3.729715012475897e-6 +incredulous_A 1.0773191989054437e-5 +increment_N 1.8648575062379485e-5 +incremental_A 3.231957596716331e-5 +incriminate_V2 3.219730508556434e-5 +incriminatingly_Adv 8.668966832532898e-6 +incrimination_N 3.729715012475897e-6 +incrustation_N 3.729715012475897e-6 +incubate_V 2.2678822515534993e-5 +incubate_V2 1.609865254278217e-5 +incubation_N 3.729715012475897e-6 +incubator_N 3.729715012475897e-6 +incubus_N 3.729715012475897e-6 +inculcate_V2 1.609865254278217e-5 +inculcation_N 3.729715012475897e-6 +inculpate_V2 1.609865254278217e-5 +inculpatory_A 1.0773191989054437e-5 +incumbency_N 7.459430024951794e-6 +incumbent_A 7.541234392338106e-5 +incumbent_N 1.118914503742769e-5 +incur_V2 5.151568813690294e-4 +incurability_N 3.729715012475897e-6 +incurable_A 1.0773191989054437e-5 +incurable_N 3.729715012475897e-6 +incurious_A 1.0773191989054437e-5 +incurrence_N 3.729715012475897e-6 +incurring_N 3.729715012475897e-6 +incursion_N 1.118914503742769e-5 +incursive_A 1.0773191989054437e-5 +incurvate_A 1.0773191989054437e-5 +incurvation_N 3.729715012475897e-6 +incurved_A 1.0773191989054437e-5 +incus_N 3.729715012475897e-6 +indaba_N 3.729715012475897e-6 +indapamide_N 3.729715012475897e-6 +indebted_A 4.309276795621775e-5 +indebtedness_N 1.118914503742769e-5 +indecency_N 3.729715012475897e-6 +indecent_A 1.0773191989054437e-5 +indecipherable_A 2.1546383978108874e-5 +indecision_N 3.729715012475897e-6 +indecisive_A 2.1546383978108874e-5 +indecisiveness_N 3.729715012475897e-6 +indecorous_A 1.0773191989054437e-5 +indecorum_N 3.729715012475897e-6 +indeed_AdV 2.1438316117715845e-3 +indeed_Adv 9.102415174159544e-4 +indefatigability_N 3.729715012475897e-6 +indefatigable_A 1.0773191989054437e-5 +indefeasible_A 1.0773191989054437e-5 +indefensible_A 1.0773191989054437e-5 +indefinable_A 1.0773191989054437e-5 +indefinite_A 1.4005149585770768e-4 +indefiniteness_N 3.729715012475897e-6 +indehiscent_A 1.0773191989054437e-5 +indelible_A 3.231957596716331e-5 +indelicacy_N 3.729715012475897e-6 +indelicate_A 1.0773191989054437e-5 +indemnification_N 7.459430024951794e-6 +indemnify_V2 3.219730508556434e-5 +indemnity_N 3.729715012475897e-6 +indene_N 3.729715012475897e-6 +indent_N 3.729715012475897e-6 +indent_V 2.2678822515534993e-5 +indent_V2 1.609865254278217e-5 +indentation_N 3.729715012475897e-6 +indenture_N 7.459430024951794e-6 +indenture_V2 1.609865254278217e-5 +independence_N 8.578344528694562e-5 +independent_A 1.4974736864785667e-3 +independent_N 1.4918860049903587e-5 +indescribable_A 1.0773191989054437e-5 +indestructibility_N 7.459430024951794e-6 +indestructible_A 1.0773191989054437e-5 +indeterminable_A 2.1546383978108874e-5 +indeterminacy_N 3.729715012475897e-6 +indeterminate_A 2.1546383978108874e-5 +index_N 2.0923701219989783e-3 +index_V2 6.439461017112868e-5 +indexation_N 3.729715012475897e-6 +indexer_N 2.9837720099807175e-5 +indexical_A 1.0773191989054437e-5 +indexing_N 3.729715012475897e-6 +indexless_A 1.0773191989054437e-5 +india_PN 7.461851285303884e-4 +india_rubber_N 3.729715012475897e-6 +indiaman_N 3.729715012475897e-6 +indian_A 2.47783415748252e-4 +indian_N 7.459430024951794e-6 +indiana_PN 1.4923702570607768e-4 +indianapolis_PN 1.865462821325971e-4 +indicate_V 4.762552728262349e-4 +indicate_V2 1.2234975932514448e-3 +indicate_VS 6.988967827643967e-3 +indication_N 2.3124233077350558e-4 +indicative_A 5.3865959945272184e-5 +indicator_N 2.16323470723602e-4 +indict_V 2.2678822515534994e-4 +indict_V2 1.9318383051338602e-4 +indictable_A 1.0773191989054437e-5 +indiction_N 3.729715012475897e-6 +indictment_N 1.2308059541170458e-4 +indie_A 1.0773191989054437e-5 +indie_N 3.729715012475897e-6 +indies_PN 1.865462821325971e-5 +indifference_N 1.8648575062379485e-5 +indifferent_A 4.309276795621775e-5 +indigence_N 3.729715012475897e-6 +indigenous_A 1.0773191989054437e-5 +indigenousness_N 3.729715012475897e-6 +indigent_A 1.0773191989054437e-5 +indigestibility_N 3.729715012475897e-6 +indigestible_A 1.0773191989054437e-5 +indigestion_N 3.729715012475897e-6 +indignant_A 1.0773191989054437e-5 +indignation_N 7.459430024951794e-6 +indignity_N 7.459430024951794e-6 +indigo_A 1.0773191989054437e-5 +indigo_N 3.729715012475897e-6 +indinavir_N 3.729715012475897e-6 +indirect_A 2.3701022375919762e-4 +indirection_N 3.729715012475897e-6 +indirectness_N 7.459430024951794e-6 +indiscernible_A 1.0773191989054437e-5 +indiscipline_N 3.729715012475897e-6 +indiscreet_A 1.0773191989054437e-5 +indiscrete_A 1.0773191989054437e-5 +indiscretion_N 3.729715012475897e-6 +indiscriminate_A 1.0773191989054437e-5 +indispensability_N 7.459430024951794e-6 +indispensable_A 2.1546383978108874e-5 +indisposed_A 1.0773191989054437e-5 +indisposition_N 3.729715012475897e-6 +indisputability_N 3.729715012475897e-6 +indisputable_A 1.0773191989054437e-5 +indissoluble_A 1.0773191989054437e-5 +indistinct_A 1.0773191989054437e-5 +indistinctness_N 3.729715012475897e-6 +indistinguishable_A 3.231957596716331e-5 +indite_V2 1.609865254278217e-5 +indium_N 3.729715012475897e-6 +individual_A 1.52979326244573e-3 +individual_N 4.7367380658443886e-4 +individualism_N 3.729715012475897e-6 +individualist_A 1.0773191989054437e-5 +individualist_N 3.729715012475897e-6 +individualistic_A 1.0773191989054437e-5 +individualistically_Adv 8.668966832532898e-6 +individuality_N 3.729715012475897e-6 +individualization_N 3.729715012475897e-6 +individualize_V2 1.609865254278217e-5 +indivisible_A 1.0773191989054437e-5 +indo_european_A 1.0773191989054437e-5 +indocile_A 1.0773191989054437e-5 +indoctrinate_V2 3.219730508556434e-5 +indoctrination_N 3.729715012475897e-6 +indolence_N 3.729715012475897e-6 +indolent_A 1.0773191989054437e-5 +indomethacin_N 3.729715012475897e-6 +indomitability_N 3.729715012475897e-6 +indomitable_A 3.231957596716331e-5 +indonesia_PN 2.052009103458568e-4 +indonesian_A 2.1546383978108874e-5 +indonesian_N 3.729715012475897e-6 +indoor_A 5.3865959945272184e-5 +indoors_Adv 8.668966832532898e-6 +indore_PN 1.865462821325971e-5 +indorse_V2 1.609865254278217e-5 +indrawn_A 1.0773191989054437e-5 +indri_N 3.729715012475897e-6 +indubitable_A 1.0773191989054437e-5 +induce_V2 2.2538113559895037e-4 +induce_V2V 2.3375409069658717e-3 +inducement_N 1.118914503742769e-5 +inducer_N 3.729715012475897e-6 +induct_V2 1.609865254278217e-5 +inductee_N 3.729715012475897e-6 +induction_N 3.729715012475897e-6 +inductive_A 1.0773191989054437e-5 +inductor_N 3.729715012475897e-6 +indue_V2 1.609865254278217e-5 +indulge_V 9.071529006213997e-5 +indulge_V2 3.219730508556434e-5 +indulgence_N 1.4918860049903587e-5 +indulgent_A 1.0773191989054437e-5 +indumentum_N 3.729715012475897e-6 +indusial_A 1.0773191989054437e-5 +indusium_N 3.729715012475897e-6 +industrial_A 1.8098962541611453e-3 +industrialism_N 3.729715012475897e-6 +industrialist_N 2.6108005087331277e-5 +industrialization_N 7.459430024951794e-6 +industrialize_V2 1.4488787288503951e-4 +industrious_A 1.0773191989054437e-5 +industry_N 2.8756102746189164e-3 +indweller_N 3.729715012475897e-6 +indwelling_A 1.0773191989054437e-5 +inebriate_A 1.0773191989054437e-5 +inebriate_N 3.729715012475897e-6 +inebriate_V2 1.609865254278217e-5 +inebriation_N 3.729715012475897e-6 +inebriety_N 3.729715012475897e-6 +inedible_A 2.1546383978108874e-5 +ineffable_A 2.1546383978108874e-5 +ineffective_A 3.231957596716331e-5 +ineffectiveness_N 7.459430024951794e-6 +ineffectual_A 2.1546383978108874e-5 +ineffectuality_N 3.729715012475897e-6 +inefficacious_A 1.0773191989054437e-5 +inefficacy_N 3.729715012475897e-6 +inefficiency_N 2.9837720099807175e-5 +inefficient_A 1.1850511187959881e-4 +inelaborate_A 1.0773191989054437e-5 +inelastic_A 1.0773191989054437e-5 +inelasticity_N 3.729715012475897e-6 +inelegance_N 3.729715012475897e-6 +inelegant_A 1.0773191989054437e-5 +ineligibility_N 3.729715012475897e-6 +ineligible_A 1.0773191989054437e-5 +ineloquently_Adv 8.668966832532898e-6 +ineluctability_N 3.729715012475897e-6 +ineluctable_A 1.0773191989054437e-5 +inept_A 5.3865959945272184e-5 +ineptitude_N 1.4918860049903587e-5 +inequality_N 1.4918860049903587e-5 +inequitable_A 2.1546383978108874e-5 +inequity_N 1.4918860049903587e-5 +ineradicable_A 1.0773191989054437e-5 +inerrable_A 1.0773191989054437e-5 +inerrancy_N 3.729715012475897e-6 +inert_A 1.0773191989054437e-5 +inertia_N 7.459430024951794e-6 +inertial_A 1.0773191989054437e-5 +inertness_N 3.729715012475897e-6 +inescapable_A 2.1546383978108874e-5 +inessential_A 1.0773191989054437e-5 +inessential_N 3.729715012475897e-6 +inessentiality_N 3.729715012475897e-6 +inestimable_A 1.0773191989054437e-5 +inevitability_N 7.459430024951794e-6 +inevitable_A 2.3701022375919762e-4 +inevitable_N 3.729715012475897e-6 +inexact_A 1.0773191989054437e-5 +inexactitude_N 3.729715012475897e-6 +inexactness_N 3.729715012475897e-6 +inexcusable_A 2.1546383978108874e-5 +inexhaustible_A 2.1546383978108874e-5 +inexorable_A 6.463915193432663e-5 +inexpedience_N 3.729715012475897e-6 +inexpediency_N 3.729715012475897e-6 +inexpedient_A 1.0773191989054437e-5 +inexpensive_A 5.3865959945272184e-5 +inexpensiveness_N 3.729715012475897e-6 +inexperience_N 7.459430024951794e-6 +inexperienced_A 4.309276795621775e-5 +inexpert_A 1.0773191989054437e-5 +inexpiable_A 1.0773191989054437e-5 +inexplicable_A 6.463915193432663e-5 +inexplicitness_N 3.729715012475897e-6 +inexpressible_A 1.0773191989054437e-5 +inexpressive_A 1.0773191989054437e-5 +inexpungible_A 1.0773191989054437e-5 +inexterminable_A 1.0773191989054437e-5 +inextinguishable_A 1.0773191989054437e-5 +inextricable_A 2.1546383978108874e-5 +infallibility_N 3.729715012475897e-6 +infallible_A 1.0773191989054437e-5 +infamous_A 5.3865959945272184e-5 +infamy_N 7.459430024951794e-6 +infancy_N 7.459430024951794e-6 +infant_N 2.9837720099807175e-5 +infanticide_N 3.729715012475897e-6 +infantile_A 2.1546383978108874e-5 +infantilism_N 3.729715012475897e-6 +infantry_N 1.118914503742769e-5 +infantryman_N 3.729715012475897e-6 +infarct_N 3.729715012475897e-6 +infatuate_V2 1.609865254278217e-5 +infatuation_N 3.729715012475897e-6 +infeasibility_N 3.729715012475897e-6 +infect_V 4.5357645031069986e-5 +infect_V2 2.092824830561682e-4 +infection_N 3.356743511228307e-5 +infectious_A 4.309276795621775e-5 +infective_A 1.0773191989054437e-5 +infelicitous_A 1.0773191989054437e-5 +infelicity_N 3.729715012475897e-6 +infer_V2 3.219730508556434e-5 +inference_N 3.356743511228307e-5 +inferential_A 1.0773191989054437e-5 +inferior_A 4.309276795621775e-5 +inferior_N 3.729715012475897e-6 +inferiority_N 3.729715012475897e-6 +infernal_A 1.0773191989054437e-5 +infernal_N 3.729715012475897e-6 +inferno_N 7.459430024951794e-6 +infertile_A 2.1546383978108874e-5 +infertility_N 1.118914503742769e-5 +infest_V2 3.219730508556434e-5 +infestation_N 7.459430024951794e-6 +infidel_N 3.729715012475897e-6 +infidelity_N 1.118914503742769e-5 +infield_N 3.729715012475897e-6 +infielder_N 3.729715012475897e-6 +infiltrate_V 2.2678822515534993e-5 +infiltrate_V2 6.439461017112868e-5 +infiltration_N 3.729715012475897e-6 +infiltrator_N 3.729715012475897e-6 +infinite_A 2.1546383978108874e-5 +infiniteness_N 3.729715012475897e-6 +infinitesimal_A 1.0773191989054437e-5 +infinitesimal_N 3.729715012475897e-6 +infinitival_A 1.0773191989054437e-5 +infinitive_A 1.0773191989054437e-5 +infinitive_N 3.729715012475897e-6 +infinitude_N 3.729715012475897e-6 +infinity_N 3.729715012475897e-6 +infirm_A 1.0773191989054437e-5 +infirmary_N 3.729715012475897e-6 +infirmity_N 3.729715012475897e-6 +infix_N 3.729715012475897e-6 +inflame_V 2.2678822515534993e-5 +inflame_V2 3.219730508556434e-5 +inflammable_A 1.0773191989054437e-5 +inflammation_N 3.729715012475897e-6 +inflammatory_A 5.3865959945272184e-5 +inflatable_A 1.0773191989054437e-5 +inflate_V 1.5875175760874494e-4 +inflate_V2 1.4488787288503951e-4 +inflater_N 3.729715012475897e-6 +inflation_N 7.645915775575589e-4 +inflationary_A 6.463915193432663e-5 +inflect_V2 1.609865254278217e-5 +inflection_N 3.729715012475897e-6 +inflectional_A 1.0773191989054437e-5 +inflexibility_N 3.729715012475897e-6 +inflexible_A 1.0773191989054437e-5 +inflexion_N 3.729715012475897e-6 +inflict_V2 1.1269056779947518e-4 +infliction_N 3.729715012475897e-6 +infliximab_N 3.729715012475897e-6 +inflorescence_N 3.729715012475897e-6 +inflow_N 5.2216010174662554e-5 +inflowing_A 1.0773191989054437e-5 +influence_N 1.8648575062379482e-4 +influence_V2 4.8295957628346505e-4 +influential_A 1.9391745580297985e-4 +influenza_N 7.459430024951794e-6 +influx_N 2.9837720099807175e-5 +info_N 3.729715012475897e-6 +infomercial_N 3.729715012475897e-6 +inform_V 4.535764503106999e-4 +inform_V2 2.4147978814173252e-4 +informal_A 2.1546383978108874e-4 +informality_N 3.729715012475897e-6 +informant_N 3.729715012475897e-6 +information_N 8.242670177571732e-4 +informational_A 1.0773191989054437e-5 +informative_A 3.231957596716331e-5 +informer_N 3.729715012475897e-6 +informing_N 3.729715012475897e-6 +infra_Adv 8.668966832532898e-6 +infra_dig_A 1.0773191989054437e-5 +infra_red_A 1.0773191989054437e-5 +infraction_N 7.459430024951794e-6 +infrahuman_A 1.0773191989054437e-5 +infrangible_A 1.0773191989054437e-5 +infrared_A 1.0773191989054437e-5 +infrared_N 3.729715012475897e-6 +infrasonic_A 1.0773191989054437e-5 +infrastructure_N 5.2216010174662554e-5 +infrequency_N 3.729715012475897e-6 +infrequent_A 3.231957596716331e-5 +infringe_V 2.4946704767088494e-4 +infringe_V2 1.1269056779947518e-4 +infringement_N 3.729715012475897e-5 +infructescence_N 3.729715012475897e-6 +infundibulum_N 3.729715012475897e-6 +infuriate_V2 4.8295957628346505e-5 +infuriation_N 3.729715012475897e-6 +infuse_V 4.5357645031069986e-5 +infuse_V2 4.8295957628346505e-5 +infusion_N 1.8648575062379485e-5 +infusorian_N 3.729715012475897e-6 +inga_N 3.729715012475897e-6 +ingatestone_PN 1.865462821325971e-5 +ingathering_N 3.729715012475897e-6 +ingenious_A 4.309276795621775e-5 +ingenue_N 3.729715012475897e-6 +ingenuity_N 7.459430024951794e-6 +ingenuous_A 1.0773191989054437e-5 +ingenuousness_N 3.729715012475897e-6 +ingest_V2 3.219730508556434e-5 +ingesta_N 3.729715012475897e-6 +ingle_nook_N 3.729715012475897e-6 +inglorious_A 1.0773191989054437e-5 +ingoing_A 1.0773191989054437e-5 +ingot_N 2.237829007485538e-5 +ingraft_V2 1.609865254278217e-5 +ingrained_A 2.1546383978108874e-5 +ingrate_N 3.729715012475897e-6 +ingratiate_V2 3.219730508556434e-5 +ingratiating_A 1.0773191989054437e-5 +ingratiation_N 3.729715012475897e-6 +ingratitude_N 3.729715012475897e-6 +ingredient_N 3.729715012475897e-5 +ingress_N 3.729715012475897e-6 +ingrid_PN 1.865462821325971e-5 +ingrowing_A 1.0773191989054437e-5 +ingrowth_N 3.729715012475897e-6 +inguinal_A 1.0773191989054437e-5 +inhabit_V2 6.439461017112868e-5 +inhabitable_A 1.0773191989054437e-5 +inhabitancy_N 3.729715012475897e-6 +inhabitant_N 3.729715012475897e-6 +inhalant_A 1.0773191989054437e-5 +inhalant_N 3.729715012475897e-6 +inhalation_N 3.729715012475897e-6 +inhale_V 2.2678822515534993e-5 +inhale_V2 1.609865254278217e-5 +inhaler_N 3.729715012475897e-6 +inharmonious_A 1.0773191989054437e-5 +inherence_N 3.729715012475897e-6 +inherent_A 1.2927830386865325e-4 +inherit_V 6.803646754660499e-5 +inherit_V2 1.609865254278217e-4 +inheritable_A 1.0773191989054437e-5 +inheritance_N 1.4918860049903587e-5 +inheritor_N 1.118914503742769e-5 +inhibit_V2 1.7708517797060386e-4 +inhibition_N 3.729715012475897e-6 +inhibitor_N 3.729715012475897e-6 +inhibitory_A 1.0773191989054437e-5 +inhomogeneity_N 3.729715012475897e-6 +inhomogeneous_A 1.0773191989054437e-5 +inhospitable_A 2.1546383978108874e-5 +inhospitableness_N 3.729715012475897e-6 +inhospitality_N 3.729715012475897e-6 +inhuman_A 2.1546383978108874e-5 +inhumane_A 2.1546383978108874e-5 +inhumaneness_N 3.729715012475897e-6 +inhumanity_N 3.729715012475897e-6 +inimical_A 1.0773191989054437e-5 +inimitable_A 1.0773191989054437e-5 +inion_N 3.729715012475897e-6 +iniquitous_A 1.0773191989054437e-5 +iniquity_N 3.729715012475897e-6 +initial_A 1.8529890221173633e-3 +initial_N 1.118914503742769e-5 +initial_V2 1.609865254278217e-5 +initiate_A 1.0773191989054437e-5 +initiate_N 7.459430024951794e-6 +initiate_V2 2.8977574577007903e-4 +initiation_N 7.459430024951794e-6 +initiative_N 2.387017607984574e-4 +inject_V2 2.4147978814173252e-4 +injectable_A 1.0773191989054437e-5 +injection_N 4.848629516218666e-5 +injector_N 3.729715012475897e-6 +injudicious_A 1.0773191989054437e-5 +injudiciousness_N 3.729715012475897e-6 +injunction_N 9.324287531189741e-5 +injure_V2 4.8295957628346505e-4 +injurious_A 1.0773191989054437e-5 +injury_N 1.4918860049903588e-4 +injustice_N 1.4918860049903587e-5 +ink_N 4.848629516218666e-5 +ink_V2 1.609865254278217e-5 +ink_bottle_N 3.729715012475897e-6 +ink_pad_N 3.729715012475897e-6 +ink_pot_N 3.729715012475897e-6 +inkberry_N 3.729715012475897e-6 +inkblot_N 3.729715012475897e-6 +inkle_N 3.729715012475897e-6 +inkling_N 1.8648575062379485e-5 +inkstand_N 3.729715012475897e-6 +inkwell_N 3.729715012475897e-6 +inky_A 1.0773191989054437e-5 +inland_A 1.0773191989054437e-5 +inland_Adv 2.6006900497598697e-5 +inlay_N 7.459430024951794e-6 +inlay_V2 1.609865254278217e-5 +inlet_N 3.729715012475897e-6 +inmate_N 2.237829007485538e-5 +inmost_A 1.0773191989054437e-5 +inn_N 7.459430024951794e-6 +innate_A 2.1546383978108874e-5 +innateness_N 3.729715012475897e-6 +inner_A 1.4005149585770768e-4 +innermost_A 1.0773191989054437e-5 +innervation_N 3.729715012475897e-6 +inning_N 2.6108005087331277e-5 +innings_N 1.8648575062379485e-5 +innkeeper_N 3.729715012475897e-6 +innocence_N 1.118914503742769e-5 +innocency_N 3.729715012475897e-6 +innocent_A 1.508246878467621e-4 +innocent_N 1.118914503742769e-5 +innocuous_A 1.0773191989054437e-5 +innovate_V 4.5357645031069986e-5 +innovate_V2 3.219730508556434e-5 +innovation_N 5.2216010174662554e-5 +innovative_A 1.0773191989054437e-5 +innovativeness_N 3.729715012475897e-6 +innovator_N 1.118914503742769e-5 +innoxious_A 1.0773191989054437e-5 +innsbruck_PN 1.865462821325971e-5 +innuendo_N 1.118914503742769e-5 +innumerable_A 2.1546383978108874e-5 +innumerableness_N 3.729715012475897e-6 +innumerate_A 1.0773191989054437e-5 +inoculant_N 3.729715012475897e-6 +inoculate_V2 1.609865254278217e-5 +inoculating_N 3.729715012475897e-6 +inoculation_N 3.729715012475897e-6 +inoculator_N 3.729715012475897e-6 +inoffensive_A 1.0773191989054437e-5 +inoperable_A 2.1546383978108874e-5 +inoperative_A 2.1546383978108874e-5 +inopportune_A 1.0773191989054437e-5 +inopportuneness_N 3.729715012475897e-6 +inordinate_A 1.0773191989054437e-5 +inorganic_A 1.0773191989054437e-5 +inorganically_Adv 8.668966832532898e-6 +inosine_N 3.729715012475897e-6 +inositol_N 3.729715012475897e-6 +inpatient_N 3.729715012475897e-6 +inpouring_A 1.0773191989054437e-5 +inpouring_N 3.729715012475897e-6 +input_N 3.356743511228307e-5 +inquest_N 3.729715012475897e-6 +inquietude_N 3.729715012475897e-6 +inquire_V 1.1339411257767497e-4 +inquire_V2 1.609865254278217e-5 +inquirer_N 3.729715012475897e-6 +inquiringly_Adv 8.668966832532898e-6 +inquiry_N 1.6783717556141534e-4 +inquisition_N 3.729715012475897e-6 +inquisitive_A 1.0773191989054437e-5 +inquisitiveness_N 3.729715012475897e-6 +inquisitor_N 3.729715012475897e-6 +inquisitorial_A 1.0773191989054437e-5 +inquisitory_A 1.0773191989054437e-5 +inroad_N 7.459430024951794e-6 +inrush_N 3.729715012475897e-6 +insalubrious_A 1.0773191989054437e-5 +insalubrity_N 3.729715012475897e-6 +insane_A 3.231957596716331e-5 +insanitary_A 1.0773191989054437e-5 +insanity_N 1.118914503742769e-5 +insatiable_A 2.1546383978108874e-5 +insatiate_A 1.0773191989054437e-5 +inscribe_V2 1.609865254278217e-5 +inscription_N 7.459430024951794e-6 +inscriptive_A 1.0773191989054437e-5 +inscrutability_N 3.729715012475897e-6 +inscrutable_A 1.0773191989054437e-5 +insect_N 1.4918860049903587e-5 +insect_powder_N 3.729715012475897e-6 +insectan_A 1.0773191989054437e-5 +insecticidal_A 1.0773191989054437e-5 +insecticide_N 3.729715012475897e-6 +insectifuge_N 3.729715012475897e-6 +insectivore_N 3.729715012475897e-6 +insectivorous_A 1.0773191989054437e-5 +insecure_A 2.1546383978108874e-5 +insecureness_N 3.729715012475897e-6 +insecurity_N 3.729715012475897e-6 +inseminate_V2 1.609865254278217e-5 +insemination_N 3.729715012475897e-6 +insensate_A 1.0773191989054437e-5 +insensibility_N 3.729715012475897e-6 +insensible_A 1.0773191989054437e-5 +insensitive_A 2.1546383978108874e-5 +insensitivity_N 7.459430024951794e-6 +insentience_N 3.729715012475897e-6 +insentient_A 1.0773191989054437e-5 +inseparable_A 2.1546383978108874e-5 +insert_N 1.8648575062379485e-5 +insert_V2 1.4488787288503951e-4 +insertion_N 3.729715012475897e-6 +inset_N 3.729715012475897e-6 +inset_V2 1.609865254278217e-5 +inshore_A 1.0773191989054437e-5 +inshore_Adv 8.668966832532898e-6 +inside_A 6.463915193432663e-5 +inside_Adv 7.802070149279609e-5 +inside_N 1.4918860049903587e-5 +inside_Prep 2.7939929152322505e-4 +inside_of_Prep 9.978546125829467e-6 +insider_N 1.5664803052398767e-4 +insidious_A 3.231957596716331e-5 +insidiousness_N 3.729715012475897e-6 +insight_N 1.4918860049903587e-5 +insightful_A 1.0773191989054437e-5 +insightfulness_N 3.729715012475897e-6 +insignia_N 3.729715012475897e-6 +insignificance_N 3.729715012475897e-6 +insignificant_A 3.231957596716331e-5 +insincere_A 1.0773191989054437e-5 +insincerity_N 3.729715012475897e-6 +insinuate_V2 1.609865254278217e-5 +insinuatingly_Adv 8.668966832532898e-6 +insinuation_N 3.729715012475897e-6 +insipid_A 1.0773191989054437e-5 +insipidity_N 3.729715012475897e-6 +insipidness_N 3.729715012475897e-6 +insist_V 7.937587880437248e-4 +insist_V2 1.609865254278217e-5 +insist_VS 4.505285045919251e-3 +insistence_N 3.729715012475897e-5 +insistent_A 2.1546383978108874e-5 +insofar_Adv 2.6006900497598697e-5 +insolation_N 3.729715012475897e-6 +insole_N 3.729715012475897e-6 +insolence_N 3.729715012475897e-6 +insolent_A 1.0773191989054437e-5 +insolubility_N 3.729715012475897e-6 +insoluble_A 1.0773191989054437e-5 +insolvable_A 1.0773191989054437e-5 +insolvency_N 1.118914503742769e-5 +insolvent_A 1.8314426381392542e-4 +insolvent_N 3.729715012475897e-6 +insomnia_N 3.729715012475897e-6 +insomniac_A 1.0773191989054437e-5 +insomniac_N 3.729715012475897e-6 +insomuch_Adv 8.668966832532898e-6 +insouciance_N 3.729715012475897e-6 +insouciant_A 1.0773191989054437e-5 +inspan_V2 1.609865254278217e-5 +inspect_V2 1.7708517797060386e-4 +inspection_N 4.1026865137234865e-5 +inspector_N 5.594572518713845e-5 +inspectorate_N 3.729715012475897e-6 +inspectorship_N 3.729715012475897e-6 +inspiration_N 1.4918860049903587e-5 +inspirational_A 3.231957596716331e-5 +inspiratory_A 1.0773191989054437e-5 +inspire_V2 2.8977574577007903e-4 +inspire_V2V 1.8700327255726976e-3 +inspiring_A 2.1546383978108874e-5 +inspissation_N 3.729715012475897e-6 +inst_PN 1.865462821325971e-5 +instability_N 1.4918860049903587e-5 +install_V 2.4946704767088494e-4 +install_V2 5.473541864545937e-4 +installation_N 7.459430024951794e-5 +installment_N 5.2216010174662554e-5 +instalment_N 3.729715012475897e-6 +instance_N 4.848629516218666e-5 +instance_V2 1.609865254278217e-5 +instant_A 1.6159787983581657e-4 +instant_N 1.8648575062379485e-5 +instantaneous_A 1.0773191989054437e-5 +instantiation_N 3.729715012475897e-6 +instar_N 3.729715012475897e-6 +instead_Adv 1.022938086238882e-3 +instead_of_Prep 9.379833358279699e-4 +instep_N 3.729715012475897e-6 +instigate_V2 3.219730508556434e-5 +instigation_N 3.729715012475897e-6 +instigator_N 3.729715012475897e-6 +instil_V2 1.609865254278217e-5 +instillation_N 3.729715012475897e-6 +instillator_N 3.729715012475897e-6 +instinct_A 1.0773191989054437e-5 +instinct_N 1.4918860049903587e-5 +instinctive_A 5.3865959945272184e-5 +institute_N 8.205373027446973e-5 +institute_V2 2.8977574577007903e-4 +institution_N 7.23564712420324e-4 +institutional_A 1.1204119668616615e-3 +institutionalization_N 3.729715012475897e-6 +institutionalize_V2 1.609865254278217e-5 +instroke_N 3.729715012475897e-6 +instruct_V2 1.7708517797060386e-4 +instruction_N 8.951316029942152e-5 +instructional_A 3.231957596716331e-5 +instructive_A 2.1546383978108874e-5 +instructor_N 1.4918860049903587e-5 +instructorship_N 3.729715012475897e-6 +instructress_N 3.729715012475897e-6 +instrument_N 2.4243147581093328e-4 +instrumental_A 7.541234392338106e-5 +instrumentalism_N 3.729715012475897e-6 +instrumentalist_N 3.729715012475897e-6 +instrumentality_N 3.729715012475897e-6 +instrumentation_N 2.6108005087331277e-5 +insubordinate_A 1.0773191989054437e-5 +insubordination_N 1.118914503742769e-5 +insubstantial_A 2.1546383978108874e-5 +insubstantiality_N 3.729715012475897e-6 +insufferable_A 1.0773191989054437e-5 +insufficiency_N 3.729715012475897e-6 +insufficient_A 1.0773191989054437e-4 +insufflation_N 3.729715012475897e-6 +insular_A 1.0773191989054437e-5 +insularism_N 3.729715012475897e-6 +insularity_N 3.729715012475897e-6 +insulate_V2 1.4488787288503951e-4 +insulation_N 1.8648575062379485e-5 +insulator_N 7.459430024951794e-6 +insulin_N 6.340515521209024e-5 +insult_N 1.8648575062379485e-5 +insult_V2 3.219730508556434e-5 +insulting_A 5.3865959945272184e-5 +insuperable_A 1.0773191989054437e-5 +insupportable_A 2.1546383978108874e-5 +insurability_N 3.729715012475897e-6 +insurable_A 1.0773191989054437e-5 +insurance_N 1.3203191144164675e-3 +insure_V 2.9482469270195494e-4 +insure_V2 7.888339745963262e-4 +insure_VS 1.1552012938254491e-4 +insured_N 3.729715012475897e-6 +insurgency_N 3.729715012475897e-6 +insurgent_A 1.0773191989054437e-5 +insurgent_N 1.8648575062379485e-5 +insurmountable_A 1.0773191989054437e-5 +insurrection_N 7.459430024951794e-6 +insurrectional_A 1.0773191989054437e-5 +insurrectionism_N 3.729715012475897e-6 +intact_A 1.4005149585770768e-4 +intactness_N 3.729715012475897e-6 +intaglio_N 3.729715012475897e-6 +intake_N 7.459430024951794e-6 +intangibility_N 3.729715012475897e-6 +intangible_A 5.3865959945272184e-5 +intangible_N 3.729715012475897e-6 +intangibles_N 3.729715012475897e-6 +integer_N 3.729715012475897e-6 +integral_A 4.309276795621775e-5 +integral_N 3.729715012475897e-6 +integrate_V 1.3607293509320997e-4 +integrate_V2 4.668609237406829e-4 +integration_N 7.086458523704203e-5 +integrative_A 1.0773191989054437e-5 +integrator_N 3.729715012475897e-6 +integrity_N 6.340515521209024e-5 +integument_N 3.729715012475897e-6 +integumentary_A 1.0773191989054437e-5 +intellect_N 7.459430024951794e-6 +intellectual_A 1.8314426381392542e-4 +intellectual_N 3.729715012475897e-5 +intellectualization_N 3.729715012475897e-6 +intelligence_N 1.9021546563627073e-4 +intelligent_A 8.61855359124355e-5 +intelligentsia_N 3.729715012475897e-6 +intelligibility_N 3.729715012475897e-6 +intelligible_A 1.0773191989054437e-5 +intemperance_N 3.729715012475897e-6 +intemperate_A 1.0773191989054437e-5 +intend_V 1.8143058012427994e-4 +intend_V2 1.2878922034225736e-4 +intend_V2V 1.3557737260402058e-2 +intend_VV 8.360561214683836e-3 +intense_A 4.632472555293408e-4 +intensification_N 3.729715012475897e-6 +intensifier_N 3.729715012475897e-6 +intensify_V 2.4946704767088494e-4 +intensify_V2 1.4488787288503951e-4 +intension_N 3.729715012475897e-6 +intensional_A 1.0773191989054437e-5 +intensity_N 4.1026865137234865e-5 +intensive_A 1.1850511187959881e-4 +intent_A 6.463915193432663e-5 +intent_N 1.1562116538675279e-4 +intention_N 1.193508803992287e-4 +intentional_A 1.0773191989054437e-4 +intentionality_N 3.729715012475897e-6 +intentness_N 3.729715012475897e-6 +inter_V2 1.609865254278217e-5 +inter_alia_Adv 8.668966832532898e-6 +interact_V 2.2678822515534993e-5 +interaction_N 7.459430024951794e-6 +interactional_A 1.0773191989054437e-5 +interactive_A 5.3865959945272184e-5 +interbreed_V 2.2678822515534993e-5 +interbreed_V2 1.609865254278217e-5 +intercalary_A 1.0773191989054437e-5 +intercede_V 4.5357645031069986e-5 +intercellular_A 1.0773191989054437e-5 +intercept_N 3.729715012475897e-6 +intercept_V2 4.8295957628346505e-5 +interception_N 3.729715012475897e-6 +interceptor_N 3.729715012475897e-6 +intercession_N 3.729715012475897e-6 +interchange_N 3.729715012475897e-6 +interchange_V2 1.609865254278217e-5 +interchangeable_A 2.1546383978108874e-5 +interchurch_A 1.0773191989054437e-5 +intercollegiate_A 4.309276795621775e-5 +intercom_N 7.459430024951794e-6 +intercommunicate_V 2.2678822515534993e-5 +intercommunication_N 3.729715012475897e-6 +intercommunion_N 3.729715012475897e-6 +interconnect_V 4.5357645031069986e-5 +interconnect_V2 3.219730508556434e-5 +interconnectedness_N 3.729715012475897e-6 +interconnection_N 3.729715012475897e-6 +intercontinental_A 1.0773191989054437e-5 +intercostal_A 1.0773191989054437e-5 +intercostal_N 3.729715012475897e-6 +intercourse_N 3.729715012475897e-6 +interdenominational_A 1.0773191989054437e-5 +interdepartmental_A 1.0773191989054437e-5 +interdepartmental_Adv 8.668966832532898e-6 +interdependence_N 7.459430024951794e-6 +interdependent_A 1.0773191989054437e-5 +interdict_N 3.729715012475897e-6 +interdict_V2 1.609865254278217e-5 +interdiction_N 1.8648575062379485e-5 +interdisciplinary_A 1.0773191989054437e-5 +interest_4_N 7.459430024951794e-6 +interest_N 3.5469589768645777e-3 +interest_V 4.989340953417699e-4 +interest_V2 1.0625110678236232e-3 +interested_A 1.2927830386865325e-4 +interestedness_N 3.729715012475897e-6 +interesting_A 2.47783415748252e-4 +interface_N 3.729715012475897e-6 +interfacial_A 1.0773191989054437e-5 +interfaith_A 1.0773191989054437e-5 +interfere_V 4.082188052796299e-4 +interference_N 1.8648575062379485e-5 +interferometer_N 3.729715012475897e-6 +interferon_N 3.729715012475897e-6 +intergalactic_A 1.0773191989054437e-5 +interim_A 1.0773191989054437e-5 +interim_N 1.4918860049903587e-5 +interior_A 6.463915193432663e-5 +interior_N 2.9837720099807175e-5 +interject_V2 3.219730508556434e-5 +interjection_N 3.729715012475897e-6 +interlace_V 2.2678822515534993e-5 +interlace_V2 1.609865254278217e-5 +interlard_V2 1.609865254278217e-5 +interlayer_N 3.729715012475897e-6 +interleaf_N 3.729715012475897e-6 +interleave_V2 1.609865254278217e-5 +interleukin_N 3.729715012475897e-6 +interlinear_A 1.0773191989054437e-5 +interlink_V 2.2678822515534993e-5 +interlink_V2 1.609865254278217e-5 +interlobular_A 1.0773191989054437e-5 +interlock_N 3.729715012475897e-6 +interlock_V 2.2678822515534993e-5 +interlock_V2 1.609865254278217e-5 +interlocutor_N 3.729715012475897e-6 +interlocutory_A 1.0773191989054437e-5 +interloper_N 7.459430024951794e-6 +interlude_N 7.459430024951794e-6 +intermarriage_N 3.729715012475897e-6 +intermarry_V 2.2678822515534993e-5 +intermediary_N 1.118914503742769e-5 +intermediate_A 7.541234392338106e-5 +intermediate_N 3.729715012475897e-6 +interment_N 3.729715012475897e-6 +intermezzo_N 3.729715012475897e-6 +interminable_A 1.0773191989054437e-5 +intermingle_V 2.2678822515534993e-5 +intermingle_V2 1.609865254278217e-5 +intermission_N 1.118914503742769e-5 +intermittence_N 3.729715012475897e-6 +intermittent_A 3.231957596716331e-5 +intermix_V 2.2678822515534993e-5 +intermix_V2 3.219730508556434e-5 +intermixture_N 3.729715012475897e-6 +intermolecular_A 1.0773191989054437e-5 +intermural_A 1.0773191989054437e-5 +intern_N 3.729715012475897e-6 +intern_V2 1.609865254278217e-5 +internal_A 8.403089751462461e-4 +internalization_N 3.729715012475897e-6 +internalize_V2 1.609865254278217e-5 +international_A 2.1869579737780506e-3 +international_N 7.459430024951794e-6 +internationale_N 3.729715012475897e-6 +internationalism_N 3.729715012475897e-6 +internationalist_A 1.0773191989054437e-5 +internationalist_N 7.459430024951794e-6 +internationality_N 3.729715012475897e-6 +internationalization_N 1.4918860049903587e-5 +internationalize_V2 1.609865254278217e-5 +interne_N 3.729715012475897e-6 +internecine_A 1.0773191989054437e-5 +internee_N 3.729715012475897e-6 +internet_N 3.729715012475897e-6 +internist_N 3.729715012475897e-6 +internment_N 1.118914503742769e-5 +internode_N 3.729715012475897e-6 +internship_N 3.729715012475897e-6 +internuncio_N 3.729715012475897e-6 +interoception_N 3.729715012475897e-6 +interoceptive_A 1.0773191989054437e-5 +interoceptor_N 3.729715012475897e-6 +interoperability_N 3.729715012475897e-6 +interoperable_A 1.0773191989054437e-5 +interpellate_V2 1.609865254278217e-5 +interpellation_N 3.729715012475897e-6 +interpenetration_N 3.729715012475897e-6 +interpersonal_A 1.0773191989054437e-5 +interphone_N 3.729715012475897e-6 +interplanetary_A 1.0773191989054437e-5 +interplay_N 3.729715012475897e-6 +interpol_PN 1.865462821325971e-5 +interpolate_V2 1.609865254278217e-5 +interpolation_N 3.729715012475897e-6 +interpose_V 2.2678822515534993e-5 +interpose_V2 1.609865254278217e-5 +interposition_N 3.729715012475897e-6 +interpret_V 9.071529006213997e-5 +interpret_V2 4.185649661123364e-4 +interpretation_N 7.086458523704203e-5 +interpretative_A 1.0773191989054437e-5 +interpreter_N 1.118914503742769e-5 +interracial_A 1.0773191989054437e-5 +interreflection_N 3.729715012475897e-6 +interregnum_N 3.729715012475897e-6 +interrelate_V 2.2678822515534993e-5 +interrelate_V2 3.219730508556434e-5 +interrelation_N 3.729715012475897e-6 +interrelationship_N 3.729715012475897e-6 +interrogate_V2 4.8295957628346505e-5 +interrogation_N 7.459430024951794e-6 +interrogative_A 1.0773191989054437e-5 +interrogative_N 3.729715012475897e-6 +interrogator_N 1.118914503742769e-5 +interrogatory_A 1.0773191989054437e-5 +interrupt_N 3.729715012475897e-6 +interrupt_V 9.071529006213997e-5 +interrupt_V2 1.1269056779947518e-4 +interrupter_N 3.729715012475897e-6 +interruption_N 2.237829007485538e-5 +interscholastic_A 1.0773191989054437e-5 +intersect_V 2.2678822515534993e-5 +intersect_V2 1.609865254278217e-5 +intersection_N 1.118914503742769e-5 +intersexual_A 1.0773191989054437e-5 +interspecies_A 1.0773191989054437e-5 +intersperse_V2 6.439461017112868e-5 +interspersion_N 3.729715012475897e-6 +interstate_A 2.046906477920343e-4 +interstate_N 3.729715012475897e-6 +interstellar_A 1.0773191989054437e-5 +interstice_N 3.729715012475897e-6 +interstitial_A 1.0773191989054437e-5 +intertidal_A 1.0773191989054437e-5 +intertribal_A 1.0773191989054437e-5 +intertrigo_N 3.729715012475897e-6 +intertwine_V 4.5357645031069986e-5 +intertwine_V2 4.8295957628346505e-5 +interval_N 1.8648575062379485e-5 +intervene_V 3.855399827640949e-4 +intervene_V2V 4.675081813931744e-4 +intervenor_N 3.729715012475897e-6 +intervention_N 7.832401526199384e-5 +intervertebral_A 1.0773191989054437e-5 +interview_N 4.2891722643472813e-4 +interview_V2 4.3466361865511857e-4 +interviewee_N 3.729715012475897e-6 +interviewer_N 1.118914503742769e-5 +interweave_V2 1.609865254278217e-5 +intestacy_N 3.729715012475897e-6 +intestate_A 1.0773191989054437e-5 +intestinal_A 1.0773191989054437e-5 +intestine_N 3.729715012475897e-6 +inti_N 3.729715012475897e-6 +intifada_N 3.729715012475897e-6 +intima_N 3.729715012475897e-6 +intimacy_N 1.118914503742769e-5 +intimal_A 1.0773191989054437e-5 +intimate_A 1.508246878467621e-4 +intimate_N 3.729715012475897e-6 +intimate_V2 3.219730508556434e-5 +intimation_N 3.729715012475897e-6 +intimidate_V2 8.049326271391085e-5 +intimidation_N 1.8648575062379485e-5 +into_Prep 1.1046250561293219e-2 +intolerable_A 8.61855359124355e-5 +intolerance_N 7.459430024951794e-6 +intolerant_A 1.0773191989054437e-5 +intonation_N 7.459430024951794e-6 +intone_V 4.5357645031069986e-5 +intone_V2 1.609865254278217e-5 +intoxicant_A 1.0773191989054437e-5 +intoxicant_N 3.729715012475897e-6 +intoxicate_V2 1.609865254278217e-5 +intoxication_N 7.459430024951794e-6 +intra_uterine_A 1.0773191989054437e-5 +intracellular_A 1.0773191989054437e-5 +intracerebral_A 1.0773191989054437e-5 +intracranial_A 1.0773191989054437e-5 +intractability_N 3.729715012475897e-6 +intractable_A 3.231957596716331e-5 +intradepartmental_A 1.0773191989054437e-5 +intradermal_A 1.0773191989054437e-5 +intrados_N 3.729715012475897e-6 +intralinguistic_A 1.0773191989054437e-5 +intralobular_A 1.0773191989054437e-5 +intramolecular_A 1.0773191989054437e-5 +intramural_A 1.0773191989054437e-5 +intramuscular_A 1.0773191989054437e-5 +intranet_N 3.729715012475897e-6 +intransigence_N 3.729715012475897e-6 +intransigency_N 3.729715012475897e-6 +intransigent_A 1.0773191989054437e-5 +intransitive_A 1.0773191989054437e-5 +intransitivity_N 3.729715012475897e-6 +intrapulmonary_A 1.0773191989054437e-5 +intrasentential_A 1.0773191989054437e-5 +intraspecies_A 1.0773191989054437e-5 +intrastate_A 1.0773191989054437e-5 +intrauterine_A 1.0773191989054437e-5 +intravasation_N 3.729715012475897e-6 +intravenous_A 2.1546383978108874e-5 +intraventricular_A 1.0773191989054437e-5 +intrench_V2 1.609865254278217e-5 +intrepid_A 1.0773191989054437e-5 +intrepidity_N 3.729715012475897e-6 +intricacy_N 3.729715012475897e-6 +intricate_A 5.3865959945272184e-5 +intrigue_N 1.8648575062379485e-5 +intrigue_V 9.071529006213997e-5 +intrigue_V2 1.609865254278217e-5 +intrinsic_A 3.231957596716331e-5 +intrinsically_Adv 8.668966832532898e-6 +intro_N 3.729715012475897e-6 +introduce_V2 2.7206722797301864e-3 +introduction_N 1.0070230533684921e-4 +introductory_A 2.1546383978108874e-5 +introit_N 3.729715012475897e-6 +introitus_N 3.729715012475897e-6 +introject_N 3.729715012475897e-6 +introjected_A 1.0773191989054437e-5 +introjection_N 3.729715012475897e-6 +intron_N 3.729715012475897e-6 +introspect_V 2.2678822515534993e-5 +introspection_N 3.729715012475897e-6 +introspective_A 1.0773191989054437e-5 +introspectiveness_N 3.729715012475897e-6 +introuvable_A 1.0773191989054437e-5 +introversion_N 3.729715012475897e-6 +introversive_A 1.0773191989054437e-5 +introvert_N 3.729715012475897e-6 +introvert_V2 1.609865254278217e-5 +introvertish_A 1.0773191989054437e-5 +intrude_V 4.5357645031069986e-5 +intrude_V2 1.609865254278217e-5 +intruder_N 1.8648575062379485e-5 +intrusion_N 2.6108005087331277e-5 +intrusive_A 3.231957596716331e-5 +intrusiveness_N 3.729715012475897e-6 +intrust_V2 1.609865254278217e-5 +intuit_V 2.2678822515534993e-5 +intuit_V2 1.609865254278217e-5 +intuition_N 1.4918860049903587e-5 +intuitionism_N 3.729715012475897e-6 +intuitionist_A 1.0773191989054437e-5 +intuitive_A 2.1546383978108874e-5 +intumescence_N 3.729715012475897e-6 +intussusception_N 3.729715012475897e-6 +inula_N 3.729715012475897e-6 +inulin_N 3.729715012475897e-6 +inundate_V2 8.049326271391085e-5 +inundation_N 3.729715012475897e-6 +inure_V2 1.609865254278217e-5 +inutile_A 1.0773191989054437e-5 +inutility_N 3.729715012475897e-6 +invade_V2 1.7708517797060386e-4 +invader_N 7.459430024951794e-6 +invagination_N 3.729715012475897e-6 +invalid_A 2.1546383978108874e-5 +invalid_N 3.729715012475897e-6 +invalid_V2 1.609865254278217e-5 +invalidate_V2 3.219730508556434e-5 +invalidation_N 3.729715012475897e-6 +invalidator_N 3.729715012475897e-6 +invalidism_N 3.729715012475897e-6 +invalidity_N 3.729715012475897e-6 +invaluable_A 1.0773191989054437e-5 +invaluableness_N 3.729715012475897e-6 +invariability_N 3.729715012475897e-6 +invariable_A 8.61855359124355e-5 +invariance_N 3.729715012475897e-6 +invariant_A 1.0773191989054437e-5 +invariant_N 3.729715012475897e-6 +invasion_N 1.118914503742769e-5 +invasive_A 1.0773191989054437e-5 +invective_N 7.459430024951794e-6 +inveigh_V 2.2678822515534993e-5 +inveigle_V2 1.609865254278217e-5 +invent_V 1.1339411257767497e-4 +invent_V2 1.9318383051338602e-4 +invention_N 2.237829007485538e-5 +inventive_A 1.0773191989054437e-5 +inventiveness_N 3.729715012475897e-6 +inventor_N 2.9837720099807175e-5 +inventory_N 2.7972862593569225e-4 +inverkeithing_PN 1.865462821325971e-5 +inverness_PN 1.865462821325971e-5 +inverse_A 5.3865959945272184e-5 +inverse_N 1.118914503742769e-5 +inversion_N 3.729715012475897e-6 +invert_V2 3.219730508556434e-5 +invertase_N 3.729715012475897e-6 +invertebrate_A 1.0773191989054437e-5 +invertebrate_N 3.729715012475897e-6 +inverter_N 3.729715012475897e-6 +invertible_A 1.0773191989054437e-5 +inverurie_PN 1.865462821325971e-5 +invest_V 2.540028121739919e-3 +invest_V2 7.888339745963262e-4 +investigate_V 1.3607293509320997e-4 +investigate_V2 5.473541864545937e-4 +investigation_N 3.655120712226379e-4 +investigator_N 1.118914503742769e-4 +investing_N 3.729715012475897e-6 +investiture_N 3.729715012475897e-6 +investment_N 2.95393428988091e-3 +investor_N 4.18101052898548e-3 +inveterate_A 2.1546383978108874e-5 +invidious_A 2.1546383978108874e-5 +invigilate_V 2.2678822515534993e-5 +invigilation_N 3.729715012475897e-6 +invigilator_N 3.729715012475897e-6 +invigorate_V2 1.609865254278217e-5 +invigorating_A 1.0773191989054437e-5 +invincibility_N 3.729715012475897e-6 +invincible_A 3.231957596716331e-5 +inviolable_A 1.0773191989054437e-5 +inviolate_A 1.0773191989054437e-5 +invisibility_N 3.729715012475897e-6 +invisible_A 5.3865959945272184e-5 +invitation_N 3.729715012475897e-5 +invitational_A 1.0773191989054437e-5 +invitatory_A 1.0773191989054437e-5 +invite_N 3.729715012475897e-6 +invite_V2 5.151568813690294e-4 +invite_V2V 1.402524544179523e-3 +invite_in_V 2.2678822515534993e-5 +invocation_N 3.729715012475897e-6 +invoice_N 7.459430024951794e-6 +invoice_V2 1.609865254278217e-5 +invoke_V2 1.1269056779947518e-4 +involucrate_A 1.0773191989054437e-5 +involucre_N 3.729715012475897e-6 +involuntary_A 2.1546383978108874e-5 +involute_A 1.0773191989054437e-5 +involution_N 3.729715012475897e-6 +involve_V 1.2246564158388895e-3 +involve_V2 3.235829161099216e-3 +involve_VS 5.198405822214521e-4 +involvement_N 1.08161735361801e-4 +invulnerability_N 3.729715012475897e-6 +invulnerable_A 1.0773191989054437e-5 +inward_A 2.1546383978108874e-5 +inward_Adv 1.7337933665065797e-5 +inwardness_N 3.729715012475897e-6 +inwards_Adv 8.668966832532898e-6 +inwrought_A 1.0773191989054437e-5 +iodide_N 3.729715012475897e-6 +iodinated_A 1.0773191989054437e-5 +iodinating_A 1.0773191989054437e-5 +iodination_N 3.729715012475897e-6 +iodine_N 3.729715012475897e-6 +iodochlorhydroxyquin_N 3.729715012475897e-6 +iodocompound_N 3.729715012475897e-6 +iodoform_N 3.729715012475897e-6 +iodoprotein_N 3.729715012475897e-6 +iodopsin_N 3.729715012475897e-6 +iodothyronine_N 3.729715012475897e-6 +iodotyrosine_N 3.729715012475897e-6 +ion_N 3.729715012475897e-6 +ionic_A 1.0773191989054437e-5 +ionization_N 3.729715012475897e-6 +ionize_V 2.2678822515534993e-5 +ionize_V2 1.609865254278217e-5 +ionosphere_N 3.729715012475897e-6 +iontophoresis_N 3.729715012475897e-6 +iota_N 1.118914503742769e-5 +iou_N 3.729715012475897e-6 +iowa_PN 1.865462821325971e-5 +ipecac_N 3.729715012475897e-6 +ipod_N 3.729715012475897e-6 +iproclozide_N 3.729715012475897e-6 +ipse_dixit_N 3.729715012475897e-6 +ipsilateral_A 1.0773191989054437e-5 +ipso_facto_Adv 8.668966832532898e-6 +ipswich_PN 1.865462821325971e-5 +iq_N 3.729715012475897e-6 +ira_N 3.729715012475897e-5 +iran_PN 2.9847405141215536e-4 +iranian_A 9.695872790148993e-5 +iranian_N 3.729715012475897e-6 +iraq_PN 1.865462821325971e-5 +iraqi_A 2.1546383978108874e-5 +iraqi_N 3.729715012475897e-6 +irascibility_N 3.729715012475897e-6 +irascible_A 1.0773191989054437e-5 +irate_A 1.0773191989054437e-5 +ire_N 1.118914503742769e-5 +ireful_A 1.0773191989054437e-5 +ireland_PN 1.865462821325971e-5 +irene_PN 1.865462821325971e-5 +irenic_A 1.0773191989054437e-5 +iridaceous_A 1.0773191989054437e-5 +iridectomy_N 3.729715012475897e-6 +iridescence_N 3.729715012475897e-6 +iridescent_A 1.0773191989054437e-5 +iridic_A 1.0773191989054437e-5 +iridium_N 3.729715012475897e-6 +iridocyclitis_N 3.729715012475897e-6 +iridokeratitis_N 3.729715012475897e-6 +iridoncus_N 3.729715012475897e-6 +iridotomy_N 3.729715012475897e-6 +iris_N 1.118914503742769e-5 +iris_PN 1.865462821325971e-5 +irish_A 2.3701022375919762e-4 +irish_N 3.729715012475897e-6 +irishman_N 3.729715012475897e-6 +irishwoman_N 3.729715012475897e-6 +iritic_A 1.0773191989054437e-5 +iritis_N 3.729715012475897e-6 +irk_V2 9.659191525669301e-5 +irksome_A 2.1546383978108874e-5 +iron_N 5.594572518713845e-5 +iron_V 6.803646754660499e-5 +iron_V2 1.609865254278217e-5 +iron_foundry_N 3.729715012475897e-6 +iron_grey_A 1.0773191989054437e-5 +iron_grey_N 3.729715012475897e-6 +iron_out_V 2.2678822515534993e-5 +iron_out_V2 1.609865254278217e-5 +ironclad_A 2.1546383978108874e-5 +ironclad_N 3.729715012475897e-6 +ironic_A 8.61855359124355e-5 +ironical_A 1.1850511187959881e-4 +ironing_N 3.729715012475897e-6 +ironing_board_N 3.729715012475897e-6 +ironlike_A 1.0773191989054437e-5 +ironmonger_N 3.729715012475897e-6 +ironmongery_N 3.729715012475897e-6 +ironmould_N 3.729715012475897e-6 +irons_N 3.729715012475897e-6 +ironshod_A 1.0773191989054437e-5 +ironside_N 3.729715012475897e-6 +ironware_N 3.729715012475897e-6 +ironweed_N 3.729715012475897e-6 +ironwood_N 3.729715012475897e-6 +ironwork_N 3.729715012475897e-6 +ironworker_N 3.729715012475897e-6 +ironworks_N 3.729715012475897e-6 +irony_N 3.729715012475897e-5 +irradiate_V2 4.8295957628346505e-5 +irradiation_N 3.729715012475897e-6 +irrational_A 4.309276795621775e-5 +irrationality_N 3.729715012475897e-6 +irreclaimable_A 1.0773191989054437e-5 +irreconcilable_A 1.0773191989054437e-5 +irrecoverable_A 1.0773191989054437e-5 +irredeemable_A 1.0773191989054437e-5 +irredenta_N 3.729715012475897e-6 +irredentism_N 3.729715012475897e-6 +irredentist_N 3.729715012475897e-6 +irreducible_A 1.0773191989054437e-5 +irrefutable_A 1.0773191989054437e-5 +irregardless_Adv 8.668966832532898e-6 +irregular_A 2.1546383978108874e-5 +irregular_N 3.729715012475897e-6 +irregularity_N 1.8648575062379485e-5 +irrelevance_N 3.729715012475897e-6 +irrelevancy_N 3.729715012475897e-6 +irrelevant_A 8.61855359124355e-5 +irreligionist_N 3.729715012475897e-6 +irreligious_A 1.0773191989054437e-5 +irreligiousness_N 3.729715012475897e-6 +irremediable_A 1.0773191989054437e-5 +irremovable_A 1.0773191989054437e-5 +irreparable_A 6.463915193432663e-5 +irreplaceable_A 2.1546383978108874e-5 +irreplaceableness_N 3.729715012475897e-6 +irrepressibility_N 3.729715012475897e-6 +irrepressible_A 2.1546383978108874e-5 +irreproachable_A 1.0773191989054437e-5 +irreproducibility_N 3.729715012475897e-6 +irresistibility_N 3.729715012475897e-6 +irresistible_A 3.231957596716331e-5 +irresolute_A 1.0773191989054437e-5 +irresoluteness_N 3.729715012475897e-6 +irresolution_N 3.729715012475897e-6 +irrespective_A 1.0773191989054437e-5 +irresponsibility_N 3.729715012475897e-6 +irresponsible_A 1.508246878467621e-4 +irretrievable_A 1.0773191989054437e-5 +irreverence_N 3.729715012475897e-6 +irreverent_A 3.231957596716331e-5 +irreversibility_N 3.729715012475897e-6 +irreversible_A 1.0773191989054437e-5 +irrevocable_A 2.1546383978108874e-5 +irridentism_N 3.729715012475897e-6 +irrigate_V2 1.609865254278217e-5 +irrigation_N 3.729715012475897e-6 +irritability_N 3.729715012475897e-6 +irritable_A 1.0773191989054437e-5 +irritant_A 1.0773191989054437e-5 +irritant_N 3.729715012475897e-6 +irritate_V2 4.8295957628346505e-5 +irritating_A 1.0773191989054437e-5 +irritation_N 1.4918860049903587e-5 +irruption_N 3.729715012475897e-6 +irruptive_A 1.0773191989054437e-5 +irthlingborough_PN 1.865462821325971e-5 +irvine_PN 1.865462821325971e-5 +isaac_PN 1.865462821325971e-5 +isabel_PN 1.865462821325971e-5 +isabella_PN 1.865462821325971e-5 +ischemia_N 3.729715012475897e-6 +ischemic_A 1.0773191989054437e-5 +ischium_N 3.729715012475897e-6 +isentropic_A 1.0773191989054437e-5 +isinglass_N 3.729715012475897e-6 +islam_N 3.729715012475897e-6 +islamic_A 3.231957596716331e-5 +island_N 7.086458523704203e-5 +islander_N 3.729715012475897e-6 +isle_N 3.729715012475897e-6 +islet_N 3.729715012475897e-6 +islington_PN 1.865462821325971e-5 +ism_N 3.729715012475897e-6 +isoagglutination_N 3.729715012475897e-6 +isoagglutinin_N 3.729715012475897e-6 +isoagglutinogen_N 3.729715012475897e-6 +isoantibody_N 3.729715012475897e-6 +isobar_N 3.729715012475897e-6 +isobel_PN 1.865462821325971e-5 +isobutylene_N 3.729715012475897e-6 +isocarboxazid_N 3.729715012475897e-6 +isochronal_A 1.0773191989054437e-5 +isochrone_N 3.729715012475897e-6 +isoclinal_A 1.0773191989054437e-5 +isocyanate_N 3.729715012475897e-6 +isoflurane_N 3.729715012475897e-6 +isogamete_N 3.729715012475897e-6 +isogamy_N 3.729715012475897e-6 +isogon_N 3.729715012475897e-6 +isogonic_A 1.0773191989054437e-5 +isogram_N 3.729715012475897e-6 +isohel_N 3.729715012475897e-6 +isolable_A 1.0773191989054437e-5 +isolate_V2 2.575784406845147e-4 +isolation_N 2.237829007485538e-5 +isolationism_N 3.729715012475897e-6 +isolationist_A 1.0773191989054437e-5 +isolationist_N 3.729715012475897e-6 +isoleucine_N 3.729715012475897e-6 +isomer_N 3.729715012475897e-6 +isomerase_N 3.729715012475897e-6 +isomeric_A 1.0773191989054437e-5 +isomerism_N 3.729715012475897e-6 +isomerization_N 3.729715012475897e-6 +isometric_A 1.0773191989054437e-5 +isometrics_N 3.729715012475897e-6 +isometropia_N 3.729715012475897e-6 +isometry_N 3.729715012475897e-6 +isomorphism_N 3.729715012475897e-6 +isomorphous_A 1.0773191989054437e-5 +isoniazid_N 3.729715012475897e-6 +isopod_N 3.729715012475897e-6 +isoproterenol_N 3.729715012475897e-6 +isopteran_A 1.0773191989054437e-5 +isosceles_A 1.0773191989054437e-5 +isosorbide_N 3.729715012475897e-6 +isostasy_N 3.729715012475897e-6 +isotherm_N 3.729715012475897e-6 +isothermal_A 1.0773191989054437e-5 +isothermic_A 1.0773191989054437e-5 +isothiocyanate_N 3.729715012475897e-6 +isotonic_A 1.0773191989054437e-5 +isotope_N 3.729715012475897e-6 +isotopic_A 1.0773191989054437e-5 +isotropic_A 1.0773191989054437e-5 +isotropically_Adv 8.668966832532898e-6 +isotropy_N 3.729715012475897e-6 +israel_PN 6.902212438906093e-4 +israeli_A 1.4005149585770768e-4 +israeli_N 3.729715012475897e-6 +issue_N 3.505932111727343e-3 +issue_V 1.2019775933233545e-3 +issue_V2 2.495291144131236e-3 +issue_forth_V 2.2678822515534993e-5 +issuer_N 3.729715012475897e-6 +istanbul_PN 1.865462821325971e-5 +isthmian_A 1.0773191989054437e-5 +isthmus_N 7.459430024951794e-6 +it_Pron 0.37966222107404657 +italian_A 5.3865959945272184e-5 +italian_N 7.459430024951794e-6 +italic_A 1.0773191989054437e-5 +italic_N 3.729715012475897e-6 +italicize_V2 1.609865254278217e-5 +italy_PN 1.0819684363690633e-3 +itch_N 3.729715012475897e-6 +itch_V 2.2678822515534993e-5 +itchy_A 1.0773191989054437e-5 +item_Adv 8.668966832532898e-6 +item_N 3.505932111727343e-4 +itemize_V2 3.219730508556434e-5 +iterate_V2 1.609865254278217e-5 +iteration_N 7.459430024951794e-6 +iterative_A 1.0773191989054437e-5 +iterative_N 3.729715012475897e-6 +itinerant_A 1.0773191989054437e-5 +itinerant_N 3.729715012475897e-6 +itinerary_N 7.459430024951794e-6 +itineration_N 3.729715012475897e-6 +itraconazole_N 3.729715012475897e-6 +itself_NP 5.078470561252908e-4 +itv_N 3.729715012475897e-6 +iud_N 3.729715012475897e-6 +ivan_PN 1.865462821325971e-5 +iver_PN 1.865462821325971e-5 +ivied_A 1.0773191989054437e-5 +ivor_PN 1.865462821325971e-5 +ivory_N 2.6108005087331277e-5 +ivorybill_N 3.729715012475897e-6 +ivy_N 3.729715012475897e-6 +ivy_PN 1.865462821325971e-5 +izar_N 3.729715012475897e-6 +izmir_PN 1.865462821325971e-5 +jab_N 1.118914503742769e-5 +jab_V 2.2678822515534993e-5 +jab_V2 1.609865254278217e-5 +jabalpur_PN 1.865462821325971e-5 +jabber_N 3.729715012475897e-6 +jabber_V 2.2678822515534993e-5 +jabber_V2 1.609865254278217e-5 +jabber_away_V 2.2678822515534993e-5 +jabberer_N 3.729715012475897e-6 +jabberwocky_N 3.729715012475897e-6 +jabiru_N 3.729715012475897e-6 +jabot_N 3.729715012475897e-6 +jaboticaba_N 3.729715012475897e-6 +jacamar_N 3.729715012475897e-6 +jack_N 7.459430024951794e-6 +jack_PN 1.865462821325971e-5 +jack_V2 9.659191525669301e-5 +jack_around_V2 1.609865254278217e-5 +jack_in_V2 1.609865254278217e-5 +jack_in_the_box_N 3.729715012475897e-6 +jack_knife_N 3.729715012475897e-6 +jack_knife_V 2.2678822515534993e-5 +jack_o'_lantern_N 3.729715012475897e-6 +jack_plane_N 3.729715012475897e-6 +jack_up_V 2.2678822515534993e-5 +jack_up_V2 1.609865254278217e-5 +jackal_N 7.459430024951794e-6 +jackanapes_N 3.729715012475897e-6 +jackass_N 3.729715012475897e-6 +jackboot_N 3.729715012475897e-6 +jackdaw_N 3.729715012475897e-6 +jacket_N 4.848629516218666e-5 +jackfruit_N 3.729715012475897e-6 +jackie_PN 1.865462821325971e-5 +jackknife_N 3.729715012475897e-6 +jacklight_N 3.729715012475897e-6 +jackpot_N 3.729715012475897e-6 +jackrabbit_N 3.729715012475897e-6 +jacks_N 3.729715012475897e-6 +jackscrew_N 3.729715012475897e-6 +jacksmelt_N 3.729715012475897e-6 +jacksnipe_N 3.729715012475897e-6 +jacksonville_PN 1.865462821325971e-5 +jackstraw_N 3.729715012475897e-6 +jackstraws_N 3.729715012475897e-6 +jacob_PN 1.865462821325971e-5 +jacobean_A 1.0773191989054437e-5 +jacobin_A 1.0773191989054437e-5 +jacobin_N 3.729715012475897e-6 +jacobinism_N 3.729715012475897e-6 +jacobite_N 3.729715012475897e-6 +jaconet_N 3.729715012475897e-6 +jacquard_N 3.729715012475897e-6 +jacqueline_PN 1.865462821325971e-5 +jactitation_N 3.729715012475897e-6 +jade_A 1.0773191989054437e-5 +jade_N 3.729715012475897e-6 +jaded_A 1.0773191989054437e-5 +jadeite_N 3.729715012475897e-6 +jaeger_N 3.729715012475897e-6 +jag_N 3.729715012475897e-6 +jag_V2 1.609865254278217e-5 +jaggedness_N 3.729715012475897e-6 +jaggery_N 3.729715012475897e-6 +jaggy_A 1.0773191989054437e-5 +jaguar_N 1.118914503742769e-5 +jaguarundi_N 3.729715012475897e-6 +jail_N 8.578344528694562e-5 +jail_V2 1.1269056779947518e-4 +jailer_N 3.729715012475897e-6 +jailor_N 3.729715012475897e-6 +jaipur_PN 1.865462821325971e-5 +jakarta_PN 3.730925642651942e-5 +jake_PN 1.865462821325971e-5 +jakes_N 3.729715012475897e-6 +jalapeno_N 3.729715012475897e-6 +jalopy_N 3.729715012475897e-6 +jalousie_N 3.729715012475897e-6 +jam_N 3.356743511228307e-5 +jam_V 1.1339411257767497e-4 +jam_V2 4.8295957628346505e-5 +jam_VS 1.1552012938254491e-4 +jam_on_V2 1.609865254278217e-5 +jamaica_PN 1.865462821325971e-5 +jamaican_A 8.61855359124355e-5 +jamaican_N 3.729715012475897e-6 +jamb_N 3.729715012475897e-6 +jambalaya_N 3.729715012475897e-6 +jamboree_N 7.459430024951794e-6 +james_PN 1.865462821325971e-5 +jamjar_N 3.729715012475897e-6 +jammer_N 3.729715012475897e-6 +jamming_N 3.729715012475897e-6 +jampack_V2 1.609865254278217e-5 +jampan_N 3.729715012475897e-6 +jampot_N 3.729715012475897e-6 +jan_PN 1.865462821325971e-5 +jane_PN 1.865462821325971e-5 +janet_PN 1.865462821325971e-5 +jangle_N 3.729715012475897e-6 +jangle_V 2.2678822515534993e-5 +jangle_V2 1.609865254278217e-5 +janice_PN 1.865462821325971e-5 +janie_PN 1.865462821325971e-5 +janissary_N 3.729715012475897e-6 +janitor_N 7.459430024951794e-6 +january_N 3.729715012475897e-6 +january_PN 1.156586949222102e-3 +janus_PN 1.865462821325971e-5 +japan_N 3.729715012475897e-6 +japan_PN 8.469201208819908e-3 +japan_V2 1.609865254278217e-5 +japaneseFem_N 3.729715012475897e-6 +japaneseMasc_N 4.848629516218666e-5 +japanese_A 1.378968574598968e-3 +jape_N 3.729715012475897e-6 +japonica_N 3.729715012475897e-6 +jar_N 1.118914503742769e-5 +jar_V 6.803646754660499e-5 +jar_V2 1.609865254278217e-5 +jarful_N 3.729715012475897e-6 +jargon_N 7.459430024951794e-6 +jargoon_N 3.729715012475897e-6 +jarringly_Adv 8.668966832532898e-6 +jarrow_PN 1.865462821325971e-5 +jasmine_N 7.459430024951794e-6 +jason_PN 1.865462821325971e-5 +jasper_N 3.729715012475897e-6 +jassid_N 3.729715012475897e-6 +jati_N 3.729715012475897e-6 +jaundice_N 3.729715012475897e-6 +jaundice_V2 1.609865254278217e-5 +jaunt_N 1.118914503742769e-5 +jaunt_V 2.2678822515534993e-5 +jauntiness_N 3.729715012475897e-6 +jaunting_car_N 3.729715012475897e-6 +jaunty_A 2.1546383978108874e-5 +java_PN 1.865462821325971e-5 +javanese_A 1.0773191989054437e-5 +javanese_N 3.729715012475897e-6 +javelin_N 3.729715012475897e-6 +jaw_N 7.459430024951794e-6 +jaw_V 2.2678822515534993e-5 +jaw_away_V 2.2678822515534993e-5 +jawan_N 3.729715012475897e-6 +jawbone_N 3.729715012475897e-6 +jawbreaker_N 3.729715012475897e-6 +jawed_A 1.0773191989054437e-5 +jawfish_N 3.729715012475897e-6 +jawless_A 1.0773191989054437e-5 +jay_N 3.729715012475897e-6 +jaywalk_V 2.2678822515534993e-5 +jaywalker_N 3.729715012475897e-6 +jazz_N 3.356743511228307e-5 +jazz_V2 1.609865254278217e-5 +jazz_up_V2 1.609865254278217e-5 +jazzy_A 2.1546383978108874e-5 +jc_PN 1.865462821325971e-5 +jealous_A 7.541234392338106e-5 +jealousy_N 1.8648575062379485e-5 +jean_N 3.729715012475897e-5 +jean_PN 1.865462821325971e-5 +jeanie_PN 1.865462821325971e-5 +jedburgh_PN 1.865462821325971e-5 +jeep_N 2.237829007485538e-5 +jeer_N 3.729715012475897e-6 +jeer_V 2.2678822515534993e-5 +jeer_V2 1.609865254278217e-5 +jeeringly_Adv 8.668966832532898e-6 +jeff_PN 1.865462821325971e-5 +jeffrey_PN 1.865462821325971e-5 +jehovah_PN 1.865462821325971e-5 +jejune_A 1.0773191989054437e-5 +jejuneness_N 3.729715012475897e-6 +jejunitis_N 3.729715012475897e-6 +jejunity_N 3.729715012475897e-6 +jejunoileitis_N 3.729715012475897e-6 +jejunostomy_N 3.729715012475897e-6 +jejunum_N 3.729715012475897e-6 +jekyll_and_hyde_PN 1.865462821325971e-5 +jell_V 2.2678822515534993e-5 +jell_V2 1.609865254278217e-5 +jellaba_N 3.729715012475897e-6 +jello_N 3.729715012475897e-6 +jelly_N 3.729715012475897e-6 +jelly_V 2.2678822515534993e-5 +jelly_V2 1.609865254278217e-5 +jellyfish_N 3.729715012475897e-6 +jellyroll_N 3.729715012475897e-6 +jemmy_N 3.729715012475897e-6 +jennet_N 3.729715012475897e-6 +jennifer_PN 1.865462821325971e-5 +jenny_N 3.729715012475897e-6 +jenny_PN 1.865462821325971e-5 +jeopardize_V2 2.092824830561682e-4 +jeopardy_N 2.237829007485538e-5 +jerboa_N 3.729715012475897e-6 +jeremiad_N 3.729715012475897e-6 +jeremy_PN 1.865462821325971e-5 +jerk_N 3.729715012475897e-6 +jerk_V 2.2678822515534993e-5 +jerk_V2 3.219730508556434e-5 +jerk_around_V 2.2678822515534993e-5 +jerk_around_V2 1.609865254278217e-5 +jerk_off_V 2.2678822515534993e-5 +jerkin_N 3.729715012475897e-6 +jerkiness_N 3.729715012475897e-6 +jerkwater_A 1.0773191989054437e-5 +jerky_A 1.0773191989054437e-5 +jerky_N 3.729715012475897e-6 +jeroboam_N 3.729715012475897e-6 +jerome_PN 1.865462821325971e-5 +jerry_N 3.729715012475897e-6 +jerry_PN 1.865462821325971e-5 +jerry_builder_N 3.729715012475897e-6 +jerry_building_N 3.729715012475897e-6 +jerry_built_A 1.0773191989054437e-5 +jersey_N 7.459430024951794e-6 +jersey_PN 1.865462821325971e-5 +jess_PN 1.865462821325971e-5 +jessica_PN 1.865462821325971e-5 +jessie_PN 1.865462821325971e-5 +jest_N 3.729715012475897e-6 +jest_V 2.2678822515534993e-5 +jester_N 7.459430024951794e-6 +jesuit_N 3.729715012475897e-6 +jesuitical_A 1.0773191989054437e-5 +jesus_PN 1.865462821325971e-5 +jet_N 1.193508803992287e-4 +jet_V 2.2678822515534993e-5 +jet_V2 1.609865254278217e-5 +jet_black_A 1.0773191989054437e-5 +jet_off_V 4.5357645031069986e-5 +jet_propelled_A 1.0773191989054437e-5 +jetliner_N 3.729715012475897e-6 +jetsam_N 3.729715012475897e-6 +jettison_V2 6.439461017112868e-5 +jetty_N 7.459430024951794e-6 +jew_N 1.4918860049903587e-5 +jewel_N 1.8648575062379485e-5 +jewel_V2 1.609865254278217e-5 +jeweller_N 1.118914503742769e-5 +jewellery_N 3.729715012475897e-6 +jewelry_N 7.459430024951794e-5 +jewelweed_N 3.729715012475897e-6 +jewess_N 3.729715012475897e-6 +jewfish_N 3.729715012475897e-6 +jewish_A 2.47783415748252e-4 +jezebel_N 3.729715012475897e-6 +jiao_N 3.729715012475897e-6 +jib_N 3.729715012475897e-6 +jib_V 2.2678822515534993e-5 +jib_boom_N 3.729715012475897e-6 +jibboom_N 3.729715012475897e-6 +jibe_N 3.729715012475897e-6 +jibe_V 2.2678822515534993e-5 +jiffy_N 3.729715012475897e-6 +jig_N 3.729715012475897e-6 +jig_V 2.2678822515534993e-5 +jig_V2 1.609865254278217e-5 +jigger_N 3.729715012475897e-6 +jiggered_A 1.0773191989054437e-5 +jiggermast_N 3.729715012475897e-6 +jiggery_pokery_N 3.729715012475897e-6 +jiggle_N 3.729715012475897e-6 +jiggle_V 4.5357645031069986e-5 +jiggle_V2 1.609865254278217e-5 +jigsaw_N 3.729715012475897e-6 +jihad_N 3.729715012475897e-6 +jihadi_A 1.0773191989054437e-5 +jill_PN 1.865462821325971e-5 +jilt_N 3.729715012475897e-6 +jilt_V2 1.609865254278217e-5 +jim_PN 1.865462821325971e-5 +jim_crow_N 7.459430024951794e-6 +jimdandy_N 3.729715012475897e-6 +jimmies_N 3.729715012475897e-6 +jimmy_N 3.729715012475897e-6 +jimmy_PN 1.865462821325971e-5 +jimsonweed_N 3.729715012475897e-6 +jingle_N 3.729715012475897e-6 +jingle_V 2.2678822515534993e-5 +jingle_V2 3.219730508556434e-5 +jingo_N 3.729715012475897e-6 +jingoism_N 3.729715012475897e-6 +jingoist_N 3.729715012475897e-6 +jingoistic_A 1.0773191989054437e-5 +jinks_N 3.729715012475897e-6 +jinn_N 3.729715012475897e-6 +jinrikisha_N 3.729715012475897e-6 +jinx_N 3.729715012475897e-6 +jiqui_N 3.729715012475897e-6 +jird_N 3.729715012475897e-6 +jitney_N 3.729715012475897e-6 +jitter_N 3.729715012475897e-6 +jitterbug_N 3.729715012475897e-6 +jitteriness_N 3.729715012475897e-6 +jittering_A 1.0773191989054437e-5 +jitters_N 3.729715012475897e-6 +jittery_A 1.1850511187959881e-4 +jive_N 3.729715012475897e-6 +jive_V 2.2678822515534993e-5 +jnr_PN 1.865462821325971e-5 +jo_PN 1.865462821325971e-5 +joan_PN 1.865462821325971e-5 +joanie_PN 1.865462821325971e-5 +joann_PN 1.865462821325971e-5 +joanna_PN 1.865462821325971e-5 +joanne_PN 1.865462821325971e-5 +job_N 9.622664732187814e-4 +job_PN 1.865462821325971e-5 +job_V 2.2678822515534993e-5 +job_V2 1.609865254278217e-5 +jobber_N 3.729715012475897e-6 +jobbery_N 3.729715012475897e-6 +jobcentre_N 3.729715012475897e-6 +jobholder_N 3.729715012475897e-6 +jocelyn_PN 1.865462821325971e-5 +jockey_N 7.459430024951794e-6 +jockey_V 4.5357645031069986e-5 +jockey_V2 1.609865254278217e-5 +jocose_A 1.0773191989054437e-5 +jocoseness_N 3.729715012475897e-6 +jocosity_N 3.729715012475897e-6 +jocular_A 1.0773191989054437e-5 +jocularity_N 3.729715012475897e-6 +jocund_A 1.0773191989054437e-5 +jocundity_N 3.729715012475897e-6 +jodhpur_N 3.729715012475897e-6 +jodhpurs_N 3.729715012475897e-6 +joe_PN 1.865462821325971e-5 +joey_PN 1.865462821325971e-5 +jog_N 3.729715012475897e-6 +jog_V 4.5357645031069986e-5 +jog_V2 1.609865254278217e-5 +jog_trot_N 3.729715012475897e-6 +jogger_N 7.459430024951794e-6 +jogging_N 7.459430024951794e-6 +joggle_N 3.729715012475897e-6 +joggle_V 2.2678822515534993e-5 +joggle_V2 1.609865254278217e-5 +johannesburg_PN 1.865462821325971e-5 +john_PN 1.865462821325971e-5 +john_bull_N 4.475658014971076e-5 +johnny_PN 1.865462821325971e-5 +johnnycake_N 3.729715012475897e-6 +johnstone_PN 1.865462821325971e-5 +joie_de_vivre_N 3.729715012475897e-6 +join_N 3.729715012475897e-6 +join_V 8.844740781058648e-4 +join_V2 1.7869504322488208e-3 +join_up_V 2.2678822515534993e-5 +joiner_N 3.729715012475897e-6 +joinery_N 3.729715012475897e-6 +joining_N 3.729715012475897e-6 +joint_A 2.122318821843724e-3 +joint_N 7.459430024951794e-5 +joint_V2 1.609865254278217e-5 +jointer_N 3.729715012475897e-6 +jointure_N 3.729715012475897e-6 +joist_N 3.729715012475897e-6 +joke_N 5.594572518713845e-5 +joke_V 6.803646754660499e-5 +joke_VS 1.7328019407381737e-4 +joke_around_V 2.2678822515534993e-5 +joker_N 3.729715012475897e-6 +jokingly_Adv 1.7337933665065797e-5 +jollification_N 3.729715012475897e-6 +jollity_N 3.729715012475897e-6 +jolly_A 2.1546383978108874e-5 +jolly_Adv 8.668966832532898e-6 +jolly_N 3.729715012475897e-6 +jolly_V2 1.609865254278217e-5 +jollyboat_N 3.729715012475897e-6 +jolt_N 4.1026865137234865e-5 +jolt_V 4.5357645031069986e-5 +jolt_V2 2.4147978814173252e-4 +jolty_A 1.0773191989054437e-5 +jonah_N 3.729715012475897e-6 +jonah_PN 1.865462821325971e-5 +jonathan_PN 1.865462821325971e-5 +jonquil_N 3.729715012475897e-6 +jordan_PN 1.865462821325971e-5 +jordanian_A 1.0773191989054437e-5 +jordanian_N 3.729715012475897e-6 +jorum_N 3.729715012475897e-6 +joseph_PN 1.865462821325971e-5 +josephine_PN 1.865462821325971e-5 +josh_PN 1.865462821325971e-5 +joshua_PN 1.865462821325971e-5 +joss_N 3.729715012475897e-6 +joss_house_N 3.729715012475897e-6 +joss_stick_N 3.729715012475897e-6 +jostle_N 3.729715012475897e-6 +jostle_V 4.5357645031069986e-5 +jostle_V2 1.609865254278217e-5 +jot_N 3.729715012475897e-6 +jot_V2 1.609865254278217e-5 +jot_down_V2 1.609865254278217e-5 +jotter_N 3.729715012475897e-6 +jotting_N 3.729715012475897e-6 +joule_N 3.729715012475897e-6 +journal_N 7.086458523704203e-5 +journalese_N 3.729715012475897e-6 +journalism_N 4.1026865137234865e-5 +journalist_N 1.0443202034932511e-4 +journalistic_A 5.3865959945272184e-5 +journalistically_Adv 8.668966832532898e-6 +journey_N 1.4918860049903587e-5 +journey_V 2.2678822515534993e-5 +journeyman_N 3.729715012475897e-6 +joust_N 3.729715012475897e-6 +joust_V 6.803646754660499e-5 +jove_PN 1.865462821325971e-5 +jovial_A 2.1546383978108874e-5 +joviality_N 3.729715012475897e-6 +jowl_N 3.729715012475897e-6 +jowly_A 1.0773191989054437e-5 +joy_N 1.4918860049903587e-5 +joy_PN 1.865462821325971e-5 +joy_V 2.2678822515534993e-5 +joy_ride_N 3.729715012475897e-6 +joy_stick_N 3.729715012475897e-6 +joyce_PN 1.865462821325971e-5 +joyful_A 1.0773191989054437e-5 +joyfulness_N 3.729715012475897e-6 +joyless_A 1.0773191989054437e-5 +joylessness_N 3.729715012475897e-6 +joyous_A 1.0773191989054437e-5 +joyousness_N 3.729715012475897e-6 +joyride_N 3.729715012475897e-6 +joystick_N 3.729715012475897e-6 +jp_N 3.729715012475897e-6 +ju_jitsu_N 3.729715012475897e-6 +jubilant_A 2.1546383978108874e-5 +jubilation_N 3.729715012475897e-6 +jubilee_N 3.729715012475897e-6 +judaic_A 1.0773191989054437e-5 +judaism_N 3.729715012475897e-6 +judas_N 3.729715012475897e-6 +judas_PN 1.865462821325971e-5 +judder_V 2.2678822515534993e-5 +judge_N 7.310241424452758e-4 +judge_V 2.9482469270195494e-4 +judge_V2 1.1269056779947518e-4 +judge_V2V 1.402524544179523e-3 +judge_VS 1.7328019407381737e-4 +judgement_N 3.729715012475897e-6 +judgeship_N 3.729715012475897e-6 +judgment_N 3.729715012475897e-6 +judgmental_A 1.0773191989054437e-5 +judicable_A 1.0773191989054437e-5 +judicature_N 3.729715012475897e-6 +judicial_A 3.016493756935242e-4 +judiciary_N 2.9837720099807175e-5 +judicious_A 3.231957596716331e-5 +judiciousness_N 3.729715012475897e-6 +judith_PN 1.865462821325971e-5 +judo_N 3.729715012475897e-6 +judy_PN 1.865462821325971e-5 +jug_N 1.118914503742769e-5 +jug_V2 1.609865254278217e-5 +jugale_N 3.729715012475897e-6 +jugful_N 3.729715012475897e-6 +juggernaut_N 7.459430024951794e-6 +juggle_N 3.729715012475897e-6 +juggle_V 1.1339411257767497e-4 +juggle_V2 3.219730508556434e-5 +juggler_N 7.459430024951794e-6 +jugglery_N 3.729715012475897e-6 +jugular_A 1.0773191989054437e-5 +jugular_N 3.729715012475897e-6 +juice_N 4.848629516218666e-5 +juice_up_V2 1.609865254278217e-5 +juiceless_A 1.0773191989054437e-5 +juiciness_N 3.729715012475897e-6 +juicy_A 1.0773191989054437e-5 +juju_N 3.729715012475897e-6 +jujube_N 3.729715012475897e-6 +jujutsu_N 3.729715012475897e-6 +juke_N 3.729715012475897e-6 +jukebox_N 3.729715012475897e-6 +jul_PN 1.865462821325971e-5 +julep_N 3.729715012475897e-6 +julia_PN 1.865462821325971e-5 +julian_A 1.0773191989054437e-5 +julian_PN 1.865462821325971e-5 +julie_PN 1.865462821325971e-5 +julienne_N 3.729715012475897e-6 +juliet_PN 1.865462821325971e-5 +july_PN 2.4810655523635414e-3 +jumble_N 3.729715012475897e-6 +jumble_V 2.2678822515534993e-5 +jumble_V2 1.609865254278217e-5 +jumble_sale_N 3.729715012475897e-6 +jumbo_A 9.695872790148993e-5 +jumbojet_N 3.729715012475897e-6 +jumentous_A 1.0773191989054437e-5 +jump_N 1.4545888548655997e-4 +jump_V 1.8369846237583345e-3 +jump_V2 1.2556948983370093e-3 +jump_V2V 4.675081813931744e-4 +jump_VV 2.8829521429944266e-4 +jump_at_V2 1.609865254278217e-5 +jump_in_V 2.2678822515534993e-5 +jump_on_V2 1.609865254278217e-5 +jump_to_V2 1.609865254278217e-5 +jumped_up_A 1.0773191989054437e-5 +jumper_N 3.729715012475897e-6 +jumpiness_N 7.459430024951794e-6 +jumping_N 3.729715012475897e-6 +jumpstart_N 3.729715012475897e-6 +jumpy_A 2.1546383978108874e-5 +jun_PN 1.865462821325971e-5 +junco_N 3.729715012475897e-6 +junction_N 7.459430024951794e-6 +juncture_N 1.118914503742769e-5 +june_N 3.729715012475897e-6 +june_PN 1.28716934671492e-3 +jungle_N 7.459430024951794e-6 +jungly_A 1.0773191989054437e-5 +junior_A 6.463915193432663e-5 +junior_N 1.8648575062379485e-5 +juniper_N 3.729715012475897e-6 +junk_N 1.3911836996535094e-3 +junk_V2 4.8295957628346505e-5 +junk_shop_N 3.729715012475897e-6 +junket_N 1.4918860049903587e-5 +junket_V 2.2678822515534993e-5 +junketing_N 3.729715012475897e-6 +junkie_N 3.729715012475897e-6 +junky_N 7.459430024951794e-6 +junkyard_N 3.729715012475897e-6 +junoesque_A 1.0773191989054437e-5 +junta_N 3.729715012475897e-6 +jupati_N 3.729715012475897e-6 +jupiter_PN 1.865462821325971e-5 +jural_A 1.0773191989054437e-5 +juridical_A 1.0773191989054437e-5 +jurisdiction_N 5.2216010174662554e-5 +jurisdictional_A 1.0773191989054437e-5 +jurisprudence_N 1.4918860049903587e-5 +jurisprudential_A 1.0773191989054437e-5 +jurist_N 1.118914503742769e-5 +juror_N 8.578344528694562e-5 +jury_N 3.095663460354994e-4 +jury_box_N 3.729715012475897e-6 +jury_mast_N 3.729715012475897e-6 +jury_rigge_V2 3.219730508556434e-5 +juryman_N 3.729715012475897e-6 +just_A 1.0773191989054437e-5 +just_AdV 6.918729292535568e-3 +just_Adv 5.59148360698372e-3 +just_Predet 1.6666666666666666e-2 +justice_N 1.2308059541170458e-4 +justiciar_N 3.729715012475897e-6 +justiciary_N 3.729715012475897e-6 +justifiable_A 3.231957596716331e-5 +justification_N 2.237829007485538e-5 +justificative_A 1.0773191989054437e-5 +justify_V2 6.439461017112868e-4 +justify_VV 2.8829521429944266e-4 +justin_PN 1.865462821325971e-5 +justness_N 3.729715012475897e-6 +jut_V 6.803646754660499e-5 +jute_N 7.459430024951794e-6 +juvenescence_N 3.729715012475897e-6 +juvenile_A 2.1546383978108874e-5 +juvenile_N 3.729715012475897e-6 +juxtapose_V2 3.219730508556434e-5 +juxtaposition_N 3.729715012475897e-6 +kabbalism_N 3.729715012475897e-6 +kabob_N 3.729715012475897e-6 +kachina_N 3.729715012475897e-6 +kaffir_N 3.729715012475897e-6 +kaffiyeh_N 3.729715012475897e-6 +kafkaesque_A 1.0773191989054437e-5 +kahikatea_N 3.729715012475897e-6 +kail_N 3.729715012475897e-6 +kainite_N 3.729715012475897e-6 +kaiser_N 3.729715012475897e-6 +kakemono_N 3.729715012475897e-6 +kaki_N 3.729715012475897e-6 +kalansuwa_N 3.729715012475897e-6 +kale_N 3.729715012475897e-6 +kaleidoscope_N 3.729715012475897e-6 +kaleidoscopic_A 1.0773191989054437e-5 +kalemia_N 3.729715012475897e-6 +kalgan_PN 1.865462821325971e-5 +kaliuresis_N 3.729715012475897e-6 +kalmia_N 3.729715012475897e-6 +kalumpang_N 3.729715012475897e-6 +kameez_N 3.729715012475897e-6 +kamikaze_N 3.729715012475897e-6 +kampong_N 3.729715012475897e-6 +kampuchea_PN 1.865462821325971e-5 +kampuchean_A 1.0773191989054437e-5 +kampuchean_N 3.729715012475897e-6 +kanamycin_N 3.729715012475897e-6 +kanchil_N 3.729715012475897e-6 +kangaroo_N 7.459430024951794e-6 +kanpur_PN 1.865462821325971e-5 +kansas_PN 2.052009103458568e-4 +kansas_city_PN 1.865462821325971e-5 +kanzu_N 3.729715012475897e-6 +kaohsiung_PN 1.865462821325971e-5 +kaoliang_N 3.729715012475897e-6 +kaolin_N 3.729715012475897e-6 +kaolinite_N 3.729715012475897e-6 +kaon_N 3.729715012475897e-6 +kapeika_N 3.729715012475897e-6 +kaph_N 3.729715012475897e-6 +kapok_N 3.729715012475897e-6 +kappa_N 3.729715012475897e-6 +kapuka_N 3.729715012475897e-6 +kaput_A 1.0773191989054437e-5 +karachi_PN 1.865462821325971e-5 +karaganda_PN 1.865462821325971e-5 +karaoke_N 3.729715012475897e-6 +karat_N 3.729715012475897e-6 +karate_N 3.729715012475897e-6 +karen_PN 1.865462821325971e-5 +karlsruhe_PN 1.865462821325971e-5 +karma_N 3.729715012475897e-6 +karyokinesis_N 3.729715012475897e-6 +karyokinetic_A 1.0773191989054437e-5 +karyolymph_N 3.729715012475897e-6 +karyolysis_N 3.729715012475897e-6 +karyotype_N 3.729715012475897e-6 +kasbah_N 3.729715012475897e-6 +kasha_N 3.729715012475897e-6 +kashmir_PN 1.865462821325971e-5 +kashmiri_A 1.0773191989054437e-5 +kashmiri_N 3.729715012475897e-6 +kassel_PN 1.865462821325971e-5 +kat_N 3.729715012475897e-6 +katabatic_A 1.0773191989054437e-5 +katamorphism_N 3.729715012475897e-6 +kate_PN 1.865462821325971e-5 +kath_PN 1.865462821325971e-5 +katharobe_N 3.729715012475897e-6 +katharobic_A 1.0773191989054437e-5 +katharometer_N 3.729715012475897e-6 +katherine_PN 1.865462821325971e-5 +kathy_PN 1.865462821325971e-5 +katie_PN 1.865462821325971e-5 +katowice_PN 1.865462821325971e-5 +katydid_N 3.729715012475897e-6 +kauri_N 3.729715012475897e-6 +kava_N 3.729715012475897e-6 +kawaka_N 3.729715012475897e-6 +kay_PN 1.865462821325971e-5 +kayak_N 3.729715012475897e-6 +kazan_PN 1.865462821325971e-5 +kazoo_N 3.729715012475897e-6 +kea_N 3.729715012475897e-6 +kebab_N 3.729715012475897e-6 +kedgeree_N 3.729715012475897e-6 +keel_N 7.459430024951794e-6 +keel_V 2.2678822515534993e-5 +keel_V2 1.609865254278217e-5 +keel_over_V 2.2678822515534993e-5 +keelboat_N 3.729715012475897e-6 +keelson_N 3.729715012475897e-6 +keen_A 8.61855359124355e-5 +keen_N 3.729715012475897e-6 +keen_V 4.5357645031069986e-5 +keen_V2 1.609865254278217e-5 +keenness_N 3.729715012475897e-6 +keep_N 3.729715012475897e-6 +keep_V 2.1091304939447543e-3 +keep_V2 2.2538113559895036e-3 +keep_V2A 1.5e-2 +keep_VA 6.889763779527559e-3 +keep_VS 7.162248021717784e-3 +keep_VV 1.0570824524312897e-3 +keep_around_V2 1.609865254278217e-5 +keep_at_V2 1.609865254278217e-5 +keep_away_V2 1.609865254278217e-5 +keep_back_V 2.2678822515534993e-5 +keep_back_V2 1.609865254278217e-5 +keep_down_V2 1.609865254278217e-5 +keep_from_V2 1.609865254278217e-5 +keep_in_V2 1.609865254278217e-5 +keep_ing_V2V 9.350163627863488e-4 +keep_off_V2 1.609865254278217e-5 +keep_on_V 2.2678822515534993e-5 +keep_on_V2 1.609865254278217e-5 +keep_out_V 2.2678822515534993e-5 +keep_out_V2 1.609865254278217e-5 +keep_over_V2 1.609865254278217e-5 +keep_to_V2 1.609865254278217e-5 +keep_to_V2V 9.350163627863488e-4 +keep_up_V 4.5357645031069986e-5 +keep_up_V2 1.609865254278217e-5 +keep_up_at_V2 1.609865254278217e-5 +keep_up_with_V2 1.609865254278217e-5 +keeper_N 7.459430024951794e-6 +keeping_N 1.8648575062379485e-5 +keepsake_N 3.729715012475897e-6 +keeshond_N 3.729715012475897e-6 +keg_N 3.729715012475897e-6 +keighley_PN 1.865462821325971e-5 +keith_PN 1.865462821325971e-5 +keloid_N 3.729715012475897e-6 +kelp_N 7.459430024951794e-6 +kelpie_N 3.729715012475897e-6 +kelpy_N 3.729715012475897e-6 +kelso_PN 1.865462821325971e-5 +kelt_N 3.729715012475897e-6 +kelty_PN 1.865462821325971e-5 +kelvin_N 3.729715012475897e-6 +kempt_A 1.0773191989054437e-5 +kemsing_PN 1.865462821325971e-5 +ken_N 3.729715012475897e-6 +ken_PN 1.865462821325971e-5 +ken_V2 1.609865254278217e-5 +kenaf_N 3.729715012475897e-6 +kendal_PN 1.865462821325971e-5 +kenilworth_PN 1.865462821325971e-5 +kennel_N 3.729715012475897e-6 +kennel_V 2.2678822515534993e-5 +kennel_V2 1.609865254278217e-5 +kenneth_PN 1.865462821325971e-5 +kenning_N 3.729715012475897e-6 +kenny_PN 1.865462821325971e-5 +kensington_PN 1.865462821325971e-5 +kent_PN 1.865462821325971e-5 +kentucky_PN 1.865462821325971e-4 +kenya_PN 1.865462821325971e-5 +kenyan_A 1.0773191989054437e-5 +kenyan_N 3.729715012475897e-6 +kepi_N 3.729715012475897e-6 +keratalgia_N 3.729715012475897e-6 +keratectasia_N 3.729715012475897e-6 +keratin_N 3.729715012475897e-6 +keratinization_N 3.729715012475897e-6 +keratitis_N 3.729715012475897e-6 +keratoacanthoma_N 3.729715012475897e-6 +keratocele_N 3.729715012475897e-6 +keratoconjunctivitis_N 3.729715012475897e-6 +keratoconus_N 3.729715012475897e-6 +keratoderma_N 3.729715012475897e-6 +keratohyalin_N 3.729715012475897e-6 +keratoiritis_N 3.729715012475897e-6 +keratomalacia_N 3.729715012475897e-6 +keratomycosis_N 3.729715012475897e-6 +keratonosis_N 3.729715012475897e-6 +keratonosus_N 3.729715012475897e-6 +keratoplasty_N 3.729715012475897e-6 +keratoscleritis_N 3.729715012475897e-6 +keratoscope_N 3.729715012475897e-6 +keratoscopy_N 3.729715012475897e-6 +keratosis_N 3.729715012475897e-6 +keratotomy_N 3.729715012475897e-6 +kerb_N 3.729715012475897e-6 +kerbstone_N 3.729715012475897e-6 +kerchief_N 3.729715012475897e-6 +kerion_N 3.729715012475897e-6 +kern_N 3.729715012475897e-6 +kernel_N 7.459430024951794e-6 +kernicterus_N 3.729715012475897e-6 +kernite_N 3.729715012475897e-6 +kerosene_N 3.729715012475897e-6 +kerry_PN 1.865462821325971e-5 +kerygma_N 3.729715012475897e-6 +kestrel_N 3.729715012475897e-6 +ketamine_N 3.729715012475897e-6 +ketch_N 3.729715012475897e-6 +ketchup_N 1.4918860049903587e-5 +keteleeria_N 3.729715012475897e-6 +ketembilla_N 3.729715012475897e-6 +ketoacidosis_N 3.729715012475897e-6 +ketohexose_N 3.729715012475897e-6 +ketone_N 3.729715012475897e-6 +ketonemia_N 3.729715012475897e-6 +ketonuria_N 3.729715012475897e-6 +ketoprofen_N 3.729715012475897e-6 +ketorolac_N 3.729715012475897e-6 +ketose_N 3.729715012475897e-6 +ketosteroid_N 3.729715012475897e-6 +kettering_PN 1.865462821325971e-5 +kettle_N 1.118914503742769e-5 +kettledrum_N 3.729715012475897e-6 +keurboom_N 3.729715012475897e-6 +kevin_PN 1.865462821325971e-5 +key_A 1.1311851588507158e-3 +key_N 1.3799945546160818e-4 +key_V2 6.439461017112868e-5 +key_down_V 2.2678822515534993e-5 +key_in_V2 1.609865254278217e-5 +key_in_on_V2 1.609865254278217e-5 +key_on_V2 1.609865254278217e-5 +key_to_V2 1.609865254278217e-5 +key_up_V2 1.609865254278217e-5 +keyboard_N 3.356743511228307e-5 +keyboardist_N 3.729715012475897e-6 +keycard_N 3.729715012475897e-6 +keyhole_N 3.729715012475897e-6 +keyless_A 3.231957596716331e-5 +keynote_N 3.729715012475897e-6 +keynsham_PN 1.865462821325971e-5 +keyring_N 3.729715012475897e-6 +keystone_N 7.459430024951794e-6 +keystroke_N 3.729715012475897e-6 +keyword_N 3.729715012475897e-6 +keyworth_PN 1.865462821325971e-5 +kg_N 3.729715012475897e-6 +kgb_N 3.729715012475897e-6 +khadi_N 3.729715012475897e-6 +khaki_A 1.0773191989054437e-5 +khaki_N 3.729715012475897e-6 +khakis_N 3.729715012475897e-6 +khalka_N 3.729715012475897e-6 +khamsin_N 3.729715012475897e-6 +khan_N 3.729715012475897e-6 +khanate_N 3.729715012475897e-6 +kharkov_PN 1.865462821325971e-5 +khartoum_PN 1.865462821325971e-5 +khimar_N 3.729715012475897e-6 +khmer_N 3.729715012475897e-6 +khoum_N 3.729715012475897e-6 +khukuri_N 3.729715012475897e-6 +kiang_N 3.729715012475897e-6 +kibble_N 3.729715012475897e-6 +kibbutz_N 3.729715012475897e-6 +kibbutznik_N 3.729715012475897e-6 +kibe_N 3.729715012475897e-6 +kibibit_N 3.729715012475897e-6 +kibitzer_N 3.729715012475897e-6 +kick_N 1.4918860049903587e-5 +kick_V 5.442917403728399e-4 +kick_V2 8.049326271391085e-5 +kick_about_V2 1.609865254278217e-5 +kick_around_V2 1.609865254278217e-5 +kick_around_with_V2 1.609865254278217e-5 +kick_back_V 2.2678822515534993e-5 +kick_back_V2 1.609865254278217e-5 +kick_down_V2 1.609865254278217e-5 +kick_in_V 4.5357645031069986e-5 +kick_in_V2 1.609865254278217e-5 +kick_off_V 2.2678822515534993e-5 +kick_off_V2 3.219730508556434e-5 +kick_out_V2 1.609865254278217e-5 +kick_start_N 3.729715012475897e-6 +kick_starter_N 3.729715012475897e-6 +kick_through_V 2.2678822515534993e-5 +kick_up_V 2.2678822515534993e-5 +kickback_N 2.9837720099807175e-5 +kicker_N 3.729715012475897e-6 +kickoff_N 3.729715012475897e-6 +kicksorter_N 3.729715012475897e-6 +kickstand_N 3.729715012475897e-6 +kid_N 1.3426974044913228e-4 +kid_V 6.803646754660499e-5 +kid_V2 1.609865254278217e-5 +kidderminster_PN 1.865462821325971e-5 +kiddy_N 1.118914503742769e-5 +kidlington_PN 1.865462821325971e-5 +kidnap_V2 9.659191525669301e-5 +kidnapper_N 1.8648575062379485e-5 +kidnapping_N 3.729715012475897e-6 +kidney_N 5.2216010174662554e-5 +kidney_bean_N 3.729715012475897e-6 +kidsgrove_PN 1.865462821325971e-5 +kieserite_N 3.729715012475897e-6 +kiev_PN 1.865462821325971e-5 +kike_N 3.729715012475897e-6 +kilbirnie_PN 1.865462821325971e-5 +kildare_PN 1.865462821325971e-5 +kilderkin_N 3.729715012475897e-6 +kilkenny_PN 1.865462821325971e-5 +kill_N 7.459430024951794e-6 +kill_V 6.350070304349798e-4 +kill_V2 1.0947083729091875e-3 +kill_off_V2 1.609865254278217e-5 +killable_A 1.0773191989054437e-5 +killarney_PN 1.865462821325971e-5 +killdeer_N 3.729715012475897e-6 +killer_N 3.729715012475897e-5 +killifish_N 3.729715012475897e-6 +killing_N 5.967544019961435e-5 +killingly_Adv 8.668966832532898e-6 +killjoy_N 3.729715012475897e-6 +kilmarnock_PN 1.865462821325971e-5 +kiln_N 3.729715012475897e-6 +kilo_N 3.729715012475897e-6 +kilobit_N 3.729715012475897e-6 +kilobyte_N 3.729715012475897e-6 +kilocycle_N 3.729715012475897e-6 +kilogram_N 1.118914503742769e-5 +kilohertz_N 3.729715012475897e-6 +kiloliter_N 3.729715012475897e-6 +kilolitre_N 3.729715012475897e-6 +kilometer_N 3.729715012475897e-6 +kilometre_N 3.729715012475897e-6 +kiloton_N 3.729715012475897e-6 +kilovolt_N 3.729715012475897e-6 +kilowatt_N 7.459430024951794e-6 +kilsyth_PN 1.865462821325971e-5 +kilt_N 3.729715012475897e-6 +kilter_N 3.729715012475897e-6 +kilwinning_PN 1.865462821325971e-5 +kimberley_PN 1.865462821325971e-5 +kimberlite_N 3.729715012475897e-6 +kimono_N 3.729715012475897e-6 +kin_N 3.729715012475897e-6 +kina_N 3.729715012475897e-6 +kinanesthesia_N 3.729715012475897e-6 +kinase_N 3.729715012475897e-6 +kind_A 1.0773191989054437e-4 +kind_N 5.631869668838604e-4 +kind_hearted_A 1.0773191989054437e-5 +kinda_Adv 8.668966832532898e-6 +kindergarten_N 7.459430024951794e-6 +kindhearted_A 1.0773191989054437e-5 +kindheartedness_N 3.729715012475897e-6 +kindle_V 2.2678822515534993e-5 +kindle_V2 3.219730508556434e-5 +kindliness_N 3.729715012475897e-6 +kindling_N 3.729715012475897e-6 +kindly_A 1.0773191989054437e-5 +kindness_N 7.459430024951794e-6 +kindred_A 2.1546383978108874e-5 +kindred_N 3.729715012475897e-6 +kinematics_N 3.729715012475897e-6 +kinescope_N 3.729715012475897e-6 +kinesiology_N 3.729715012475897e-6 +kinesis_N 3.729715012475897e-6 +kinesthesia_N 3.729715012475897e-6 +kinesthesis_N 3.729715012475897e-6 +kinesthetic_A 1.0773191989054437e-5 +kinesthetically_Adv 8.668966832532898e-6 +kinetic_A 1.0773191989054437e-5 +kinetics_N 3.729715012475897e-6 +king's_lynn_PN 1.865462821325971e-5 +king_N 5.2216010174662554e-5 +king_size_A 1.0773191989054437e-5 +king_sized_A 1.0773191989054437e-5 +kingbird_N 3.729715012475897e-6 +kingbolt_N 3.729715012475897e-6 +kingcup_N 3.729715012475897e-6 +kingdom_N 1.118914503742769e-5 +kingfish_N 3.729715012475897e-6 +kingfisher_N 3.729715012475897e-6 +kinglet_N 3.729715012475897e-6 +kinglike_A 1.0773191989054437e-5 +kingly_A 1.0773191989054437e-5 +kingmaker_N 3.729715012475897e-6 +kingpin_N 2.237829007485538e-5 +kingsbury_PN 1.865462821325971e-5 +kingship_N 3.729715012475897e-6 +kingsteignton_PN 1.865462821325971e-5 +kingston_PN 1.865462821325971e-5 +kingston_upon_hull_PN 1.865462821325971e-5 +kingston_upon_thames_PN 1.865462821325971e-5 +kingwood_N 3.729715012475897e-6 +kinin_N 3.729715012475897e-6 +kink_N 3.729715012475897e-6 +kink_V 2.2678822515534993e-5 +kink_V2 3.219730508556434e-5 +kinkajou_N 3.729715012475897e-6 +kinky_A 1.0773191989054437e-5 +kino_N 3.729715012475897e-6 +kinshasa_PN 1.865462821325971e-5 +kinship_N 3.729715012475897e-6 +kinsman_N 3.729715012475897e-6 +kinswoman_N 3.729715012475897e-6 +kiosk_N 3.729715012475897e-6 +kip_N 3.729715012475897e-6 +kip_V 2.2678822515534993e-5 +kip_down_V 2.2678822515534993e-5 +kip_down_on_V2 1.609865254278217e-5 +kippax_PN 1.865462821325971e-5 +kipper_N 3.729715012475897e-6 +kirin_PN 1.865462821325971e-5 +kirk_N 3.729715012475897e-6 +kirkby_PN 1.865462821325971e-5 +kirkby_in_ashfield_PN 1.865462821325971e-5 +kirkcaldy_PN 1.865462821325971e-5 +kirkham_PN 1.865462821325971e-5 +kirkintilloch_PN 1.865462821325971e-5 +kirkwall_PN 1.865462821325971e-5 +kirpan_N 3.729715012475897e-6 +kirsch_N 3.729715012475897e-6 +kirtle_N 3.729715012475897e-6 +kishke_N 3.729715012475897e-6 +kismet_N 3.729715012475897e-6 +kiss_N 3.729715012475897e-6 +kiss_V 4.5357645031069986e-5 +kiss_V2 3.219730508556434e-5 +kiss_off_V 2.2678822515534993e-5 +kiss_off_V2 1.609865254278217e-5 +kiss_up_to_V2 1.609865254278217e-5 +kisser_N 3.729715012475897e-6 +kit_N 2.237829007485538e-5 +kit_V2 1.609865254278217e-5 +kitakyushu_PN 1.865462821325971e-5 +kitbag_N 3.729715012475897e-6 +kitchen_N 2.9837720099807175e-5 +kitchenette_N 3.729715012475897e-6 +kitchenware_N 3.729715012475897e-6 +kite_N 3.729715012475897e-6 +kite_balloon_N 3.729715012475897e-6 +kith_N 3.729715012475897e-6 +kitsch_A 1.0773191989054437e-5 +kitsch_N 3.729715012475897e-6 +kittee_N 3.729715012475897e-6 +kitten_N 7.459430024951794e-6 +kittenish_A 1.0773191989054437e-5 +kittiwake_N 3.729715012475897e-6 +kitty_N 7.459430024951794e-6 +kitty_PN 1.865462821325971e-5 +kiwi_N 7.459430024951794e-6 +klavern_N 3.729715012475897e-6 +klaxon_N 3.729715012475897e-6 +klebsiella_N 3.729715012475897e-6 +kleenex_N 3.729715012475897e-6 +kleptomania_N 3.729715012475897e-6 +kleptomaniac_N 3.729715012475897e-6 +klondike_N 3.729715012475897e-6 +kludge_N 3.729715012475897e-6 +klutz_N 3.729715012475897e-6 +klystron_N 3.729715012475897e-6 +km_N 3.729715012475897e-6 +knack_N 7.459430024951794e-6 +knacker_N 3.729715012475897e-6 +knackered_A 1.0773191989054437e-5 +knackwurst_N 3.729715012475897e-6 +knap_V2 1.609865254278217e-5 +knapsack_N 3.729715012475897e-6 +knapweed_N 3.729715012475897e-6 +knaresborough_PN 1.865462821325971e-5 +knave_N 3.729715012475897e-6 +knavery_N 3.729715012475897e-6 +knavish_A 1.0773191989054437e-5 +knawel_N 3.729715012475897e-6 +knead_V 4.5357645031069986e-5 +knead_V2 3.219730508556434e-5 +knee_N 3.356743511228307e-5 +knee_deep_A 1.0773191989054437e-5 +knee_deep_Adv 8.668966832532898e-6 +knee_high_A 1.0773191989054437e-5 +knee_high_Adv 8.668966832532898e-6 +kneecap_N 3.729715012475897e-6 +kneel_N 3.729715012475897e-6 +kneel_V 2.2678822515534993e-5 +kneeler_N 3.729715012475897e-6 +knell_N 7.459430024951794e-6 +knesset_N 3.729715012475897e-6 +knick_knack_N 3.729715012475897e-6 +knickknack_N 3.729715012475897e-6 +knife_N 1.118914503742769e-5 +knife_V2 1.609865254278217e-5 +knife_edge_N 3.729715012475897e-6 +knifelike_A 1.0773191989054437e-5 +knight_N 6.713487022456614e-5 +knight_V2 1.609865254278217e-5 +knight_errant_N 3.729715012475897e-6 +knighthood_N 3.729715012475897e-6 +knightly_A 1.0773191989054437e-5 +kniphofia_N 3.729715012475897e-6 +knish_N 3.729715012475897e-6 +knit_N 3.729715012475897e-6 +knit_V 4.5357645031069986e-5 +knit_V2 3.219730508556434e-5 +knitter_N 3.729715012475897e-6 +knitting_N 3.729715012475897e-6 +knitting_machine_N 3.729715012475897e-6 +knitting_needle_N 3.729715012475897e-6 +knitwear_N 7.459430024951794e-6 +knob_N 3.729715012475897e-6 +knobble_N 3.729715012475897e-6 +knobbly_A 1.0773191989054437e-5 +knobby_A 1.0773191989054437e-5 +knobkerrie_N 3.729715012475897e-6 +knock_N 7.459430024951794e-6 +knock_V 7.710799655281898e-4 +knock_V2 9.659191525669301e-5 +knock_about_V2 1.609865254278217e-5 +knock_around_V2 1.609865254278217e-5 +knock_back_V2 1.609865254278217e-5 +knock_down_V2 1.609865254278217e-5 +knock_it_off_V2 1.609865254278217e-5 +knock_kneed_A 1.0773191989054437e-5 +knock_off_V 2.2678822515534993e-5 +knock_off_V2 1.609865254278217e-5 +knock_on_N 3.729715012475897e-6 +knock_out_V 2.2678822515534993e-5 +knock_out_V2 1.609865254278217e-5 +knock_over_V 2.2678822515534993e-5 +knock_together_V2 1.609865254278217e-5 +knock_up_V 2.2678822515534993e-5 +knock_up_V2 1.609865254278217e-5 +knockabout_A 1.0773191989054437e-5 +knockabout_N 3.729715012475897e-6 +knockdown_A 1.0773191989054437e-5 +knockdown_N 3.729715012475897e-6 +knocker_N 3.729715012475897e-6 +knockoff_N 3.729715012475897e-6 +knockout_A 1.0773191989054437e-5 +knockout_N 7.459430024951794e-6 +knoll_N 3.729715012475897e-6 +knot_N 2.237829007485538e-5 +knot_V 2.2678822515534993e-5 +knot_V2 1.609865254278217e-5 +knotgrass_N 3.729715012475897e-6 +knothole_N 3.729715012475897e-6 +knottingley_PN 1.865462821325971e-5 +knotty_A 2.1546383978108874e-5 +knout_N 3.729715012475897e-6 +know_N 3.729715012475897e-6 +know_V 2.7441375243797343e-3 +know_V2 3.3485197288986913e-3 +know_V2V 9.350163627863488e-4 +know_VQ 3.333333333333333e-2 +know_VS 1.0108011320972679e-2 +know_all_N 3.729715012475897e-6 +know_how_N 3.729715012475897e-6 +knowable_A 1.0773191989054437e-5 +knower_N 3.729715012475897e-6 +knowing_N 3.729715012475897e-6 +knowingness_N 3.729715012475897e-6 +knowledge_N 7.459430024951794e-5 +knowledgeability_N 3.729715012475897e-6 +knowledgeable_A 1.1850511187959881e-4 +knuckle_N 7.459430024951794e-6 +knuckle_V 2.2678822515534993e-5 +knuckle_down_V 2.2678822515534993e-5 +knuckle_under_V 2.2678822515534993e-5 +knuckleball_N 3.729715012475897e-6 +knutsford_PN 1.865462821325971e-5 +ko_N 3.729715012475897e-6 +koala_N 3.729715012475897e-6 +koan_N 3.729715012475897e-6 +kob_N 3.729715012475897e-6 +kobe_PN 1.865462821325971e-5 +koblenz_PN 1.865462821325971e-5 +kobo_N 3.729715012475897e-6 +kohl_N 3.729715012475897e-6 +kohleria_N 3.729715012475897e-6 +kohlrabi_N 3.729715012475897e-6 +koinonia_N 3.729715012475897e-6 +kola_N 3.729715012475897e-6 +kola_nut_N 3.729715012475897e-6 +kolkhoz_N 3.729715012475897e-6 +kolkhoznik_N 3.729715012475897e-6 +koln_PN 1.865462821325971e-5 +komondor_N 3.729715012475897e-6 +konini_N 3.729715012475897e-6 +kook_N 3.729715012475897e-6 +kookaburra_N 3.729715012475897e-6 +kopeck_N 3.729715012475897e-6 +kopek_N 3.729715012475897e-6 +kopiyka_N 3.729715012475897e-6 +kopje_N 3.729715012475897e-6 +koppie_N 3.729715012475897e-6 +koran_N 3.729715012475897e-6 +koranic_A 1.0773191989054437e-5 +korea_PN 2.7981942319889563e-4 +korean_A 3.878349116059597e-4 +korean_N 3.729715012475897e-6 +koruna_N 3.729715012475897e-6 +kos_N 3.729715012475897e-6 +kosher_A 1.0773191989054437e-5 +kosher_N 3.729715012475897e-6 +koto_N 3.729715012475897e-6 +kotow_N 3.729715012475897e-6 +kotow_V 2.2678822515534993e-5 +koumiss_N 3.729715012475897e-6 +kowhai_N 3.729715012475897e-6 +kowtow_N 3.729715012475897e-6 +kowtow_V 4.5357645031069986e-5 +kraal_N 3.729715012475897e-6 +kraft_N 3.729715012475897e-6 +krait_N 3.729715012475897e-6 +krakow_PN 1.865462821325971e-5 +krasnoyarsk_PN 1.865462821325971e-5 +kraurosis_N 3.729715012475897e-6 +krefeld_PN 1.865462821325971e-5 +kremlin_N 3.729715012475897e-6 +krigia_N 3.729715012475897e-6 +krill_N 3.729715012475897e-6 +kris_N 3.729715012475897e-6 +krivoi_rog_PN 1.865462821325971e-5 +krona_N 7.459430024951794e-6 +krone_N 3.729715012475897e-6 +kroon_N 3.729715012475897e-6 +krubi_N 3.729715012475897e-6 +krummhorn_N 3.729715012475897e-6 +krypton_N 3.729715012475897e-6 +kudos_N 3.729715012475897e-6 +kudu_N 3.729715012475897e-6 +kudzu_N 3.729715012475897e-6 +kumis_N 3.729715012475897e-6 +kummel_N 3.729715012475897e-6 +kumquat_N 3.729715012475897e-6 +kung_fu_N 3.729715012475897e-6 +kunming_PN 1.865462821325971e-5 +kunzite_N 3.729715012475897e-6 +kurd_N 3.729715012475897e-6 +kurrajong_N 3.729715012475897e-6 +kurta_N 3.729715012475897e-6 +kuru_N 3.729715012475897e-6 +kurus_N 3.729715012475897e-6 +kuvasz_N 3.729715012475897e-6 +kuwait_PN 1.865462821325971e-5 +kuwait_city_PN 1.865462821325971e-5 +kuwaiti_A 1.0773191989054437e-5 +kuwaiti_N 3.729715012475897e-6 +kuybyshev_PN 1.865462821325971e-5 +kvass_N 3.729715012475897e-6 +kvetch_N 3.729715012475897e-6 +kw_N 3.729715012475897e-6 +kwacha_N 3.729715012475897e-6 +kwanza_N 3.729715012475897e-6 +kwashiorkor_N 3.729715012475897e-6 +kweiyang_PN 1.865462821325971e-5 +kwela_N 3.729715012475897e-6 +kyanite_N 3.729715012475897e-6 +kyat_N 3.729715012475897e-6 +kylie_N 3.729715012475897e-6 +kylix_N 3.729715012475897e-6 +kymograph_N 3.729715012475897e-6 +kyoto_PN 1.865462821325971e-5 +kyphosis_N 3.729715012475897e-6 +l_plate_N 3.729715012475897e-6 +la_N 3.729715012475897e-6 +la_PN 1.865462821325971e-5 +la_di_da_A 1.0773191989054437e-5 +la_habana_PN 1.865462821325971e-5 +la_paz_PN 1.865462821325971e-5 +la_plata_PN 1.865462821325971e-5 +la_spezia_PN 1.865462821325971e-5 +laager_N 3.729715012475897e-6 +lab_N 5.594572518713845e-5 +lab_PN 1.865462821325971e-5 +labdanum_N 3.729715012475897e-6 +label_N 9.324287531189741e-5 +label_V 6.803646754660499e-5 +label_V2 8.049326271391085e-5 +label_V2A 2.0e-2 +label_V3 1.2698412698412698e-2 +labeled_A 1.0773191989054437e-5 +labetalol_N 3.729715012475897e-6 +labial_A 1.0773191989054437e-5 +labiate_A 1.0773191989054437e-5 +labile_A 1.0773191989054437e-5 +labium_N 3.729715012475897e-6 +laboratory_N 8.951316029942152e-5 +labored_A 1.0773191989054437e-5 +laborer_N 3.729715012475897e-6 +laborious_A 2.1546383978108874e-5 +laboriousness_N 3.729715012475897e-6 +laborsaving_A 1.0773191989054437e-5 +labour_N 9.324287531189741e-5 +labour_V 1.1339411257767497e-4 +labour_V2 1.609865254278217e-5 +labour_saving_A 1.0773191989054437e-5 +labourer_N 3.729715012475897e-6 +labourite_N 3.729715012475897e-6 +labrador_PN 1.865462821325971e-5 +laburnum_N 3.729715012475897e-6 +labyrinth_N 3.729715012475897e-6 +labyrinthine_A 1.0773191989054437e-5 +labyrinthitis_N 3.729715012475897e-6 +labyrinthodont_N 3.729715012475897e-6 +lac_N 3.729715012475897e-6 +lace_N 3.729715012475897e-6 +lace_V 4.5357645031069986e-5 +lace_V2 4.8295957628346505e-5 +lacebark_N 3.729715012475897e-6 +lacer_N 3.729715012475897e-6 +lacerate_A 1.0773191989054437e-5 +lacerate_V2 1.609865254278217e-5 +laceration_N 3.729715012475897e-6 +lacewing_N 3.729715012475897e-6 +lacework_N 3.729715012475897e-6 +lachrymal_A 1.0773191989054437e-5 +lachrymose_A 1.0773191989054437e-5 +lacing_N 3.729715012475897e-6 +lack_N 2.7599891092321637e-4 +lack_V 1.1339411257767497e-4 +lack_V2 6.439461017112868e-4 +lack_lustre_A 1.0773191989054437e-5 +lackadaisical_A 1.0773191989054437e-5 +lackey_N 7.459430024951794e-6 +lackluster_A 1.0773191989054437e-5 +laconic_A 1.0773191989054437e-5 +laconically_Adv 8.668966832532898e-6 +laconicism_N 3.729715012475897e-6 +laconism_N 3.729715012475897e-6 +lacquer_N 3.729715012475897e-6 +lacquer_V2 1.609865254278217e-5 +lacquerware_N 3.729715012475897e-6 +lacrimal_A 1.0773191989054437e-5 +lacrimation_N 3.729715012475897e-6 +lacrimatory_A 1.0773191989054437e-5 +lacrosse_N 3.729715012475897e-6 +lactalbumin_N 3.729715012475897e-6 +lactase_N 3.729715012475897e-6 +lactate_N 3.729715012475897e-6 +lactation_N 3.729715012475897e-6 +lacteal_A 1.0773191989054437e-5 +lacteal_N 3.729715012475897e-6 +lactic_A 1.0773191989054437e-5 +lactifuge_N 3.729715012475897e-6 +lactobacillus_N 3.729715012475897e-6 +lactogen_N 3.729715012475897e-6 +lactogenic_A 1.0773191989054437e-5 +lactose_N 3.729715012475897e-6 +lactosuria_N 3.729715012475897e-6 +lacuna_N 3.729715012475897e-6 +lacustrine_A 1.0773191989054437e-5 +lacy_A 1.0773191989054437e-5 +lad_N 7.459430024951794e-6 +ladder_N 1.4918860049903587e-5 +ladder_V 2.2678822515534993e-5 +ladder_proof_A 1.0773191989054437e-5 +laddie_N 3.729715012475897e-6 +lade_V2 1.609865254278217e-5 +laden_A 3.231957596716331e-5 +lading_N 3.729715012475897e-6 +ladle_N 3.729715012475897e-6 +ladle_V2 1.609865254278217e-5 +lady's_maid_N 3.729715012475897e-6 +lady_N 5.2216010174662554e-5 +lady_chapel_N 3.729715012475897e-6 +lady_in_waiting_N 3.729715012475897e-6 +lady_killer_N 3.729715012475897e-6 +ladybird_N 3.729715012475897e-6 +ladybug_N 3.729715012475897e-6 +ladyfinger_N 3.729715012475897e-6 +ladyfish_N 3.729715012475897e-6 +ladylike_A 1.0773191989054437e-5 +ladylikeness_N 3.729715012475897e-6 +ladylove_N 3.729715012475897e-6 +ladyship_N 3.729715012475897e-6 +laelia_N 3.729715012475897e-6 +laetrile_N 3.729715012475897e-6 +lag_N 2.6108005087331277e-5 +lag_V 5.669705628883749e-4 +lag_V2 1.4488787288503951e-4 +lagan_N 3.729715012475897e-6 +lager_N 3.729715012475897e-6 +lagerphone_N 3.729715012475897e-6 +laggard_N 1.118914503742769e-5 +lagging_N 7.459430024951794e-6 +lagniappe_N 3.729715012475897e-6 +lagomorph_N 3.729715012475897e-6 +lagoon_N 1.4918860049903587e-5 +lagophthalmos_N 3.729715012475897e-6 +lagos_PN 1.865462821325971e-5 +lahar_N 3.729715012475897e-6 +lahore_PN 1.865462821325971e-5 +laic_A 1.0773191989054437e-5 +laicize_V2 1.609865254278217e-5 +lair_N 3.729715012475897e-6 +laird_N 3.729715012475897e-6 +laissez_faire_N 3.729715012475897e-6 +laity_N 3.729715012475897e-6 +lake_N 1.4918860049903587e-5 +lakefront_N 3.729715012475897e-6 +lakenheath_PN 1.865462821325971e-5 +lakeside_N 3.729715012475897e-6 +lakh_N 3.729715012475897e-6 +lallation_N 3.729715012475897e-6 +lally_N 3.729715012475897e-6 +lam_V 2.2678822515534993e-5 +lam_V2 1.609865254278217e-5 +lama_N 3.729715012475897e-6 +lamasery_N 3.729715012475897e-6 +lamb_N 3.729715012475897e-6 +lamb_V 2.2678822515534993e-5 +lambaste_V2 4.8295957628346505e-5 +lambda_N 3.729715012475897e-6 +lambdacism_N 3.729715012475897e-6 +lambency_N 3.729715012475897e-6 +lambent_A 1.0773191989054437e-5 +lambert_N 3.729715012475897e-6 +lambeth_PN 1.865462821325971e-5 +lambkin_N 3.729715012475897e-6 +lamblike_A 1.0773191989054437e-5 +lambrequin_N 3.729715012475897e-6 +lambskin_N 7.459430024951794e-6 +lame_A 2.1546383978108874e-5 +lame_N 3.729715012475897e-6 +lame_V2 1.609865254278217e-5 +lamedh_N 3.729715012475897e-6 +lamella_N 3.729715012475897e-6 +lamellibranch_A 1.0773191989054437e-5 +lameness_N 3.729715012475897e-6 +lament_N 1.118914503742769e-5 +lament_V 4.5357645031069986e-5 +lament_V2 3.219730508556434e-5 +lament_VS 1.7328019407381737e-4 +lamentable_A 1.0773191989054437e-5 +lamentation_N 3.729715012475897e-6 +lamina_N 3.729715012475897e-6 +laminar_A 1.0773191989054437e-5 +laminate_N 3.729715012475897e-6 +laminate_V 2.2678822515534993e-5 +laminate_V2 3.219730508556434e-5 +lamination_N 3.729715012475897e-6 +laminator_N 3.729715012475897e-6 +laminectomy_N 3.729715012475897e-6 +laminitis_N 3.729715012475897e-6 +lamivudine_N 3.729715012475897e-6 +lammas_N 3.729715012475897e-6 +lammas_PN 1.865462821325971e-5 +lamp_N 1.118914503742769e-5 +lamp_black_N 3.729715012475897e-6 +lamplight_N 3.729715012475897e-6 +lamplighter_N 3.729715012475897e-6 +lamplit_A 1.0773191989054437e-5 +lampoon_N 3.729715012475897e-6 +lampoon_V2 1.609865254278217e-5 +lamppost_N 7.459430024951794e-6 +lamprey_N 3.729715012475897e-6 +lampshade_N 3.729715012475897e-6 +lanai_N 3.729715012475897e-6 +lanark_PN 1.865462821325971e-5 +lanate_A 1.0773191989054437e-5 +lancashire_PN 1.865462821325971e-5 +lancaster_PN 1.865462821325971e-5 +lancastrian_A 1.0773191989054437e-5 +lancastrian_N 3.729715012475897e-6 +lance_N 3.729715012475897e-6 +lance_V2 1.609865254278217e-5 +lance_corporal_N 3.729715012475897e-6 +lancelet_N 3.729715012475897e-6 +lanceolate_A 1.0773191989054437e-5 +lancer_N 3.729715012475897e-6 +lancers_N 3.729715012475897e-6 +lancet_N 3.729715012475897e-6 +lancetfish_N 3.729715012475897e-6 +lancewood_N 3.729715012475897e-6 +lanchow_PN 1.865462821325971e-5 +lancing_PN 1.865462821325971e-5 +land_N 3.319446361103548e-4 +land_V 8.164376105592598e-4 +land_V2 1.1269056779947518e-4 +land_agent_N 3.729715012475897e-6 +land_in_V2 1.609865254278217e-5 +land_up_in_V2 1.609865254278217e-5 +land_with_V3 1.5873015873015873e-3 +landau_N 3.729715012475897e-6 +lander_N 3.729715012475897e-6 +landfall_N 7.459430024951794e-6 +landfill_N 3.729715012475897e-6 +landgrave_N 3.729715012475897e-6 +landholder_N 3.729715012475897e-6 +landholding_N 3.729715012475897e-6 +landing_N 3.729715012475897e-6 +landing_craft_N 3.729715012475897e-6 +landing_field_N 3.729715012475897e-6 +landing_gear_N 3.729715012475897e-6 +landing_net_N 3.729715012475897e-6 +landing_party_N 3.729715012475897e-6 +landing_place_N 3.729715012475897e-6 +landing_stage_N 3.729715012475897e-6 +landing_strip_N 3.729715012475897e-6 +landlady_N 3.729715012475897e-6 +landler_N 3.729715012475897e-6 +landless_A 1.0773191989054437e-5 +landlocked_A 1.0773191989054437e-5 +landlord_N 1.8648575062379485e-5 +landlubber_N 3.729715012475897e-6 +landmark_N 2.6108005087331277e-5 +landmass_N 3.729715012475897e-6 +landmine_N 3.729715012475897e-6 +landowner_N 2.237829007485538e-5 +landrover_N 3.729715012475897e-6 +landscape_N 5.967544019961435e-5 +landscape_V2 1.609865254278217e-5 +landscaping_N 3.729715012475897e-6 +landscapist_N 3.729715012475897e-6 +landside_N 3.729715012475897e-6 +landslide_N 2.6108005087331277e-5 +landslip_N 3.729715012475897e-6 +landsman_N 3.729715012475897e-6 +landward_Adv 8.668966832532898e-6 +lane_N 1.4918860049903587e-5 +langbeinite_N 3.729715012475897e-6 +langlaufer_N 3.729715012475897e-6 +langley_N 3.729715012475897e-6 +langsyne_Adv 8.668966832532898e-6 +langsyne_N 3.729715012475897e-6 +language_N 2.3124233077350558e-4 +languid_A 1.0773191989054437e-5 +languish_V 2.0410940263981494e-4 +languisher_N 3.729715012475897e-6 +languor_N 3.729715012475897e-6 +languorous_A 2.1546383978108874e-5 +langur_N 3.729715012475897e-6 +lank_A 1.0773191989054437e-5 +lankiness_N 3.729715012475897e-6 +lanky_A 1.0773191989054437e-5 +lanolin_N 3.729715012475897e-6 +lanseh_N 3.729715012475897e-6 +lansoprazole_N 3.729715012475897e-6 +lantana_N 3.729715012475897e-6 +lantern_N 3.729715012475897e-6 +lantern_jawed_A 1.0773191989054437e-5 +lanternfish_N 3.729715012475897e-6 +lanthanum_N 3.729715012475897e-6 +lanugo_N 3.729715012475897e-6 +lanyard_N 3.729715012475897e-6 +lao_N 3.729715012475897e-6 +laos_PN 1.865462821325971e-5 +laotian_A 2.1546383978108874e-5 +laotian_N 3.729715012475897e-6 +lap_N 1.118914503742769e-5 +lap_V 4.5357645031069986e-5 +lap_V2 1.609865254278217e-5 +lap_dog_N 3.729715012475897e-6 +lap_up_V2 1.609865254278217e-5 +laparocele_N 3.729715012475897e-6 +laparoscope_N 3.729715012475897e-6 +laparoscopy_N 3.729715012475897e-6 +laparotomy_N 3.729715012475897e-6 +lapboard_N 3.729715012475897e-6 +lapdog_N 3.729715012475897e-6 +lapel_N 3.729715012475897e-6 +lapful_N 3.729715012475897e-6 +lapidarian_A 1.0773191989054437e-5 +lapidary_A 1.0773191989054437e-5 +lapidary_N 3.729715012475897e-6 +lapin_N 3.729715012475897e-6 +lapis_lazuli_N 3.729715012475897e-6 +lappet_N 3.729715012475897e-6 +lapse_N 1.8648575062379485e-5 +lapse_V 9.071529006213997e-5 +lapsed_A 1.0773191989054437e-5 +laptop_N 3.729715012475897e-6 +lapwing_N 3.729715012475897e-6 +larboard_A 1.0773191989054437e-5 +larboard_N 3.729715012475897e-6 +larcenist_N 3.729715012475897e-6 +larceny_N 7.459430024951794e-6 +larch_N 3.729715012475897e-6 +lard_N 7.459430024951794e-6 +lard_V2 1.609865254278217e-5 +larder_N 3.729715012475897e-6 +large_A 8.974068926882345e-3 +large_Adv 1.7337933665065797e-5 +large_N 1.118914503742769e-5 +large_it_up_V2 1.609865254278217e-5 +large_scale_A 1.0773191989054437e-4 +largemouth_N 3.729715012475897e-6 +largeness_N 3.729715012475897e-6 +largess_N 3.729715012475897e-6 +largesse_N 3.729715012475897e-6 +larghetto_A 1.0773191989054437e-5 +larghetto_N 3.729715012475897e-6 +larghissimo_A 1.0773191989054437e-5 +largish_A 2.1546383978108874e-5 +largo_A 1.0773191989054437e-5 +largo_Adv 8.668966832532898e-6 +largo_N 3.729715012475897e-6 +largs_PN 1.865462821325971e-5 +lari_N 3.729715012475897e-6 +lariat_N 3.729715012475897e-6 +larid_N 3.729715012475897e-6 +lark_N 3.729715012475897e-6 +lark_V 2.2678822515534993e-5 +lark_about_V 2.2678822515534993e-5 +lark_around_V 2.2678822515534993e-5 +lark_it_up_V 2.2678822515534993e-5 +larkhall_PN 1.865462821325971e-5 +larkspur_N 3.729715012475897e-6 +larn_V 2.2678822515534993e-5 +larn_V2 1.609865254278217e-5 +larne_PN 1.865462821325971e-5 +larry_PN 1.865462821325971e-5 +larva_N 3.729715012475897e-6 +larvacean_N 3.729715012475897e-6 +larvacide_N 3.729715012475897e-6 +larval_A 1.0773191989054437e-5 +larvicide_N 3.729715012475897e-6 +laryngeal_A 1.0773191989054437e-5 +laryngectomy_N 3.729715012475897e-6 +laryngismus_N 3.729715012475897e-6 +laryngitis_N 3.729715012475897e-6 +laryngopharyngeal_A 1.0773191989054437e-5 +laryngopharyngitis_N 3.729715012475897e-6 +laryngopharynx_N 3.729715012475897e-6 +laryngoscope_N 3.729715012475897e-6 +laryngospasm_N 3.729715012475897e-6 +laryngostenosis_N 3.729715012475897e-6 +laryngotracheobronchitis_N 3.729715012475897e-6 +larynx_N 3.729715012475897e-6 +las_palmas_PN 1.865462821325971e-5 +lasagna_N 3.729715012475897e-6 +lascar_N 3.729715012475897e-6 +lascivious_A 2.1546383978108874e-5 +lasciviousness_N 3.729715012475897e-6 +laser_N 4.848629516218666e-5 +lash_N 3.729715012475897e-6 +lash_V 6.803646754660499e-5 +lash_V2 3.219730508556434e-5 +lash_down_V 2.2678822515534993e-5 +lash_down_V2 1.609865254278217e-5 +lash_into_V2 1.609865254278217e-5 +lash_out_V 2.2678822515534993e-5 +lash_out_against_V2 1.609865254278217e-5 +lash_out_at_V2 1.609865254278217e-5 +lash_out_on_V2 1.609865254278217e-5 +lash_up_N 3.729715012475897e-6 +lasher_N 3.729715012475897e-6 +lashing_N 7.459430024951794e-6 +lasiocampid_N 3.729715012475897e-6 +lass_N 3.729715012475897e-6 +lassie_N 3.729715012475897e-6 +lassitude_N 7.459430024951794e-6 +lasso_N 3.729715012475897e-6 +lasso_V2 1.609865254278217e-5 +last_A 1.5696540728052315e-2 +last_N 3.729715012475897e-6 +last_V 6.350070304349798e-4 +last_V2 3.702690084839899e-4 +lasting_A 4.309276795621775e-5 +lastingness_N 3.729715012475897e-6 +lat_N 3.729715012475897e-6 +latakia_N 3.729715012475897e-6 +latanier_N 3.729715012475897e-6 +latch_N 3.729715012475897e-6 +latch_V 1.1339411257767497e-4 +latch_V2 1.609865254278217e-5 +latch_on_V 2.2678822515534993e-5 +latch_on_to_V2 1.609865254278217e-5 +latch_onto_V2 1.609865254278217e-5 +latchet_N 3.729715012475897e-6 +latchkey_N 3.729715012475897e-6 +latchstring_N 3.729715012475897e-6 +late_A 6.3130905055859e-3 +late_Adv 1.0662829204015466e-3 +latecomer_N 3.729715012475897e-6 +lateen_A 1.0773191989054437e-5 +lateen_N 3.729715012475897e-6 +latency_N 3.729715012475897e-6 +lateness_N 3.729715012475897e-6 +latent_A 1.0773191989054437e-5 +later_Adv 2.6006900497598697e-5 +lateral_A 1.0773191989054437e-5 +laterality_N 3.729715012475897e-6 +lateralization_N 3.729715012475897e-6 +laterite_N 3.729715012475897e-6 +latest_A 1.0773191989054437e-5 +latest_N 3.729715012475897e-6 +latex_N 3.729715012475897e-6 +lath_N 3.729715012475897e-6 +lathe_N 1.118914503742769e-5 +lather_N 3.729715012475897e-6 +lather_V 2.2678822515534993e-5 +lather_V2 1.609865254278217e-5 +lathery_A 1.0773191989054437e-5 +lathi_N 3.729715012475897e-6 +laticifer_N 3.729715012475897e-6 +latin_A 1.2927830386865325e-4 +latin_N 3.729715012475897e-6 +latinate_A 1.0773191989054437e-5 +latinist_N 3.729715012475897e-6 +latinize_V2 1.609865254278217e-5 +latish_A 1.0773191989054437e-5 +latitude_N 1.4918860049903587e-5 +latitudes_N 3.729715012475897e-6 +latitudinal_A 1.0773191989054437e-5 +latitudinarian_A 1.0773191989054437e-5 +latitudinarian_N 3.729715012475897e-6 +latrine_N 3.729715012475897e-6 +lats_N 3.729715012475897e-6 +latten_N 3.729715012475897e-6 +latter_A 1.6159787983581657e-4 +latter_N 3.729715012475897e-6 +latter_day_A 2.1546383978108874e-5 +lattice_N 1.118914503742769e-5 +latticed_A 1.0773191989054437e-5 +laud_V2 8.049326271391085e-5 +laudable_A 3.231957596716331e-5 +laudanum_N 3.729715012475897e-6 +laudator_N 3.729715012475897e-6 +laudatory_A 1.0773191989054437e-5 +laugh_N 1.4918860049903587e-5 +laugh_V 2.7214587018641994e-4 +laugh_V2 3.219730508556434e-5 +laugh_VS 1.7328019407381737e-4 +laugh_at_V2 3.219730508556434e-5 +laugh_off_V2 1.609865254278217e-5 +laughable_A 1.0773191989054437e-5 +laugher_N 3.729715012475897e-6 +laughing_A 2.1546383978108874e-5 +laughing_gas_N 3.729715012475897e-6 +laughing_stock_N 3.729715012475897e-6 +laughter_N 1.118914503742769e-5 +launch_N 1.0443202034932511e-4 +launch_V 9.071529006213998e-4 +launch_V2 1.3039908559653558e-3 +launcher_N 3.729715012475897e-6 +launching_N 3.729715012475897e-6 +launching_pad_N 3.729715012475897e-6 +launching_site_N 3.729715012475897e-6 +launder_V 1.8143058012427994e-4 +launder_V2 6.439461017112868e-5 +launderette_N 3.729715012475897e-6 +laundering_N 3.729715012475897e-6 +laundress_N 3.729715012475897e-6 +laundry_N 2.6108005087331277e-5 +laundryman_N 3.729715012475897e-6 +laundrywoman_N 3.729715012475897e-6 +laura_PN 1.865462821325971e-5 +laureate_A 1.0773191989054437e-5 +laureate_N 1.118914503742769e-5 +laurel_N 7.459430024951794e-6 +laureled_A 1.0773191989054437e-5 +laurelled_A 1.0773191989054437e-5 +laurelwood_N 3.729715012475897e-6 +laurence_PN 1.865462821325971e-5 +lausanne_PN 1.865462821325971e-5 +lav_N 3.729715012475897e-6 +lava_N 3.729715012475897e-6 +lavage_N 3.729715012475897e-6 +lavalava_N 3.729715012475897e-6 +lavaliere_N 3.729715012475897e-6 +lavatory_N 3.729715012475897e-6 +lave_V2 1.609865254278217e-5 +lavender_A 1.0773191989054437e-5 +lavender_N 7.459430024951794e-6 +laver_N 3.729715012475897e-6 +lavish_A 8.61855359124355e-5 +lavish_V2 4.8295957628346505e-5 +lavishness_N 3.729715012475897e-6 +law_N 1.8126414960632858e-3 +law_abiding_A 2.1546383978108874e-5 +law_officer_N 3.729715012475897e-6 +lawbreaker_N 3.729715012475897e-6 +lawful_A 6.463915193432663e-5 +lawfulness_N 3.729715012475897e-6 +lawgiver_N 3.729715012475897e-6 +lawless_A 1.0773191989054437e-5 +lawlessness_N 3.729715012475897e-6 +lawmaker_N 3.319446361103548e-4 +lawmaking_N 7.459430024951794e-6 +lawman_N 3.729715012475897e-6 +lawn_N 5.594572518713845e-5 +lawn_mower_N 3.729715012475897e-6 +lawrence_PN 1.865462821325971e-5 +lawrencium_N 3.729715012475897e-6 +lawsuit_N 1.8648575062379485e-5 +lawyer_N 9.286990381064983e-4 +lawyerbush_N 3.729715012475897e-6 +lax_A 2.1546383978108874e-5 +laxative_A 1.0773191989054437e-5 +laxative_N 1.4918860049903587e-5 +laxity_N 3.729715012475897e-6 +laxness_N 3.729715012475897e-6 +lay_A 1.0773191989054437e-5 +lay_N 3.729715012475897e-6 +lay_V 4.308976277951649e-4 +lay_V2 3.3807170339842556e-4 +lay_VS 1.1552012938254491e-4 +lay_away_V2 1.609865254278217e-5 +lay_down_V 2.2678822515534993e-5 +lay_down_V2 1.609865254278217e-5 +lay_figure_N 3.729715012475897e-6 +lay_in_on_V2 1.609865254278217e-5 +lay_into_V2 1.609865254278217e-5 +lay_off_N 3.729715012475897e-6 +lay_off_V2 1.609865254278217e-5 +lay_on_V2 1.609865254278217e-5 +lay_out_N 3.729715012475897e-6 +lay_out_V2 3.219730508556434e-5 +layabout_N 3.729715012475897e-6 +layby_N 3.729715012475897e-6 +layer_N 4.475658014971076e-5 +layer_V2 1.609865254278217e-5 +layer_cake_N 3.729715012475897e-6 +layette_N 3.729715012475897e-6 +laying_N 3.729715012475897e-6 +layman_N 7.459430024951794e-6 +layoff_N 3.729715012475897e-6 +layout_N 1.118914503742769e-5 +layover_N 3.729715012475897e-6 +lazar_N 3.729715012475897e-6 +lazaret_N 3.729715012475897e-6 +lazarette_N 3.729715012475897e-6 +lazaretto_N 3.729715012475897e-6 +lazarus_N 3.729715012475897e-6 +lazarus_PN 1.865462821325971e-5 +laze_V 2.2678822515534993e-5 +laze_V2 1.609865254278217e-5 +laziness_N 3.729715012475897e-6 +lazy_A 5.3865959945272184e-5 +lazybones_N 3.729715012475897e-6 +lb_N 3.729715012475897e-6 +lbw_PN 1.865462821325971e-5 +le_havre_PN 1.865462821325971e-5 +le_mans_PN 1.865462821325971e-5 +lea_N 3.729715012475897e-6 +leach_N 3.729715012475897e-6 +leach_V2 1.609865254278217e-5 +lead_N 2.1259375571112613e-4 +lead_V 6.259355014287658e-3 +lead_V2 2.8011655424440974e-3 +lead_V2V 1.1220196353436185e-2 +lead_VS 1.1552012938254491e-4 +lead_in_N 3.729715012475897e-6 +lead_on_V2 1.609865254278217e-5 +lead_ore_N 3.729715012475897e-6 +lead_to_V2 1.609865254278217e-5 +lead_up_V 2.2678822515534993e-5 +leaded_A 3.231957596716331e-5 +leaden_A 1.0773191989054437e-5 +leader_N 1.0592390635431547e-3 +leaderless_A 1.0773191989054437e-5 +leadership_N 2.275126157610297e-4 +leading_N 3.729715012475897e-6 +leading_rein_N 3.729715012475897e-6 +leadplant_N 3.729715012475897e-6 +leadwort_N 3.729715012475897e-6 +leaf_N 1.4918860049903587e-5 +leaf_V 2.2678822515534993e-5 +leaf_bud_N 3.729715012475897e-6 +leaf_mould_N 3.729715012475897e-6 +leafed_A 1.0773191989054437e-5 +leafhopper_N 3.729715012475897e-6 +leafless_A 1.0773191989054437e-5 +leaflet_N 7.459430024951794e-6 +leaflike_A 1.0773191989054437e-5 +leafy_A 2.1546383978108874e-5 +league_N 1.0070230533684921e-4 +league_V 2.2678822515534993e-5 +league_V2 1.609865254278217e-5 +leak_N 2.6108005087331277e-5 +leak_V 1.3607293509320997e-4 +leak_V2 8.049326271391085e-5 +leak_out_V2 1.609865254278217e-5 +leakage_N 3.729715012475897e-6 +leaker_N 7.459430024951794e-6 +leakiness_N 3.729715012475897e-6 +leakproof_A 1.0773191989054437e-5 +leaky_A 2.1546383978108874e-5 +leal_A 1.0773191989054437e-5 +leamington_spa_PN 1.865462821325971e-5 +lean_A 1.2927830386865325e-4 +lean_N 3.729715012475897e-6 +lean_V 2.7214587018641994e-4 +lean_V2 4.8295957628346505e-5 +lean_on_V2 1.609865254278217e-5 +lean_to_N 3.729715012475897e-6 +leaner_N 3.729715012475897e-6 +leaning_N 3.729715012475897e-6 +leanness_N 3.729715012475897e-6 +leap_N 3.356743511228307e-5 +leap_V 2.9482469270195494e-4 +leap_V2 9.659191525669301e-5 +leap_at_V2 1.609865254278217e-5 +leap_on_V2 1.609865254278217e-5 +leap_out_V 2.2678822515534993e-5 +leap_out_at_V2 1.609865254278217e-5 +leap_upon_V2 1.609865254278217e-5 +leap_year_N 3.729715012475897e-6 +leapfrog_N 3.729715012475897e-6 +leapfrog_V2 3.219730508556434e-5 +learn_V 7.937587880437248e-4 +learn_V2 4.668609237406829e-4 +learn_VS 1.5017616819730838e-3 +learn_VV 1.0570824524312897e-3 +learner_N 3.729715012475897e-6 +learning_N 1.118914503742769e-5 +lease_N 1.1562116538675279e-4 +lease_V2 5.312555339118116e-4 +lease_lend_N 3.729715012475897e-6 +leasehold_A 1.0773191989054437e-5 +leasehold_N 3.729715012475897e-6 +leaseholder_N 3.729715012475897e-6 +leash_N 7.459430024951794e-6 +least_Adv 8.668966832532898e-6 +least_N 3.729715012475897e-6 +leastways_Adv 8.668966832532898e-6 +leastwise_Adv 8.668966832532898e-6 +leather_N 4.848629516218666e-5 +leather_jacket_N 3.729715012475897e-6 +leatherette_N 3.729715012475897e-6 +leatherhead_PN 1.865462821325971e-5 +leatherjacket_N 3.729715012475897e-6 +leatherleaf_N 3.729715012475897e-6 +leatherneck_N 3.729715012475897e-6 +leatherwood_N 3.729715012475897e-6 +leatherwork_N 3.729715012475897e-6 +leathery_A 1.0773191989054437e-5 +leave_N 5.2216010174662554e-5 +leave_V 2.5173492992243843e-3 +leave_V2 2.67237632210184e-3 +leave_V2V 2.805049088359046e-3 +leave_VS 4.158724657771617e-3 +leave_VV 1.2492792619642513e-3 +leave_behind_V 2.2678822515534993e-5 +leave_off_V 2.2678822515534993e-5 +leave_on_V2 1.609865254278217e-5 +leave_open_V 2.2678822515534993e-5 +leave_out_V2 1.609865254278217e-5 +leave_over_V 2.2678822515534993e-5 +leave_taking_N 3.729715012475897e-6 +leaven_N 3.729715012475897e-6 +leaven_V2 1.609865254278217e-5 +lebanese_A 6.463915193432663e-5 +lebanese_N 3.729715012475897e-6 +lebanon_PN 4.47711077118233e-4 +lecanopteris_N 3.729715012475897e-6 +lecanora_N 3.729715012475897e-6 +lecher_N 3.729715012475897e-6 +lecherous_A 2.1546383978108874e-5 +lecherousness_N 3.729715012475897e-6 +lechery_N 3.729715012475897e-6 +lechwe_N 3.729715012475897e-6 +lecithin_N 3.729715012475897e-6 +lectern_N 3.729715012475897e-6 +lectin_N 3.729715012475897e-6 +lector_N 3.729715012475897e-6 +lecture_N 1.118914503742769e-5 +lecture_V 4.5357645031069986e-5 +lecture_V2 8.049326271391085e-5 +lecturer_N 1.4918860049903587e-5 +lectureship_N 3.729715012475897e-6 +lederhosen_N 3.729715012475897e-6 +ledge_N 3.729715012475897e-6 +ledger_N 1.118914503742769e-5 +lee_N 3.729715012475897e-6 +leech_N 7.459430024951794e-6 +leeds_PN 1.865462821325971e-5 +leek_N 3.729715012475897e-6 +leek_PN 1.865462821325971e-5 +leer_N 3.729715012475897e-6 +leer_V 2.2678822515534993e-5 +leery_A 1.0773191989054437e-5 +lees_N 3.729715012475897e-6 +leeward_A 1.0773191989054437e-5 +leeward_Adv 8.668966832532898e-6 +leeward_N 3.729715012475897e-6 +leeway_N 2.9837720099807175e-5 +leflunomide_N 3.729715012475897e-6 +left_A 7.541234392338106e-5 +left_N 2.6108005087331277e-5 +left_hand_A 2.1546383978108874e-5 +left_handed_A 2.1546383978108874e-5 +left_of_Prep 9.978546125829467e-6 +left_wing_N 3.729715012475897e-6 +left_winger_N 3.729715012475897e-6 +leftish_A 1.0773191989054437e-5 +leftism_N 3.729715012475897e-6 +leftist_A 1.0773191989054437e-5 +leftist_N 1.118914503742769e-5 +leftmost_A 1.0773191989054437e-5 +leftover_A 1.0773191989054437e-5 +leftover_N 3.729715012475897e-6 +leftovers_N 3.729715012475897e-6 +leg_N 5.594572518713845e-5 +leg_pull_N 3.729715012475897e-6 +leg_pulling_N 3.729715012475897e-6 +legacy_N 2.6108005087331277e-5 +legal_A 2.0576796699093972e-3 +legalese_N 3.729715012475897e-6 +legalism_N 3.729715012475897e-6 +legalistic_A 3.231957596716331e-5 +legality_N 1.8648575062379485e-5 +legalization_N 1.4918860049903587e-5 +legalize_V2 6.439461017112868e-5 +legate_N 3.729715012475897e-6 +legatee_N 3.729715012475897e-6 +legation_N 3.729715012475897e-6 +legato_A 1.0773191989054437e-5 +legato_Adv 8.668966832532898e-6 +legend_N 1.118914503742769e-5 +legendary_A 9.695872790148993e-5 +leger_line_N 3.729715012475897e-6 +legerdemain_N 1.4918860049903587e-5 +legged_A 1.0773191989054437e-5 +legging_N 3.729715012475897e-6 +leggy_A 1.0773191989054437e-5 +leghorn_N 3.729715012475897e-6 +legibility_N 3.729715012475897e-6 +legible_A 1.0773191989054437e-5 +legion_N 1.4918860049903587e-5 +legionary_N 3.729715012475897e-6 +legionnaire_N 3.729715012475897e-6 +legislate_V 6.803646754660499e-5 +legislate_V2 3.219730508556434e-5 +legislation_N 6.004841170086194e-4 +legislative_A 4.2015448757312305e-4 +legislator_N 1.5291831551151176e-4 +legislatorship_N 3.729715012475897e-6 +legislature_N 1.1562116538675279e-4 +legitimacy_N 2.6108005087331277e-5 +legitimate_A 2.47783415748252e-4 +legitimation_N 3.729715012475897e-6 +legitimatize_V2 1.609865254278217e-5 +legitimize_V2 6.439461017112868e-5 +legitimize_V2V 4.675081813931744e-4 +legless_A 1.0773191989054437e-5 +leglike_A 1.0773191989054437e-5 +legs_N 3.729715012475897e-6 +legume_N 3.729715012475897e-6 +leguminous_A 1.0773191989054437e-5 +lei_N 3.729715012475897e-6 +leicester_PN 1.865462821325971e-5 +leicestershire_PN 1.865462821325971e-5 +leiden_PN 1.865462821325971e-5 +leigh_PN 1.865462821325971e-5 +leighton_linslade_PN 1.865462821325971e-5 +leinster_PN 1.865462821325971e-5 +leiomyoma_N 3.729715012475897e-6 +leiomyosarcoma_N 3.729715012475897e-6 +leipzig_PN 1.865462821325971e-5 +leishmaniasis_N 3.729715012475897e-6 +leister_N 3.729715012475897e-6 +leisure_N 3.356743511228307e-5 +leisured_A 1.0773191989054437e-5 +leisureliness_N 3.729715012475897e-6 +leisurely_A 3.231957596716331e-5 +leisurely_Adv 1.7337933665065797e-5 +leitmotiv_N 3.729715012475897e-6 +leitrim_PN 1.865462821325971e-5 +leix_PN 1.865462821325971e-5 +lek_N 3.729715012475897e-6 +lekvar_N 3.729715012475897e-6 +lemma_N 3.729715012475897e-6 +lemming_N 7.459430024951794e-6 +lemniscus_N 3.729715012475897e-6 +lemon_N 7.459430024951794e-6 +lemonade_N 3.729715012475897e-6 +lemongrass_N 3.729715012475897e-6 +lemonwood_N 3.729715012475897e-6 +lemony_A 1.0773191989054437e-5 +lempira_N 3.729715012475897e-6 +lemur_N 3.729715012475897e-6 +len_PN 1.865462821325971e-5 +lend_V 1.7462693336961945e-3 +lend_V2 3.8636766102677204e-4 +lendable_A 1.0773191989054437e-5 +lender_N 2.2005318573607791e-4 +lending_N 3.729715012475897e-6 +lending_library_N 3.729715012475897e-6 +length_N 6.713487022456614e-5 +lengthen_V 1.1339411257767497e-4 +lengthen_V2 6.439461017112868e-5 +lengthiness_N 3.729715012475897e-6 +lengthways_A 1.0773191989054437e-5 +lengthways_Adv 8.668966832532898e-6 +lengthwise_A 1.0773191989054437e-5 +lengthwise_Adv 8.668966832532898e-6 +lengthy_A 1.2927830386865325e-4 +lenience_N 3.729715012475897e-6 +leniency_N 7.459430024951794e-6 +lenient_A 2.1546383978108874e-5 +leningrad_PN 1.865462821325971e-5 +lenitive_N 3.729715012475897e-6 +lenity_N 3.729715012475897e-6 +lenny_PN 1.865462821325971e-5 +lens_N 6.713487022456614e-5 +lens_PN 1.865462821325971e-5 +lent_N 3.729715012475897e-6 +lent_PN 1.865462821325971e-5 +lenten_A 1.0773191989054437e-5 +lentic_A 1.0773191989054437e-5 +lenticel_N 3.729715012475897e-6 +lentil_N 3.729715012475897e-6 +lentissimo_A 1.0773191989054437e-5 +lento_A 1.0773191989054437e-5 +lento_Adv 8.668966832532898e-6 +leo_PN 1.865462821325971e-5 +leominster_PN 1.865462821325971e-5 +leon_PN 1.865462821325971e-5 +leonard_PN 1.865462821325971e-5 +leone_N 3.729715012475897e-6 +leonine_A 1.0773191989054437e-5 +leopard_N 3.729715012475897e-6 +leopardess_N 3.729715012475897e-6 +leotard_N 3.729715012475897e-6 +leper_N 3.729715012475897e-6 +lepidobotrys_N 3.729715012475897e-6 +lepidocrocite_N 3.729715012475897e-6 +lepidolite_N 3.729715012475897e-6 +lepidomelane_N 3.729715012475897e-6 +lepidophobia_N 3.729715012475897e-6 +lepidopterist_N 3.729715012475897e-6 +lepidopterology_N 3.729715012475897e-6 +lepidote_A 1.0773191989054437e-5 +lepiota_N 3.729715012475897e-6 +leporid_N 3.729715012475897e-6 +leprechaun_N 3.729715012475897e-6 +leprosy_N 3.729715012475897e-6 +leprous_A 1.0773191989054437e-5 +leptocephalus_N 3.729715012475897e-6 +leptomeninges_N 3.729715012475897e-6 +leptomeningitis_N 3.729715012475897e-6 +lepton_N 3.729715012475897e-6 +leptorrhine_A 1.0773191989054437e-5 +leptospira_N 3.729715012475897e-6 +leptosporangiate_A 1.0773191989054437e-5 +leptosporangium_N 3.729715012475897e-6 +leptotene_N 3.729715012475897e-6 +leresis_N 3.729715012475897e-6 +lerot_N 3.729715012475897e-6 +lerwick_PN 1.865462821325971e-5 +les_PN 1.865462821325971e-5 +lesbian_A 1.0773191989054437e-5 +lesbian_N 7.459430024951794e-6 +lesbianism_N 3.729715012475897e-6 +lese_majesty_N 3.729715012475897e-6 +lesion_N 7.459430024951794e-6 +lesley_PN 1.865462821325971e-5 +leslie_PN 1.865462821325971e-5 +lesotho_PN 1.865462821325971e-5 +less_A 1.0773191989054437e-5 +less_AdA 5.070993914807302e-3 +less_Adv 2.6006900497598697e-5 +less_Det 1.7852795585490545e-3 +less_than_AdN 9.584664536741214e-3 +lessee_N 3.729715012475897e-6 +lessen_V 6.803646754660499e-5 +lessen_V2 4.8295957628346505e-5 +lesser_A 1.0773191989054437e-5 +lesson_N 1.0443202034932511e-4 +lessor_N 3.729715012475897e-6 +lest_Prep 2.99356383774884e-5 +let_N 3.729715012475897e-6 +let_V 7.710799655281898e-4 +let_V2 9.659191525669301e-5 +let_V2V 3.64656381486676e-2 +let_VS 2.425922717033443e-3 +let_down_N 3.729715012475897e-6 +let_down_V2 1.609865254278217e-5 +let_in_V2 1.609865254278217e-5 +let_off_V2 1.609865254278217e-5 +let_on_V 2.2678822515534993e-5 +let_out_V2 1.609865254278217e-5 +let_up_N 3.729715012475897e-6 +let_up_V 2.2678822515534993e-5 +letchworth_PN 1.865462821325971e-5 +lethal_A 4.309276795621775e-5 +lethargic_A 3.231957596716331e-5 +lethargically_Adv 8.668966832532898e-6 +lethargy_N 1.118914503742769e-5 +lethe_PN 1.865462821325971e-5 +letter_N 5.818355419462399e-4 +letter_box_N 3.729715012475897e-6 +letter_card_N 3.729715012475897e-6 +letter_case_N 3.729715012475897e-6 +lettercard_N 3.729715012475897e-6 +lettered_A 1.0773191989054437e-5 +letterer_N 3.729715012475897e-6 +letterhead_N 3.729715012475897e-6 +lettering_N 3.729715012475897e-6 +letterman_N 3.729715012475897e-6 +letterpress_N 3.729715012475897e-6 +letters_N 3.729715012475897e-6 +letting_N 7.459430024951794e-6 +lettuce_N 7.459430024951794e-6 +letup_N 3.729715012475897e-6 +leu_N 3.729715012475897e-6 +leucine_N 3.729715012475897e-6 +leucocyte_N 3.729715012475897e-6 +leucocytozoan_N 3.729715012475897e-6 +leucothoe_N 3.729715012475897e-6 +leukaemia_N 3.729715012475897e-6 +leukemia_N 3.729715012475897e-6 +leukocyte_N 3.729715012475897e-6 +leukocytosis_N 3.729715012475897e-6 +leukoderma_N 3.729715012475897e-6 +leukoencephalitis_N 3.729715012475897e-6 +leukoma_N 3.729715012475897e-6 +leukopenia_N 3.729715012475897e-6 +leukorrhea_N 3.729715012475897e-6 +lev_N 3.729715012475897e-6 +levallorphan_N 3.729715012475897e-6 +levant_PN 1.865462821325971e-5 +levant_V 2.2678822515534993e-5 +levanter_N 3.729715012475897e-6 +levantine_A 1.0773191989054437e-5 +levantine_N 3.729715012475897e-6 +levator_N 3.729715012475897e-6 +levee_N 3.729715012475897e-6 +level_A 5.3865959945272184e-5 +level_N 1.5627505902274007e-3 +level_V 6.803646754660499e-5 +level_V2 3.219730508556434e-5 +level_headed_A 1.0773191989054437e-5 +level_off_V 2.2678822515534993e-5 +level_out_V 2.2678822515534993e-5 +leveler_N 3.729715012475897e-6 +leveller_N 3.729715012475897e-6 +leven_PN 1.865462821325971e-5 +lever_N 3.729715012475897e-6 +lever_V2 1.609865254278217e-5 +leverage_N 1.305400254366564e-4 +leveret_N 3.729715012475897e-6 +leverkusen_PN 1.865462821325971e-5 +leviathan_N 3.729715012475897e-6 +levirate_N 3.729715012475897e-6 +levitate_V 2.2678822515534993e-5 +levitate_V2 1.609865254278217e-5 +levitation_N 3.729715012475897e-6 +levity_N 3.729715012475897e-6 +levorotary_A 1.0773191989054437e-5 +levorotation_N 3.729715012475897e-6 +levy_N 1.4918860049903587e-5 +levy_V 2.2678822515534993e-5 +levy_V2 6.439461017112868e-5 +lewd_A 1.0773191989054437e-5 +lewdness_N 7.459430024951794e-6 +lewes_PN 1.865462821325971e-5 +lewis_PN 1.865462821325971e-5 +lewisham_PN 1.865462821325971e-5 +lexeme_N 3.729715012475897e-6 +lexical_A 1.0773191989054437e-5 +lexicalization_N 3.729715012475897e-6 +lexicalized_A 1.0773191989054437e-5 +lexicographer_N 3.729715012475897e-6 +lexicographic_A 1.0773191989054437e-5 +lexicography_N 3.729715012475897e-6 +lexicology_N 3.729715012475897e-6 +lexicon_N 1.118914503742769e-5 +lexicostatistic_A 1.0773191989054437e-5 +lexicostatistics_N 3.729715012475897e-6 +lexis_N 3.729715012475897e-6 +ley_N 3.729715012475897e-6 +leyland_PN 1.865462821325971e-5 +li_N 3.729715012475897e-6 +liabilities_N 3.729715012475897e-6 +liability_N 3.2448520608540304e-4 +liable_A 1.6159787983581657e-4 +liaise_V 2.2678822515534993e-5 +liaison_N 1.4918860049903587e-5 +liana_N 3.729715012475897e-6 +liar_N 2.237829007485538e-5 +lib_N 3.729715012475897e-6 +lib_PN 1.865462821325971e-5 +libation_N 3.729715012475897e-6 +libel_N 3.356743511228307e-5 +libel_V2 1.609865254278217e-5 +libellous_A 1.0773191989054437e-5 +liberal_A 2.8010299171541536e-4 +liberal_N 6.340515521209024e-5 +liberalism_N 7.459430024951794e-6 +liberalistic_A 1.0773191989054437e-5 +liberality_N 3.729715012475897e-6 +liberalization_N 3.729715012475897e-5 +liberalize_V2 1.7708517797060386e-4 +liberate_V2 4.8295957628346505e-5 +liberation_N 1.8648575062379485e-5 +liberator_N 3.729715012475897e-6 +liberia_PN 1.865462821325971e-5 +liberian_A 1.0773191989054437e-5 +liberian_N 3.729715012475897e-6 +libertarian_N 3.729715012475897e-6 +libertarianism_N 3.729715012475897e-6 +libertine_N 3.729715012475897e-6 +liberty_N 2.6108005087331277e-5 +libidinal_A 1.0773191989054437e-5 +libidinous_A 1.0773191989054437e-5 +libido_N 3.729715012475897e-6 +libra_PN 1.865462821325971e-5 +librarian_N 1.4918860049903587e-5 +librarianship_N 3.729715012475897e-6 +library_N 4.848629516218666e-5 +libration_N 3.729715012475897e-6 +librettist_N 3.729715012475897e-6 +libretto_N 3.729715012475897e-6 +libya_PN 1.3058239749281798e-4 +libyan_A 5.3865959945272184e-5 +libyan_N 3.729715012475897e-6 +licence_N 7.459430024951794e-6 +licence_V2 1.609865254278217e-5 +license_V2 4.0246631356955425e-4 +licensee_N 1.8648575062379485e-5 +licenser_N 3.729715012475897e-6 +licentiate_N 3.729715012475897e-6 +licentious_A 1.0773191989054437e-5 +licentiousness_N 7.459430024951794e-6 +lichee_N 3.729715012475897e-6 +lichen_N 3.729715012475897e-6 +lichfield_PN 1.865462821325971e-5 +lichgate_N 3.729715012475897e-6 +lichi_N 3.729715012475897e-6 +licit_A 1.0773191989054437e-5 +licitness_N 3.729715012475897e-6 +lick_N 3.729715012475897e-6 +lick_V 2.2678822515534993e-5 +lick_V2 4.8295957628346505e-5 +licking_N 3.729715012475897e-6 +licorice_N 3.729715012475897e-6 +lid_N 2.9837720099807175e-5 +lidar_N 3.729715012475897e-6 +lidded_A 1.0773191989054437e-5 +lidless_A 1.0773191989054437e-5 +lido_N 3.729715012475897e-6 +lie_1_V 1.2926928833854945e-3 +lie_2_V 4.5357645031069986e-5 +lie_N 2.237829007485538e-5 +lie_VS 1.1552012938254491e-4 +lie_abed_N 3.729715012475897e-6 +lie_around_V 2.2678822515534993e-5 +lie_back_V 2.2678822515534993e-5 +lie_detector_N 3.729715012475897e-6 +lie_down_V 2.2678822515534993e-5 +lie_down_on_V2 1.609865254278217e-5 +lie_in_N 3.729715012475897e-6 +lie_with_V2 1.609865254278217e-5 +liebfraumilch_N 3.729715012475897e-6 +liechtenstein_PN 1.865462821325971e-5 +liechtensteiner_A 1.0773191989054437e-5 +liechtensteiner_N 3.729715012475897e-6 +lied_N 3.729715012475897e-6 +lieder_singer_N 3.729715012475897e-6 +lief_Adv 8.668966832532898e-6 +liege_A 1.0773191989054437e-5 +liege_N 3.729715012475897e-6 +liege_PN 1.865462821325971e-5 +liegeman_N 3.729715012475897e-6 +lien_N 1.4918860049903587e-5 +lieu_N 3.729715012475897e-6 +lieutenancy_N 3.729715012475897e-6 +lieutenant_N 2.237829007485538e-5 +life_N 1.0555093485306788e-3 +life_buoy_N 3.729715012475897e-6 +life_giving_A 1.0773191989054437e-5 +life_jacket_N 3.729715012475897e-6 +life_office_N 3.729715012475897e-6 +life_preserver_N 3.729715012475897e-6 +life_raft_N 3.729715012475897e-6 +life_saver_N 3.729715012475897e-6 +life_size_A 1.0773191989054437e-5 +life_sized_A 1.0773191989054437e-5 +life_span_N 3.729715012475897e-6 +life_work_N 3.729715012475897e-6 +lifebelt_N 3.729715012475897e-6 +lifeblood_N 7.459430024951794e-6 +lifeboat_N 7.459430024951794e-6 +lifebuoy_N 3.729715012475897e-6 +lifeguard_N 7.459430024951794e-6 +lifeless_A 2.1546383978108874e-5 +lifelike_A 1.0773191989054437e-5 +lifeline_N 7.459430024951794e-6 +lifelong_A 5.3865959945272184e-5 +lifer_N 3.729715012475897e-6 +lifesaving_N 3.729715012475897e-6 +lifetime_N 4.1026865137234865e-5 +lifework_N 3.729715012475897e-6 +lift_N 4.848629516218666e-5 +lift_V 5.669705628883749e-4 +lift_V2 4.185649661123364e-4 +lift_off_N 3.729715012475897e-6 +lift_off_V 2.2678822515534993e-5 +liftman_N 3.729715012475897e-6 +liftoff_N 3.729715012475897e-6 +ligament_N 3.729715012475897e-6 +ligand_N 3.729715012475897e-6 +ligation_N 3.729715012475897e-6 +ligature_N 3.729715012475897e-6 +liger_N 3.729715012475897e-6 +light_A 7.433502472447562e-4 +light_Adv 8.668966832532898e-6 +light_N 2.53620620848361e-4 +light_V 1.5875175760874494e-4 +light_V2 8.049326271391085e-5 +light_armed_A 1.0773191989054437e-5 +light_coloured_A 1.0773191989054437e-5 +light_fingered_A 1.0773191989054437e-5 +light_handed_A 1.0773191989054437e-5 +light_headed_A 1.0773191989054437e-5 +light_headedness_N 3.729715012475897e-6 +light_hearted_A 1.0773191989054437e-5 +light_heartedness_N 3.729715012475897e-6 +light_heavyweight_N 3.729715012475897e-6 +light_minded_A 1.0773191989054437e-5 +light_mindedness_N 3.729715012475897e-6 +light_o'_love_N 3.729715012475897e-6 +light_out_V 2.2678822515534993e-5 +light_up_V 2.2678822515534993e-5 +light_up_V2 1.609865254278217e-5 +lighten_V 9.071529006213997e-5 +lighten_V2 3.219730508556434e-5 +lighten_up_V2 1.609865254278217e-5 +lightening_N 3.729715012475897e-6 +lighter_N 3.729715012475897e-6 +lighter_V2 1.609865254278217e-5 +lighterage_N 3.729715012475897e-6 +lighterman_N 3.729715012475897e-6 +lightheadedness_N 3.729715012475897e-6 +lighthouse_N 3.729715012475897e-6 +lighting_N 3.729715012475897e-6 +lighting_up_A 1.0773191989054437e-5 +lightless_A 1.0773191989054437e-5 +lightness_N 3.729715012475897e-6 +lightning_N 2.237829007485538e-5 +lightning_conductor_N 3.729715012475897e-6 +lightning_rod_N 3.729715012475897e-6 +lightproof_A 1.0773191989054437e-5 +lightship_N 3.729715012475897e-6 +lightsome_A 1.0773191989054437e-5 +lightsomeness_N 3.729715012475897e-6 +lightweight_A 4.309276795621775e-5 +lightweight_N 3.729715012475897e-6 +lightwood_N 3.729715012475897e-6 +ligne_N 3.729715012475897e-6 +ligneous_A 1.0773191989054437e-5 +lignin_N 3.729715012475897e-6 +lignite_N 3.729715012475897e-6 +lignosae_N 3.729715012475897e-6 +lignum_N 3.729715012475897e-6 +ligule_N 3.729715012475897e-6 +likable_A 1.0773191989054437e-5 +like_A 8.726285511134094e-4 +like_Adv 8.668966832532898e-6 +like_N 1.118914503742769e-5 +like_Prep 5.338522177318765e-3 +like_V2 7.405380169679798e-4 +like_V2V 1.8700327255726976e-3 +like_VS 1.7328019407381737e-4 +like_VV 6.246396309821257e-3 +like_minded_A 1.0773191989054437e-5 +likeable_A 1.0773191989054437e-5 +likelihood_N 5.594572518713845e-5 +likely_A 2.930308221022807e-3 +liken_V2 6.439461017112868e-5 +likeness_N 1.118914503742769e-5 +likening_N 3.729715012475897e-6 +likewise_Adv 1.0402760199039479e-4 +liking_N 3.729715012475897e-6 +likuta_N 3.729715012475897e-6 +lilac_N 3.729715012475897e-6 +lilangeni_N 3.729715012475897e-6 +liliaceous_A 1.0773191989054437e-5 +lilian_PN 1.865462821325971e-5 +lille_PN 1.865462821325971e-5 +lilliputian_A 1.0773191989054437e-5 +lilliputian_N 3.729715012475897e-6 +lilt_N 7.459430024951794e-6 +lilt_V 2.2678822515534993e-5 +lilt_V2 1.609865254278217e-5 +lily_N 7.459430024951794e-6 +lily_PN 1.865462821325971e-5 +lily_livered_A 1.0773191989054437e-5 +lily_white_A 1.0773191989054437e-5 +lilyturf_N 3.729715012475897e-6 +lima_PN 1.865462821325971e-5 +limacine_A 1.0773191989054437e-5 +liman_N 3.729715012475897e-6 +limb_N 1.8648575062379485e-5 +limbed_A 1.0773191989054437e-5 +limber_A 1.0773191989054437e-5 +limber_N 3.729715012475897e-6 +limber_V 2.2678822515534993e-5 +limber_V2 1.609865254278217e-5 +limber_up_V 2.2678822515534993e-5 +limber_up_for_V2 1.609865254278217e-5 +limbers_N 3.729715012475897e-6 +limbic_A 1.0773191989054437e-5 +limbless_A 1.0773191989054437e-5 +limbo_N 2.9837720099807175e-5 +limbus_N 3.729715012475897e-6 +lime_N 3.729715012475897e-6 +lime_V2 1.609865254278217e-5 +lime_tree_N 3.729715012475897e-6 +limeade_N 3.729715012475897e-6 +limejuice_N 3.729715012475897e-6 +limekiln_N 3.729715012475897e-6 +limelight_N 7.459430024951794e-6 +limerick_N 3.729715012475897e-6 +limerick_PN 1.865462821325971e-5 +limestone_N 3.729715012475897e-6 +limewater_N 3.729715012475897e-6 +limey_N 3.729715012475897e-6 +limit_N 4.32646941447204e-4 +limit_V2 2.8011655424440974e-3 +limit_V2V 9.350163627863488e-4 +limitation_N 5.2216010174662554e-5 +limitedly_Adv 8.668966832532898e-6 +limiter_N 3.729715012475897e-6 +limiting_A 1.0773191989054437e-5 +limitless_A 1.0773191989054437e-5 +limn_V2 1.609865254278217e-5 +limnological_A 1.0773191989054437e-5 +limnologist_N 3.729715012475897e-6 +limnology_N 3.729715012475897e-6 +limoges_PN 1.865462821325971e-5 +limonene_N 3.729715012475897e-6 +limonite_N 3.729715012475897e-6 +limousine_N 7.459430024951794e-6 +limp_A 3.231957596716331e-5 +limp_N 3.729715012475897e-6 +limp_V 4.5357645031069986e-5 +limpa_N 3.729715012475897e-6 +limpet_N 3.729715012475897e-6 +limpid_A 2.1546383978108874e-5 +limpidity_N 3.729715012475897e-6 +limpkin_N 3.729715012475897e-6 +limpness_N 3.729715012475897e-6 +linage_N 3.729715012475897e-6 +linalool_N 3.729715012475897e-6 +linchpin_N 3.729715012475897e-6 +lincoln_PN 1.865462821325971e-5 +lincolnshire_PN 1.865462821325971e-5 +lincomycin_N 3.729715012475897e-6 +linda_PN 1.865462821325971e-5 +lindane_N 3.729715012475897e-6 +linden_N 7.459430024951794e-6 +linden_tree_N 3.729715012475897e-6 +lindy_N 3.729715012475897e-6 +line_N 1.4545888548655997e-3 +line_V 3.855399827640949e-4 +line_V2 6.439461017112868e-5 +line_shooter_N 3.729715012475897e-6 +line_shooting_N 3.729715012475897e-6 +line_up_N 3.729715012475897e-6 +line_up_V 2.2678822515534993e-5 +line_up_V2 1.609865254278217e-5 +lineage_N 3.729715012475897e-6 +lineal_A 1.0773191989054437e-5 +lineament_N 3.729715012475897e-6 +linear_A 2.1546383978108874e-5 +lineation_N 3.729715012475897e-6 +linebacker_N 3.729715012475897e-6 +linecut_N 3.729715012475897e-6 +linelike_A 1.0773191989054437e-5 +lineman_N 7.459430024951794e-6 +linemen_N 3.729715012475897e-6 +linen_N 1.118914503742769e-5 +linen_draper_N 3.729715012475897e-6 +linendraper_N 3.729715012475897e-6 +liner_N 1.4918860049903587e-5 +liner_train_N 3.729715012475897e-6 +linesman_N 3.729715012475897e-6 +lineup_N 4.1026865137234865e-5 +ling_N 3.729715012475897e-6 +lingam_N 3.729715012475897e-6 +lingcod_N 3.729715012475897e-6 +linger_V 2.2678822515534994e-4 +lingerer_N 3.729715012475897e-6 +lingerie_N 1.4918860049903587e-5 +lingeringly_Adv 8.668966832532898e-6 +lingo_N 7.459430024951794e-6 +lingonberry_N 3.729715012475897e-6 +lingua_franca_N 3.729715012475897e-6 +lingual_A 1.0773191989054437e-5 +lingual_N 3.729715012475897e-6 +linguica_N 3.729715012475897e-6 +linguine_N 3.729715012475897e-6 +linguist_N 3.729715012475897e-6 +linguistic_A 1.0773191989054437e-5 +linguistically_Adv 8.668966832532898e-6 +linguistics_N 3.729715012475897e-6 +lingulate_A 1.0773191989054437e-5 +liniment_N 3.729715012475897e-6 +linin_N 3.729715012475897e-6 +lining_N 1.4918860049903587e-5 +link_N 8.578344528694562e-5 +link_V 2.9482469270195494e-4 +link_V2 7.727353220535441e-4 +link_up_N 3.729715012475897e-6 +link_up_V2 1.609865254278217e-5 +link_up_with_V2 1.609865254278217e-5 +linkage_N 1.8648575062379485e-5 +linkboy_N 3.729715012475897e-6 +linkman_N 3.729715012475897e-6 +links_N 6.713487022456614e-5 +linlithgow_PN 1.865462821325971e-5 +linnet_N 3.729715012475897e-6 +lino_N 3.729715012475897e-6 +linocut_N 3.729715012475897e-6 +linoleum_N 3.729715012475897e-6 +linotype_N 3.729715012475897e-6 +linseed_N 3.729715012475897e-6 +linsey_woolsey_N 3.729715012475897e-6 +linstock_N 3.729715012475897e-6 +lint_N 3.729715012475897e-6 +lintel_N 3.729715012475897e-6 +linuron_N 3.729715012475897e-6 +linwood_PN 1.865462821325971e-5 +linz_PN 1.865462821325971e-5 +lion_N 2.9837720099807175e-5 +lion_hearted_A 1.0773191989054437e-5 +lion_hunter_N 3.729715012475897e-6 +lionel_PN 1.865462821325971e-5 +lioness_N 3.729715012475897e-6 +lionet_N 3.729715012475897e-6 +lionfish_N 3.729715012475897e-6 +lionhearted_A 1.0773191989054437e-5 +lionize_V2 1.609865254278217e-5 +lip_N 2.9837720099807175e-5 +lip_read_V2 1.609865254278217e-5 +lip_reading_N 3.729715012475897e-6 +liparis_N 3.729715012475897e-6 +lipase_N 3.729715012475897e-6 +lipectomy_N 3.729715012475897e-6 +lipemia_N 3.729715012475897e-6 +lipid_N 3.729715012475897e-6 +lipidosis_N 3.729715012475897e-6 +lipless_A 1.0773191989054437e-5 +lipogram_N 3.729715012475897e-6 +lipoma_N 3.729715012475897e-6 +lipomatosis_N 3.729715012475897e-6 +lipophilic_A 1.0773191989054437e-5 +lipoprotein_N 3.729715012475897e-6 +liposarcoma_N 3.729715012475897e-6 +liposome_N 3.729715012475897e-6 +liposuction_N 3.729715012475897e-6 +lipped_A 1.0773191989054437e-5 +lipreading_N 3.729715012475897e-6 +lipstick_N 1.118914503742769e-5 +liquefaction_N 3.729715012475897e-6 +liquefiable_A 1.0773191989054437e-5 +liquefy_V 1.1339411257767497e-4 +liquefy_V2 6.439461017112868e-5 +liquescent_A 1.0773191989054437e-5 +liqueur_N 3.729715012475897e-6 +liquid_A 1.72371071824871e-4 +liquid_N 3.729715012475897e-5 +liquidambar_N 3.729715012475897e-6 +liquidate_V 2.0410940263981494e-4 +liquidate_V2 2.4147978814173252e-4 +liquidation_N 5.594572518713845e-5 +liquidator_N 1.8648575062379485e-5 +liquidity_N 2.7972862593569225e-4 +liquidize_V2 1.609865254278217e-5 +liquidizer_N 3.729715012475897e-6 +liquor_N 7.459430024951794e-5 +liquorice_N 3.729715012475897e-6 +lira_N 7.459430024951794e-6 +lisa_PN 1.865462821325971e-5 +lisbon_PN 1.865462821325971e-5 +lisinopril_N 3.729715012475897e-6 +liskeard_PN 1.865462821325971e-5 +lisle_N 3.729715012475897e-6 +lisp_N 3.729715012475897e-6 +lisp_V 2.2678822515534993e-5 +lisp_V2 1.609865254278217e-5 +lisper_N 3.729715012475897e-6 +lispingly_Adv 8.668966832532898e-6 +lissom_A 1.0773191989054437e-5 +lissome_A 1.0773191989054437e-5 +lissomeness_N 3.729715012475897e-6 +lissomness_N 3.729715012475897e-6 +list_N 5.594572518713845e-5 +list_V 2.7214587018641994e-4 +list_V2 1.1913002881658804e-3 +list_V2V 4.675081813931744e-4 +list_of_N2 0.12742382271468145 +list_price_N 3.729715012475897e-6 +listen_V 7.710799655281898e-4 +listen_in_V 2.2678822515534993e-5 +listen_out_for_V2 1.609865254278217e-5 +listen_up_V 2.2678822515534993e-5 +listener_N 4.848629516218666e-5 +listening_N 3.729715012475897e-6 +lister_N 3.729715012475897e-6 +listeria_N 3.729715012475897e-6 +listeriosis_N 3.729715012475897e-6 +listing_N 7.086458523704203e-5 +listless_A 3.231957596716331e-5 +listlessness_N 3.729715012475897e-6 +lit_V2 3.219730508556434e-5 +litany_N 1.118914503742769e-5 +litas_N 3.729715012475897e-6 +litchee_N 3.729715012475897e-6 +litchi_N 3.729715012475897e-6 +liter_N 3.729715012475897e-6 +literacy_N 1.4918860049903587e-5 +literal_A 1.8314426381392542e-4 +literal_N 3.729715012475897e-6 +literalism_N 3.729715012475897e-6 +literalness_N 3.729715012475897e-6 +literary_A 1.0773191989054437e-4 +literate_A 1.0773191989054437e-5 +literate_N 3.729715012475897e-6 +literati_N 3.729715012475897e-6 +literatim_Adv 8.668966832532898e-6 +literature_N 4.1026865137234865e-5 +lithe_A 1.0773191989054437e-5 +lithiasis_N 3.729715012475897e-6 +lithic_A 1.0773191989054437e-5 +lithium_N 3.729715012475897e-6 +lithograph_N 1.118914503742769e-5 +lithograph_V 2.2678822515534993e-5 +lithograph_V2 1.609865254278217e-5 +lithographer_N 3.729715012475897e-6 +lithographic_A 1.0773191989054437e-5 +lithography_N 7.459430024951794e-6 +lithomancer_N 3.729715012475897e-6 +lithomancy_N 3.729715012475897e-6 +lithomantic_A 1.0773191989054437e-5 +lithophyte_N 3.729715012475897e-6 +lithophytic_A 1.0773191989054437e-5 +lithops_N 3.729715012475897e-6 +lithosphere_N 3.729715012475897e-6 +lithotomy_N 3.729715012475897e-6 +lithuresis_N 3.729715012475897e-6 +litigant_N 7.459430024951794e-6 +litigate_V 2.2678822515534993e-5 +litigate_V2 1.609865254278217e-5 +litigation_N 2.2005318573607791e-4 +litigious_A 1.0773191989054437e-5 +litigiousness_N 3.729715012475897e-6 +litmus_N 1.4918860049903587e-5 +litmus_paper_N 3.729715012475897e-6 +litotes_N 3.729715012475897e-6 +litre_N 3.729715012475897e-6 +litter_N 7.459430024951794e-6 +litter_V 2.2678822515534993e-5 +litter_V2 3.219730508556434e-5 +litter_basket_N 3.729715012475897e-6 +litter_lout_N 3.729715012475897e-6 +litterbin_N 3.729715012475897e-6 +litterer_N 3.729715012475897e-6 +little_A 6.086853473815757e-3 +little_Det 8.791149341340042e-5 +little_N 3.729715012475897e-6 +littlehampton_PN 1.865462821325971e-5 +littleneck_N 3.729715012475897e-6 +littleness_N 3.729715012475897e-6 +littoral_A 1.0773191989054437e-5 +littoral_N 3.729715012475897e-6 +liturgical_A 1.0773191989054437e-5 +liturgics_N 3.729715012475897e-6 +liturgist_N 3.729715012475897e-6 +liturgy_N 7.459430024951794e-6 +livable_A 1.0773191989054437e-5 +live_A 2.046906477920343e-4 +live_Adv 1.7337933665065797e-5 +live_V 2.8348528144418743e-3 +live_V2 1.4488787288503951e-4 +live_VV 1.9219680953296174e-4 +live_birth_N 3.729715012475897e-6 +live_by_V2 1.609865254278217e-5 +live_down_V2 1.609865254278217e-5 +live_for_V2 1.609865254278217e-5 +live_in_V 2.2678822515534993e-5 +live_it_up_V2 1.609865254278217e-5 +live_off_V2 1.609865254278217e-5 +live_on_V 2.2678822515534993e-5 +live_on_V2 1.609865254278217e-5 +live_out_V 2.2678822515534993e-5 +live_out_V2 1.609865254278217e-5 +live_through_V2 1.609865254278217e-5 +live_together_V 2.2678822515534993e-5 +live_up_V 2.2678822515534993e-5 +live_up_to_V2 1.609865254278217e-5 +live_with_V2 1.609865254278217e-5 +liveable_A 1.0773191989054437e-5 +liveborn_A 1.0773191989054437e-5 +livedo_N 3.729715012475897e-6 +livelihood_N 1.4918860049903587e-5 +liveliness_N 3.729715012475897e-6 +livelong_A 1.0773191989054437e-5 +lively_A 7.541234392338106e-5 +liven_V 2.2678822515534993e-5 +liven_V2 1.609865254278217e-5 +liver_N 1.4918860049903587e-5 +liveried_A 2.1546383978108874e-5 +liverish_A 1.0773191989054437e-5 +liverpool_PN 1.865462821325971e-5 +liverpudlian_A 1.0773191989054437e-5 +liverpudlian_N 3.729715012475897e-6 +liverwort_N 3.729715012475897e-6 +liverwurst_N 3.729715012475897e-6 +livery_A 1.0773191989054437e-5 +livery_N 3.729715012475897e-6 +liveryman_N 3.729715012475897e-6 +livestock_N 2.6108005087331277e-5 +livid_A 2.1546383978108874e-5 +lividity_N 3.729715012475897e-6 +lividness_N 3.729715012475897e-6 +living_A 2.1546383978108874e-5 +living_N 6.340515521209024e-5 +living_room_N 3.729715012475897e-6 +living_space_N 3.729715012475897e-6 +livingston_PN 1.865462821325971e-5 +livorno_PN 1.865462821325971e-5 +liz_PN 1.865462821325971e-5 +liza_N 3.729715012475897e-6 +liza_PN 1.865462821325971e-5 +lizard_N 3.729715012475897e-6 +lizardfish_N 3.729715012475897e-6 +lizzy_PN 1.865462821325971e-5 +ljubljana_PN 1.865462821325971e-5 +llama_N 3.729715012475897e-6 +llandudno_PN 1.865462821325971e-5 +llanelli_PN 1.865462821325971e-5 +llangollen_PN 1.865462821325971e-5 +llano_N 3.729715012475897e-6 +llantrisant_PN 1.865462821325971e-5 +llantwit_major_PN 1.865462821325971e-5 +llb_N 3.729715012475897e-6 +lloyd's_PN 1.865462821325971e-5 +loach_N 3.729715012475897e-6 +load_N 1.08161735361801e-4 +load_V 1.5875175760874494e-4 +load_V2 1.4488787288503951e-4 +load_down_V 2.2678822515534993e-5 +load_line_N 3.729715012475897e-6 +load_shedding_N 3.729715012475897e-6 +load_up_V 2.2678822515534993e-5 +load_up_V2 1.609865254278217e-5 +load_up_on_V2 1.609865254278217e-5 +loader_N 3.729715012475897e-6 +loading_N 1.4918860049903587e-5 +loadstar_N 3.729715012475897e-6 +loadstone_N 3.729715012475897e-6 +loaf_N 7.459430024951794e-6 +loaf_V 2.2678822515534993e-5 +loaf_V2 1.609865254278217e-5 +loaf_sugar_N 3.729715012475897e-6 +loafer_N 1.118914503742769e-5 +loam_N 3.729715012475897e-6 +loamless_A 1.0773191989054437e-5 +loamy_A 1.0773191989054437e-5 +loan_N 2.0476135418492675e-3 +loan_V2 8.049326271391085e-5 +loan_collection_N 3.729715012475897e-6 +loan_office_N 3.729715012475897e-6 +loan_out_V 2.2678822515534993e-5 +loanblend_N 3.729715012475897e-6 +loaner_N 3.729715012475897e-6 +loanhead_PN 1.865462821325971e-5 +loanword_N 3.729715012475897e-6 +loasa_N 3.729715012475897e-6 +loath_A 7.541234392338106e-5 +loathe_V2 4.8295957628346505e-5 +loathing_N 7.459430024951794e-6 +loathly_A 1.0773191989054437e-5 +loathsome_A 3.231957596716331e-5 +loathsomeness_N 3.729715012475897e-6 +lob_N 3.729715012475897e-6 +lob_V 2.2678822515534993e-5 +lob_V2 1.609865254278217e-5 +lobar_A 1.0773191989054437e-5 +lobate_A 1.0773191989054437e-5 +lobby_N 8.205373027446973e-5 +lobby_V 5.216129178573049e-4 +lobby_V2 6.439461017112868e-5 +lobby_V2V 9.350163627863488e-4 +lobbyism_N 3.729715012475897e-6 +lobbyist_N 1.0443202034932511e-4 +lobe_N 3.729715012475897e-6 +lobectomy_N 3.729715012475897e-6 +lobed_A 1.0773191989054437e-5 +lobelia_N 3.729715012475897e-6 +lobeliaceous_A 1.0773191989054437e-5 +loblolly_N 3.729715012475897e-6 +lobotomy_N 3.729715012475897e-6 +lobscouse_N 3.729715012475897e-6 +lobster_N 1.118914503742769e-5 +lobster_pot_N 3.729715012475897e-6 +lobsterman_N 3.729715012475897e-6 +lobular_A 1.0773191989054437e-5 +lobularity_N 3.729715012475897e-6 +lobule_N 3.729715012475897e-6 +loc_cit_PN 1.865462821325971e-5 +local_A 2.4562877735044117e-3 +local_N 1.4918860049903587e-5 +locale_N 2.237829007485538e-5 +localism_N 3.729715012475897e-6 +locality_N 1.4918860049903587e-5 +localization_N 3.729715012475897e-6 +localize_V2 4.8295957628346505e-5 +locate_V 2.0410940263981494e-4 +locate_V2 3.8636766102677204e-4 +location_N 2.051343256861743e-4 +locator_N 3.729715012475897e-6 +loch_N 3.729715012475897e-6 +lochgelly_PN 1.865462821325971e-5 +lochia_N 3.729715012475897e-6 +lock_N 3.729715012475897e-5 +lock_V 6.576858529505148e-4 +lock_V2 1.4488787288503951e-4 +lock_away_V2 1.609865254278217e-5 +lock_down_V2 1.609865254278217e-5 +lock_gate_N 3.729715012475897e-6 +lock_in_V2 1.609865254278217e-5 +lock_keeper_N 3.729715012475897e-6 +lock_onto_V2 1.609865254278217e-5 +lock_out_V2 1.609865254278217e-5 +lock_up_V2 1.609865254278217e-5 +lock_yourself_away_V 2.2678822515534993e-5 +lockage_N 3.729715012475897e-6 +lockdown_N 3.729715012475897e-6 +locker_N 3.729715012475897e-6 +locket_N 3.729715012475897e-6 +locking_N 3.729715012475897e-6 +lockjaw_N 3.729715012475897e-6 +lockmaster_N 3.729715012475897e-6 +locknut_N 3.729715012475897e-6 +lockout_N 3.729715012475897e-6 +lockring_N 3.729715012475897e-6 +locksmith_N 3.729715012475897e-6 +lockstep_N 3.729715012475897e-6 +lockstitch_N 3.729715012475897e-6 +lockup_A 1.0773191989054437e-5 +lockup_N 7.459430024951794e-6 +loco_A 1.0773191989054437e-5 +locomotion_N 3.729715012475897e-6 +locomotive_A 1.0773191989054437e-5 +locomotive_N 3.729715012475897e-6 +locoweed_N 3.729715012475897e-6 +locule_N 3.729715012475897e-6 +locum_N 3.729715012475897e-6 +locum_tenens_N 3.729715012475897e-6 +locus_N 3.729715012475897e-6 +locus_classicus_N 3.729715012475897e-6 +locust_N 3.729715012475897e-6 +locust_tree_N 3.729715012475897e-6 +locution_N 7.459430024951794e-6 +lode_N 3.729715012475897e-6 +lodestar_N 3.729715012475897e-6 +lodestone_N 3.729715012475897e-6 +lodge_N 3.729715012475897e-6 +lodge_V 4.5357645031069986e-5 +lodge_V2 4.8295957628346505e-5 +lodgement_N 3.729715012475897e-6 +lodger_N 3.729715012475897e-6 +lodging_N 7.459430024951794e-6 +lodging_house_N 3.729715012475897e-6 +lodgment_N 3.729715012475897e-6 +lodz_PN 1.865462821325971e-5 +loess_N 3.729715012475897e-6 +loft_N 1.118914503742769e-5 +loft_V2 1.609865254278217e-5 +loftiness_N 3.729715012475897e-6 +loftus_PN 1.865462821325971e-5 +lofty_A 6.463915193432663e-5 +log_N 7.459430024951794e-6 +log_V2 1.609865254278217e-4 +log_cabin_N 3.729715012475897e-6 +log_in_V 2.2678822515534993e-5 +log_into_V2 1.609865254278217e-5 +log_jam_N 3.729715012475897e-6 +log_off_V2 1.609865254278217e-5 +log_on_V2 1.609865254278217e-5 +log_out_V 2.2678822515534993e-5 +log_rolling_N 3.729715012475897e-6 +loganberry_N 3.729715012475897e-6 +logarithm_N 3.729715012475897e-6 +logarithmic_A 1.0773191989054437e-5 +logarithmically_Adv 8.668966832532898e-6 +logbook_N 3.729715012475897e-6 +loge_N 3.729715012475897e-6 +loggerhead_N 3.729715012475897e-6 +loggerheads_N 3.729715012475897e-6 +loggia_N 3.729715012475897e-6 +logging_N 3.729715012475897e-6 +logic_N 4.475658014971076e-5 +logical_A 9.695872790148993e-5 +logicality_N 3.729715012475897e-6 +logician_N 3.729715012475897e-6 +logicism_N 3.729715012475897e-6 +loginess_N 3.729715012475897e-6 +logion_N 3.729715012475897e-6 +logistic_A 1.0773191989054437e-5 +logistics_N 2.237829007485538e-5 +logjam_N 3.729715012475897e-6 +logo_N 3.729715012475897e-6 +logogram_N 3.729715012475897e-6 +logogrammatic_A 1.0773191989054437e-5 +logogrammatically_Adv 8.668966832532898e-6 +logomach_N 3.729715012475897e-6 +logomachy_N 3.729715012475897e-6 +logorrhea_N 3.729715012475897e-6 +logrolling_N 3.729715012475897e-6 +logwood_N 3.729715012475897e-6 +loin_N 3.729715012475897e-6 +loincloth_N 3.729715012475897e-6 +loins_N 3.729715012475897e-6 +loir_N 3.729715012475897e-6 +lois_PN 1.865462821325971e-5 +loiter_V 4.5357645031069986e-5 +loiter_V2 1.609865254278217e-5 +loiterer_N 3.729715012475897e-6 +loligo_N 3.729715012475897e-6 +loll_V 2.2678822515534993e-5 +loll_V2 1.609865254278217e-5 +lollipop_N 3.729715012475897e-6 +lolly_N 3.729715012475897e-6 +lomatia_N 3.729715012475897e-6 +loment_N 3.729715012475897e-6 +lomustine_N 3.729715012475897e-6 +london_PN 2.891467373055255e-3 +londonderry_PN 1.865462821325971e-5 +londoner_N 3.729715012475897e-6 +lone_A 3.231957596716331e-5 +loneliness_N 3.729715012475897e-6 +lonely_A 6.463915193432663e-5 +loner_N 3.729715012475897e-6 +lonesome_A 3.231957596716331e-5 +long_A 3.792163580147162e-3 +long_N 3.356743511228307e-5 +long_V 2.2678822515534993e-5 +long_distance_A 1.4005149585770768e-4 +long_drawn_out_A 1.0773191989054437e-5 +long_eaton_PN 1.865462821325971e-5 +long_haired_A 1.0773191989054437e-5 +long_headed_A 1.0773191989054437e-5 +long_lived_A 1.0773191989054437e-5 +long_play_A 1.0773191989054437e-5 +long_playing_A 1.0773191989054437e-5 +long_range_A 6.463915193432663e-5 +long_sighted_A 1.0773191989054437e-5 +long_standing_A 1.0773191989054437e-5 +long_suffering_A 2.1546383978108874e-5 +long_term_A 1.9607209420079074e-3 +long_time_A 3.231957596716331e-5 +long_winded_A 1.0773191989054437e-5 +long_windedness_N 3.729715012475897e-6 +longan_N 3.729715012475897e-6 +longanberry_N 3.729715012475897e-6 +longboat_N 3.729715012475897e-6 +longbow_N 3.729715012475897e-6 +longbowman_N 3.729715012475897e-6 +longer_Adv 7.802070149279609e-5 +longer_N 3.729715012475897e-6 +longest_Adv 8.668966832532898e-6 +longevity_N 7.459430024951794e-6 +longhand_A 1.0773191989054437e-5 +longhand_N 3.729715012475897e-6 +longhorn_N 3.729715012475897e-6 +longing_N 2.237829007485538e-5 +longingly_Adv 8.668966832532898e-6 +longish_A 1.0773191989054437e-5 +longitude_N 3.729715012475897e-6 +longitudinal_A 1.0773191989054437e-5 +longness_N 3.729715012475897e-6 +longridge_PN 1.865462821325971e-5 +longshoreman_N 7.459430024951794e-6 +longshot_N 3.729715012475897e-6 +longstanding_A 2.1546383978108874e-5 +longton_PN 1.865462821325971e-5 +longueur_N 3.729715012475897e-6 +longways_Adv 8.668966832532898e-6 +longways_N 3.729715012475897e-6 +longwise_Adv 8.668966832532898e-6 +longwool_N 3.729715012475897e-6 +loo_N 3.729715012475897e-6 +loofa_N 3.729715012475897e-6 +loofah_N 3.729715012475897e-6 +look_N 1.8648575062379482e-4 +look_V 1.5194811085408445e-3 +look_V2 1.609865254278217e-4 +look_V2V 9.350163627863488e-4 +look_VA 5.511811023622047e-2 +look_VV 3.843936190659235e-4 +look_after_V2 3.219730508556434e-5 +look_ahead_to_V2 1.609865254278217e-4 +look_around_V 4.5357645031069986e-5 +look_around_at_V2 3.219730508556434e-5 +look_at_V2 1.2878922034225736e-3 +look_back_V 1.5875175760874494e-4 +look_back_on_V2 3.219730508556434e-5 +look_down_V 6.803646754660499e-5 +look_down_on_V2 3.219730508556434e-5 +look_for_V2 1.7547531271632564e-3 +look_forward_V 2.2678822515534993e-5 +look_forward_to_V2 9.659191525669301e-5 +look_in_V2 6.439461017112868e-5 +look_in_on_V2 1.609865254278217e-5 +look_into_V2 2.4147978814173252e-4 +look_on_V 4.5357645031069986e-5 +look_on_as_V3 1.5873015873015873e-3 +look_out_V 2.2678822515534993e-5 +look_out_for_V2 1.609865254278217e-5 +look_over_N 3.729715012475897e-6 +look_over_V2 8.049326271391085e-5 +look_round_V2 1.609865254278217e-5 +look_through_V2 1.609865254278217e-5 +look_to_V2 2.092824830561682e-4 +look_toward_V2 6.439461017112868e-5 +look_up_V 6.803646754660499e-5 +look_up_V2 1.609865254278217e-5 +look_up_to_V2 1.609865254278217e-5 +look_upon_as_V3 3.1746031746031746e-3 +lookdown_N 3.729715012475897e-6 +looker_N 3.729715012475897e-6 +looker_on_N 3.729715012475897e-6 +looking_N 3.729715012475897e-6 +looking_glass_N 3.729715012475897e-6 +lookout_N 1.118914503742769e-5 +loom_N 7.459430024951794e-6 +loom_V 2.9482469270195494e-4 +loon_N 3.729715012475897e-6 +loony_A 2.1546383978108874e-5 +loony_N 7.459430024951794e-6 +loonybin_N 3.729715012475897e-6 +loop_N 1.4918860049903587e-5 +loop_V 2.2678822515534993e-5 +loop_V2 1.609865254278217e-5 +loop_line_N 3.729715012475897e-6 +loophole_N 4.1026865137234865e-5 +loopy_A 1.0773191989054437e-5 +loose_A 2.585566077373065e-4 +loose_Adv 8.668966832532898e-6 +loose_V2 3.219730508556434e-5 +loose_leaf_A 1.0773191989054437e-5 +looseleaf_A 1.0773191989054437e-5 +loosen_V 1.1339411257767497e-4 +loosen_V2 1.1269056779947518e-4 +loosen_up_V 2.2678822515534993e-5 +looseness_N 3.729715012475897e-6 +loosening_N 3.729715012475897e-6 +loosestrife_N 3.729715012475897e-6 +loot_N 7.459430024951794e-6 +loot_V 1.3607293509320997e-4 +loot_V2 1.609865254278217e-5 +looter_N 3.729715012475897e-6 +looting_N 3.729715012475897e-6 +lop_V 2.2678822515534993e-5 +lop_V2 3.219730508556434e-5 +lop_eared_A 1.0773191989054437e-5 +lope_N 3.729715012475897e-6 +lope_V 2.2678822515534993e-5 +lopsided_A 4.309276795621775e-5 +lopsidedness_N 3.729715012475897e-6 +loquacious_A 2.1546383978108874e-5 +loquaciousness_N 3.729715012475897e-6 +loquacity_N 3.729715012475897e-6 +loquat_N 3.729715012475897e-6 +lorazepam_N 3.729715012475897e-6 +lorchel_N 3.729715012475897e-6 +lord_N 7.459430024951794e-6 +lord_V2 3.219730508556434e-5 +lord_it_over_V2 1.609865254278217e-5 +lordless_A 1.0773191989054437e-5 +lordliness_N 3.729715012475897e-6 +lordly_A 1.0773191989054437e-5 +lordolatry_N 3.729715012475897e-6 +lordosis_N 3.729715012475897e-6 +lordship_N 7.459430024951794e-6 +lore_N 1.118914503742769e-5 +lorgnette_N 3.729715012475897e-6 +lorica_N 3.729715012475897e-6 +lorikeet_N 3.729715012475897e-6 +lorn_A 1.0773191989054437e-5 +lorna_PN 1.865462821325971e-5 +lorry_N 3.729715012475897e-6 +lory_N 3.729715012475897e-6 +los_angeles_PN 1.5856433981270752e-3 +lose_V 2.2905610740690343e-3 +lose_V2 4.137353703495017e-3 +lose_out_V 4.5357645031069986e-5 +lose_out_on_V2 1.609865254278217e-5 +lose_out_to_V2 1.609865254278217e-5 +lose_up_V 2.2678822515534993e-5 +loser_N 8.951316029942152e-5 +losings_N 3.729715012475897e-6 +loss_N 3.032258305142904e-3 +loss_leader_N 3.729715012475897e-6 +lossiemouth_PN 1.865462821325971e-5 +lossless_A 1.0773191989054437e-5 +lossy_A 1.0773191989054437e-5 +lot_N 9.249693230940223e-4 +lota_N 3.729715012475897e-6 +loth_A 1.0773191989054437e-5 +lothian_PN 1.865462821325971e-5 +loti_N 3.729715012475897e-6 +lotic_A 1.0773191989054437e-5 +lotion_N 1.8648575062379485e-5 +lottery_N 2.9837720099807175e-5 +lotto_N 3.729715012475897e-6 +lotus_N 3.729715012475897e-6 +lotus_eater_N 3.729715012475897e-6 +lotusland_N 3.729715012475897e-6 +louche_A 1.0773191989054437e-5 +loud_A 1.0773191989054437e-4 +loud_Adv 1.7337933665065797e-5 +loud_hailer_N 3.729715012475897e-6 +loudmouth_N 3.729715012475897e-6 +loudness_N 3.729715012475897e-6 +loudspeaker_N 7.459430024951794e-6 +lough_N 3.729715012475897e-6 +loughborough_PN 1.865462821325971e-5 +louis_PN 1.865462821325971e-5 +louise_PN 1.865462821325971e-5 +louisiana_PN 1.865462821325971e-4 +louisville_PN 1.865462821325971e-5 +lounge_N 3.356743511228307e-5 +lounge_V 2.2678822515534993e-5 +lounge_chair_N 3.729715012475897e-6 +lounge_lizard_N 3.729715012475897e-6 +lounge_suit_N 3.729715012475897e-6 +lounger_N 3.729715012475897e-6 +loungewear_N 3.729715012475897e-6 +loupe_N 3.729715012475897e-6 +lour_V 2.2678822515534993e-5 +louringly_Adv 8.668966832532898e-6 +louse_N 3.729715012475897e-6 +lousy_A 5.3865959945272184e-5 +lout_N 3.729715012475897e-6 +louth_PN 1.865462821325971e-5 +loutish_A 2.1546383978108874e-5 +louvar_N 3.729715012475897e-6 +louver_N 3.729715012475897e-6 +louvered_A 1.0773191989054437e-5 +louvre_N 3.729715012475897e-6 +lovable_A 5.3865959945272184e-5 +lovage_N 3.729715012475897e-6 +lovastatin_N 3.729715012475897e-6 +love_N 5.594572518713845e-5 +love_V2 4.3466361865511857e-4 +love_V2V 4.675081813931744e-4 +love_VV 3.843936190659235e-4 +love_affair_N 3.729715012475897e-6 +love_child_N 3.729715012475897e-6 +love_feast_N 3.729715012475897e-6 +love_knot_N 3.729715012475897e-6 +love_letter_N 3.729715012475897e-6 +love_match_N 3.729715012475897e-6 +love_philtre_N 3.729715012475897e-6 +love_potion_N 3.729715012475897e-6 +love_seat_N 3.729715012475897e-6 +love_song_N 3.729715012475897e-6 +love_story_N 3.729715012475897e-6 +love_token_N 3.729715012475897e-6 +lovebird_N 7.459430024951794e-6 +loveless_A 1.0773191989054437e-5 +loveliness_N 3.729715012475897e-6 +lovelorn_A 1.0773191989054437e-5 +lovely_A 1.0773191989054437e-4 +lovemaking_N 3.729715012475897e-6 +lover_N 2.237829007485538e-5 +loverlike_A 1.0773191989054437e-5 +lovesick_A 1.0773191989054437e-5 +lovesickness_N 3.729715012475897e-6 +loving_A 3.231957596716331e-5 +loving_cup_N 3.729715012475897e-6 +loving_kindness_N 3.729715012475897e-6 +lovingness_N 3.729715012475897e-6 +low_A 6.377729657520227e-3 +low_Adv 7.802070149279609e-5 +low_N 1.5291831551151176e-4 +low_V 2.2678822515534993e-5 +low_down_A 1.0773191989054437e-5 +low_keyed_A 1.0773191989054437e-5 +low_pitched_A 1.0773191989054437e-5 +low_relief_N 3.729715012475897e-6 +low_spirited_A 1.0773191989054437e-5 +lowborn_A 1.0773191989054437e-5 +lowboy_N 3.729715012475897e-6 +lowbred_A 1.0773191989054437e-5 +lowbrow_A 1.0773191989054437e-5 +lowbrow_N 3.729715012475897e-6 +lower_Adv 8.668966832532898e-6 +lower_V 5.669705628883749e-4 +lower_V2 1.1591029830803161e-3 +lowercase_A 1.0773191989054437e-5 +lowerclassman_N 3.729715012475897e-6 +lowering_N 3.729715012475897e-6 +loweringly_Adv 8.668966832532898e-6 +lowermost_A 1.0773191989054437e-5 +lowest_Adv 8.668966832532898e-6 +lowestoft_PN 1.865462821325971e-5 +lowland_A 1.0773191989054437e-5 +lowland_N 3.729715012475897e-6 +lowlander_N 3.729715012475897e-6 +lowliness_N 3.729715012475897e-6 +lowly_A 3.231957596716331e-5 +lowness_N 3.729715012475897e-6 +lowset_A 1.0773191989054437e-5 +lox_N 3.729715012475897e-6 +loxapine_N 3.729715012475897e-6 +loyal_A 2.6932979972636094e-4 +loyalist_N 3.729715012475897e-6 +loyalty_N 1.4545888548655997e-4 +loyang_PN 1.865462821325971e-5 +lozenge_N 3.729715012475897e-6 +lp_N 3.729715012475897e-6 +lsd_N 3.729715012475897e-6 +lt_PN 1.865462821325971e-5 +ltd_PN 1.865462821325971e-5 +luau_N 3.729715012475897e-6 +lubber_N 3.729715012475897e-6 +lubberly_A 1.0773191989054437e-5 +lubeck_PN 1.865462821325971e-5 +lubricant_N 3.729715012475897e-5 +lubricate_V2 1.609865254278217e-5 +lubrication_N 3.729715012475897e-6 +lubricious_A 1.0773191989054437e-5 +lucent_A 1.0773191989054437e-5 +lucerne_N 3.729715012475897e-6 +lucid_A 2.1546383978108874e-5 +lucidity_N 3.729715012475897e-6 +lucifer_N 3.729715012475897e-6 +luciferin_N 3.729715012475897e-6 +lucifugous_A 1.0773191989054437e-5 +luck_N 4.1026865137234865e-5 +luck_into_V2 1.609865254278217e-5 +luck_out_V 2.2678822515534993e-5 +luckless_A 1.0773191989054437e-5 +lucknow_PN 1.865462821325971e-5 +lucky_A 1.9391745580297985e-4 +lucrative_A 2.47783415748252e-4 +lucre_N 3.729715012475897e-6 +lucubration_N 3.729715012475897e-6 +lucy_PN 1.865462821325971e-5 +luddite_N 3.729715012475897e-6 +ludicrous_A 8.61855359124355e-5 +ludlow_PN 1.865462821325971e-5 +ludo_N 3.729715012475897e-6 +ludwigshafen_PN 1.865462821325971e-5 +luff_N 3.729715012475897e-6 +luff_V 2.2678822515534993e-5 +luff_V2 1.609865254278217e-5 +luffa_N 3.729715012475897e-6 +lug_N 7.459430024951794e-6 +lug_V2 4.8295957628346505e-5 +lug_around_V 2.2678822515534993e-5 +luge_N 3.729715012475897e-6 +luger_N 3.729715012475897e-6 +luggage_N 3.729715012475897e-6 +luggage_carrier_N 3.729715012475897e-6 +luggage_rack_N 3.729715012475897e-6 +luggage_van_N 3.729715012475897e-6 +lugger_N 3.729715012475897e-6 +luging_N 3.729715012475897e-6 +lugsail_N 3.729715012475897e-6 +lugubrious_A 1.0773191989054437e-5 +lugubriousness_N 3.729715012475897e-6 +lugworm_N 3.729715012475897e-6 +luke_PN 1.865462821325971e-5 +lukewarm_A 4.309276795621775e-5 +lukewarmness_N 3.729715012475897e-6 +lull_N 1.4918860049903587e-5 +lull_V 2.2678822515534993e-5 +lull_V2 3.219730508556434e-5 +lullaby_N 3.729715012475897e-6 +lumbago_N 3.729715012475897e-6 +lumbar_A 1.0773191989054437e-5 +lumber_N 1.8648575062379485e-5 +lumber_V 4.5357645031069986e-5 +lumber_V2 1.609865254278217e-5 +lumber_mill_N 3.729715012475897e-6 +lumbering_N 3.729715012475897e-6 +lumberjack_N 3.729715012475897e-6 +lumberman_N 3.729715012475897e-6 +lumbermill_N 3.729715012475897e-6 +lumberroom_N 3.729715012475897e-6 +lumberyard_N 7.459430024951794e-6 +lumbosacral_A 1.0773191989054437e-5 +lumen_N 3.729715012475897e-6 +luminary_N 1.118914503742769e-5 +luminescence_N 3.729715012475897e-6 +luminescent_A 1.0773191989054437e-5 +luminism_N 3.729715012475897e-6 +luminosity_N 3.729715012475897e-6 +luminous_A 1.0773191989054437e-5 +lumma_N 3.729715012475897e-6 +lump_N 3.729715012475897e-6 +lump_V2 6.439461017112868e-5 +lumpectomy_N 3.729715012475897e-6 +lumpenproletariat_N 3.729715012475897e-6 +lumper_N 3.729715012475897e-6 +lumpfish_N 3.729715012475897e-6 +lumpish_A 1.0773191989054437e-5 +lumpsucker_N 3.729715012475897e-6 +lumpy_A 2.1546383978108874e-5 +lunacy_N 3.729715012475897e-6 +lunar_A 1.0773191989054437e-5 +lunatic_A 1.0773191989054437e-5 +lunatic_N 3.729715012475897e-6 +lunch_N 9.697259032437332e-5 +lunch_V 4.5357645031069986e-5 +lunch_V2 1.609865254278217e-5 +luncheon_N 1.4918860049903587e-5 +luncher_N 3.729715012475897e-6 +lunching_N 3.729715012475897e-6 +lunchroom_N 3.729715012475897e-6 +lunchtime_N 1.4918860049903587e-5 +lunette_N 3.729715012475897e-6 +lung_N 1.118914503742769e-4 +lung_power_N 3.729715012475897e-6 +lunge_N 3.729715012475897e-6 +lunge_V 6.803646754660499e-5 +lunger_N 3.729715012475897e-6 +lungfish_N 3.729715012475897e-6 +lungi_N 3.729715012475897e-6 +lunisolar_A 1.0773191989054437e-5 +lunula_N 3.729715012475897e-6 +lupin_N 3.729715012475897e-6 +lupine_A 1.0773191989054437e-5 +lupine_N 3.729715012475897e-6 +lupus_N 3.729715012475897e-6 +lurch_N 3.729715012475897e-6 +lurch_V 1.3607293509320997e-4 +lurcher_N 3.729715012475897e-6 +lure_N 1.4918860049903587e-5 +lure_V2 3.3807170339842556e-4 +lure_away_V 2.2678822515534993e-5 +lurid_A 1.0773191989054437e-5 +luridness_N 3.729715012475897e-6 +lurk_V 4.5357645031069986e-5 +lurker_N 3.729715012475897e-6 +lurking_place_N 3.729715012475897e-6 +luscious_A 1.0773191989054437e-5 +lusciousness_N 3.729715012475897e-6 +lush_A 4.309276795621775e-5 +lush_N 3.729715012475897e-6 +lust_N 3.729715012475897e-6 +lust_V 2.2678822515534993e-5 +lust_after_V2 1.609865254278217e-5 +luster_N 3.729715012475897e-6 +lusterware_N 3.729715012475897e-6 +lustful_A 1.0773191989054437e-5 +lustre_N 3.729715012475897e-6 +lustrous_A 1.0773191989054437e-5 +lustrum_N 3.729715012475897e-6 +lusty_A 2.1546383978108874e-5 +luta_PN 1.865462821325971e-5 +lutanist_N 3.729715012475897e-6 +lute_N 3.729715012475897e-6 +luteal_A 1.0773191989054437e-5 +lutefisk_N 3.729715012475897e-6 +lutenist_N 3.729715012475897e-6 +lutetium_N 3.729715012475897e-6 +lutheran_A 1.0773191989054437e-5 +lutheran_N 3.729715012475897e-6 +luthier_N 3.729715012475897e-6 +lutist_N 3.729715012475897e-6 +luton_PN 1.865462821325971e-5 +lux_N 3.729715012475897e-6 +luxation_N 3.729715012475897e-6 +luxe_A 1.0773191989054437e-5 +luxembourg_PN 1.865462821325971e-5 +luxemburg_PN 1.865462821325971e-5 +luxemburger_A 1.0773191989054437e-5 +luxemburger_N 3.729715012475897e-6 +luxuriance_N 3.729715012475897e-6 +luxuriant_A 1.0773191989054437e-5 +luxuriate_V 2.2678822515534993e-5 +luxuriation_N 3.729715012475897e-6 +luxurious_A 4.309276795621775e-5 +luxury_N 2.4243147581093328e-4 +lvov_PN 1.865462821325971e-5 +lwei_N 3.729715012475897e-6 +lyallpur_PN 1.865462821325971e-5 +lycaenid_N 3.729715012475897e-6 +lycanthropy_N 3.729715012475897e-6 +lycee_N 3.729715012475897e-6 +lyceum_N 3.729715012475897e-6 +lychee_N 3.729715012475897e-6 +lychgate_N 3.729715012475897e-6 +lychnis_N 3.729715012475897e-6 +lycopene_N 3.729715012475897e-6 +lydia_PN 1.865462821325971e-5 +lydney_PN 1.865462821325971e-5 +lye_N 3.729715012475897e-6 +lygaeid_N 3.729715012475897e-6 +lying_N 3.729715012475897e-6 +lying_in_A 1.0773191989054437e-5 +lymantriid_N 3.729715012475897e-6 +lymington_PN 1.865462821325971e-5 +lymm_PN 1.865462821325971e-5 +lymph_N 7.459430024951794e-6 +lymphadenitis_N 3.729715012475897e-6 +lymphadenoma_N 3.729715012475897e-6 +lymphadenopathy_N 3.729715012475897e-6 +lymphangiectasia_N 3.729715012475897e-6 +lymphangiogram_N 3.729715012475897e-6 +lymphangiography_N 3.729715012475897e-6 +lymphangioma_N 3.729715012475897e-6 +lymphangitis_N 3.729715012475897e-6 +lymphatic_A 1.0773191989054437e-5 +lymphedema_N 3.729715012475897e-6 +lymphoblast_N 3.729715012475897e-6 +lymphocyte_N 3.729715012475897e-6 +lymphocytic_A 1.0773191989054437e-5 +lymphocytopenia_N 3.729715012475897e-6 +lymphocytosis_N 3.729715012475897e-6 +lymphogranuloma_N 3.729715012475897e-6 +lymphoid_A 1.0773191989054437e-5 +lymphokine_N 3.729715012475897e-6 +lymphoma_N 3.729715012475897e-6 +lymphopoiesis_N 3.729715012475897e-6 +lymphuria_N 3.729715012475897e-6 +lynch_N 3.729715012475897e-6 +lynch_V2 1.609865254278217e-5 +lynching_N 3.729715012475897e-6 +lynchpin_N 3.729715012475897e-6 +lynn_PN 1.865462821325971e-5 +lynne_PN 1.865462821325971e-5 +lynx_N 3.729715012475897e-6 +lynx_eyed_A 1.0773191989054437e-5 +lyonnaise_A 1.0773191989054437e-5 +lyons_PN 1.865462821325971e-5 +lyophilized_A 1.0773191989054437e-5 +lypressin_N 3.729715012475897e-6 +lyrate_A 1.0773191989054437e-5 +lyre_N 3.729715012475897e-6 +lyre_bird_N 3.729715012475897e-6 +lyrebird_N 3.729715012475897e-6 +lyric_A 1.0773191989054437e-5 +lyric_N 1.4918860049903587e-5 +lyrical_A 1.0773191989054437e-5 +lyricality_N 3.729715012475897e-6 +lyricism_N 7.459430024951794e-6 +lyricist_N 7.459430024951794e-6 +lysin_N 3.729715012475897e-6 +lysine_N 3.729715012475897e-6 +lysinemia_N 3.729715012475897e-6 +lysis_N 3.729715012475897e-6 +lysogenic_A 1.0773191989054437e-5 +lysogenization_N 3.729715012475897e-6 +lysogeny_N 3.729715012475897e-6 +lysol_N 3.729715012475897e-6 +lysosome_N 3.729715012475897e-6 +lysozyme_N 3.729715012475897e-6 +lyssavirus_N 3.729715012475897e-6 +lytham_PN 1.865462821325971e-5 +lytham_st_annes_PN 1.865462821325971e-5 +ma'am_N 3.729715012475897e-6 +ma_N 3.729715012475897e-6 +maar_N 3.729715012475897e-6 +maastricht_PN 1.865462821325971e-5 +mabel_PN 1.865462821325971e-5 +mac_N 3.729715012475897e-6 +macabre_A 1.0773191989054437e-5 +macadam_N 3.729715012475897e-6 +macadamia_N 3.729715012475897e-6 +macadamize_V2 1.609865254278217e-5 +macaque_N 3.729715012475897e-6 +macaroni_N 3.729715012475897e-6 +macaronic_A 1.0773191989054437e-5 +macaroon_N 3.729715012475897e-6 +macaw_N 3.729715012475897e-6 +macclesfield_PN 1.865462821325971e-5 +mace_N 3.729715012475897e-6 +mace_bearer_N 3.729715012475897e-6 +macebearer_N 3.729715012475897e-6 +macedoine_N 3.729715012475897e-6 +macedonian_A 1.0773191989054437e-5 +macedonian_N 3.729715012475897e-6 +macerate_V 2.2678822515534993e-5 +macerate_V2 1.609865254278217e-5 +maceration_N 3.729715012475897e-6 +macerative_A 1.0773191989054437e-5 +mach_PN 1.865462821325971e-5 +machete_N 1.118914503742769e-5 +machiavellian_A 1.0773191989054437e-5 +machicolation_N 3.729715012475897e-6 +machination_N 3.729715012475897e-6 +machine_N 8.541047378569803e-4 +machine_V2 1.609865254278217e-5 +machine_gun_N 3.729715012475897e-6 +machine_made_A 1.0773191989054437e-5 +machinery_N 1.268103104241805e-4 +machinist_N 2.051343256861743e-4 +machismo_N 3.729715012475897e-6 +machmeter_N 3.729715012475897e-6 +macho_N 3.729715012475897e-6 +macintosh_N 3.729715012475897e-6 +mackerel_N 3.729715012475897e-6 +mackinaw_N 3.729715012475897e-6 +mackintosh_N 3.729715012475897e-6 +mackle_N 3.729715012475897e-6 +macon_N 3.729715012475897e-6 +macrame_N 3.729715012475897e-6 +macrencephalic_A 1.0773191989054437e-5 +macrencephaly_N 3.729715012475897e-6 +macro_A 1.0773191989054437e-5 +macro_N 3.729715012475897e-6 +macrobiotic_A 1.0773191989054437e-5 +macrobiotics_N 3.729715012475897e-6 +macrocephalic_A 1.0773191989054437e-5 +macrocephaly_N 3.729715012475897e-6 +macrocosm_N 3.729715012475897e-6 +macrocosmic_A 1.0773191989054437e-5 +macrocytosis_N 3.729715012475897e-6 +macroeconomic_A 1.0773191989054437e-5 +macroeconomics_N 3.729715012475897e-6 +macroeconomist_N 3.729715012475897e-6 +macroevolution_N 3.729715012475897e-6 +macroglossia_N 3.729715012475897e-6 +macromolecular_A 1.0773191989054437e-5 +macromolecule_N 3.729715012475897e-6 +macron_N 3.729715012475897e-6 +macrophage_N 3.729715012475897e-6 +macroscopic_A 1.0773191989054437e-5 +macroscopically_Adv 8.668966832532898e-6 +macrotus_N 3.729715012475897e-6 +macrozamia_N 3.729715012475897e-6 +macula_N 3.729715012475897e-6 +maculate_A 1.0773191989054437e-5 +macule_N 3.729715012475897e-6 +macumba_N 3.729715012475897e-6 +macushla_N 3.729715012475897e-6 +mad_A 1.0773191989054437e-4 +madagascan_A 1.0773191989054437e-5 +madagascan_N 3.729715012475897e-6 +madagascar_PN 1.865462821325971e-5 +madam_N 3.729715012475897e-6 +madame_N 3.729715012475897e-6 +madcap_N 3.729715012475897e-6 +madden_V2 1.609865254278217e-5 +madder_N 3.729715012475897e-6 +madderwort_N 3.729715012475897e-6 +maddy_PN 1.865462821325971e-5 +madeira_N 3.729715012475897e-6 +madeleine_PN 1.865462821325971e-5 +mademoiselle_N 3.729715012475897e-6 +madge_PN 1.865462821325971e-5 +madhouse_N 3.729715012475897e-6 +madman_N 7.459430024951794e-6 +madness_N 7.459430024951794e-6 +madonna_N 3.729715012475897e-6 +madras_N 3.729715012475897e-6 +madras_PN 1.865462821325971e-5 +madrasa_N 3.729715012475897e-6 +madrid_PN 1.678916539193374e-4 +madrigal_N 3.729715012475897e-6 +madrigalist_N 3.729715012475897e-6 +madrilene_N 3.729715012475897e-6 +madrona_N 3.729715012475897e-6 +madurai_PN 1.865462821325971e-5 +madwoman_N 3.729715012475897e-6 +maecenas_PN 1.865462821325971e-5 +maelstrom_N 3.729715012475897e-6 +maenad_N 3.729715012475897e-6 +maesteg_PN 1.865462821325971e-5 +maestro_N 7.459430024951794e-6 +maffick_V 2.2678822515534993e-5 +mafia_N 2.9837720099807175e-5 +mafioso_N 3.729715012475897e-6 +mag_N 3.729715012475897e-6 +magazine_N 9.249693230940223e-4 +magdalen_N 3.729715012475897e-6 +magdeburg_PN 1.865462821325971e-5 +magenta_A 1.0773191989054437e-5 +magenta_N 3.729715012475897e-6 +maggie_PN 1.865462821325971e-5 +maggot_N 7.459430024951794e-6 +maggoty_A 1.0773191989054437e-5 +maghull_PN 1.865462821325971e-5 +magic_A 5.3865959945272184e-5 +magic_N 1.118914503742769e-5 +magic_away_V2 1.609865254278217e-5 +magical_A 3.231957596716331e-5 +magician_N 1.118914503742769e-5 +magisterial_A 2.1546383978108874e-5 +magistracy_N 3.729715012475897e-6 +magistrate_N 2.237829007485538e-5 +magma_N 3.729715012475897e-6 +magnanimity_N 3.729715012475897e-6 +magnanimous_A 2.1546383978108874e-5 +magnate_N 2.6108005087331277e-5 +magnesia_N 3.729715012475897e-6 +magnesite_N 3.729715012475897e-6 +magnesium_N 3.729715012475897e-6 +magnet_N 1.8648575062379485e-5 +magnetic_A 2.046906477920343e-4 +magnetically_Adv 1.7337933665065797e-5 +magnetism_N 7.459430024951794e-6 +magnetite_N 3.729715012475897e-6 +magnetization_N 3.729715012475897e-6 +magnetize_V2 3.219730508556434e-5 +magneto_N 3.729715012475897e-6 +magnetograph_N 3.729715012475897e-6 +magnetohydrodynamics_N 3.729715012475897e-6 +magnetometer_N 3.729715012475897e-6 +magneton_N 3.729715012475897e-6 +magnetosphere_N 3.729715012475897e-6 +magnetron_N 3.729715012475897e-6 +magnificat_N 3.729715012475897e-6 +magnification_N 7.459430024951794e-6 +magnificence_N 3.729715012475897e-6 +magnificent_A 2.1546383978108874e-5 +magnifico_N 3.729715012475897e-6 +magnifier_N 3.729715012475897e-6 +magnify_V2 1.2878922034225736e-4 +magniloquence_N 3.729715012475897e-6 +magniloquent_A 1.0773191989054437e-5 +magnitude_N 4.475658014971076e-5 +magnolia_N 7.459430024951794e-6 +magnum_N 3.729715012475897e-6 +magnum_opus_N 3.729715012475897e-6 +magpie_N 3.729715012475897e-6 +maguey_N 3.729715012475897e-6 +magus_N 3.729715012475897e-6 +magyar_A 1.0773191989054437e-5 +magyar_N 3.729715012475897e-6 +maharaja_N 3.729715012475897e-6 +maharajah_N 7.459430024951794e-6 +maharanee_N 3.729715012475897e-6 +maharani_N 3.729715012475897e-6 +mahatma_N 3.729715012475897e-6 +mahjong_N 3.729715012475897e-6 +mahoe_N 3.729715012475897e-6 +mahogany_N 1.118914503742769e-5 +mahout_N 3.729715012475897e-6 +mahuang_N 3.729715012475897e-6 +maid_N 1.118914503742769e-5 +maiden_A 3.231957596716331e-5 +maiden_N 7.459430024951794e-6 +maidenhair_N 3.729715012475897e-6 +maidenhead_N 3.729715012475897e-6 +maidenhead_PN 1.865462821325971e-5 +maidenhood_N 3.729715012475897e-6 +maidenlike_A 1.0773191989054437e-5 +maidenliness_N 3.729715012475897e-6 +maidenly_A 1.0773191989054437e-5 +maidservant_N 3.729715012475897e-6 +maidstone_PN 1.865462821325971e-5 +maigre_N 3.729715012475897e-6 +mail_N 2.387017607984574e-4 +mail_V2 1.609865254278217e-4 +mail_train_N 3.729715012475897e-6 +mailbag_N 3.729715012475897e-6 +mailboat_N 3.729715012475897e-6 +mailbox_N 7.459430024951794e-6 +maildrop_N 3.729715012475897e-6 +mailer_N 3.729715012475897e-6 +mailing_N 7.459430024951794e-6 +mailing_card_N 3.729715012475897e-6 +mailing_list_N 3.729715012475897e-6 +maillot_N 3.729715012475897e-6 +mailman_N 7.459430024951794e-6 +mailsorter_N 3.729715012475897e-6 +maim_V2 1.609865254278217e-5 +main_A 1.9607209420079074e-3 +main_N 2.6108005087331277e-5 +maine_PN 1.865462821325971e-5 +mainframe_N 3.729715012475897e-6 +mainland_N 7.459430024951794e-6 +mainmast_N 3.729715012475897e-6 +mainsail_N 3.729715012475897e-6 +mainspring_N 3.729715012475897e-6 +mainstay_N 3.356743511228307e-5 +mainstream_N 3.729715012475897e-5 +mainstreamed_A 1.0773191989054437e-5 +maintain_V 7.257223204971198e-4 +maintain_V2 1.2556948983370093e-3 +maintain_VS 1.9638421995032632e-3 +maintainable_A 1.0773191989054437e-5 +maintenance_N 1.6783717556141534e-4 +mainz_PN 1.865462821325971e-5 +maisonette_N 3.729715012475897e-6 +maisonnette_N 3.729715012475897e-6 +maize_N 3.729715012475897e-6 +maj_PN 1.865462821325971e-5 +majestic_A 1.0773191989054437e-5 +majestically_Adv 8.668966832532898e-6 +majesty_N 3.729715012475897e-6 +majolica_N 3.729715012475897e-6 +major_A 7.972162071900284e-3 +major_N 3.729715012475897e-5 +major_V 4.5357645031069986e-5 +major_domo_N 3.729715012475897e-6 +major_general_N 3.729715012475897e-6 +majority_N 4.6248466154701117e-4 +majuscular_A 1.0773191989054437e-5 +majuscule_A 1.0773191989054437e-5 +make_N 2.6108005087331277e-5 +make_V 7.302580850002268e-3 +make_V2 1.6130849847867734e-2 +make_V2A 0.465 +make_V2V 3.1323048153342685e-2 +make_V3 4.285714285714286e-2 +make_VA 2.4606299212598427e-2 +make_VS 1.906082134811991e-2 +make_VV 2.8829521429944266e-4 +make_after_V 2.2678822515534993e-5 +make_away_with_V2 1.609865254278217e-5 +make_believe_N 3.729715012475897e-6 +make_do_with_V2 1.609865254278217e-5 +make_for_V2 1.609865254278217e-5 +make_into_V2 1.609865254278217e-5 +make_it_V 4.5357645031069986e-5 +make_it_up_to_V2 1.609865254278217e-5 +make_of_V3 3.1746031746031746e-3 +make_off_V 2.2678822515534993e-5 +make_off_with_V2 1.609865254278217e-5 +make_out_V 2.2678822515534993e-5 +make_out_V2 1.609865254278217e-5 +make_out_with_V2 1.609865254278217e-5 +make_over_V2 1.609865254278217e-5 +make_towards_V2 1.609865254278217e-5 +make_up_N 3.729715012475897e-6 +make_up_V 2.2678822515534993e-5 +make_up_V2 3.219730508556434e-5 +make_up_for_V2 1.609865254278217e-5 +make_up_to_V2 1.609865254278217e-5 +make_with_V2 1.609865254278217e-5 +makeover_N 3.729715012475897e-6 +maker_N 2.0960998370114538e-3 +makeready_N 3.729715012475897e-6 +makeshift_N 3.729715012475897e-6 +makeup_N 3.729715012475897e-6 +makeweight_N 3.729715012475897e-6 +making_N 1.118914503742769e-4 +mako_N 3.729715012475897e-6 +makomako_N 3.729715012475897e-6 +malabsorption_N 3.729715012475897e-6 +malacca_N 3.729715012475897e-6 +malachite_N 3.729715012475897e-6 +malacia_N 3.729715012475897e-6 +malacologist_N 3.729715012475897e-6 +malacology_N 3.729715012475897e-6 +maladaptive_A 1.0773191989054437e-5 +maladjusted_A 1.0773191989054437e-5 +maladjustive_A 1.0773191989054437e-5 +maladjustment_N 3.729715012475897e-6 +maladroit_A 1.0773191989054437e-5 +maladroitness_N 3.729715012475897e-6 +malady_N 3.729715012475897e-6 +malaga_PN 1.865462821325971e-5 +malahini_N 3.729715012475897e-6 +malaise_N 1.118914503742769e-5 +malamute_N 3.729715012475897e-6 +malapropism_N 3.729715012475897e-6 +malapropos_A 1.0773191989054437e-5 +malapropos_Adv 8.668966832532898e-6 +malaria_N 7.459430024951794e-6 +malarial_A 1.0773191989054437e-5 +malawi_PN 1.865462821325971e-5 +malawian_A 1.0773191989054437e-5 +malawian_N 3.729715012475897e-6 +malay_A 1.0773191989054437e-5 +malay_N 3.729715012475897e-6 +malaya_PN 1.865462821325971e-5 +malayan_A 1.0773191989054437e-5 +malayan_N 3.729715012475897e-6 +malaysia_PN 4.6636570533149275e-4 +malaysian_A 3.231957596716331e-5 +malaysian_N 3.729715012475897e-6 +malcolm_PN 1.865462821325971e-5 +malcontent_A 1.0773191989054437e-5 +malcontent_N 7.459430024951794e-6 +maldon_PN 1.865462821325971e-5 +male_A 1.508246878467621e-4 +male_N 7.459430024951794e-5 +maleate_N 3.729715012475897e-6 +maleberry_N 3.729715012475897e-6 +malediction_N 3.729715012475897e-6 +malefactor_N 7.459430024951794e-6 +malefic_A 1.0773191989054437e-5 +maleficence_N 3.729715012475897e-6 +maleficent_A 1.0773191989054437e-5 +maleness_N 3.729715012475897e-6 +maleo_N 3.729715012475897e-6 +malevolence_N 3.729715012475897e-6 +malevolent_A 1.0773191989054437e-5 +malfeasance_N 3.729715012475897e-6 +malfeasant_N 3.729715012475897e-6 +malformation_N 3.729715012475897e-6 +malformed_A 1.0773191989054437e-5 +malfunction_N 1.118914503742769e-5 +malfunction_V 2.2678822515534993e-5 +mali_PN 1.865462821325971e-5 +malian_A 1.0773191989054437e-5 +malian_N 3.729715012475897e-6 +malice_N 1.8648575062379485e-5 +malicious_A 3.231957596716331e-5 +malign_A 1.0773191989054437e-5 +malign_V2 4.8295957628346505e-5 +malignancy_N 1.118914503742769e-5 +malignant_A 9.695872790148993e-5 +malignity_N 3.729715012475897e-6 +malik_N 3.729715012475897e-6 +malinger_V 2.2678822515534993e-5 +malingerer_N 3.729715012475897e-6 +malingering_N 3.729715012475897e-6 +malinois_N 3.729715012475897e-6 +mallard_N 3.729715012475897e-6 +malleability_N 3.729715012475897e-6 +malleable_A 1.0773191989054437e-5 +mallee_N 3.729715012475897e-6 +mallet_N 3.729715012475897e-6 +malleus_N 3.729715012475897e-6 +mallow_N 3.729715012475897e-6 +mallow_PN 1.865462821325971e-5 +malmo_PN 1.865462821325971e-5 +malmsey_N 3.729715012475897e-6 +malnourished_A 1.0773191989054437e-5 +malnutrition_N 7.459430024951794e-6 +malocclusion_N 3.729715012475897e-6 +malodor_N 3.729715012475897e-6 +malodorous_A 1.0773191989054437e-5 +malodorousness_N 3.729715012475897e-6 +malope_N 3.729715012475897e-6 +malposed_A 1.0773191989054437e-5 +malposition_N 3.729715012475897e-6 +malpractice_N 1.4918860049903587e-5 +malt_N 3.729715012475897e-6 +malt_V 2.2678822515534993e-5 +malt_V2 1.609865254278217e-5 +malta_PN 3.730925642651942e-5 +maltby_PN 1.865462821325971e-5 +malted_N 3.729715012475897e-6 +maltese_A 2.1546383978108874e-5 +maltese_N 3.729715012475897e-6 +maltha_N 3.729715012475897e-6 +malthusian_A 1.0773191989054437e-5 +maltose_N 3.729715012475897e-6 +maltreat_V2 1.609865254278217e-5 +maltreatment_N 3.729715012475897e-6 +maltster_N 3.729715012475897e-6 +malvasia_N 3.729715012475897e-6 +malvern_PN 1.865462821325971e-5 +malversation_N 3.729715012475897e-6 +mama_N 3.729715012475897e-6 +mamba_N 3.729715012475897e-6 +mambo_N 3.729715012475897e-6 +mamey_N 3.729715012475897e-6 +mamie_PN 1.865462821325971e-5 +mamma_N 3.729715012475897e-6 +mammal_N 3.729715012475897e-6 +mammalian_A 1.0773191989054437e-5 +mammalogist_N 3.729715012475897e-6 +mammalogy_N 3.729715012475897e-6 +mammary_A 1.0773191989054437e-5 +mammillaria_N 3.729715012475897e-6 +mammogram_N 3.729715012475897e-6 +mammography_N 3.729715012475897e-6 +mammon_N 3.729715012475897e-6 +mammoth_N 7.459430024951794e-6 +mammothermography_N 3.729715012475897e-6 +mammy_N 3.729715012475897e-6 +mamo_N 3.729715012475897e-6 +man_N 9.622664732187814e-4 +man_V2 8.049326271391085e-5 +man_at_arms_N 3.729715012475897e-6 +man_down_V 2.2678822515534993e-5 +man_eater_N 3.729715012475897e-6 +man_hour_N 3.729715012475897e-6 +man_of_war_N 3.729715012475897e-6 +man_sized_A 1.0773191989054437e-5 +man_up_V 2.2678822515534993e-5 +manacle_N 7.459430024951794e-6 +manacle_V2 1.609865254278217e-5 +manage_V 2.2905610740690343e-3 +manage_V2 1.4488787288503952e-3 +manage_VV 3.3634441668268307e-3 +manageability_N 3.729715012475897e-6 +manageable_A 6.463915193432663e-5 +management_N 1.3315082594538951e-3 +manager_N 1.6336151754644428e-3 +manageress_N 3.729715012475897e-6 +managerial_A 3.231957596716331e-5 +managership_N 3.729715012475897e-6 +manakin_N 3.729715012475897e-6 +manana_N 3.729715012475897e-6 +manat_N 3.729715012475897e-6 +manatee_N 3.729715012475897e-6 +manchester_PN 3.730925642651942e-5 +mancunian_A 1.0773191989054437e-5 +mancunian_N 3.729715012475897e-6 +mandala_N 3.729715012475897e-6 +mandamus_N 3.729715012475897e-6 +mandarin_N 3.729715012475897e-6 +mandatary_N 3.729715012475897e-6 +mandate_N 3.356743511228307e-5 +mandate_V2 2.4147978814173252e-4 +mandate_VS 1.7328019407381737e-4 +mandator_N 3.729715012475897e-6 +mandatory_A 1.9391745580297985e-4 +mandatory_N 3.729715012475897e-6 +mandible_N 3.729715012475897e-6 +mandibular_A 1.0773191989054437e-5 +mandibulate_A 1.0773191989054437e-5 +mandibulofacial_A 1.0773191989054437e-5 +mandola_N 3.729715012475897e-6 +mandolin_N 3.729715012475897e-6 +mandragora_N 3.729715012475897e-6 +mandrake_N 3.729715012475897e-6 +mandrill_N 3.729715012475897e-6 +mandy_PN 1.865462821325971e-5 +mane_N 3.729715012475897e-6 +maneuver_N 3.729715012475897e-6 +maneuver_V 4.5357645031069986e-5 +maneuver_V2 1.609865254278217e-5 +maneuverability_N 3.729715012475897e-6 +maneuverable_A 1.0773191989054437e-5 +maneuverer_N 3.729715012475897e-6 +manful_A 1.0773191989054437e-5 +manfulness_N 3.729715012475897e-6 +mangabey_N 3.729715012475897e-6 +manganate_N 3.729715012475897e-6 +manganese_N 3.729715012475897e-6 +manganite_N 3.729715012475897e-6 +mange_N 3.729715012475897e-6 +mangel_wurzel_N 3.729715012475897e-6 +manger_N 3.729715012475897e-6 +mangle_N 3.729715012475897e-6 +mangle_V2 1.609865254278217e-5 +manglietia_N 3.729715012475897e-6 +mango_N 3.729715012475897e-6 +mangosteen_N 3.729715012475897e-6 +mangrove_N 3.729715012475897e-6 +mangy_A 1.0773191989054437e-5 +manhandle_V2 3.219730508556434e-5 +manhattan_PN 5.223295899712719e-4 +manhole_N 3.729715012475897e-6 +manhood_N 7.459430024951794e-6 +manhunt_N 3.729715012475897e-6 +mania_N 2.6108005087331277e-5 +maniac_N 7.459430024951794e-6 +maniacal_A 1.0773191989054437e-5 +manic_depressive_A 1.0773191989054437e-5 +manic_depressive_N 3.729715012475897e-6 +maniclike_A 1.0773191989054437e-5 +manicotti_N 3.729715012475897e-6 +manicure_N 3.729715012475897e-6 +manicure_V2 1.609865254278217e-5 +manicurist_N 3.729715012475897e-6 +manifest_A 3.231957596716331e-5 +manifest_N 3.729715012475897e-6 +manifest_V2 3.219730508556434e-5 +manifestation_N 1.118914503742769e-5 +manifesto_N 1.118914503742769e-5 +manifold_A 1.0773191989054437e-5 +manifold_N 3.729715012475897e-6 +manifold_V2 1.609865254278217e-5 +manikin_N 3.729715012475897e-6 +manila_N 3.729715012475897e-6 +manila_PN 3.1712867962541504e-4 +manilla_N 3.729715012475897e-6 +manipulability_N 3.729715012475897e-6 +manipulate_V2 1.9318383051338602e-4 +manipulation_N 4.848629516218666e-5 +manipulative_A 4.309276795621775e-5 +manipulator_N 3.729715012475897e-6 +maniraptor_N 3.729715012475897e-6 +manitoba_PN 1.865462821325971e-5 +mankind_N 1.8648575062379485e-5 +manky_A 1.0773191989054437e-5 +manlike_A 1.0773191989054437e-5 +manliness_N 3.729715012475897e-6 +manly_A 1.0773191989054437e-5 +manna_N 3.729715012475897e-6 +mannequin_N 3.729715012475897e-6 +manner_N 7.459430024951794e-5 +mannered_A 2.1546383978108874e-5 +mannerism_N 3.729715012475897e-6 +mannerly_A 1.0773191989054437e-5 +manners_N 3.729715012475897e-6 +mannheim_PN 1.865462821325971e-5 +mannish_A 1.0773191989054437e-5 +mannitol_N 3.729715012475897e-6 +manoeuvrability_N 3.729715012475897e-6 +manoeuvrable_A 1.0773191989054437e-5 +manoeuvre_N 3.729715012475897e-6 +manoeuvre_V 2.2678822515534993e-5 +manoeuvre_V2 1.609865254278217e-5 +manoeuvrer_N 3.729715012475897e-6 +manometer_N 3.729715012475897e-6 +manor_N 7.459430024951794e-6 +manor_house_N 3.729715012475897e-6 +manorial_A 1.0773191989054437e-5 +manpower_N 1.8648575062379485e-5 +manque_A 1.0773191989054437e-5 +mansard_A 1.0773191989054437e-5 +mansard_N 3.729715012475897e-6 +manse_N 3.729715012475897e-6 +manservant_N 3.729715012475897e-6 +mansfield_PN 1.865462821325971e-5 +mansion_N 1.8648575062379485e-5 +manslaughter_N 3.729715012475897e-6 +manta_N 3.729715012475897e-6 +mantel_N 3.729715012475897e-6 +mantelet_N 3.729715012475897e-6 +mantelpiece_N 3.729715012475897e-6 +manticore_N 3.729715012475897e-6 +mantilla_N 3.729715012475897e-6 +mantis_N 3.729715012475897e-6 +mantispid_N 3.729715012475897e-6 +mantissa_N 3.729715012475897e-6 +mantle_N 3.729715012475897e-6 +mantle_V 2.2678822515534993e-5 +mantle_V2 1.609865254278217e-5 +mantra_N 3.729715012475897e-6 +mantrap_N 3.729715012475897e-6 +mantua_N 3.729715012475897e-6 +manual_A 6.463915193432663e-5 +manual_N 1.4918860049903587e-5 +manubrium_N 3.729715012475897e-6 +manufacture_N 2.6108005087331277e-5 +manufacture_V2 1.4166814237648309e-3 +manufacturer_N 4.8486295162186656e-4 +manul_N 3.729715012475897e-6 +manumission_N 3.729715012475897e-6 +manumit_V2 1.609865254278217e-5 +manure_N 3.729715012475897e-6 +manure_V2 1.609865254278217e-5 +manuscript_N 7.459430024951794e-6 +manx_A 1.0773191989054437e-5 +manx_N 3.729715012475897e-6 +many_A 1.0773191989054437e-5 +many_Det 5.51137439476318e-3 +many_sided_A 1.0773191989054437e-5 +manzanita_N 3.729715012475897e-6 +maoism_N 3.729715012475897e-6 +maoist_N 3.729715012475897e-6 +maori_N 3.729715012475897e-6 +map_N 2.6108005087331277e-5 +map_V2 8.049326271391085e-5 +map_out_V 2.2678822515534993e-5 +map_reader_N 3.729715012475897e-6 +mapinguari_N 3.729715012475897e-6 +maple_N 3.729715012475897e-6 +maple_leaf_N 3.729715012475897e-6 +maplelike_A 1.0773191989054437e-5 +mapmaking_N 3.729715012475897e-6 +mapping_N 3.729715012475897e-6 +maquiladora_N 3.729715012475897e-6 +maquis_N 3.729715012475897e-6 +mar_PN 1.865462821325971e-5 +mar_V2 3.219730508556434e-5 +mara_N 3.729715012475897e-6 +marabou_N 3.729715012475897e-6 +maraca_N 3.729715012475897e-6 +maracaibo_PN 1.865462821325971e-5 +marang_N 3.729715012475897e-6 +maranta_N 3.729715012475897e-6 +marasca_N 3.729715012475897e-6 +maraschino_N 3.729715012475897e-6 +marasmus_N 3.729715012475897e-6 +marathon_N 1.118914503742769e-5 +marathoner_N 3.729715012475897e-6 +maraud_V 2.2678822515534993e-5 +marauder_N 3.729715012475897e-6 +marble_N 3.356743511228307e-5 +marbled_A 1.0773191989054437e-5 +marbleization_N 3.729715012475897e-6 +marbles_N 3.729715012475897e-6 +marblewood_N 3.729715012475897e-6 +marbling_N 3.729715012475897e-6 +marc_N 3.729715012475897e-6 +marcel_N 3.729715012475897e-6 +march_N 5.594572518713845e-5 +march_PN 8.767675260232063e-4 +march_V 3.855399827640949e-4 +march_V2 1.609865254278217e-5 +marcher_N 3.729715012475897e-6 +marchioness_N 3.729715012475897e-6 +mardi_gras_N 3.729715012475897e-6 +mare_N 7.459430024951794e-6 +margaret_PN 1.865462821325971e-5 +margarin_N 3.729715012475897e-6 +margarine_N 1.118914503742769e-5 +margarita_N 3.729715012475897e-6 +margate_N 3.729715012475897e-6 +margate_PN 1.865462821325971e-5 +margay_N 3.729715012475897e-6 +marge_N 3.729715012475897e-6 +marge_PN 1.865462821325971e-5 +margery_PN 1.865462821325971e-5 +margie_PN 1.865462821325971e-5 +margin_N 6.340515521209024e-4 +marginal_A 3.016493756935242e-4 +marginalia_N 3.729715012475897e-6 +marginality_N 3.729715012475897e-6 +marginalization_N 3.729715012475897e-6 +marginalize_V2 3.219730508556434e-5 +margrave_N 3.729715012475897e-6 +marguerite_N 3.729715012475897e-6 +maria_PN 1.865462821325971e-5 +mariachi_N 3.729715012475897e-6 +marian_PN 1.865462821325971e-5 +marie_PN 1.865462821325971e-5 +marigold_N 3.729715012475897e-6 +marihuana_N 3.729715012475897e-6 +marijuana_N 3.729715012475897e-6 +marilyn_PN 1.865462821325971e-5 +marimba_N 3.729715012475897e-6 +marina_N 3.729715012475897e-6 +marinade_N 3.729715012475897e-6 +marinade_V2 1.609865254278217e-5 +marinara_N 3.729715012475897e-6 +marinate_V2 1.609865254278217e-5 +marine_A 6.463915193432663e-5 +marine_N 1.8648575062379485e-5 +mariner_N 3.729715012475897e-6 +marion_PN 1.865462821325971e-5 +marionette_N 3.729715012475897e-6 +mariposa_N 3.729715012475897e-6 +marital_A 6.463915193432663e-5 +mariticide_N 3.729715012475897e-6 +maritime_A 1.0773191989054437e-5 +marjoram_N 3.729715012475897e-6 +marjorie_PN 1.865462821325971e-5 +mark_N 6.937269923205168e-4 +mark_PN 1.865462821325971e-5 +mark_V2 1.046412415280841e-3 +mark_V3 3.1746031746031746e-3 +mark_down_V2 1.609865254278217e-5 +mark_down_as_V3 1.5873015873015873e-3 +mark_off_V2 1.609865254278217e-5 +mark_out_V2 1.609865254278217e-5 +mark_out_for_V3 1.5873015873015873e-3 +mark_out_from_V3 1.5873015873015873e-3 +mark_up_N 3.729715012475897e-6 +mark_up_V2 1.609865254278217e-5 +marke_VS 2.3104025876508982e-4 +marke_up_V 2.2678822515534993e-5 +marked_A 5.3865959945272184e-5 +marker_N 3.729715012475897e-6 +market_N 1.181573715952364e-2 +market_V 7.257223204971198e-4 +market_V2 8.210312796818907e-4 +market_cross_N 3.729715012475897e-6 +market_day_N 3.729715012475897e-6 +market_drayton_PN 1.865462821325971e-5 +market_garden_N 3.729715012475897e-6 +market_gardening_N 3.729715012475897e-6 +market_harborough_PN 1.865462821325971e-5 +market_square_N 3.729715012475897e-6 +market_town_N 3.729715012475897e-6 +marketable_A 6.463915193432663e-5 +marketing_N 6.340515521209024e-4 +marketplace_N 1.3426974044913228e-4 +markhor_N 3.729715012475897e-6 +marking_N 3.729715012475897e-6 +marking_ink_N 3.729715012475897e-6 +marking_inks_N 3.729715012475897e-6 +markka_N 3.729715012475897e-6 +marksman_N 3.729715012475897e-6 +marksmanship_N 3.729715012475897e-6 +markup_N 3.729715012475897e-6 +marl_N 3.729715012475897e-6 +marlberry_N 3.729715012475897e-6 +marlborough_PN 1.865462821325971e-5 +marlene_PN 1.865462821325971e-5 +marlin_N 3.729715012475897e-6 +marline_N 3.729715012475897e-6 +marlinespike_N 3.729715012475897e-6 +marlite_N 3.729715012475897e-6 +marlow_PN 1.865462821325971e-5 +marly_A 1.0773191989054437e-5 +marmalade_N 3.729715012475897e-6 +marmite_N 3.729715012475897e-6 +marmoreal_A 1.0773191989054437e-5 +marmorean_A 1.0773191989054437e-5 +marmoset_N 3.729715012475897e-6 +marmot_N 3.729715012475897e-6 +marocain_N 3.729715012475897e-6 +maroon_A 1.0773191989054437e-5 +maroon_N 3.729715012475897e-6 +maroon_V2 1.609865254278217e-5 +marple_PN 1.865462821325971e-5 +marque_N 1.118914503742769e-5 +marquee_N 7.459430024951794e-6 +marquess_N 3.729715012475897e-6 +marquetry_N 3.729715012475897e-6 +marquis_N 3.729715012475897e-6 +marriage_N 5.594572518713845e-5 +marriageability_N 3.729715012475897e-6 +marriageable_A 1.0773191989054437e-5 +married_N 3.729715012475897e-6 +marrow_N 1.118914503742769e-5 +marrowbone_N 3.729715012475897e-6 +marry_V 1.1339411257767497e-4 +marry_V2 3.058743983128612e-4 +marry_in_V 2.2678822515534993e-5 +marry_out_V 2.2678822515534993e-5 +mars_PN 1.865462821325971e-5 +marsala_N 3.729715012475897e-6 +marseillaise_N 3.729715012475897e-6 +marseille_N 3.729715012475897e-6 +marseilles_PN 1.865462821325971e-5 +marsh_N 7.459430024951794e-6 +marshal_N 7.459430024951794e-6 +marshal_V2 1.609865254278217e-5 +marshalling_yard_N 3.729715012475897e-6 +marshalship_N 3.729715012475897e-6 +marshmallow_N 7.459430024951794e-6 +marshy_A 1.0773191989054437e-5 +marske_PN 1.865462821325971e-5 +marsupial_A 1.0773191989054437e-5 +marsupial_N 3.729715012475897e-6 +marsupium_N 3.729715012475897e-6 +mart_N 5.2216010174662554e-5 +marten_N 3.729715012475897e-6 +martensite_N 3.729715012475897e-6 +martha_PN 1.865462821325971e-5 +martial_A 1.0773191989054437e-5 +martian_A 1.0773191989054437e-5 +martian_N 3.729715012475897e-6 +martin_N 3.729715012475897e-6 +martin_PN 1.865462821325971e-5 +martinet_N 3.729715012475897e-6 +martingale_N 3.729715012475897e-6 +martini_N 7.459430024951794e-6 +martynia_N 3.729715012475897e-6 +martyr_N 7.459430024951794e-6 +martyr_V2 1.609865254278217e-5 +martyrdom_N 3.729715012475897e-6 +marumi_N 3.729715012475897e-6 +marupa_N 3.729715012475897e-6 +marvel_N 7.459430024951794e-6 +marvel_V 4.5357645031069986e-5 +marvellous_A 1.0773191989054437e-5 +marvelous_A 4.309276795621775e-5 +marxism_N 3.729715012475897e-6 +marxist_N 3.729715012475897e-6 +mary_PN 1.865462821325971e-5 +maryland_PN 1.865462821325971e-5 +maryport_PN 1.865462821325971e-5 +marzipan_N 3.729715012475897e-6 +masc_PN 1.865462821325971e-5 +mascara_N 7.459430024951794e-6 +mascarpone_N 3.729715012475897e-6 +mascot_N 3.729715012475897e-6 +masculine_A 2.1546383978108874e-5 +masculine_N 3.729715012475897e-6 +masculinity_N 3.729715012475897e-6 +masculinization_N 3.729715012475897e-6 +masdevallia_N 3.729715012475897e-6 +maser_N 3.729715012475897e-6 +mash_N 3.729715012475897e-6 +mash_V2 1.609865254278217e-5 +mash_up_V2 1.609865254278217e-5 +masher_N 3.729715012475897e-6 +mashie_N 3.729715012475897e-6 +masjid_N 3.729715012475897e-6 +mask_N 2.237829007485538e-5 +mask_V2 6.439461017112868e-5 +masking_N 3.729715012475897e-6 +masochism_N 3.729715012475897e-6 +masochist_N 3.729715012475897e-6 +masochistic_A 1.0773191989054437e-5 +masochistically_Adv 8.668966832532898e-6 +mason_N 7.459430024951794e-6 +mason_dixon_PN 1.865462821325971e-5 +masonic_A 1.0773191989054437e-5 +masonry_N 1.8648575062379485e-5 +masque_N 3.729715012475897e-6 +masquerade_N 3.729715012475897e-6 +masquerade_V 6.803646754660499e-5 +masquerader_N 3.729715012475897e-6 +mass_N 7.459430024951794e-5 +mass_V 4.5357645031069986e-5 +mass_V2 1.609865254278217e-5 +mass_produce_V2 3.219730508556434e-5 +massachusetts_PN 3.357833078386748e-4 +massacre_N 6.713487022456614e-5 +massacre_V2 1.609865254278217e-5 +massage_N 1.1562116538675279e-4 +massage_V2 4.8295957628346505e-5 +massager_N 3.729715012475897e-6 +massasauga_N 3.729715012475897e-6 +masse_N 3.729715012475897e-6 +masseter_N 3.729715012475897e-6 +masseur_N 2.6108005087331277e-5 +masseuse_N 2.237829007485538e-5 +massicot_N 3.729715012475897e-6 +massif_N 3.729715012475897e-6 +massive_A 5.278864074636674e-4 +massiveness_N 3.729715012475897e-6 +massy_A 1.0773191989054437e-5 +mast_N 3.729715012475897e-6 +mastaba_N 3.729715012475897e-6 +mastalgia_N 3.729715012475897e-6 +mastectomy_N 3.729715012475897e-6 +masted_A 1.0773191989054437e-5 +master_N 1.4172917047408407e-4 +master_V2 8.049326271391085e-5 +master_at_arms_N 3.729715012475897e-6 +master_key_N 3.729715012475897e-6 +masterful_A 2.1546383978108874e-5 +mastering_N 3.729715012475897e-6 +masterless_A 1.0773191989054437e-5 +masterly_A 1.0773191989054437e-5 +mastermind_N 7.459430024951794e-6 +mastermind_V2 1.609865254278217e-5 +masterpiece_N 1.118914503742769e-5 +mastership_N 3.729715012475897e-6 +masterstroke_N 3.729715012475897e-6 +mastery_N 3.729715012475897e-6 +masthead_N 3.729715012475897e-6 +mastic_N 3.729715012475897e-6 +masticate_V2 1.609865254278217e-5 +mastication_N 3.729715012475897e-6 +mastiff_N 3.729715012475897e-6 +mastitis_N 3.729715012475897e-6 +mastodon_N 3.729715012475897e-6 +mastoid_A 1.0773191989054437e-5 +mastoid_N 3.729715012475897e-6 +mastoidale_N 3.729715012475897e-6 +mastoidectomy_N 3.729715012475897e-6 +mastoiditis_N 3.729715012475897e-6 +mastopathy_N 3.729715012475897e-6 +mastopexy_N 3.729715012475897e-6 +masturbate_V 2.2678822515534993e-5 +masturbate_V2 1.609865254278217e-5 +masturbation_N 3.729715012475897e-6 +masturbator_N 3.729715012475897e-6 +mat_A 1.0773191989054437e-5 +mat_N 3.729715012475897e-6 +mat_V 2.2678822515534993e-5 +mat_V2 1.609865254278217e-5 +matador_N 3.729715012475897e-6 +matai_N 3.729715012475897e-6 +match_N 4.1026865137234865e-5 +match_V 4.989340953417699e-4 +match_V2 9.820178051097124e-4 +match_point_N 3.729715012475897e-6 +match_up_V 2.2678822515534993e-5 +matchboard_N 3.729715012475897e-6 +matchbook_N 3.729715012475897e-6 +matchbox_N 3.729715012475897e-6 +matchet_N 3.729715012475897e-6 +matchless_A 1.0773191989054437e-5 +matchlock_N 3.729715012475897e-6 +matchmaker_N 3.729715012475897e-6 +matchmaking_N 3.729715012475897e-6 +matchstick_N 3.729715012475897e-6 +matchweed_N 3.729715012475897e-6 +matchwood_N 3.729715012475897e-6 +mate_1_N 1.8648575062379485e-5 +mate_2_N 3.729715012475897e-6 +mate_N 3.729715012475897e-6 +mate_V 9.071529006213997e-5 +mate_V2 3.219730508556434e-5 +mateless_A 1.0773191989054437e-5 +matelote_N 3.729715012475897e-6 +mater_N 3.729715012475897e-6 +material_A 1.0773191989054437e-4 +material_N 5.258898167591014e-4 +materialism_N 3.729715012475897e-6 +materialist_N 3.729715012475897e-6 +materialistic_A 4.309276795621775e-5 +materialistically_Adv 8.668966832532898e-6 +materiality_N 3.729715012475897e-6 +materialization_N 3.729715012475897e-6 +materialize_V 3.628611602485599e-4 +materialize_V2V 4.675081813931744e-4 +materiel_N 3.729715012475897e-6 +maternal_A 1.0773191989054437e-5 +maternalism_N 3.729715012475897e-6 +maternalistic_A 1.0773191989054437e-5 +maternity_N 3.729715012475897e-6 +matey_A 1.0773191989054437e-5 +mathematical_A 6.463915193432663e-5 +mathematicianFem_N 3.729715012475897e-6 +mathematicianMasc_N 1.118914503742769e-5 +mathematics_N 2.237829007485538e-5 +maths_N 3.729715012475897e-6 +matinee_N 3.729715012475897e-6 +matins_N 3.729715012475897e-6 +matlock_PN 1.865462821325971e-5 +matriarch_N 3.729715012475897e-6 +matriarchal_A 1.0773191989054437e-5 +matriarchic_A 1.0773191989054437e-5 +matriarchy_N 3.729715012475897e-6 +matric_N 3.729715012475897e-6 +matricentric_A 1.0773191989054437e-5 +matricide_N 3.729715012475897e-6 +matriculate_N 3.729715012475897e-6 +matriculate_V 2.2678822515534993e-5 +matriculate_V2 1.609865254278217e-5 +matriculation_N 3.729715012475897e-6 +matrilineage_N 3.729715012475897e-6 +matrilineal_A 1.0773191989054437e-5 +matrimonial_A 1.0773191989054437e-5 +matrimony_N 3.729715012475897e-6 +matrix_N 3.729715012475897e-6 +matron_N 7.459430024951794e-6 +matronly_A 1.0773191989054437e-5 +matronymic_N 3.729715012475897e-6 +matsyendra_N 3.729715012475897e-6 +matt_A 1.0773191989054437e-5 +matt_PN 1.865462821325971e-5 +matte_N 3.729715012475897e-6 +matter_N 5.370789617965291e-4 +matter_V 3.401823377330249e-4 +matter_of_course_A 1.0773191989054437e-5 +matter_of_fact_A 3.231957596716331e-5 +matthew_PN 1.865462821325971e-5 +matting_N 3.729715012475897e-6 +mattock_N 3.729715012475897e-6 +mattress_N 3.729715012475897e-6 +maturate_V 2.2678822515534993e-5 +maturation_N 3.729715012475897e-6 +maturational_A 1.0773191989054437e-5 +mature_A 9.695872790148993e-5 +mature_V 6.350070304349798e-4 +mature_V2 3.702690084839899e-4 +maturity_1_N 3.729715012475897e-6 +maturity_2_N 3.729715012475897e-6 +maturity_3_N 3.431337811477825e-4 +matutinal_A 1.0773191989054437e-5 +matzo_N 3.729715012475897e-6 +maud_PN 1.865462821325971e-5 +maudie_PN 1.865462821325971e-5 +maudlin_A 1.0773191989054437e-5 +maul_N 3.729715012475897e-6 +maul_V2 3.219730508556434e-5 +mauler_N 3.729715012475897e-6 +maulstick_N 3.729715012475897e-6 +maund_N 3.729715012475897e-6 +maunder_V 2.2678822515534993e-5 +maundy_thursday_N 3.729715012475897e-6 +maundy_thursday_PN 1.865462821325971e-5 +maureen_PN 1.865462821325971e-5 +maurice_PN 1.865462821325971e-5 +mauritania_PN 1.865462821325971e-5 +mauritanian_A 1.0773191989054437e-5 +mauritanian_N 3.729715012475897e-6 +mauritian_A 1.0773191989054437e-5 +mauritian_N 3.729715012475897e-6 +mauritius_PN 1.865462821325971e-5 +mausoleum_N 7.459430024951794e-6 +mauve_A 1.0773191989054437e-5 +mauve_N 3.729715012475897e-6 +maverick_N 1.118914503742769e-5 +mavis_N 3.729715012475897e-6 +mavis_PN 1.865462821325971e-5 +maw_N 3.729715012475897e-6 +mawkish_A 1.0773191989054437e-5 +mawkishness_N 3.729715012475897e-6 +max_N 3.729715012475897e-6 +max_PN 1.865462821325971e-5 +max_out_V2 1.609865254278217e-5 +maxi_A 1.0773191989054437e-5 +maxi_N 3.729715012475897e-6 +maxillaria_N 3.729715012475897e-6 +maxillary_A 1.0773191989054437e-5 +maxillodental_A 1.0773191989054437e-5 +maxillofacial_A 1.0773191989054437e-5 +maxillomandibular_A 1.0773191989054437e-5 +maxim_N 1.8648575062379485e-5 +maximal_A 1.0773191989054437e-5 +maximization_N 3.729715012475897e-6 +maximize_V2 2.2538113559895037e-4 +maximizing_A 1.0773191989054437e-5 +maximum_A 1.6159787983581657e-4 +maximum_N 1.0443202034932511e-4 +maxine_PN 1.865462821325971e-5 +maxwell_N 3.729715012475897e-6 +may_N 3.729715012475897e-6 +may_PN 8.021490131701675e-4 +may_VV 0.13636363636363635 +may_beetle_N 3.729715012475897e-6 +may_bug_N 3.729715012475897e-6 +mayapple_N 3.729715012475897e-6 +maybe_Adv 6.154966451098358e-4 +mayday_N 3.729715012475897e-6 +mayeng_N 3.729715012475897e-6 +mayfair_PN 1.865462821325971e-5 +mayfield_PN 1.865462821325971e-5 +mayfly_N 3.729715012475897e-6 +mayhaw_N 3.729715012475897e-6 +mayhem_N 3.729715012475897e-6 +mayo_PN 1.865462821325971e-5 +mayonnaise_N 1.118914503742769e-5 +mayor_N 1.3426974044913228e-4 +mayoral_A 1.2927830386865325e-4 +mayoralty_N 1.4918860049903587e-5 +mayoress_N 3.729715012475897e-6 +maypole_N 3.729715012475897e-6 +maypop_N 3.729715012475897e-6 +mayweed_N 3.729715012475897e-6 +maze_N 1.8648575062379485e-5 +mazed_A 1.0773191989054437e-5 +mazer_N 3.729715012475897e-6 +mazurka_N 3.729715012475897e-6 +mb_N 3.729715012475897e-6 +mc_N 3.729715012475897e-6 +mcc_N 3.729715012475897e-6 +mccarthyism_N 3.729715012475897e-6 +md_N 3.729715012475897e-6 +mead_N 7.459430024951794e-6 +meadow_N 7.459430024951794e-6 +meadowgrass_N 3.729715012475897e-6 +meadowlark_N 3.729715012475897e-6 +meager_A 1.0773191989054437e-5 +meagerness_N 3.729715012475897e-6 +meagre_A 1.0773191989054437e-5 +meagreness_N 3.729715012475897e-6 +meal_N 4.475658014971076e-5 +mealie_N 3.729715012475897e-6 +mealtime_N 3.729715012475897e-6 +mealworm_N 3.729715012475897e-6 +mealy_A 2.1546383978108874e-5 +mealy_bug_N 3.729715012475897e-6 +mealy_mouthed_A 1.0773191989054437e-5 +mealybug_N 3.729715012475897e-6 +mealymouthed_A 1.0773191989054437e-5 +mean_A 9.695872790148993e-5 +mean_N 1.0070230533684921e-4 +mean_V 3.628611602485599e-4 +mean_V2 1.0303137627380588e-3 +mean_V2V 8.415147265077139e-3 +mean_VA 2.952755905511811e-3 +mean_VS 6.58464737480506e-3 +mean_VV 1.4414760714972132e-3 +meander_N 3.729715012475897e-6 +meander_V 4.5357645031069986e-5 +meanderingly_Adv 8.668966832532898e-6 +meanie_N 3.729715012475897e-6 +meaning_N 3.729715012475897e-5 +meaningful_A 1.1850511187959881e-4 +meaningfulness_N 3.729715012475897e-6 +meaningless_A 5.3865959945272184e-5 +meaninglessness_N 3.729715012475897e-6 +meanness_N 3.729715012475897e-6 +means_N 3.729715012475897e-6 +meanspiritedly_Adv 8.668966832532898e-6 +meantime_Adv 4.33448341626645e-5 +meantime_N 6.713487022456614e-5 +meanwhile_Adv 1.6904485323439153e-3 +meany_N 3.729715012475897e-6 +measles_N 3.729715012475897e-6 +measly_A 1.0773191989054437e-5 +measurable_A 3.231957596716331e-5 +measure_N 7.645915775575589e-4 +measure_V 3.401823377330249e-4 +measure_V2 7.888339745963262e-4 +measure_against_V3 1.5873015873015873e-3 +measure_off_V2 1.609865254278217e-5 +measure_out_V2 1.609865254278217e-5 +measure_up_V 2.2678822515534993e-5 +measure_up_V2 1.609865254278217e-5 +measure_up_to_V2 1.609865254278217e-5 +measuredly_Adv 8.668966832532898e-6 +measureless_A 1.0773191989054437e-5 +measurement_N 5.594572518713845e-5 +measurer_N 3.729715012475897e-6 +meat_N 6.713487022456614e-5 +meat_safe_N 3.729715012475897e-6 +meatball_N 3.729715012475897e-6 +meath_PN 1.865462821325971e-5 +meatless_A 1.0773191989054437e-5 +meatpacking_N 3.729715012475897e-6 +meatus_N 3.729715012475897e-6 +meaty_A 1.0773191989054437e-5 +mebendazole_N 3.729715012475897e-6 +mebibit_N 3.729715012475897e-6 +mecca_N 3.729715012475897e-6 +mecca_PN 1.865462821325971e-5 +mechanic_A 1.0773191989054437e-5 +mechanic_N 3.729715012475897e-6 +mechanical_A 1.4005149585770768e-4 +mechanics_N 1.118914503742769e-5 +mechanism_N 7.086458523704203e-5 +mechanist_N 3.729715012475897e-6 +mechanistic_A 1.0773191989054437e-5 +mechanistically_Adv 8.668966832532898e-6 +mechanization_N 3.729715012475897e-6 +mechanize_V2 4.8295957628346505e-5 +meclizine_N 3.729715012475897e-6 +meclofenamate_N 3.729715012475897e-6 +meconium_N 3.729715012475897e-6 +mecopteran_N 3.729715012475897e-6 +mecopterous_A 1.0773191989054437e-5 +med_N 3.729715012475897e-6 +medal_N 1.118914503742769e-5 +medalist_N 7.459430024951794e-6 +medallion_N 7.459430024951794e-6 +medallist_N 3.729715012475897e-6 +medan_PN 1.865462821325971e-5 +meddle_V 1.1339411257767497e-4 +meddler_N 3.729715012475897e-6 +meddlesome_A 1.0773191989054437e-5 +meddling_N 3.729715012475897e-6 +medellin_PN 1.865462821325971e-5 +media_N 2.6108005087331277e-5 +mediacy_N 3.729715012475897e-6 +mediaeval_A 1.0773191989054437e-5 +medial_A 1.0773191989054437e-5 +median_A 8.61855359124355e-5 +median_N 1.118914503742769e-5 +mediant_N 3.729715012475897e-6 +mediastinum_N 3.729715012475897e-6 +mediate_A 1.0773191989054437e-5 +mediate_V 2.2678822515534993e-5 +mediate_V2 3.219730508556434e-5 +mediation_N 7.459430024951794e-6 +mediator_N 6.340515521209024e-5 +mediatorial_A 1.0773191989054437e-5 +mediatory_A 1.0773191989054437e-5 +mediatrix_N 3.729715012475897e-6 +medic_N 3.729715012475897e-6 +medical_A 9.480408950367905e-4 +medical_N 1.8648575062379485e-5 +medicament_N 3.729715012475897e-6 +medicare_N 3.729715012475897e-6 +medicate_V2 1.609865254278217e-5 +medication_N 2.9837720099807175e-5 +medicative_A 1.0773191989054437e-5 +medicinal_A 1.0773191989054437e-5 +medicine_N 9.324287531189741e-5 +medicine_ball_N 3.729715012475897e-6 +medicine_chest_N 3.729715012475897e-6 +medicine_man_N 3.729715012475897e-6 +medico_N 3.729715012475897e-6 +medicolegal_A 1.0773191989054437e-5 +medieval_A 2.1546383978108874e-5 +medina_N 3.729715012475897e-6 +mediocre_A 6.463915193432663e-5 +mediocrity_N 7.459430024951794e-6 +meditate_V 2.2678822515534993e-5 +meditate_V2 1.609865254278217e-5 +meditation_N 1.118914503742769e-5 +meditative_A 1.0773191989054437e-5 +mediterranean_A 1.0773191989054437e-5 +medium_A 4.309276795621775e-5 +medium_N 4.475658014971076e-5 +medium_grade_A 2.1546383978108874e-5 +medlar_N 3.729715012475897e-6 +medley_N 3.729715012475897e-6 +medroxyprogesterone_N 3.729715012475897e-6 +medulla_N 3.729715012475897e-6 +medullary_A 1.0773191989054437e-5 +medusa_N 3.729715012475897e-6 +medusoid_A 1.0773191989054437e-5 +meed_N 3.729715012475897e-6 +meek_A 1.0773191989054437e-5 +meekness_N 3.729715012475897e-6 +meerkat_N 3.729715012475897e-6 +meerschaum_N 3.729715012475897e-6 +meet_A 1.0773191989054437e-5 +meet_N 3.729715012475897e-6 +meet_V 2.4266340091622443e-3 +meet_V2 2.575784406845147e-3 +meet_V2V 4.675081813931744e-4 +meet_up_V 2.2678822515534993e-5 +meet_with_V2 1.609865254278217e-5 +meeting_N 1.0592390635431547e-3 +meeting_house_N 3.729715012475897e-6 +meeting_place_N 3.729715012475897e-6 +mefloquine_N 3.729715012475897e-6 +meg_PN 1.865462821325971e-5 +megabit_N 3.729715012475897e-6 +megabyte_N 3.729715012475897e-6 +megacolon_N 3.729715012475897e-6 +megacycle_N 3.729715012475897e-6 +megadeath_N 3.729715012475897e-6 +megaflop_N 3.729715012475897e-6 +megagametophyte_N 3.729715012475897e-6 +megahertz_N 3.729715012475897e-6 +megakaryocyte_N 3.729715012475897e-6 +megakaryocytic_A 1.0773191989054437e-5 +megalith_N 3.729715012475897e-6 +megalithic_A 1.0773191989054437e-5 +megaloblast_N 3.729715012475897e-6 +megaloblastic_A 1.0773191989054437e-5 +megalocyte_N 3.729715012475897e-6 +megalomania_N 3.729715012475897e-6 +megalomaniac_N 3.729715012475897e-6 +megalomaniacal_A 1.0773191989054437e-5 +megalopolis_N 3.729715012475897e-6 +megalosaur_N 3.729715012475897e-6 +megaphone_N 3.729715012475897e-6 +megapode_N 3.729715012475897e-6 +megascopic_A 1.0773191989054437e-5 +megasporangium_N 3.729715012475897e-6 +megaspore_N 3.729715012475897e-6 +megasporophyll_N 3.729715012475897e-6 +megatherian_N 3.729715012475897e-6 +megaton_N 3.729715012475897e-6 +megawatt_N 3.729715012475897e-6 +megestrol_N 3.729715012475897e-6 +megillah_N 3.729715012475897e-6 +megilp_N 3.729715012475897e-6 +megohm_N 3.729715012475897e-6 +megrim_N 3.729715012475897e-6 +meiosis_N 3.729715012475897e-6 +meiotic_A 1.0773191989054437e-5 +meitnerium_N 3.729715012475897e-6 +melagra_N 3.729715012475897e-6 +melamine_N 3.729715012475897e-6 +melancholia_N 3.729715012475897e-6 +melancholic_A 1.0773191989054437e-5 +melancholic_N 3.729715012475897e-6 +melancholy_A 2.1546383978108874e-5 +melancholy_N 3.729715012475897e-6 +melange_N 3.729715012475897e-6 +melanin_N 3.729715012475897e-6 +melanoblast_N 3.729715012475897e-6 +melanocyte_N 3.729715012475897e-6 +melanoderma_N 3.729715012475897e-6 +melanoma_N 3.729715012475897e-6 +melanosis_N 3.729715012475897e-6 +melatonin_N 3.729715012475897e-6 +melbourne_PN 1.865462821325971e-5 +melcombe_PN 1.865462821325971e-5 +melcombe_regis_PN 1.865462821325971e-5 +meld_V2 6.439461017112868e-5 +melee_N 3.729715012475897e-6 +melena_N 3.729715012475897e-6 +melilotus_N 3.729715012475897e-6 +meliorate_V 2.2678822515534993e-5 +meliorate_V2 1.609865254278217e-5 +melioration_N 3.729715012475897e-6 +meliorism_N 3.729715012475897e-6 +melksham_PN 1.865462821325971e-5 +mellifluous_A 2.1546383978108874e-5 +mellow_A 3.231957596716331e-5 +mellow_V 4.5357645031069986e-5 +mellow_V2 1.609865254278217e-5 +mellowing_N 3.729715012475897e-6 +mellowingly_Adv 8.668966832532898e-6 +mellowness_N 3.729715012475897e-6 +melodic_A 1.0773191989054437e-5 +melodically_Adv 8.668966832532898e-6 +melodious_A 2.1546383978108874e-5 +melodiousness_N 3.729715012475897e-6 +melodrama_N 3.729715012475897e-6 +melodramatic_A 1.0773191989054437e-5 +melodramatically_Adv 8.668966832532898e-6 +melody_N 7.459430024951794e-6 +melon_N 3.729715012475897e-6 +melosa_N 3.729715012475897e-6 +melphalan_N 3.729715012475897e-6 +melt_V 1.3607293509320997e-4 +melt_V2 3.219730508556434e-5 +melt_down_V2 1.609865254278217e-5 +meltable_A 1.0773191989054437e-5 +meltdown_N 3.729715012475897e-6 +melter_N 3.729715012475897e-6 +meltham_PN 1.865462821325971e-5 +melting_point_N 3.729715012475897e-6 +melting_pot_N 3.729715012475897e-6 +melton_mowbray_PN 1.865462821325971e-5 +meltwater_N 3.729715012475897e-6 +mem_N 3.729715012475897e-6 +member_N 1.4210214197533167e-3 +membered_A 1.0773191989054437e-5 +memberless_A 1.0773191989054437e-5 +membership_N 1.9394518064874664e-4 +membrane_N 3.729715012475897e-6 +membranous_A 1.0773191989054437e-5 +meme_N 3.729715012475897e-6 +memento_N 1.118914503742769e-5 +memo_N 6.340515521209024e-5 +memoir_N 1.118914503742769e-5 +memorabilia_N 3.729715012475897e-6 +memorability_N 3.729715012475897e-6 +memorable_A 5.3865959945272184e-5 +memorandum_N 2.9837720099807175e-5 +memorial_N 7.459430024951794e-6 +memorialize_V2 3.219730508556434e-5 +memorization_N 3.729715012475897e-6 +memorize_V2 3.219730508556434e-5 +memorizer_N 3.729715012475897e-6 +memory_N 2.1259375571112613e-4 +memphis_PN 1.865462821325971e-5 +memsahib_N 3.729715012475897e-6 +menace_N 7.459430024951794e-6 +menace_V2 1.609865254278217e-5 +menacingly_Adv 8.668966832532898e-6 +menage_N 3.729715012475897e-6 +menagerie_N 3.729715012475897e-6 +menarche_N 3.729715012475897e-6 +mend_N 3.729715012475897e-6 +mend_V 4.5357645031069986e-5 +mend_V2 1.609865254278217e-5 +mendacious_A 1.0773191989054437e-5 +mendacity_N 7.459430024951794e-6 +mendelevium_N 3.729715012475897e-6 +mendelian_A 1.0773191989054437e-5 +mender_N 3.729715012475897e-6 +mendicant_A 1.0773191989054437e-5 +mendicant_N 3.729715012475897e-6 +mending_N 3.729715012475897e-6 +menhaden_N 3.729715012475897e-6 +menhir_N 3.729715012475897e-6 +menial_A 2.1546383978108874e-5 +menial_N 3.729715012475897e-6 +meningeal_A 1.0773191989054437e-5 +meningioma_N 3.729715012475897e-6 +meningism_N 3.729715012475897e-6 +meningitis_N 3.729715012475897e-6 +meningocele_N 3.729715012475897e-6 +meningoencephalitis_N 3.729715012475897e-6 +meninx_N 3.729715012475897e-6 +meniscectomy_N 3.729715012475897e-6 +meniscus_N 3.729715012475897e-6 +menopausal_A 1.0773191989054437e-5 +menopause_N 3.729715012475897e-6 +menorah_N 3.729715012475897e-6 +menorrhagia_N 3.729715012475897e-6 +menorrhea_N 3.729715012475897e-6 +mensal_A 1.0773191989054437e-5 +mensch_N 3.729715012475897e-6 +menstrual_A 3.231957596716331e-5 +menstruate_V 2.2678822515534993e-5 +menstruation_N 3.729715012475897e-6 +menstruum_N 3.729715012475897e-6 +mensurable_A 1.0773191989054437e-5 +mensural_A 1.0773191989054437e-5 +mensuration_N 3.729715012475897e-6 +mental_A 1.6159787983581657e-4 +mentalism_N 3.729715012475897e-6 +mentality_N 2.6108005087331277e-5 +menthol_N 3.729715012475897e-6 +mentholated_A 1.0773191989054437e-5 +mention_N 2.237829007485538e-5 +mention_V 3.855399827640949e-4 +mention_V2 4.8295957628346505e-4 +mention_VS 1.1552012938254491e-4 +mentioner_N 3.729715012475897e-6 +mentor_N 1.8648575062379485e-5 +mentum_N 3.729715012475897e-6 +menu_N 3.356743511228307e-5 +meopham_PN 1.865462821325971e-5 +meow_N 3.729715012475897e-6 +meperidine_N 3.729715012475897e-6 +mephenytoin_N 3.729715012475897e-6 +mephistophelian_A 1.0773191989054437e-5 +mephitis_N 3.729715012475897e-6 +mephobarbital_N 3.729715012475897e-6 +meprobamate_N 3.729715012475897e-6 +meralgia_N 3.729715012475897e-6 +merbromine_N 3.729715012475897e-6 +mercantile_A 1.0773191989054437e-5 +mercantilism_N 3.729715012475897e-6 +mercaptopurine_N 3.729715012475897e-6 +mercator_PN 1.865462821325971e-5 +mercenary_A 2.1546383978108874e-5 +mercenary_N 3.729715012475897e-6 +mercer_N 3.729715012475897e-6 +mercerize_V2 1.609865254278217e-5 +merchandise_N 1.7902632059884304e-4 +merchant_N 2.0140461067369843e-4 +merchantability_N 3.729715012475897e-6 +merchantman_N 3.729715012475897e-6 +merciful_A 2.1546383978108874e-5 +mercifulness_N 3.729715012475897e-6 +merciless_A 1.0773191989054437e-5 +mercilessness_N 3.729715012475897e-6 +mercurial_A 2.1546383978108874e-5 +mercuric_A 1.0773191989054437e-5 +mercury_N 1.4918860049903587e-5 +mercury_PN 1.865462821325971e-5 +mercy_N 1.4918860049903587e-5 +mere_A 7.002574792885384e-4 +mere_N 3.729715012475897e-6 +merestone_N 3.729715012475897e-6 +meretricious_A 1.0773191989054437e-5 +meretriciousness_N 3.729715012475897e-6 +merganser_N 3.729715012475897e-6 +merge_V 7.484011430126548e-4 +merge_V2 4.5076227119790073e-4 +merger_N 5.78105826933764e-4 +merging_N 3.729715012475897e-6 +mericarp_N 3.729715012475897e-6 +meridian_A 1.0773191989054437e-5 +meridian_N 3.729715012475897e-6 +meridional_A 1.0773191989054437e-5 +meringue_N 7.459430024951794e-6 +merino_N 3.729715012475897e-6 +merino_sheep_N 3.729715012475897e-6 +meristem_N 3.729715012475897e-6 +merit_N 8.578344528694562e-5 +merit_V2 6.439461017112868e-5 +meritocracy_N 3.729715012475897e-6 +meritocratic_A 1.0773191989054437e-5 +meritorious_A 1.0773191989054437e-5 +merlon_N 3.729715012475897e-6 +mermaid_N 3.729715012475897e-6 +merman_N 3.729715012475897e-6 +meromelia_N 3.729715012475897e-6 +meronym_N 3.729715012475897e-6 +meronymy_N 3.729715012475897e-6 +merozoite_N 3.729715012475897e-6 +merriment_N 3.729715012475897e-6 +merry_A 2.1546383978108874e-5 +merry_go_round_N 3.729715012475897e-6 +merrymaker_N 3.729715012475897e-6 +merrymaking_N 3.729715012475897e-6 +merthyr_tydfil_PN 1.865462821325971e-5 +merton_PN 1.865462821325971e-5 +mesa_N 3.729715012475897e-6 +mesalliance_N 3.729715012475897e-6 +mescal_N 3.729715012475897e-6 +mescaline_N 3.729715012475897e-6 +meseems_Adv 8.668966832532898e-6 +mesenchyme_N 3.729715012475897e-6 +mesenteric_A 1.0773191989054437e-5 +mesentery_N 3.729715012475897e-6 +mesh_N 7.459430024951794e-6 +mesh_V 4.5357645031069986e-5 +mesh_V2 1.609865254278217e-5 +meshugaas_N 3.729715012475897e-6 +meshugge_A 1.0773191989054437e-5 +meshuggeneh_N 3.729715012475897e-6 +mesial_A 1.0773191989054437e-5 +mesic_A 1.0773191989054437e-5 +mesmeric_A 1.0773191989054437e-5 +mesmerism_N 3.729715012475897e-6 +mesmerist_N 3.729715012475897e-6 +mesmerize_V2 1.609865254278217e-5 +mesoblastic_A 1.0773191989054437e-5 +mesocarp_N 3.729715012475897e-6 +mesocolon_N 3.729715012475897e-6 +mesoderm_N 3.729715012475897e-6 +mesohippus_N 3.729715012475897e-6 +mesolithic_A 1.0773191989054437e-5 +mesomorph_N 3.729715012475897e-6 +mesomorphic_A 1.0773191989054437e-5 +meson_N 3.729715012475897e-6 +mesonic_A 1.0773191989054437e-5 +mesophyte_N 3.729715012475897e-6 +mesophytic_A 1.0773191989054437e-5 +mesosphere_N 3.729715012475897e-6 +mesothelioma_N 7.459430024951794e-6 +mesothelium_N 3.729715012475897e-6 +mesquite_N 3.729715012475897e-6 +mess_N 6.340515521209024e-5 +mess_V 6.803646754660499e-5 +mess_V2 1.609865254278217e-5 +mess_about_V 2.2678822515534993e-5 +mess_about_V2 1.609865254278217e-5 +mess_about_with_V2 1.609865254278217e-5 +mess_around_V 2.2678822515534993e-5 +mess_around_V2 1.609865254278217e-5 +mess_around_with_V2 1.609865254278217e-5 +mess_jacket_N 3.729715012475897e-6 +mess_over_V2 1.609865254278217e-5 +mess_up_N 3.729715012475897e-6 +mess_up_V2 1.609865254278217e-5 +mess_with_V2 1.609865254278217e-5 +message_N 2.051343256861743e-4 +messaging_N 3.729715012475897e-6 +messenger_N 1.4918860049903587e-5 +messiah_N 7.459430024951794e-6 +messiahship_N 3.729715012475897e-6 +messianic_A 1.0773191989054437e-5 +messina_PN 1.865462821325971e-5 +messiness_N 3.729715012475897e-6 +messmate_N 3.729715012475897e-6 +messuage_N 3.729715012475897e-6 +messy_A 1.0773191989054437e-5 +mestiza_N 3.729715012475897e-6 +mestizo_N 3.729715012475897e-6 +mestranol_N 3.729715012475897e-6 +met_PN 1.865462821325971e-5 +met_out_V 2.2678822515534993e-5 +metabolic_A 1.0773191989054437e-5 +metabolically_Adv 8.668966832532898e-6 +metabolism_N 7.459430024951794e-6 +metabolite_N 3.729715012475897e-6 +metabolize_V2 3.219730508556434e-5 +metacarpal_A 1.0773191989054437e-5 +metacarpal_N 3.729715012475897e-6 +metacarpus_N 3.729715012475897e-6 +metacenter_N 3.729715012475897e-6 +metacentric_A 1.0773191989054437e-5 +metadata_N 3.729715012475897e-6 +metagenesis_N 3.729715012475897e-6 +metagrobolized_A 1.0773191989054437e-5 +metaknowledge_N 3.729715012475897e-6 +metal_N 3.61782356210162e-4 +metal_V2 1.609865254278217e-5 +metalanguage_N 3.729715012475897e-6 +metalepsis_N 3.729715012475897e-6 +metalhead_N 3.729715012475897e-6 +metallic_A 1.0773191989054437e-5 +metallic_N 3.729715012475897e-6 +metallike_A 1.0773191989054437e-5 +metalloid_A 1.0773191989054437e-5 +metallurgical_A 5.3865959945272184e-5 +metallurgist_N 3.729715012475897e-6 +metallurgy_N 7.459430024951794e-6 +metalware_N 3.729715012475897e-6 +metalwork_N 3.729715012475897e-6 +metalworker_N 7.459430024951794e-6 +metalworking_N 3.729715012475897e-6 +metamathematics_N 3.729715012475897e-6 +metamere_N 3.729715012475897e-6 +metameric_A 1.0773191989054437e-5 +metamorphic_A 1.0773191989054437e-5 +metamorphism_N 3.729715012475897e-6 +metamorphopsia_N 3.729715012475897e-6 +metamorphose_V 2.2678822515534993e-5 +metamorphose_V2 1.609865254278217e-5 +metamorphosis_N 7.459430024951794e-6 +metamorphous_A 1.0773191989054437e-5 +metaphase_N 3.729715012475897e-6 +metaphor_N 3.356743511228307e-5 +metaphorical_A 2.1546383978108874e-5 +metaphysical_A 2.1546383978108874e-5 +metaphysics_N 3.729715012475897e-6 +metaphysis_N 3.729715012475897e-6 +metaproterenol_N 3.729715012475897e-6 +metarule_N 3.729715012475897e-6 +metasequoia_N 3.729715012475897e-6 +metastability_N 3.729715012475897e-6 +metastable_A 1.0773191989054437e-5 +metastasis_N 3.729715012475897e-6 +metastatic_A 1.0773191989054437e-5 +metatarsal_A 1.0773191989054437e-5 +metatarsal_N 3.729715012475897e-6 +metatarsus_N 3.729715012475897e-6 +metatherian_N 3.729715012475897e-6 +metathesis_N 3.729715012475897e-6 +metazoan_N 3.729715012475897e-6 +mete_V2 4.8295957628346505e-5 +mete_out_V2 1.609865254278217e-5 +metempsychosis_N 3.729715012475897e-6 +metencephalon_N 3.729715012475897e-6 +meteor_N 3.729715012475897e-6 +meteoric_A 2.1546383978108874e-5 +meteorite_N 3.729715012475897e-6 +meteoritic_A 1.0773191989054437e-5 +meteoroid_N 3.729715012475897e-6 +meteorologic_A 1.0773191989054437e-5 +meteorological_A 2.1546383978108874e-5 +meteorologist_N 3.729715012475897e-6 +meteorology_N 3.729715012475897e-6 +meteortropism_N 3.729715012475897e-6 +meter_N 2.6108005087331277e-5 +meterstick_N 3.729715012475897e-6 +metformin_N 3.729715012475897e-6 +methacholine_N 3.729715012475897e-6 +methadone_N 3.729715012475897e-6 +methamphetamine_N 3.729715012475897e-6 +methane_N 1.118914503742769e-5 +methanogen_N 3.729715012475897e-6 +methanol_N 3.729715012475897e-6 +methapyrilene_N 3.729715012475897e-6 +methaqualone_N 3.729715012475897e-6 +metharbital_N 3.729715012475897e-6 +metheglin_N 3.729715012475897e-6 +methenamine_N 3.729715012475897e-6 +methicillin_N 3.729715012475897e-6 +methinks_Adv 8.668966832532898e-6 +methionine_N 3.729715012475897e-6 +methocarbamol_N 3.729715012475897e-6 +method_N 1.5664803052398767e-4 +methodical_A 4.309276795621775e-5 +methodism_N 3.729715012475897e-6 +methodist_A 1.0773191989054437e-5 +methodist_N 3.729715012475897e-6 +methodological_A 1.0773191989054437e-5 +methodology_N 1.4918860049903587e-5 +methotrexate_N 3.729715012475897e-6 +methought_Adv 8.668966832532898e-6 +methuselah_PN 1.865462821325971e-5 +methyl_N 7.459430024951794e-6 +methylated_A 1.0773191989054437e-5 +methyldopa_N 3.729715012475897e-6 +methylenedioxymethamphetamine_N 3.729715012475897e-6 +methylphenidate_N 3.729715012475897e-6 +methyltestosterone_N 3.729715012475897e-6 +metic_N 3.729715012475897e-6 +metical_N 3.729715012475897e-6 +meticulous_A 3.231957596716331e-5 +meticulousness_N 3.729715012475897e-6 +metier_N 3.729715012475897e-6 +metonym_N 3.729715012475897e-6 +metonymic_A 1.0773191989054437e-5 +metonymically_Adv 8.668966832532898e-6 +metonymy_N 3.729715012475897e-6 +metopion_N 3.729715012475897e-6 +metoprolol_N 3.729715012475897e-6 +metralgia_N 3.729715012475897e-6 +metre_N 3.729715012475897e-6 +metric_A 4.8479363950744967e-4 +metrical_A 1.0773191989054437e-5 +metrication_N 3.729715012475897e-6 +metricize_V2 1.609865254278217e-5 +metrification_N 3.729715012475897e-6 +metritis_N 3.729715012475897e-6 +metro_N 1.8648575062379485e-5 +metrological_A 1.0773191989054437e-5 +metrology_N 3.729715012475897e-6 +metronidazole_N 3.729715012475897e-6 +metronome_N 3.729715012475897e-6 +metropolis_N 3.729715012475897e-6 +metropolitan_A 2.8010299171541536e-4 +metropolitan_N 3.729715012475897e-6 +metroptosis_N 3.729715012475897e-6 +metrorrhagia_N 3.729715012475897e-6 +mettle_N 1.8648575062379485e-5 +mettlesome_A 1.0773191989054437e-5 +mettlesomeness_N 3.729715012475897e-6 +metz_PN 1.865462821325971e-5 +mew_N 3.729715012475897e-6 +mew_V 2.2678822515534993e-5 +mews_N 3.729715012475897e-6 +mexican_A 2.046906477920343e-4 +mexican_N 3.729715012475897e-6 +mexico_PN 1.156586949222102e-3 +mexico_city_PN 1.865462821325971e-5 +mexiletine_N 3.729715012475897e-6 +mezereon_N 3.729715012475897e-6 +mezereum_N 3.729715012475897e-6 +mezuzah_N 3.729715012475897e-6 +mezzanine_A 1.0773191989054437e-5 +mezzanine_N 3.729715012475897e-6 +mezzo_Adv 8.668966832532898e-6 +mezzo_soprano_N 3.729715012475897e-6 +mezzotint_N 3.729715012475897e-6 +mg_N 3.729715012475897e-6 +mgr_PN 1.865462821325971e-5 +mho_N 3.729715012475897e-6 +mi5_PN 1.865462821325971e-5 +mi6_PN 1.865462821325971e-5 +mi_N 3.729715012475897e-6 +miami_PN 3.917471924784539e-4 +miaou_N 3.729715012475897e-6 +miaou_V 2.2678822515534993e-5 +miaow_N 3.729715012475897e-6 +miaow_V 2.2678822515534993e-5 +miasma_N 3.729715012475897e-6 +miasmal_A 1.0773191989054437e-5 +miasmic_A 1.0773191989054437e-5 +mica_N 3.729715012475897e-6 +micaceous_A 1.0773191989054437e-5 +micelle_N 3.729715012475897e-6 +michael_PN 1.865462821325971e-5 +michaelmas_N 3.729715012475897e-6 +michaelmas_PN 1.865462821325971e-5 +michelle_PN 1.865462821325971e-5 +michigan_PN 4.2905644890497334e-4 +mick_PN 1.865462821325971e-5 +mickey_N 3.729715012475897e-6 +mickey_PN 1.865462821325971e-5 +mickle_N 3.729715012475897e-6 +miconazole_N 3.729715012475897e-6 +micro_A 1.0773191989054437e-5 +micro_organism_N 3.729715012475897e-6 +microbalance_N 3.729715012475897e-6 +microbe_N 1.4918860049903587e-5 +microbial_A 1.0773191989054437e-5 +microbiologist_N 3.729715012475897e-6 +microbiology_N 3.729715012475897e-6 +microbrachia_N 3.729715012475897e-6 +microbrewery_N 3.729715012475897e-6 +microcephalic_A 1.0773191989054437e-5 +microcephaly_N 3.729715012475897e-6 +microcosm_N 7.459430024951794e-6 +microcosmic_A 1.0773191989054437e-5 +microcrystalline_A 1.0773191989054437e-5 +microcyte_N 3.729715012475897e-6 +microcytosis_N 3.729715012475897e-6 +microdot_N 3.729715012475897e-6 +microeconomic_A 1.0773191989054437e-5 +microeconomics_N 3.729715012475897e-6 +microeconomist_N 3.729715012475897e-6 +microelectronic_A 1.0773191989054437e-5 +microelectronics_N 1.4918860049903587e-5 +microevolution_N 3.729715012475897e-6 +microfarad_N 3.729715012475897e-6 +microfiche_N 3.729715012475897e-6 +microfilm_N 7.459430024951794e-6 +microfilm_V2 1.609865254278217e-5 +microflora_N 3.729715012475897e-6 +microfossil_N 3.729715012475897e-6 +microgametophyte_N 3.729715012475897e-6 +microgauss_N 3.729715012475897e-6 +microglia_N 3.729715012475897e-6 +microgliacyte_N 3.729715012475897e-6 +microgram_N 3.729715012475897e-6 +micrometeoric_A 1.0773191989054437e-5 +micrometeorite_N 3.729715012475897e-6 +micrometeoritic_A 1.0773191989054437e-5 +micrometer_N 3.729715012475897e-6 +micrometry_N 3.729715012475897e-6 +micron_N 3.729715012475897e-6 +micronutrient_N 3.729715012475897e-6 +microorganism_N 3.729715012475897e-6 +micropaleontology_N 3.729715012475897e-6 +micropenis_N 3.729715012475897e-6 +microphage_N 3.729715012475897e-6 +microphone_N 2.237829007485538e-5 +microphoning_N 3.729715012475897e-6 +microphotometer_N 3.729715012475897e-6 +microprocessor_N 7.459430024951794e-6 +micropylar_A 1.0773191989054437e-5 +micropyle_N 3.729715012475897e-6 +microradian_N 3.729715012475897e-6 +microscope_N 1.4918860049903587e-5 +microscopic_A 4.309276795621775e-5 +microscopical_A 1.0773191989054437e-5 +microscopist_N 3.729715012475897e-6 +microscopy_N 3.729715012475897e-6 +microsecond_N 3.729715012475897e-6 +microsomal_A 1.0773191989054437e-5 +microsome_N 3.729715012475897e-6 +microsporangium_N 3.729715012475897e-6 +microspore_N 3.729715012475897e-6 +microsporidian_N 3.729715012475897e-6 +microsporophyll_N 3.729715012475897e-6 +microsurgery_N 3.729715012475897e-6 +microtome_N 3.729715012475897e-6 +microtubule_N 3.729715012475897e-6 +microvolt_N 3.729715012475897e-6 +microwave_N 2.237829007485538e-5 +micturition_N 3.729715012475897e-6 +mid_A 2.1546383978108874e-5 +mid_Prep 9.978546125829467e-6 +mid_off_N 3.729715012475897e-6 +mid_on_N 3.729715012475897e-6 +midafternoon_N 1.118914503742769e-5 +midair_N 3.729715012475897e-6 +midazolam_N 3.729715012475897e-6 +midbrain_N 3.729715012475897e-6 +midday_N 4.475658014971076e-5 +midden_N 3.729715012475897e-6 +middle_A 1.0773191989054437e-5 +middle_N 9.324287531189741e-5 +middle_aged_A 5.3865959945272184e-5 +middle_class_A 4.309276795621775e-5 +middle_distance_A 1.0773191989054437e-5 +middle_of_the_road_A 2.1546383978108874e-5 +middlebrow_N 3.729715012475897e-6 +middleman_N 6.340515521209024e-5 +middlemost_A 1.0773191989054437e-5 +middlesex_PN 1.865462821325971e-5 +middleton_PN 1.865462821325971e-5 +middleweight_A 1.0773191989054437e-5 +middleweight_N 3.729715012475897e-6 +middlewich_PN 1.865462821325971e-5 +middling_A 3.231957596716331e-5 +middling_Adv 8.668966832532898e-6 +middling_N 3.729715012475897e-6 +middy_N 3.729715012475897e-6 +midfield_N 3.729715012475897e-6 +midge_N 3.729715012475897e-6 +midget_N 3.729715012475897e-6 +midgrass_N 3.729715012475897e-6 +midi_A 1.0773191989054437e-5 +midinette_N 3.729715012475897e-6 +midiron_N 3.729715012475897e-6 +midland_N 3.729715012475897e-6 +midlands_PN 1.865462821325971e-5 +midmost_A 1.0773191989054437e-5 +midmost_Adv 8.668966832532898e-6 +midnight_N 5.967544019961435e-5 +midplane_N 3.729715012475897e-6 +midrib_N 3.729715012475897e-6 +midriff_N 3.729715012475897e-6 +midshipman_N 3.729715012475897e-6 +midships_Adv 8.668966832532898e-6 +midst_N 8.205373027446973e-5 +midst_Prep 9.978546125829467e-6 +midstream_N 3.729715012475897e-6 +midsummer_N 7.459430024951794e-6 +midterm_N 3.729715012475897e-6 +midway_A 1.0773191989054437e-5 +midway_Adv 8.668966832532898e-6 +midway_N 3.729715012475897e-6 +midweek_A 2.1546383978108874e-5 +midweek_Adv 8.668966832532898e-6 +midweek_N 3.729715012475897e-6 +midweekly_A 1.0773191989054437e-5 +midwest_PN 1.865462821325971e-5 +midwestern_A 7.541234392338106e-5 +midwife_N 3.729715012475897e-6 +midwifery_N 3.729715012475897e-6 +midwinter_N 3.729715012475897e-6 +mien_N 3.729715012475897e-6 +miff_V2 3.219730508556434e-5 +might_N 2.6108005087331277e-5 +might_have_been_N 3.729715012475897e-6 +mighty_A 8.61855359124355e-5 +mighty_Adv 2.6006900497598697e-5 +mignonette_N 3.729715012475897e-6 +migraine_N 3.729715012475897e-6 +migrant_A 1.0773191989054437e-5 +migrant_N 3.729715012475897e-6 +migrate_V 6.803646754660499e-5 +migration_N 7.459430024951794e-6 +migrational_A 1.0773191989054437e-5 +migrator_N 3.729715012475897e-6 +migratory_A 1.0773191989054437e-5 +mihrab_N 3.729715012475897e-6 +mikado_N 3.729715012475897e-6 +mike_N 3.729715012475897e-6 +mike_PN 1.865462821325971e-5 +mikvah_N 3.729715012475897e-6 +mil_N 3.729715012475897e-6 +milady_N 3.729715012475897e-6 +milage_N 3.729715012475897e-6 +milan_PN 2.7981942319889563e-4 +milano_PN 1.865462821325971e-5 +milch_A 1.0773191989054437e-5 +mild_A 2.1546383978108874e-4 +mildenhall_PN 1.865462821325971e-5 +mildew_N 7.459430024951794e-6 +mildew_V 2.2678822515534993e-5 +mildew_V2 1.609865254278217e-5 +mildness_N 3.729715012475897e-6 +mildred_PN 1.865462821325971e-5 +mile_N 3.170257760604512e-4 +mileage_N 2.237829007485538e-5 +mileometer_N 3.729715012475897e-6 +miler_N 3.729715012475897e-6 +miles_PN 1.865462821325971e-5 +milestone_N 5.594572518713845e-5 +milford_PN 1.865462821325971e-5 +milford_haven_PN 1.865462821325971e-5 +milieu_N 3.729715012475897e-6 +militainment_N 3.729715012475897e-6 +militancy_N 3.729715012475897e-6 +militant_A 5.3865959945272184e-5 +militant_N 3.729715012475897e-6 +militarism_N 7.459430024951794e-6 +militarist_N 3.729715012475897e-6 +militaristic_A 1.0773191989054437e-5 +militarized_A 1.0773191989054437e-5 +military_A 1.4651541105114034e-3 +military_N 7.459430024951794e-5 +militate_V 4.5357645031069986e-5 +militia_N 1.118914503742769e-5 +militiaman_N 3.729715012475897e-6 +milk_N 9.697259032437332e-5 +milk_V 2.2678822515534993e-5 +milk_V2 1.1269056779947518e-4 +milk_churn_N 3.729715012475897e-6 +milk_powder_N 3.729715012475897e-6 +milk_shake_N 3.729715012475897e-6 +milk_tooth_N 3.729715012475897e-6 +milk_white_A 1.0773191989054437e-5 +milkbar_N 3.729715012475897e-6 +milkcap_N 3.729715012475897e-6 +milking_machine_N 3.729715012475897e-6 +milkless_A 1.0773191989054437e-5 +milkmaid_N 3.729715012475897e-6 +milkman_N 3.729715012475897e-6 +milkshake_N 3.729715012475897e-6 +milksop_N 3.729715012475897e-6 +milkweed_N 3.729715012475897e-6 +milkwort_N 3.729715012475897e-6 +milky_A 2.1546383978108874e-5 +mill_N 1.6037774553646355e-4 +mill_V 4.5357645031069986e-5 +mill_V2 3.219730508556434e-5 +mill_around_V 2.2678822515534993e-5 +mill_dam_N 3.729715012475897e-6 +mill_girl_N 3.729715012475897e-6 +mill_hand_N 3.729715012475897e-6 +millboard_N 3.729715012475897e-6 +milldam_N 3.729715012475897e-6 +millenarian_A 1.0773191989054437e-5 +millenarian_N 3.729715012475897e-6 +millenarianism_N 3.729715012475897e-6 +millenary_A 1.0773191989054437e-5 +millenary_N 3.729715012475897e-6 +millennial_A 1.0773191989054437e-5 +millennium_N 3.729715012475897e-6 +millepede_N 3.729715012475897e-6 +miller_N 3.729715012475897e-6 +millerite_N 3.729715012475897e-6 +millet_N 3.729715012475897e-6 +millettia_N 3.729715012475897e-6 +milliammeter_N 3.729715012475897e-6 +milliampere_N 3.729715012475897e-6 +milliard_N 3.729715012475897e-6 +millibar_N 3.729715012475897e-6 +millicent_PN 1.865462821325971e-5 +millicurie_N 3.729715012475897e-6 +millidegree_N 3.729715012475897e-6 +millie_PN 1.865462821325971e-5 +milliequivalent_N 3.729715012475897e-6 +millifarad_N 3.729715012475897e-6 +milligram_N 1.118914503742769e-5 +millihenry_N 3.729715012475897e-6 +milliliter_N 3.729715012475897e-6 +millime_N 3.729715012475897e-6 +millimeter_N 3.729715012475897e-6 +millimetre_N 3.729715012475897e-6 +milline_N 3.729715012475897e-6 +milliner_N 3.729715012475897e-6 +millinery_N 3.729715012475897e-6 +milling_N 3.729715012475897e-6 +million_A 1.0773191989054437e-5 +million_N 3.729715012475897e-6 +millionaire_N 1.4918860049903587e-5 +millionairess_N 3.729715012475897e-6 +millionfold_Adv 8.668966832532898e-6 +millionth_A 1.0773191989054437e-5 +millionth_N 3.729715012475897e-6 +millipede_N 3.729715012475897e-6 +milliradian_N 3.729715012475897e-6 +millisecond_N 3.729715012475897e-6 +millivolt_N 3.729715012475897e-6 +millivoltmeter_N 3.729715012475897e-6 +milliwatt_N 3.729715012475897e-6 +millom_PN 1.865462821325971e-5 +millpond_N 3.729715012475897e-6 +millrace_N 3.729715012475897e-6 +millstone_N 3.729715012475897e-6 +millwheel_N 3.729715012475897e-6 +millwork_N 3.729715012475897e-6 +millwright_N 3.729715012475897e-6 +milly_PN 1.865462821325971e-5 +milngavie_PN 1.865462821325971e-5 +milnrow_PN 1.865462821325971e-5 +milo_N 3.729715012475897e-6 +milometer_N 3.729715012475897e-6 +milord_N 3.729715012475897e-6 +milt_N 3.729715012475897e-6 +milton_keynes_PN 1.865462821325971e-5 +milwaukee_PN 1.865462821325971e-5 +mime_N 3.729715012475897e-6 +mime_V 2.2678822515534993e-5 +mime_V2 1.609865254278217e-5 +mimeograph_N 3.729715012475897e-6 +mimeograph_V2 1.609865254278217e-5 +mimesis_N 3.729715012475897e-6 +mimetic_A 1.0773191989054437e-5 +mimic_A 1.0773191989054437e-5 +mimic_N 1.118914503742769e-5 +mimic_V2 1.1269056779947518e-4 +mimicry_N 3.729715012475897e-6 +mimosa_N 3.729715012475897e-6 +min_N 3.729715012475897e-6 +minaret_N 3.729715012475897e-6 +minatory_A 1.0773191989054437e-5 +mince_N 3.729715012475897e-6 +mince_V 2.2678822515534993e-5 +mince_V2 3.219730508556434e-5 +mince_pie_N 3.729715012475897e-6 +mincemeat_N 1.118914503742769e-5 +mincer_N 3.729715012475897e-6 +mincingly_Adv 8.668966832532898e-6 +mind_N 2.648097658857887e-4 +mind_V 1.8143058012427994e-4 +mind_V2 1.1269056779947518e-4 +mind_VS 2.8880032345636225e-4 +mind_bending_A 1.0773191989054437e-5 +mind_blowing_A 1.0773191989054437e-5 +mind_boggling_A 2.1546383978108874e-5 +mind_reader_N 3.729715012475897e-6 +minder_N 3.729715012475897e-6 +mindful_A 3.231957596716331e-5 +mindfulness_N 3.729715012475897e-6 +mindless_A 5.3865959945272184e-5 +mindlessness_N 3.729715012475897e-6 +mine_A 8.61855359124355e-5 +mine_N 2.16323470723602e-4 +mine_V 1.3607293509320997e-4 +mine_V2 1.609865254278217e-5 +mine_detector_N 3.729715012475897e-6 +mine_disposal_N 3.729715012475897e-6 +minefield_N 7.459430024951794e-6 +minehead_PN 1.865462821325971e-5 +minelayer_N 3.729715012475897e-6 +minelaying_N 3.729715012475897e-6 +miner_N 3.356743511228307e-5 +mineral_A 1.0773191989054437e-5 +mineral_N 5.594572518713845e-5 +mineralocorticoid_N 3.729715012475897e-6 +mineralogist_N 3.729715012475897e-6 +mineralogy_N 3.729715012475897e-6 +mineshaft_N 3.729715012475897e-6 +minestrone_N 3.729715012475897e-6 +minesweeper_N 3.729715012475897e-6 +minesweeping_N 3.729715012475897e-6 +mineworker_N 3.729715012475897e-6 +minge_N 3.729715012475897e-6 +mingle_V 4.5357645031069986e-5 +mingle_V2 1.609865254278217e-5 +mingling_N 3.729715012475897e-6 +mingy_A 1.0773191989054437e-5 +mini_A 1.0773191989054437e-5 +miniature_A 1.0773191989054437e-5 +miniature_N 7.459430024951794e-6 +miniaturist_N 3.729715012475897e-6 +miniaturization_N 3.729715012475897e-6 +miniaturize_V2 3.219730508556434e-5 +minibar_N 3.729715012475897e-6 +minibike_N 3.729715012475897e-6 +minibus_N 3.729715012475897e-6 +minicab_N 3.729715012475897e-6 +minicar_N 3.729715012475897e-6 +minicomputer_N 3.729715012475897e-6 +minim_N 3.729715012475897e-6 +minimal_A 1.8314426381392542e-4 +minimalism_N 3.729715012475897e-6 +minimalist_A 1.0773191989054437e-5 +minimalist_N 3.729715012475897e-6 +minimization_N 3.729715012475897e-6 +minimize_V2 2.2538113559895037e-4 +minimum_A 7.110306712775928e-4 +minimum_N 1.8648575062379482e-4 +minimus_N 3.729715012475897e-6 +mining_N 1.5291831551151176e-4 +minion_N 3.729715012475897e-6 +miniskirt_N 3.729715012475897e-6 +minister_N 2.6853948089826455e-4 +minister_V 2.2678822515534993e-5 +ministerial_A 2.1546383978108874e-5 +ministrant_A 1.0773191989054437e-5 +ministrant_N 3.729715012475897e-6 +ministration_N 3.729715012475897e-6 +ministry_N 1.6037774553646355e-4 +minisub_N 3.729715012475897e-6 +minivan_N 3.729715012475897e-6 +miniver_N 3.729715012475897e-6 +mink_N 2.6108005087331277e-5 +minneapolis_PN 4.8502033354475243e-4 +minnesota_PN 2.9847405141215536e-4 +minniebush_N 3.729715012475897e-6 +minnow_N 3.729715012475897e-6 +minocycline_N 3.729715012475897e-6 +minor_A 6.140719433761029e-4 +minor_N 2.9837720099807175e-5 +minority_N 3.319446361103548e-4 +minotaur_N 3.729715012475897e-6 +minoxidil_N 3.729715012475897e-6 +minsk_PN 1.865462821325971e-5 +minster_N 3.729715012475897e-6 +minster_in_sheppey_PN 1.865462821325971e-5 +minstrel_N 7.459430024951794e-6 +minstrelsy_N 3.729715012475897e-6 +mint_N 2.9837720099807175e-5 +mint_V2 4.8295957628346505e-5 +mintage_N 3.729715012475897e-6 +mintmark_N 3.729715012475897e-6 +minty_A 1.0773191989054437e-5 +minuend_N 3.729715012475897e-6 +minuet_N 3.729715012475897e-6 +minus_A 1.0773191989054437e-5 +minus_N 2.237829007485538e-5 +minus_Prep 3.991418450331787e-5 +minuscule_A 4.309276795621775e-5 +minuscule_N 3.729715012475897e-6 +minute_A 5.3865959945272184e-5 +minute_N 4.6248466154701117e-4 +minute_V2 1.609865254278217e-5 +minute_book_N 3.729715012475897e-6 +minute_gun_N 3.729715012475897e-6 +minute_hand_N 3.729715012475897e-6 +minuteman_N 3.729715012475897e-6 +minuteness_N 3.729715012475897e-6 +minutes_N 3.729715012475897e-6 +minutia_N 3.729715012475897e-6 +minx_N 3.729715012475897e-6 +minyan_N 3.729715012475897e-6 +miotic_A 1.0773191989054437e-5 +miracle_N 2.237829007485538e-5 +miraculous_A 1.0773191989054437e-5 +mirage_N 3.729715012475897e-6 +miranda_PN 1.865462821325971e-5 +mire_N 7.459430024951794e-6 +mire_V 1.1339411257767497e-4 +mire_V2 9.659191525669301e-5 +miriam_PN 1.865462821325971e-5 +miro_N 3.729715012475897e-6 +mirror_N 1.4918860049903587e-5 +mirror_V2 1.7708517797060386e-4 +mirrorlike_A 1.0773191989054437e-5 +mirth_N 3.729715012475897e-6 +mirthful_A 1.0773191989054437e-5 +mirthless_A 1.0773191989054437e-5 +miry_A 1.0773191989054437e-5 +misadventure_N 1.4918860049903587e-5 +misadvise_V2 1.609865254278217e-5 +misalignment_N 3.729715012475897e-6 +misalliance_N 3.729715012475897e-6 +misanthrope_N 1.4918860049903587e-5 +misanthropic_A 1.0773191989054437e-5 +misanthropy_N 3.729715012475897e-6 +misapplication_N 3.729715012475897e-6 +misapply_V2 1.609865254278217e-5 +misapprehend_V2 1.609865254278217e-5 +misapprehension_N 3.729715012475897e-6 +misappropriate_V2 1.609865254278217e-5 +misappropriation_N 3.729715012475897e-6 +misbegotten_A 2.1546383978108874e-5 +misbehave_V 2.2678822515534993e-5 +misbehave_V2 1.609865254278217e-5 +misbehavior_N 3.729715012475897e-6 +misbehaviour_N 3.729715012475897e-6 +misbranded_A 1.0773191989054437e-5 +misc_PN 1.865462821325971e-5 +miscalculate_V 6.803646754660499e-5 +miscalculate_V2 4.8295957628346505e-5 +miscalculation_N 1.118914503742769e-5 +miscall_V2 1.609865254278217e-5 +miscarriage_N 1.4918860049903587e-5 +miscarry_V2 1.609865254278217e-5 +miscast_V2 1.609865254278217e-5 +miscegenation_N 7.459430024951794e-6 +miscellaneous_A 3.231957596716331e-5 +miscellany_N 3.729715012475897e-6 +mischance_N 3.729715012475897e-6 +mischief_N 1.8648575062379485e-5 +mischief_maker_N 3.729715012475897e-6 +mischief_making_N 3.729715012475897e-6 +mischievous_A 2.1546383978108874e-5 +mischievousness_N 3.729715012475897e-6 +miscible_A 1.0773191989054437e-5 +misconceive_V 2.2678822515534993e-5 +misconceive_V2 1.609865254278217e-5 +misconception_N 7.459430024951794e-6 +misconduct_N 2.6108005087331277e-5 +misconduct_V2 1.609865254278217e-5 +misconstrual_N 3.729715012475897e-6 +misconstruction_N 3.729715012475897e-6 +misconstrue_V2 1.609865254278217e-5 +miscount_N 3.729715012475897e-6 +miscount_V 2.2678822515534993e-5 +miscount_V2 1.609865254278217e-5 +miscreant_N 7.459430024951794e-6 +miscue_N 3.729715012475897e-6 +misdate_V2 1.609865254278217e-5 +misdeal_N 3.729715012475897e-6 +misdeal_V 2.2678822515534993e-5 +misdeal_V2 1.609865254278217e-5 +misdeed_N 2.237829007485538e-5 +misdemeanor_N 3.729715012475897e-6 +misdemeanour_N 3.729715012475897e-6 +misdirect_V2 1.609865254278217e-5 +misdirection_N 3.729715012475897e-6 +misdoing_N 3.729715012475897e-6 +mise_en_scene_N 3.729715012475897e-6 +miser_N 3.729715012475897e-6 +miserable_A 5.3865959945272184e-5 +miserliness_N 3.729715012475897e-6 +miserly_A 2.1546383978108874e-5 +misery_N 7.459430024951794e-6 +misfeasance_N 3.729715012475897e-6 +misfire_N 3.729715012475897e-6 +misfire_V 2.2678822515534993e-5 +misfit_N 3.729715012475897e-6 +misfortune_N 1.118914503742769e-5 +misgive_V2 1.609865254278217e-5 +misgiving_N 3.729715012475897e-6 +misgovern_V2 1.609865254278217e-5 +misgovernment_N 3.729715012475897e-6 +misguide_V2 6.439461017112868e-5 +mishandle_V2 8.049326271391085e-5 +mishap_N 3.729715012475897e-6 +mishmash_N 3.729715012475897e-6 +mishpocha_N 3.729715012475897e-6 +misinform_V2 1.609865254278217e-5 +misinformation_N 3.729715012475897e-6 +misinterpret_V2 9.659191525669301e-5 +misinterpretation_N 3.729715012475897e-6 +misjudge_V 2.2678822515534993e-5 +misjudge_V2 1.609865254278217e-5 +mislaid_A 1.0773191989054437e-5 +mislay_V2 1.609865254278217e-5 +mislead_V2 1.7708517797060386e-4 +misleader_N 3.729715012475897e-6 +mismanage_V2 1.609865254278217e-5 +mismanagement_N 2.237829007485538e-5 +mismatch_N 3.729715012475897e-6 +mismatched_A 1.0773191989054437e-5 +misname_V2 1.609865254278217e-5 +misnomer_N 3.729715012475897e-6 +miso_N 3.729715012475897e-6 +misocainea_N 3.729715012475897e-6 +misogamist_N 3.729715012475897e-6 +misogamy_N 3.729715012475897e-6 +misogynic_A 1.0773191989054437e-5 +misogynist_N 3.729715012475897e-6 +misogynous_A 1.0773191989054437e-5 +misogyny_N 3.729715012475897e-6 +misology_N 3.729715012475897e-6 +misoneism_N 3.729715012475897e-6 +misopedia_N 3.729715012475897e-6 +misplace_V2 4.8295957628346505e-5 +misprint_N 3.729715012475897e-6 +misprint_V2 1.609865254278217e-5 +mispronounce_V2 1.609865254278217e-5 +mispronunciation_N 3.729715012475897e-6 +misquotation_N 7.459430024951794e-6 +misquote_V2 1.609865254278217e-5 +misread_V2 1.609865254278217e-5 +misreading_N 3.729715012475897e-6 +misrelated_A 1.0773191989054437e-5 +misrepresent_V2 1.2878922034225736e-4 +misrepresentation_N 2.9837720099807175e-5 +misrule_N 3.729715012475897e-6 +miss_N 3.729715012475897e-6 +miss_V 7.257223204971198e-4 +miss_V2 5.151568813690294e-4 +miss_out_V 2.2678822515534993e-5 +miss_out_V2 1.609865254278217e-5 +miss_out_on_V2 1.609865254278217e-5 +missal_N 3.729715012475897e-6 +misshapen_A 1.0773191989054437e-5 +missile_N 1.305400254366564e-4 +mission_N 1.118914503742769e-4 +missionary_A 1.0773191989054437e-5 +missionary_N 3.729715012475897e-6 +missis_N 3.729715012475897e-6 +mississippi_PN 1.865462821325971e-4 +missive_N 3.729715012475897e-6 +missouri_PN 2.052009103458568e-4 +misspell_V2 1.609865254278217e-5 +misspelling_N 3.729715012475897e-6 +misspend_V2 3.219730508556434e-5 +misstate_V2 1.9318383051338602e-4 +misstatement_N 1.118914503742769e-5 +missus_N 3.729715012475897e-6 +missy_N 3.729715012475897e-6 +mist_N 1.118914503742769e-5 +mist_V 2.2678822515534993e-5 +mist_V2 1.609865254278217e-5 +mistake_N 1.08161735361801e-4 +mistake_V 4.5357645031069986e-5 +mistake_V2 3.219730508556434e-5 +mistaken_A 8.61855359124355e-5 +mister_N 7.459430024951794e-6 +mistflower_N 3.729715012475897e-6 +mistime_V2 1.609865254278217e-5 +mistiness_N 3.729715012475897e-6 +mistletoe_N 3.729715012475897e-6 +mistral_N 3.729715012475897e-6 +mistranslate_V2 1.609865254278217e-5 +mistranslation_N 3.729715012475897e-6 +mistreat_V2 3.219730508556434e-5 +mistreatment_N 3.729715012475897e-6 +mistress_N 1.118914503742769e-5 +mistrial_N 2.237829007485538e-5 +mistrust_N 1.8648575062379485e-5 +mistrust_V2 1.609865254278217e-5 +mistrustful_A 1.0773191989054437e-5 +misty_A 1.0773191989054437e-5 +misunderstand_V2 4.8295957628346505e-5 +misunderstanding_N 7.459430024951794e-6 +misuse_N 1.118914503742769e-5 +misuse_V2 3.219730508556434e-5 +mite_N 1.118914503742769e-5 +miter_N 3.729715012475897e-6 +miterwort_N 3.729715012475897e-6 +mithraic_A 1.0773191989054437e-5 +mithramycin_N 3.729715012475897e-6 +mitigable_A 1.0773191989054437e-5 +mitigate_V2 8.049326271391085e-5 +mitigation_N 7.459430024951794e-6 +mitochondrion_N 3.729715012475897e-6 +mitogen_N 3.729715012475897e-6 +mitomycin_N 3.729715012475897e-6 +mitosis_N 3.729715012475897e-6 +mitotic_A 1.0773191989054437e-5 +mitral_A 1.0773191989054437e-5 +mitre_N 3.729715012475897e-6 +mitre_joint_N 3.729715012475897e-6 +mitt_N 3.729715012475897e-6 +mittelschmerz_N 3.729715012475897e-6 +mitten_N 3.729715012475897e-6 +mitzvah_N 3.729715012475897e-6 +mix_N 9.324287531189741e-5 +mix_V 4.308976277951649e-4 +mix_V2 8.049326271391085e-4 +mix_up_N 3.729715012475897e-6 +mix_up_V2 1.609865254278217e-5 +mixed_up_A 2.1546383978108874e-5 +mixer_N 7.459430024951794e-6 +mixology_N 3.729715012475897e-6 +mixture_N 1.8648575062379485e-5 +mizen_N 3.729715012475897e-6 +mizzen_N 3.729715012475897e-6 +mizzen_mast_N 3.729715012475897e-6 +mizzenmast_N 3.729715012475897e-6 +mizzle_V 2.2678822515534993e-5 +ml_N 3.729715012475897e-6 +mlle_PN 1.865462821325971e-5 +mm_N 3.729715012475897e-6 +mme_PN 1.865462821325971e-5 +mnemonic_A 1.0773191989054437e-5 +mnemonic_N 3.729715012475897e-6 +mnemonics_N 3.729715012475897e-6 +mnemonist_N 3.729715012475897e-6 +mo_N 7.459430024951794e-6 +mo_PN 1.865462821325971e-5 +moa_N 3.729715012475897e-6 +moan_N 3.729715012475897e-6 +moan_V 6.803646754660499e-5 +moan_V2 1.609865254278217e-5 +moan_VS 1.1552012938254491e-4 +moat_N 7.459430024951794e-6 +moated_A 1.0773191989054437e-5 +mob_N 1.8648575062379485e-5 +mob_V2 1.609865254278217e-5 +mobbish_A 1.0773191989054437e-5 +mobcap_N 3.729715012475897e-6 +mobile_A 1.0773191989054437e-4 +mobile_N 3.729715012475897e-6 +mobility_N 3.729715012475897e-6 +mobilization_N 7.459430024951794e-6 +mobilize_V 1.3607293509320997e-4 +mobilize_V2 4.8295957628346505e-5 +mobocracy_N 3.729715012475897e-6 +mobster_N 1.118914503742769e-5 +moccasin_N 3.729715012475897e-6 +mocha_N 3.729715012475897e-6 +mock_A 3.231957596716331e-5 +mock_N 3.729715012475897e-6 +mock_V 2.2678822515534993e-5 +mock_V2 4.8295957628346505e-5 +mock_up_N 3.729715012475897e-6 +mock_up_V2 1.609865254278217e-5 +mocker_N 3.729715012475897e-6 +mockernut_N 3.729715012475897e-6 +mockery_N 7.459430024951794e-6 +mockingbird_N 3.729715012475897e-6 +mockingly_Adv 1.7337933665065797e-5 +mod_A 1.0773191989054437e-5 +mod_N 3.729715012475897e-6 +mod_cons_N 1.8648575062379485e-5 +modal_A 1.0773191989054437e-5 +modality_N 3.729715012475897e-6 +mode_N 4.1026865137234865e-5 +model_N 4.550252315220594e-4 +model_V 4.5357645031069986e-5 +model_V2 9.659191525669301e-5 +modeler_N 3.729715012475897e-6 +modeling_N 3.729715012475897e-6 +modeller_N 3.729715012475897e-6 +modelling_N 3.729715012475897e-6 +modem_N 3.729715012475897e-6 +modena_PN 1.865462821325971e-5 +moderate_A 6.140719433761029e-4 +moderate_N 2.9837720099807175e-5 +moderate_V 1.1339411257767497e-4 +moderate_V2 4.8295957628346505e-5 +moderation_N 2.237829007485538e-5 +moderationism_N 3.729715012475897e-6 +moderationist_N 3.729715012475897e-6 +moderato_A 1.0773191989054437e-5 +moderator_N 3.729715012475897e-6 +moderatorship_N 3.729715012475897e-6 +modern_A 4.7402044751839524e-4 +modern_N 7.459430024951794e-6 +moderne_A 1.0773191989054437e-5 +modernism_N 3.729715012475897e-6 +modernist_N 7.459430024951794e-6 +modernistic_A 1.0773191989054437e-5 +modernity_N 3.729715012475897e-6 +modernization_N 2.9837720099807175e-5 +modernize_V2 2.575784406845147e-4 +modest_A 1.2712366547084236e-3 +modesty_N 3.729715012475897e-6 +modicum_N 1.118914503742769e-5 +modifiable_A 1.0773191989054437e-5 +modification_N 4.848629516218666e-5 +modifier_N 3.729715012475897e-6 +modify_V2 2.4147978814173252e-4 +modillion_N 3.729715012475897e-6 +modiolus_N 3.729715012475897e-6 +modish_A 2.1546383978108874e-5 +modiste_N 3.729715012475897e-6 +mods_N 3.729715012475897e-6 +modular_A 2.1546383978108874e-5 +modulate_V 4.5357645031069986e-5 +modulate_V2 1.609865254278217e-5 +modulation_N 3.729715012475897e-6 +module_N 3.729715012475897e-6 +modulo_Prep 9.978546125829467e-6 +modulus_N 3.729715012475897e-6 +modus_operandi_N 3.729715012475897e-6 +modus_vivendi_N 3.729715012475897e-6 +moggy_off_V 2.2678822515534993e-5 +mogul_N 7.459430024951794e-6 +mohair_N 3.729715012475897e-6 +mohammedan_N 3.729715012475897e-6 +mohawk_N 3.729715012475897e-6 +moiety_N 3.729715012475897e-6 +moil_V 2.2678822515534993e-5 +moira_PN 1.865462821325971e-5 +moire_A 1.0773191989054437e-5 +moire_N 3.729715012475897e-6 +moist_A 1.0773191989054437e-5 +moisten_V 2.2678822515534993e-5 +moisten_V2 1.609865254278217e-5 +moistening_N 3.729715012475897e-6 +moisture_N 1.118914503742769e-5 +mojarra_N 3.729715012475897e-6 +mojo_N 3.729715012475897e-6 +moke_N 3.729715012475897e-6 +moksa_N 3.729715012475897e-6 +molal_A 1.0773191989054437e-5 +molality_N 3.729715012475897e-6 +molar_A 1.0773191989054437e-5 +molar_N 3.729715012475897e-6 +molarity_N 3.729715012475897e-6 +molasses_N 3.729715012475897e-6 +mold_N 3.729715012475897e-6 +mold_PN 1.865462821325971e-5 +mold_V 4.5357645031069986e-5 +mold_V2 3.219730508556434e-5 +moldboard_N 3.729715012475897e-6 +molding_N 3.729715012475897e-6 +moldy_A 2.1546383978108874e-5 +mole_N 3.729715012475897e-6 +molecular_A 7.541234392338106e-5 +molecule_N 2.6108005087331277e-5 +molehill_N 7.459430024951794e-6 +moleskin_N 3.729715012475897e-6 +molest_V2 1.609865254278217e-5 +molestation_N 3.729715012475897e-6 +molester_N 3.729715012475897e-6 +molindone_N 3.729715012475897e-6 +moll_N 3.729715012475897e-6 +mollie_N 3.729715012475897e-6 +mollification_N 3.729715012475897e-6 +mollify_V2 4.8295957628346505e-5 +mollusc_N 3.729715012475897e-6 +molluscum_N 3.729715012475897e-6 +mollusk_N 3.729715012475897e-6 +molly_PN 1.865462821325971e-5 +mollycoddle_N 3.729715012475897e-6 +mollycoddle_V2 1.609865254278217e-5 +moloch_N 3.729715012475897e-6 +moloch_PN 1.865462821325971e-5 +molt_N 3.729715012475897e-6 +molten_A 1.0773191989054437e-5 +molter_N 3.729715012475897e-6 +molto_Adv 8.668966832532898e-6 +molybdenite_N 3.729715012475897e-6 +molybdenum_N 3.729715012475897e-6 +mombin_N 3.729715012475897e-6 +moment_N 2.9464748598559583e-4 +momentary_A 7.541234392338106e-5 +momentous_A 2.1546383978108874e-5 +momentousness_N 3.729715012475897e-6 +momentum_N 9.324287531189741e-5 +momism_N 3.729715012475897e-6 +mon_PN 1.865462821325971e-5 +monaco_PN 1.865462821325971e-5 +monad_N 3.729715012475897e-6 +monaghan_PN 1.865462821325971e-5 +monal_N 3.729715012475897e-6 +monandrous_A 1.0773191989054437e-5 +monandry_N 3.729715012475897e-6 +monarch_N 3.729715012475897e-6 +monarchal_A 1.0773191989054437e-5 +monarchic_A 1.0773191989054437e-5 +monarchism_N 3.729715012475897e-6 +monarchist_N 3.729715012475897e-6 +monarchy_N 7.459430024951794e-6 +monarda_N 3.729715012475897e-6 +monastery_N 1.4918860049903587e-5 +monastic_A 1.0773191989054437e-5 +monasticism_N 3.729715012475897e-6 +monatomic_A 1.0773191989054437e-5 +monaural_A 1.0773191989054437e-5 +monazite_N 3.729715012475897e-6 +monchengladbach_PN 1.865462821325971e-5 +monday_N 3.729715012475897e-6 +monday_PN 3.973435809424318e-3 +monegasque_A 1.0773191989054437e-5 +monegasque_N 3.729715012475897e-6 +moneran_A 1.0773191989054437e-5 +moneran_N 3.729715012475897e-6 +monestrous_A 1.0773191989054437e-5 +monetarism_N 3.729715012475897e-6 +monetarist_N 3.729715012475897e-6 +monetary_A 6.787110953104295e-4 +monetization_N 3.729715012475897e-6 +monetize_V2 1.609865254278217e-5 +money_N 2.562314213570941e-3 +money_grubber_N 3.729715012475897e-6 +money_order_N 3.729715012475897e-6 +money_spinner_N 3.729715012475897e-6 +moneybag_N 3.729715012475897e-6 +moneybox_N 3.729715012475897e-6 +moneychanger_N 3.729715012475897e-6 +moneyed_A 1.0773191989054437e-5 +moneygrubber_N 3.729715012475897e-6 +moneylender_N 3.729715012475897e-6 +moneyless_A 1.0773191989054437e-5 +moneymaker_N 3.729715012475897e-6 +moneymaking_N 3.729715012475897e-6 +moneywort_N 3.729715012475897e-6 +monger_N 3.729715012475897e-6 +mongo_N 3.729715012475897e-6 +mongol_A 1.0773191989054437e-5 +mongol_N 3.729715012475897e-6 +mongolia_PN 1.865462821325971e-5 +mongolian_A 1.0773191989054437e-5 +mongolian_N 3.729715012475897e-6 +mongolism_N 3.729715012475897e-6 +mongoloid_A 1.0773191989054437e-5 +mongoloid_N 3.729715012475897e-6 +mongoose_N 3.729715012475897e-6 +mongrel_A 1.0773191989054437e-5 +mongrel_N 3.729715012475897e-6 +monica_PN 1.865462821325971e-5 +monifieth_PN 1.865462821325971e-5 +monilia_N 3.729715012475897e-6 +monism_N 3.729715012475897e-6 +monistic_A 1.0773191989054437e-5 +monition_N 3.729715012475897e-6 +monitor_N 4.1026865137234865e-5 +monitor_V 6.803646754660498e-4 +monitor_V2 6.439461017112868e-4 +monitoring_N 3.729715012475897e-6 +monk_N 3.729715012475897e-6 +monkey_N 1.4918860049903587e-5 +monkey_V 2.2678822515534993e-5 +monkey_around_V 2.2678822515534993e-5 +monkey_jacket_N 3.729715012475897e-6 +monkey_nut_N 3.729715012475897e-6 +monkey_puzzle_N 3.729715012475897e-6 +monkey_wrench_N 3.729715012475897e-6 +monkfish_N 3.729715012475897e-6 +monkish_A 1.0773191989054437e-5 +monkshood_N 3.729715012475897e-6 +monmouth_PN 1.865462821325971e-5 +mono_A 1.0773191989054437e-5 +monoamine_N 3.729715012475897e-6 +monoblast_N 3.729715012475897e-6 +monocarboxylic_A 1.0773191989054437e-5 +monocarp_N 3.729715012475897e-6 +monocarpic_A 1.0773191989054437e-5 +monochromacy_N 3.729715012475897e-6 +monochromat_N 3.729715012475897e-6 +monochromatic_A 1.0773191989054437e-5 +monochrome_A 4.309276795621775e-5 +monochrome_N 3.729715012475897e-6 +monocle_N 3.729715012475897e-6 +monocled_A 1.0773191989054437e-5 +monoclinal_A 1.0773191989054437e-5 +monocline_N 3.729715012475897e-6 +monoclinic_A 1.0773191989054437e-5 +monoclinous_A 1.0773191989054437e-5 +monoclonal_A 1.0773191989054437e-5 +monocot_N 3.729715012475897e-6 +monocotyledonous_A 1.0773191989054437e-5 +monoculture_N 3.729715012475897e-6 +monocyte_N 3.729715012475897e-6 +monocytosis_N 3.729715012475897e-6 +monodic_A 1.0773191989054437e-5 +monoecious_A 1.0773191989054437e-5 +monogamist_N 3.729715012475897e-6 +monogamous_A 1.0773191989054437e-5 +monogamy_N 3.729715012475897e-6 +monogenesis_N 3.729715012475897e-6 +monogenic_A 1.0773191989054437e-5 +monogram_N 3.729715012475897e-6 +monograph_N 3.729715012475897e-6 +monogynous_A 1.0773191989054437e-5 +monogyny_N 3.729715012475897e-6 +monohybrid_N 3.729715012475897e-6 +monohydrate_N 3.729715012475897e-6 +monolatry_N 3.729715012475897e-6 +monolingual_A 1.0773191989054437e-5 +monolingual_N 3.729715012475897e-6 +monolith_N 7.459430024951794e-6 +monolithic_A 4.309276795621775e-5 +monologist_N 3.729715012475897e-6 +monologue_N 1.4918860049903587e-5 +monomania_N 3.729715012475897e-6 +monomaniac_N 3.729715012475897e-6 +monomaniacal_A 1.0773191989054437e-5 +monomer_N 3.729715012475897e-6 +monometallic_A 1.0773191989054437e-5 +monomorphemic_A 1.0773191989054437e-5 +mononeuropathy_N 3.729715012475897e-6 +mononuclear_A 1.0773191989054437e-5 +monophonic_A 1.0773191989054437e-5 +monophony_N 3.729715012475897e-6 +monoplane_N 3.729715012475897e-6 +monoplegia_N 3.729715012475897e-6 +monopolist_N 3.729715012475897e-6 +monopolistic_A 1.0773191989054437e-5 +monopolization_N 3.729715012475897e-6 +monopolize_V2 1.1269056779947518e-4 +monopoly_N 6.340515521209024e-5 +monopsony_N 3.729715012475897e-6 +monopteral_A 1.0773191989054437e-5 +monorail_N 3.729715012475897e-6 +monorchism_N 3.729715012475897e-6 +monosaccharide_N 3.729715012475897e-6 +monosemous_A 1.0773191989054437e-5 +monosemy_N 3.729715012475897e-6 +monosomy_N 3.729715012475897e-6 +monosyllabic_A 1.0773191989054437e-5 +monosyllabically_Adv 8.668966832532898e-6 +monosyllable_N 3.729715012475897e-6 +monotheism_N 3.729715012475897e-6 +monotheist_N 3.729715012475897e-6 +monotheistic_A 1.0773191989054437e-5 +monotone_N 3.729715012475897e-6 +monotonic_A 1.0773191989054437e-5 +monotonous_A 1.0773191989054437e-5 +monotony_N 3.729715012475897e-6 +monotreme_N 3.729715012475897e-6 +monotype_N 3.729715012475897e-6 +monotypic_A 1.0773191989054437e-5 +monounsaturated_A 1.0773191989054437e-5 +monovalent_A 1.0773191989054437e-5 +monoxide_N 3.729715012475897e-6 +monozygotic_A 1.0773191989054437e-5 +mons_N 3.729715012475897e-6 +monsieur_N 7.459430024951794e-6 +monsignor_N 3.729715012475897e-6 +monsoon_N 7.459430024951794e-6 +monster_N 2.6108005087331277e-5 +monstera_N 3.729715012475897e-6 +monstrance_N 3.729715012475897e-6 +monstrosity_N 3.729715012475897e-6 +monstrous_A 3.231957596716331e-5 +montage_N 3.729715012475897e-6 +montana_PN 1.1192776927955825e-4 +montane_A 1.0773191989054437e-5 +monte_N 3.729715012475897e-6 +monterrey_PN 1.865462821325971e-5 +montevideo_PN 1.865462821325971e-5 +month_N 5.475221638314616e-3 +monthlong_A 1.0773191989054437e-5 +monthly_A 7.541234392338106e-4 +monthly_Adv 6.935173466026319e-5 +monthly_N 7.459430024951794e-6 +montreal_PN 1.865462821325971e-5 +montrose_PN 1.865462821325971e-5 +montserrat_PN 1.865462821325971e-5 +montserratian_A 1.0773191989054437e-5 +montserratian_N 3.729715012475897e-6 +monument_N 3.729715012475897e-6 +monumental_A 5.3865959945272184e-5 +monza_PN 1.865462821325971e-5 +moo_N 3.729715012475897e-6 +moo_V 2.2678822515534993e-5 +moo_cow_N 3.729715012475897e-6 +mooch_V 2.2678822515534993e-5 +mooch_about_V 2.2678822515534993e-5 +mooch_around_V 2.2678822515534993e-5 +moocher_N 3.729715012475897e-6 +mood_N 8.205373027446973e-5 +moodiness_N 3.729715012475897e-6 +moody_A 2.1546383978108874e-5 +moon_N 2.9837720099807175e-5 +moon_V 2.2678822515534993e-5 +moon_V2 1.609865254278217e-5 +moonbeam_N 3.729715012475897e-6 +moonfish_N 3.729715012475897e-6 +moonflower_N 3.729715012475897e-6 +moonless_A 1.0773191989054437e-5 +moonlight_N 3.729715012475897e-6 +moonlighter_N 3.729715012475897e-6 +moonlike_A 1.0773191989054437e-5 +moonlit_A 1.0773191989054437e-5 +moonseed_N 3.729715012475897e-6 +moonshine_N 3.729715012475897e-6 +moonstone_N 3.729715012475897e-6 +moonstruck_A 1.0773191989054437e-5 +moonwalk_N 3.729715012475897e-6 +moonwort_N 3.729715012475897e-6 +moony_A 1.0773191989054437e-5 +moor_N 3.729715012475897e-6 +moor_V2 1.609865254278217e-5 +moorage_N 3.729715012475897e-6 +moorcock_N 3.729715012475897e-6 +moorfowl_N 3.729715012475897e-6 +moorgame_N 3.729715012475897e-6 +moorhen_N 3.729715012475897e-6 +mooring_N 3.729715012475897e-6 +mooring_mast_N 3.729715012475897e-6 +moorish_A 1.0773191989054437e-5 +moorland_N 3.729715012475897e-6 +moose_N 3.729715012475897e-6 +moosewood_N 3.729715012475897e-6 +moot_A 2.1546383978108874e-5 +moot_N 3.729715012475897e-6 +moot_V2 1.609865254278217e-5 +mop_N 3.729715012475897e-6 +mop_V 9.071529006213997e-5 +mop_V2 3.219730508556434e-5 +mop_up_V2 1.609865254278217e-5 +mope_N 3.729715012475897e-6 +mope_V 2.2678822515534993e-5 +mope_about_V 2.2678822515534993e-5 +mope_around_V 2.2678822515534993e-5 +moped_N 3.729715012475897e-6 +mopper_N 3.729715012475897e-6 +moppet_N 3.729715012475897e-6 +moquette_N 3.729715012475897e-6 +moraceous_A 1.0773191989054437e-5 +moraine_N 3.729715012475897e-6 +moral_A 2.8010299171541536e-4 +moral_N 7.459430024951794e-6 +morale_N 2.9837720099807175e-5 +moralism_N 3.729715012475897e-6 +moralist_N 3.729715012475897e-6 +moralistic_A 2.1546383978108874e-5 +morality_N 1.8648575062379485e-5 +moralization_N 3.729715012475897e-6 +moralize_V 2.2678822515534993e-5 +moralize_V2 1.609865254278217e-5 +moralizing_N 3.729715012475897e-6 +morass_N 1.8648575062379485e-5 +moratorium_N 2.237829007485538e-5 +moray_N 3.729715012475897e-6 +morbid_A 1.0773191989054437e-5 +morbidity_N 1.118914503742769e-5 +morbidness_N 3.729715012475897e-6 +morbilliform_A 1.0773191989054437e-5 +morceau_N 3.729715012475897e-6 +mordacious_A 1.0773191989054437e-5 +mordacity_N 3.729715012475897e-6 +mordant_A 1.0773191989054437e-5 +mordant_N 3.729715012475897e-6 +morePl_Det 3.854580865049095e-4 +moreSg_Det 6.76242257026157e-4 +more_Adv 1.79447613433431e-3 +more_N 7.459430024951794e-6 +more_than_AdN 9.584664536741214e-2 +more_than_Predet 5.0e-3 +morecambe_PN 1.865462821325971e-5 +moreen_N 3.729715012475897e-6 +morel_N 3.729715012475897e-6 +morello_N 3.729715012475897e-6 +moreover_Adv 8.929035837508886e-4 +mores_N 3.729715012475897e-6 +moresque_A 1.0773191989054437e-5 +morganatic_A 1.0773191989054437e-5 +morganite_N 3.729715012475897e-6 +morgen_N 3.729715012475897e-6 +morgue_N 3.729715012475897e-6 +moribund_A 2.1546383978108874e-5 +morion_N 3.729715012475897e-6 +morley_PN 1.865462821325971e-5 +mormon_A 1.0773191989054437e-5 +mormon_N 3.729715012475897e-6 +mormonism_N 3.729715012475897e-6 +morn_N 3.729715012475897e-6 +morning_N 4.774035215969148e-4 +morning_glory_N 3.729715012475897e-6 +morning_room_N 3.729715012475897e-6 +moroccan_A 1.0773191989054437e-5 +moroccan_N 3.729715012475897e-6 +morocco_N 3.729715012475897e-6 +morocco_PN 1.865462821325971e-5 +moron_N 3.729715012475897e-6 +moronic_A 1.0773191989054437e-5 +moronity_N 3.729715012475897e-6 +morose_A 1.0773191989054437e-5 +moroseness_N 3.729715012475897e-6 +morosoph_N 3.729715012475897e-6 +morpeth_PN 1.865462821325971e-5 +morphallaxis_N 3.729715012475897e-6 +morphea_N 3.729715012475897e-6 +morpheme_N 3.729715012475897e-6 +morphemic_A 1.0773191989054437e-5 +morpheus_PN 1.865462821325971e-5 +morphia_N 3.729715012475897e-6 +morphine_N 3.729715012475897e-6 +morphogenesis_N 3.729715012475897e-6 +morphologic_A 1.0773191989054437e-5 +morphological_A 1.0773191989054437e-5 +morphology_N 3.729715012475897e-6 +morphophoneme_N 3.729715012475897e-6 +morphophonemic_A 1.0773191989054437e-5 +morphophonemics_N 3.729715012475897e-6 +morris_dance_N 3.729715012475897e-5 +morrow_N 7.459430024951794e-6 +morse_N 3.729715012475897e-6 +morsel_N 1.118914503742769e-5 +mortal_A 1.0773191989054437e-5 +mortal_N 3.729715012475897e-6 +mortality_N 8.205373027446973e-5 +mortar_N 3.729715012475897e-6 +mortar_V2 1.609865254278217e-5 +mortarboard_N 3.729715012475897e-6 +mortgage_N 8.279967327696491e-4 +mortgage_V2 6.439461017112868e-5 +mortgagee_N 3.729715012475897e-6 +mortgagor_N 3.729715012475897e-6 +mortice_N 3.729715012475897e-6 +mortice_V2 1.609865254278217e-5 +mortician_N 3.729715012475897e-6 +mortification_N 3.729715012475897e-6 +mortify_V 2.2678822515534993e-5 +mortify_V2 1.609865254278217e-5 +mortise_N 3.729715012475897e-6 +mortise_V2 1.609865254278217e-5 +mortmain_N 3.729715012475897e-6 +mortuary_A 1.0773191989054437e-5 +mortuary_N 3.729715012475897e-6 +morula_N 3.729715012475897e-6 +mosaic_A 1.0773191989054437e-5 +mosaic_N 3.729715012475897e-6 +mosaicism_N 3.729715012475897e-6 +moscow_PN 1.28716934671492e-3 +moselle_N 3.729715012475897e-6 +mosey_V 2.2678822515534993e-5 +moshav_N 3.729715012475897e-6 +moslem_A 3.231957596716331e-5 +moslem_N 1.118914503742769e-5 +mosque_N 3.729715012475897e-6 +mosquito_N 3.729715012475897e-6 +mosquito_craft_N 3.729715012475897e-6 +mosquito_net_N 3.729715012475897e-6 +mosquitofish_N 3.729715012475897e-6 +moss_N 3.729715012475897e-6 +moss_grown_A 1.0773191989054437e-5 +mossback_N 3.729715012475897e-6 +mossley_PN 1.865462821325971e-5 +mossy_A 1.0773191989054437e-5 +most_Adv 8.668966832532898e-6 +most_Det 3.61789607508994e-3 +mostaccioli_N 3.729715012475897e-6 +mostly_Adv 7.455311475978293e-4 +mote_N 3.729715012475897e-6 +motel_N 1.8648575062379485e-5 +motet_N 3.729715012475897e-6 +moth_N 3.729715012475897e-6 +moth_eaten_A 1.0773191989054437e-5 +mothball_N 3.729715012475897e-6 +mother_N 1.8275603561131894e-4 +mother_V2 1.609865254278217e-5 +mother_in_law_N 3.729715012475897e-6 +mother_of_pearl_N 3.729715012475897e-6 +motherhood_N 3.729715012475897e-6 +motherland_N 3.729715012475897e-6 +motherless_A 1.0773191989054437e-5 +motherlike_A 1.0773191989054437e-5 +motherliness_N 3.729715012475897e-6 +motherly_A 1.0773191989054437e-5 +motherwell_PN 1.865462821325971e-5 +motherwort_N 3.729715012475897e-6 +mothproof_A 1.0773191989054437e-5 +mothproof_V2 1.609865254278217e-5 +mothy_A 1.0773191989054437e-5 +motif_N 1.4918860049903587e-5 +motile_A 1.0773191989054437e-5 +motile_N 3.729715012475897e-6 +motilin_N 3.729715012475897e-6 +motility_N 3.729715012475897e-6 +motion_N 1.193508803992287e-4 +motion_V 2.2678822515534993e-5 +motion_V2 1.609865254278217e-5 +motional_A 1.0773191989054437e-5 +motionless_A 1.0773191989054437e-5 +motionlessness_N 3.729715012475897e-6 +motivate_V2 1.609865254278217e-4 +motivate_V2V 9.350163627863488e-4 +motivation_N 1.8648575062379485e-5 +motivational_A 1.0773191989054437e-5 +motive_A 1.0773191989054437e-5 +motive_N 4.848629516218666e-5 +motiveless_A 1.0773191989054437e-5 +motley_A 1.0773191989054437e-5 +motley_N 3.729715012475897e-6 +motmot_N 3.729715012475897e-6 +motor_N 9.324287531189741e-5 +motor_V 2.2678822515534993e-5 +motor_assisted_A 1.0773191989054437e-5 +motorbike_N 7.459430024951794e-6 +motorboat_N 3.729715012475897e-6 +motorcade_N 7.459430024951794e-6 +motorcar_N 3.729715012475897e-6 +motorcoach_N 3.729715012475897e-6 +motorcycle_N 1.118914503742769e-5 +motorcycling_N 3.729715012475897e-6 +motorcyclist_N 3.729715012475897e-6 +motoring_N 3.729715012475897e-6 +motorist_N 2.9837720099807175e-5 +motorization_N 3.729715012475897e-6 +motorize_V2 4.8295957628346505e-5 +motorman_N 3.729715012475897e-6 +motormouth_N 3.729715012475897e-6 +motorway_N 3.729715012475897e-6 +mottle_N 3.729715012475897e-6 +mottle_V2 1.609865254278217e-5 +mottling_N 3.729715012475897e-6 +motto_N 3.729715012475897e-6 +mouflon_N 3.729715012475897e-6 +moujik_N 3.729715012475897e-6 +mould_N 3.729715012475897e-6 +mould_V 2.2678822515534993e-5 +mould_V2 1.609865254278217e-5 +moulder_V 2.2678822515534993e-5 +moulding_N 3.729715012475897e-6 +mouldy_A 1.0773191989054437e-5 +moult_N 3.729715012475897e-6 +moult_V 2.2678822515534993e-5 +moult_V2 1.609865254278217e-5 +mound_N 2.237829007485538e-5 +mount_N 3.729715012475897e-6 +mount_V 6.350070304349798e-4 +mount_V2 2.2538113559895037e-4 +mount_VS 1.7328019407381737e-4 +mount_up_V 2.2678822515534993e-5 +mountain_N 1.4918860049903588e-4 +mountain_ash_PN 1.865462821325971e-5 +mountaineer_N 3.729715012475897e-6 +mountaineering_N 3.729715012475897e-6 +mountainous_A 1.0773191989054437e-5 +mountainside_N 3.729715012475897e-6 +mountebank_N 3.729715012475897e-6 +mounter_N 3.729715012475897e-6 +mountie_N 3.729715012475897e-6 +mounting_N 3.729715012475897e-6 +mourn_V 6.803646754660499e-5 +mourn_V2 1.609865254278217e-5 +mourner_N 3.729715012475897e-6 +mournful_A 1.0773191989054437e-5 +mournfulness_N 3.729715012475897e-6 +mourning_N 3.729715012475897e-6 +mourning_band_N 3.729715012475897e-6 +mourning_ring_N 3.729715012475897e-6 +mouse_N 4.848629516218666e-5 +mouse_V 2.2678822515534993e-5 +mousepad_N 3.729715012475897e-6 +mouser_N 3.729715012475897e-6 +mousetrap_N 1.118914503742769e-5 +moussaka_N 3.729715012475897e-6 +mousse_N 7.459430024951794e-6 +moustache_N 7.459430024951794e-6 +mousy_A 1.0773191989054437e-5 +mouth_N 3.356743511228307e-5 +mouth_V 2.2678822515534993e-5 +mouth_V2 3.219730508556434e-5 +mouth_off_V 2.2678822515534993e-5 +mouth_organ_N 3.729715012475897e-6 +mouth_watering_A 1.0773191989054437e-5 +mouthbreeder_N 3.729715012475897e-6 +mouthful_N 3.729715012475897e-6 +mouthlike_A 1.0773191989054437e-5 +mouthpart_N 3.729715012475897e-6 +mouthpiece_N 3.729715012475897e-6 +mouton_N 3.729715012475897e-6 +movability_N 3.729715012475897e-6 +movable_A 1.0773191989054437e-5 +move_N 1.2158870940671422e-3 +move_V 5.805778563976958e-3 +move_V2 9.015245423958015e-4 +move_V2A 1.0e-2 +move_V2V 1.402524544179523e-3 +move_VV 1.6336728810301749e-3 +move_ahead_V 2.2678822515534993e-5 +move_along_V 2.2678822515534993e-5 +move_away_V 2.2678822515534993e-5 +move_away_from_V2 1.609865254278217e-5 +move_down_V2 1.609865254278217e-5 +move_in_V 2.2678822515534993e-5 +move_in_on_V2 1.609865254278217e-5 +move_into_V2 1.609865254278217e-5 +move_on_V 2.2678822515534993e-5 +move_on_V2 1.609865254278217e-5 +move_out_V 2.2678822515534993e-5 +move_out_V2 1.609865254278217e-5 +move_towards_V2 1.609865254278217e-5 +move_up_V 2.2678822515534993e-5 +move_up_V2 1.609865254278217e-5 +movement_N 2.53620620848361e-4 +mover_N 3.729715012475897e-6 +movie_N 4.8486295162186656e-4 +moviegoer_N 3.729715012475897e-6 +moviemaking_N 3.729715012475897e-6 +movingly_Adv 8.668966832532898e-6 +mow_N 3.729715012475897e-6 +mow_V 2.2678822515534993e-5 +mow_V2 3.219730508556434e-5 +mower_N 3.729715012475897e-6 +mown_A 1.0773191989054437e-5 +mozambican_A 1.0773191989054437e-5 +mozambican_N 3.729715012475897e-6 +mozambique_PN 1.865462821325971e-5 +mozzarella_N 3.729715012475897e-6 +mp_N 3.729715012475897e-6 +mpg_N 3.729715012475897e-6 +mph_N 2.6108005087331277e-5 +mr_PN 1.865462821325971e-5 +mrs_PN 1.865462821325971e-5 +ms_N 3.729715012475897e-6 +ms_PN 1.865462821325971e-5 +msasa_N 3.729715012475897e-6 +msc_N 3.729715012475897e-6 +mt_PN 1.865462821325971e-5 +mu_N 3.729715012475897e-6 +much_AdA 3.5496957403651115e-3 +much_Adv 8.668966832532898e-6 +much_Det 2.2315994481863182e-4 +much_N 3.729715012475897e-6 +muchness_N 3.729715012475897e-6 +muciferous_A 1.0773191989054437e-5 +mucilage_N 3.729715012475897e-6 +mucin_N 3.729715012475897e-6 +mucinoid_A 1.0773191989054437e-5 +mucinous_A 1.0773191989054437e-5 +muck_N 1.4918860049903587e-5 +muck_V 4.5357645031069986e-5 +muck_V2 1.609865254278217e-5 +muck_heap_N 3.729715012475897e-6 +muckle_N 3.729715012475897e-6 +muckraker_N 3.729715012475897e-6 +muckraking_N 3.729715012475897e-6 +mucky_A 1.0773191989054437e-5 +mucocutaneous_A 1.0773191989054437e-5 +mucoid_A 1.0773191989054437e-5 +mucoid_N 3.729715012475897e-6 +mucopolysaccharide_N 3.729715012475897e-6 +mucopolysaccharidosis_N 3.729715012475897e-6 +mucopurulent_A 1.0773191989054437e-5 +mucor_N 3.729715012475897e-6 +mucosal_A 1.0773191989054437e-5 +mucous_A 1.0773191989054437e-5 +mucuna_N 3.729715012475897e-6 +mucus_N 3.729715012475897e-6 +mud_N 1.8648575062379485e-5 +mud_V2 1.609865254278217e-5 +mud_bath_N 3.729715012475897e-6 +mudder_N 3.729715012475897e-6 +muddle_N 3.729715012475897e-6 +muddle_V 4.5357645031069986e-5 +muddle_V2 1.609865254278217e-5 +muddle_along_V 2.2678822515534993e-5 +muddle_headed_A 1.0773191989054437e-5 +muddle_through_V 2.2678822515534993e-5 +muddle_up_V2 1.609865254278217e-5 +muddy_A 1.0773191989054437e-5 +muddy_V2 6.439461017112868e-5 +mudguard_N 3.729715012475897e-6 +mudhif_N 3.729715012475897e-6 +mudra_N 3.729715012475897e-6 +mudskipper_N 3.729715012475897e-6 +mudslide_N 3.729715012475897e-6 +mudslinger_N 3.729715012475897e-6 +muesli_N 3.729715012475897e-6 +muezzin_N 3.729715012475897e-6 +muff_N 7.459430024951794e-6 +muff_V2 1.609865254278217e-5 +muffin_N 3.729715012475897e-6 +muffin_man_N 3.729715012475897e-6 +muffle_N 3.729715012475897e-6 +muffle_V2 3.219730508556434e-5 +muffler_N 7.459430024951794e-6 +mufti_N 3.729715012475897e-6 +mug_N 3.729715012475897e-6 +mug_V2 1.609865254278217e-5 +mug_up_V 2.2678822515534993e-5 +mug_up_on_V2 1.609865254278217e-5 +muggee_N 3.729715012475897e-6 +mugger_N 3.729715012475897e-6 +mugginess_N 3.729715012475897e-6 +mugging_N 3.729715012475897e-6 +muggins_N 3.729715012475897e-6 +muggy_A 1.0773191989054437e-5 +mugwort_N 3.729715012475897e-6 +mugwump_N 3.729715012475897e-6 +muhammad_PN 1.865462821325971e-5 +muhammadan_A 1.0773191989054437e-5 +muhammadan_N 3.729715012475897e-6 +muhammadanism_N 3.729715012475897e-6 +muishond_N 3.729715012475897e-6 +mujahid_N 3.729715012475897e-6 +mujahidin_N 3.729715012475897e-6 +mujtihad_N 3.729715012475897e-6 +mukataa_N 3.729715012475897e-6 +mukden_PN 1.865462821325971e-5 +mulatto_N 3.729715012475897e-6 +mulberry_N 3.729715012475897e-6 +mulch_N 3.729715012475897e-6 +mulch_V2 1.609865254278217e-5 +mulct_V2 1.609865254278217e-5 +mule_N 3.729715012475897e-6 +mule_over_V 2.2678822515534993e-5 +muleteer_N 3.729715012475897e-6 +mulheim_PN 1.865462821325971e-5 +mulhouse_PN 1.865462821325971e-5 +mulish_A 1.0773191989054437e-5 +mulishness_N 3.729715012475897e-6 +mull_N 3.729715012475897e-6 +mull_V2 1.1269056779947518e-4 +mull_over_V2 1.609865254278217e-5 +mullah_N 3.729715012475897e-6 +mullein_N 3.729715012475897e-6 +muller_N 3.729715012475897e-6 +mullet_N 3.729715012475897e-6 +mulligatawny_N 3.729715012475897e-6 +mullion_N 3.729715012475897e-6 +mullioned_A 1.0773191989054437e-5 +mulloway_N 3.729715012475897e-6 +multan_PN 1.865462821325971e-5 +multi_ethnicity_N 3.729715012475897e-6 +multi_lingual_A 1.0773191989054437e-5 +multicellular_A 1.0773191989054437e-5 +multicollinearity_N 3.729715012475897e-6 +multicultural_A 1.0773191989054437e-5 +multiculturalism_N 3.729715012475897e-6 +multidimensional_A 1.0773191989054437e-5 +multiethnic_A 1.0773191989054437e-5 +multifactorial_A 1.0773191989054437e-5 +multifarious_A 1.0773191989054437e-5 +multiflora_N 3.729715012475897e-6 +multiform_A 1.0773191989054437e-5 +multilane_A 1.0773191989054437e-5 +multilateral_A 4.309276795621775e-5 +multilevel_A 1.0773191989054437e-5 +multilingual_A 1.0773191989054437e-5 +multimedia_N 3.729715012475897e-6 +multinational_A 1.0773191989054437e-5 +multinucleate_A 1.0773191989054437e-5 +multiparous_A 1.0773191989054437e-5 +multipartite_A 1.0773191989054437e-5 +multiphase_A 1.0773191989054437e-5 +multiple_A 1.508246878467621e-4 +multiple_N 7.459430024951794e-5 +multiplex_A 1.0773191989054437e-5 +multiplex_N 3.729715012475897e-6 +multiplexer_N 3.729715012475897e-6 +multiplicand_N 3.729715012475897e-6 +multiplication_N 3.729715012475897e-6 +multiplicative_A 1.0773191989054437e-5 +multiplicity_N 3.729715012475897e-6 +multiplier_N 3.729715012475897e-6 +multiply_Adv 8.668966832532898e-6 +multiply_V 9.071529006213997e-5 +multiply_V2 6.439461017112868e-5 +multipotent_A 1.0773191989054437e-5 +multiprocessing_N 3.729715012475897e-6 +multiprocessor_N 3.729715012475897e-6 +multiprogramming_N 3.729715012475897e-6 +multipurpose_A 1.0773191989054437e-5 +multiracial_A 1.0773191989054437e-5 +multistage_N 3.729715012475897e-6 +multistory_A 1.0773191989054437e-5 +multitude_N 1.118914503742769e-5 +multitudinous_A 1.0773191989054437e-5 +multitudinousness_N 3.729715012475897e-6 +multivalent_A 1.0773191989054437e-5 +multivariate_A 1.0773191989054437e-5 +multiversity_N 3.729715012475897e-6 +multivitamin_N 3.729715012475897e-6 +multum_in_parvo_N 3.356743511228307e-5 +mum_A 2.1546383978108874e-5 +mum_N 3.729715012475897e-6 +mumble_N 3.729715012475897e-6 +mumble_V 2.2678822515534993e-5 +mumble_V2 3.219730508556434e-5 +mumbling_N 3.729715012475897e-6 +mumbo_jumbo_N 3.729715012475897e-6 +mummer_N 3.729715012475897e-6 +mummery_N 3.729715012475897e-6 +mummichog_N 3.729715012475897e-6 +mummification_N 3.729715012475897e-6 +mummify_V2 1.609865254278217e-5 +mummy_N 7.459430024951794e-6 +mumps_N 3.729715012475897e-6 +mumpsimus_N 3.729715012475897e-6 +munch_N 3.729715012475897e-6 +munch_V 4.5357645031069986e-5 +munch_V2 1.609865254278217e-5 +muncher_N 3.729715012475897e-6 +mundane_A 8.61855359124355e-5 +mung_N 3.729715012475897e-6 +munich_PN 9.327314106629855e-5 +municipal_A 7.325770552557017e-4 +municipality_N 4.475658014971076e-5 +munificence_N 3.729715012475897e-6 +munificent_A 1.0773191989054437e-5 +muniments_N 3.729715012475897e-6 +munition_N 3.729715012475897e-6 +munition_V2 1.609865254278217e-5 +munj_N 3.729715012475897e-6 +munster_PN 1.865462821325971e-5 +muntjac_N 3.729715012475897e-6 +muon_N 3.729715012475897e-6 +mural_A 1.0773191989054437e-5 +mural_N 4.475658014971076e-5 +muralist_N 3.729715012475897e-6 +murder_N 9.697259032437332e-5 +murder_V2 1.609865254278217e-4 +murderee_N 3.729715012475897e-6 +murderer_N 2.237829007485538e-5 +murderess_N 3.729715012475897e-6 +murderous_A 2.1546383978108874e-5 +murderousness_N 3.729715012475897e-6 +muriel_PN 1.865462821325971e-5 +murine_A 1.0773191989054437e-5 +murine_N 3.729715012475897e-6 +murk_N 3.729715012475897e-6 +murky_A 5.3865959945272184e-5 +murmur_N 3.729715012475897e-6 +murmur_V 2.2678822515534993e-5 +murmur_V2 1.609865254278217e-5 +murmurous_A 1.0773191989054437e-5 +murphy_N 3.729715012475897e-6 +murrain_N 3.729715012475897e-6 +murre_N 3.729715012475897e-6 +murton_PN 1.865462821325971e-5 +muscadine_N 3.729715012475897e-6 +muscat_N 3.729715012475897e-6 +muscatel_N 3.729715012475897e-6 +muscle_N 4.1026865137234865e-5 +muscle_V 6.803646754660499e-5 +muscle_V2 3.219730508556434e-5 +muscle_bound_A 1.0773191989054437e-5 +muscle_in_V 2.2678822515534993e-5 +muscle_in_on_V2 1.609865254278217e-5 +muscle_into_V2 1.609865254278217e-5 +muscle_out_V2 1.609865254278217e-5 +muscleman_N 3.729715012475897e-6 +muscovite_A 1.0773191989054437e-5 +muscovite_N 7.459430024951794e-6 +muscovy_N 3.729715012475897e-6 +muscular_A 2.1546383978108874e-5 +muscularity_N 3.729715012475897e-6 +musculoskeletal_A 1.0773191989054437e-5 +muse_N 1.8648575062379485e-5 +muse_V 4.5357645031069986e-5 +muse_VS 1.1552012938254491e-4 +muser_N 3.729715012475897e-6 +musette_N 3.729715012475897e-6 +museum_N 5.594572518713845e-5 +mush_N 3.729715012475897e-6 +musher_N 3.729715012475897e-6 +mushiness_N 3.729715012475897e-6 +mushroom_N 3.729715012475897e-5 +mushroom_V 1.3607293509320997e-4 +mushy_A 2.1546383978108874e-5 +music_N 2.16323470723602e-4 +music_box_N 3.729715012475897e-6 +music_hall_N 3.729715012475897e-6 +music_stand_N 3.729715012475897e-6 +music_stool_N 3.729715012475897e-6 +musical_A 1.4005149585770768e-4 +musical_N 3.729715012475897e-6 +musical_box_N 3.729715012475897e-6 +musicality_N 3.729715012475897e-6 +musician_N 3.729715012475897e-5 +musicianship_N 7.459430024951794e-6 +musicological_A 1.0773191989054437e-5 +musicologist_N 3.729715012475897e-6 +musicology_N 3.729715012475897e-6 +musingly_Adv 8.668966832532898e-6 +musk_N 3.729715012475897e-6 +musk_deer_N 3.729715012475897e-6 +musk_rose_N 3.729715012475897e-6 +muskellunge_N 3.729715012475897e-6 +musket_N 3.729715012475897e-6 +musketeer_N 3.729715012475897e-6 +musketry_N 3.729715012475897e-6 +muskiness_N 3.729715012475897e-6 +muskmelon_N 3.729715012475897e-6 +muskrat_N 3.729715012475897e-6 +muskwood_N 3.729715012475897e-6 +musky_A 1.0773191989054437e-5 +muslim_N 3.729715012475897e-6 +muslin_N 3.729715012475897e-6 +musnud_N 3.729715012475897e-6 +musophobia_N 3.729715012475897e-6 +musquash_N 3.729715012475897e-6 +muss_N 3.729715012475897e-6 +muss_V2 1.609865254278217e-5 +mussel_N 3.729715012475897e-6 +musselburgh_PN 1.865462821325971e-5 +must_N 3.729715012475897e-6 +must_VV 2.7868537382279453e-2 +mustache_N 7.459430024951794e-6 +mustachio_N 3.729715012475897e-6 +mustachioed_A 1.0773191989054437e-5 +mustang_N 3.729715012475897e-6 +mustard_N 1.118914503742769e-5 +muster_N 7.459430024951794e-6 +muster_V 2.2678822515534993e-5 +muster_V2 8.049326271391085e-5 +musth_N 3.729715012475897e-6 +mustiness_N 3.729715012475897e-6 +musty_A 1.0773191989054437e-5 +mutability_N 3.729715012475897e-6 +mutable_A 1.0773191989054437e-5 +mutafacient_A 1.0773191989054437e-5 +mutagen_N 3.729715012475897e-6 +mutagenesis_N 3.729715012475897e-6 +mutagenic_A 1.0773191989054437e-5 +mutant_A 1.0773191989054437e-5 +mutant_N 3.729715012475897e-6 +mutation_N 1.4918860049903587e-5 +mutational_A 1.0773191989054437e-5 +mutatis_mutandis_Adv 8.668966832532898e-6 +mutative_A 1.0773191989054437e-5 +mutchkin_N 3.729715012475897e-6 +mute_A 2.1546383978108874e-5 +mute_N 3.729715012475897e-6 +mute_V2 6.439461017112868e-5 +muteness_N 3.729715012475897e-6 +mutilate_V 4.5357645031069986e-5 +mutilate_V2 1.609865254278217e-5 +mutilation_N 3.729715012475897e-6 +mutilator_N 3.729715012475897e-6 +mutineer_N 3.729715012475897e-6 +mutinous_A 2.1546383978108874e-5 +mutiny_N 7.459430024951794e-6 +mutiny_V 2.2678822515534993e-5 +mutisia_N 3.729715012475897e-6 +mutism_N 3.729715012475897e-6 +muton_N 3.729715012475897e-6 +mutt_N 7.459430024951794e-6 +mutter_N 1.118914503742769e-5 +mutter_V 2.2678822515534993e-5 +mutter_V2 1.609865254278217e-5 +mutterer_N 3.729715012475897e-6 +mutton_N 3.729715012475897e-6 +mutton_head_N 3.729715012475897e-6 +mutual_A 9.695872790148993e-4 +mutuality_N 3.729715012475897e-6 +muzhik_N 3.729715012475897e-6 +muzzle_N 3.729715012475897e-6 +muzzle_V2 3.219730508556434e-5 +muzzle_velocity_N 3.729715012475897e-6 +muzzler_N 3.729715012475897e-6 +muzzy_A 1.0773191989054437e-5 +myalgia_N 3.729715012475897e-6 +myalgic_A 1.0773191989054437e-5 +myasthenia_N 3.729715012475897e-6 +mycelium_N 3.729715012475897e-6 +mycobacteria_N 3.729715012475897e-6 +mycologist_N 3.729715012475897e-6 +mycology_N 3.729715012475897e-6 +mycomycin_N 3.729715012475897e-6 +mycophagist_N 3.729715012475897e-6 +mycophagy_N 3.729715012475897e-6 +mycoplasma_N 3.729715012475897e-6 +mycotoxin_N 3.729715012475897e-6 +mydriasis_N 3.729715012475897e-6 +mydriatic_N 3.729715012475897e-6 +myelatelia_N 3.729715012475897e-6 +myelencephalon_N 3.729715012475897e-6 +myelic_A 1.0773191989054437e-5 +myelin_N 3.729715012475897e-6 +myelinated_A 1.0773191989054437e-5 +myelinic_A 1.0773191989054437e-5 +myelinization_N 3.729715012475897e-6 +myelitis_N 3.729715012475897e-6 +myeloblast_N 3.729715012475897e-6 +myelocyte_N 3.729715012475897e-6 +myelofibrosis_N 3.729715012475897e-6 +myelogram_N 3.729715012475897e-6 +myelography_N 3.729715012475897e-6 +myeloid_A 1.0773191989054437e-5 +myeloma_N 3.729715012475897e-6 +myelomeningocele_N 3.729715012475897e-6 +myiasis_N 3.729715012475897e-6 +mylodon_N 3.729715012475897e-6 +mylodontid_N 3.729715012475897e-6 +myna_N 3.729715012475897e-6 +mynah_N 3.729715012475897e-6 +myocardial_A 1.0773191989054437e-5 +myocardium_N 3.729715012475897e-6 +myoclonus_N 3.729715012475897e-6 +myofibril_N 3.729715012475897e-6 +myoglobin_N 3.729715012475897e-6 +myoglobinuria_N 3.729715012475897e-6 +myogram_N 3.729715012475897e-6 +myoid_A 1.0773191989054437e-5 +myology_N 3.729715012475897e-6 +myoma_N 3.729715012475897e-6 +myometritis_N 3.729715012475897e-6 +myometrium_N 3.729715012475897e-6 +myonecrosis_N 3.729715012475897e-6 +myopathic_A 1.0773191989054437e-5 +myopathy_N 3.729715012475897e-6 +myope_N 3.729715012475897e-6 +myopia_N 3.729715012475897e-6 +myopic_A 1.0773191989054437e-5 +myosarcoma_N 3.729715012475897e-6 +myosin_N 3.729715012475897e-6 +myositis_N 3.729715012475897e-6 +myotomy_N 3.729715012475897e-6 +myotonia_N 3.729715012475897e-6 +myotonic_A 1.0773191989054437e-5 +myra_PN 1.865462821325971e-5 +myriad_A 5.3865959945272184e-5 +myriad_N 3.729715012475897e-6 +myriagram_N 3.729715012475897e-6 +myriameter_N 3.729715012475897e-6 +myriapod_N 3.729715012475897e-6 +myringectomy_N 3.729715012475897e-6 +myringoplasty_N 3.729715012475897e-6 +myringotomy_N 3.729715012475897e-6 +myrmecophagous_A 1.0773191989054437e-5 +myrmecophile_N 3.729715012475897e-6 +myrmecophilous_A 1.0773191989054437e-5 +myrmecophyte_N 3.729715012475897e-6 +myrmecophytic_A 1.0773191989054437e-5 +myrmidon_N 3.729715012475897e-6 +myrrh_N 3.729715012475897e-6 +myrtle_N 3.729715012475897e-6 +myself_NP 3.5494686718434304e-5 +mysophilia_N 3.729715012475897e-6 +mysophobia_N 3.729715012475897e-6 +mysophobic_A 1.0773191989054437e-5 +mysterious_A 8.61855359124355e-5 +mystery_N 5.967544019961435e-5 +mystic_A 1.0773191989054437e-5 +mystic_N 3.729715012475897e-6 +mystical_A 1.0773191989054437e-5 +mysticism_N 3.729715012475897e-6 +mystification_N 3.729715012475897e-6 +mystify_V2 1.609865254278217e-5 +mystique_N 1.4918860049903587e-5 +myth_N 1.4918860049903587e-5 +mythic_A 1.0773191989054437e-5 +mythical_A 1.0773191989054437e-5 +mythological_A 1.0773191989054437e-5 +mythologist_N 3.729715012475897e-6 +mythologization_N 3.729715012475897e-6 +mythology_N 3.729715012475897e-6 +myxedema_N 3.729715012475897e-6 +myxobacteria_N 3.729715012475897e-6 +myxoma_N 3.729715012475897e-6 +myxomatosis_N 3.729715012475897e-6 +myxosporidian_N 3.729715012475897e-6 +myxovirus_N 3.729715012475897e-6 +n2 0.38984375 +n3 0.2015625 +n4 8.7109375e-2 +n5 0.102734375 +n6 8.8671875e-2 +n7 3.515625e-2 +n8 3.1640625e-2 +n9 6.328125e-2 +naafi_N 3.729715012475897e-6 +nab_V2 1.609865254278217e-5 +nabob_N 3.729715012475897e-6 +naboom_N 3.729715012475897e-6 +nabumetone_N 3.729715012475897e-6 +nacelle_N 3.729715012475897e-6 +nacho_N 3.729715012475897e-6 +nacre_N 3.729715012475897e-6 +nacreous_A 1.0773191989054437e-5 +nadir_N 3.729715012475897e-6 +nadolol_N 3.729715012475897e-6 +nafcillin_N 3.729715012475897e-6 +naff_off_V 2.2678822515534993e-5 +nag_N 7.459430024951794e-6 +nag_V 1.5875175760874494e-4 +nag_V2 1.609865254278217e-5 +nag_at_V2 1.609865254278217e-5 +nagami_N 3.729715012475897e-6 +nagger_N 3.729715012475897e-6 +nagi_N 3.729715012475897e-6 +nagoya_PN 1.865462821325971e-5 +nagpur_PN 1.865462821325971e-5 +naiad_N 3.729715012475897e-6 +naiant_A 1.0773191989054437e-5 +naif_N 3.729715012475897e-6 +nail_N 1.118914503742769e-5 +nail_V2 6.439461017112868e-5 +nail_down_V2 1.609865254278217e-5 +nail_polish_N 3.729715012475897e-6 +nail_varnish_N 3.729715012475897e-6 +nailbrush_N 3.729715012475897e-6 +nailer_N 3.729715012475897e-6 +nailfile_N 3.729715012475897e-6 +nailhead_N 3.729715012475897e-6 +nailsea_PN 1.865462821325971e-5 +nainsook_N 3.729715012475897e-6 +naira_N 3.729715012475897e-6 +nairn_PN 1.865462821325971e-5 +nairobi_PN 1.865462821325971e-5 +naive_1_A 4.309276795621775e-5 +naive_2_A 1.0773191989054437e-5 +naive_A 1.0773191989054437e-5 +naivete_N 3.729715012475897e-6 +naivety_N 3.729715012475897e-6 +naked_A 7.541234392338106e-5 +nakedness_N 3.729715012475897e-6 +nakedwood_N 3.729715012475897e-6 +nalorphine_N 3.729715012475897e-6 +naloxone_N 3.729715012475897e-6 +naltrexone_N 3.729715012475897e-6 +namby_pamby_A 1.0773191989054437e-5 +namby_pamby_N 3.729715012475897e-6 +name_N 7.422132874827035e-4 +name_V2 2.0606275254761177e-3 +name_V2V 4.675081813931743e-3 +name_V3 0.19523809523809524 +name_after_V3 1.5873015873015873e-3 +name_day_N 3.729715012475897e-6 +name_drop_V 4.5357645031069986e-5 +name_dropping_N 3.729715012475897e-6 +name_part_N 3.729715012475897e-6 +nameko_N 3.729715012475897e-6 +nameless_A 2.1546383978108874e-5 +namely_Adv 6.935173466026319e-5 +nameplate_N 2.9837720099807175e-5 +namer_N 3.729715012475897e-6 +namesake_N 1.118914503742769e-5 +namibia_PN 2.6116479498563595e-4 +namibian_A 5.3865959945272184e-5 +namibian_N 3.729715012475897e-6 +naming_N 3.729715012475897e-6 +nan_N 3.729715012475897e-6 +nanchang_PN 1.865462821325971e-5 +nancy_PN 1.865462821325971e-5 +nandrolone_N 3.729715012475897e-6 +nankeen_N 3.729715012475897e-6 +nanking_PN 1.865462821325971e-5 +nanning_PN 1.865462821325971e-5 +nanny_N 3.729715012475897e-6 +nanny_goat_N 3.729715012475897e-6 +nanogram_N 3.729715012475897e-6 +nanometer_N 3.729715012475897e-6 +nanomia_N 3.729715012475897e-6 +nanophthalmos_N 3.729715012475897e-6 +nanosecond_N 3.729715012475897e-6 +nanotechnology_N 3.729715012475897e-6 +nanovolt_N 3.729715012475897e-6 +nantwich_PN 1.865462821325971e-5 +naomi_PN 1.865462821325971e-5 +nap_N 3.729715012475897e-6 +nap_V 2.2678822515534993e-5 +napalm_N 3.729715012475897e-6 +nape_N 3.729715012475897e-6 +napery_N 3.729715012475897e-6 +naphazoline_N 3.729715012475897e-6 +naphtha_N 1.8648575062379485e-5 +naphthalene_N 3.729715012475897e-6 +naphthol_N 3.729715012475897e-6 +napkin_N 7.459430024951794e-6 +napkin_ring_N 3.729715012475897e-6 +naples_PN 1.865462821325971e-5 +napoleon_N 3.729715012475897e-6 +napoleonic_A 1.0773191989054437e-5 +napoli_PN 1.865462821325971e-5 +nappy_N 3.729715012475897e-6 +naprapath_N 3.729715012475897e-6 +naprapathy_N 3.729715012475897e-6 +naproxen_N 3.729715012475897e-6 +napu_N 3.729715012475897e-6 +naranjilla_N 3.729715012475897e-6 +narborough_PN 1.865462821325971e-5 +narc_N 3.729715012475897e-6 +narcissism_N 3.729715012475897e-6 +narcissist_N 3.729715012475897e-6 +narcissus_N 3.729715012475897e-6 +narcolepsy_N 3.729715012475897e-6 +narcoleptic_A 1.0773191989054437e-5 +narcoleptic_N 3.729715012475897e-6 +narcosis_N 3.729715012475897e-6 +narcoterrorism_N 3.729715012475897e-6 +narcotic_A 1.0773191989054437e-5 +narcotic_N 2.237829007485538e-5 +nard_N 3.729715012475897e-6 +nardoo_N 3.729715012475897e-6 +narial_A 1.0773191989054437e-5 +naris_N 3.729715012475897e-6 +nark_N 3.729715012475897e-6 +nark_V2 1.609865254278217e-5 +narrate_V2 1.609865254278217e-5 +narration_N 3.729715012475897e-6 +narrative_A 1.0773191989054437e-5 +narrative_N 1.118914503742769e-5 +narrator_N 2.237829007485538e-5 +narrow_A 5.709791754198852e-4 +narrow_N 3.729715012475897e-6 +narrow_V 8.391164330747948e-4 +narrow_V2 1.7708517797060386e-4 +narrow_down_V2 1.609865254278217e-5 +narrow_minded_A 1.0773191989054437e-5 +narrow_mindedness_N 3.729715012475897e-6 +narrowing_N 3.729715012475897e-6 +narrowness_N 7.459430024951794e-6 +narthex_N 3.729715012475897e-6 +narwhal_N 3.729715012475897e-6 +nary_Predet 3.3333333333333335e-3 +nasa_PN 1.865462821325971e-5 +nasal_A 1.0773191989054437e-5 +nasal_N 3.729715012475897e-6 +nasality_N 3.729715012475897e-6 +nasalization_N 3.729715012475897e-6 +nasalize_V2 1.609865254278217e-5 +nascent_A 1.0773191989054437e-5 +nasion_N 3.729715012475897e-6 +nasopharyngeal_A 1.0773191989054437e-5 +nasopharynx_N 3.729715012475897e-6 +nastiness_N 3.729715012475897e-6 +nasturtium_N 3.729715012475897e-6 +nasty_A 1.4005149585770768e-4 +nat_PN 1.865462821325971e-5 +natal_A 1.0773191989054437e-5 +natalie_PN 1.865462821325971e-5 +nathaniel_PN 1.865462821325971e-5 +nation_N 1.1748602289299074e-3 +national_A 2.8225763011322626e-3 +national_N 2.6108005087331277e-5 +nationalism_N 7.459430024951794e-6 +nationalist_A 3.231957596716331e-5 +nationalist_N 1.4918860049903587e-5 +nationalistic_A 4.309276795621775e-5 +nationality_N 3.729715012475897e-6 +nationalization_N 1.118914503742769e-5 +nationalize_V2 6.439461017112868e-5 +nationhood_N 3.729715012475897e-6 +nationwide_A 2.8010299171541536e-4 +nationwide_Adv 4.33448341626645e-5 +native_A 1.1850511187959881e-4 +native_N 2.6108005087331277e-5 +nativeness_N 3.729715012475897e-6 +nativism_N 3.729715012475897e-6 +nativist_A 1.0773191989054437e-5 +nativist_N 3.729715012475897e-6 +nativity_N 3.729715012475897e-6 +nato_PN 1.865462821325971e-5 +natriuresis_N 3.729715012475897e-6 +natriuretic_A 1.0773191989054437e-5 +natrolite_N 3.729715012475897e-6 +natter_V 2.2678822515534993e-5 +natterjack_N 3.729715012475897e-6 +natty_A 1.0773191989054437e-5 +natural_A 1.3681953826099136e-3 +natural_N 5.594572518713845e-5 +naturalism_N 3.729715012475897e-6 +naturalist_N 7.459430024951794e-6 +naturalistic_A 2.1546383978108874e-5 +naturalization_N 3.729715012475897e-6 +naturalize_V 2.2678822515534993e-5 +naturalize_V2 1.609865254278217e-5 +naturalness_N 3.729715012475897e-6 +nature_N 1.7156689057389125e-4 +naturism_N 3.729715012475897e-6 +naturist_N 3.729715012475897e-6 +naturistic_A 1.0773191989054437e-5 +naturopath_N 3.729715012475897e-6 +naturopathy_N 3.729715012475897e-6 +naught_N 3.729715012475897e-6 +naughtiness_N 3.729715012475897e-6 +naughty_A 2.1546383978108874e-5 +naumachy_N 3.729715012475897e-6 +nauru_PN 1.865462821325971e-5 +nauruan_A 1.0773191989054437e-5 +nauruan_N 3.729715012475897e-6 +nausea_N 1.4918860049903587e-5 +nauseate_V2 1.609865254278217e-5 +nauseating_A 1.0773191989054437e-5 +nauseous_A 1.0773191989054437e-5 +nautch_N 3.729715012475897e-6 +nautch_girl_N 3.729715012475897e-6 +nautical_A 1.0773191989054437e-5 +nautilus_N 3.729715012475897e-6 +naval_A 1.6159787983581657e-4 +nave_N 3.729715012475897e-6 +navel_N 3.729715012475897e-6 +navicular_A 1.0773191989054437e-5 +navigability_N 3.729715012475897e-6 +navigable_A 1.0773191989054437e-5 +navigate_V 4.5357645031069986e-5 +navigate_V2 1.609865254278217e-5 +navigation_N 7.459430024951794e-6 +navigational_A 1.0773191989054437e-5 +navigator_N 7.459430024951794e-6 +navvy_N 3.729715012475897e-6 +navy_N 5.594572518713845e-5 +nawab_N 3.729715012475897e-6 +nay_Adv 8.668966832532898e-6 +nay_N 3.729715012475897e-6 +naysay_V2 3.219730508556434e-5 +naysayer_N 3.729715012475897e-6 +naysaying_N 3.729715012475897e-6 +nazi_A 3.231957596716331e-5 +nazi_N 7.459430024951794e-6 +nazism_N 3.729715012475897e-6 +nb_PN 1.865462821325971e-5 +nco_N 3.729715012475897e-6 +ne'er_Adv 8.668966832532898e-6 +ne'er_do_well_N 3.729715012475897e-6 +ne_plus_ultra_N 3.729715012475897e-6 +neanderthal_A 2.1546383978108874e-5 +neap_N 3.729715012475897e-6 +neap_tide_N 3.729715012475897e-6 +neapolitan_A 1.0773191989054437e-5 +neapolitan_N 3.729715012475897e-6 +near_A 3.275050364672549e-3 +near_Adv 5.2013800995197394e-5 +near_Prep 9.87876066457117e-4 +near_V 2.0410940263981494e-4 +near_V2 8.049326271391085e-5 +near_sighted_A 1.0773191989054437e-5 +near_to_Prep 9.978546125829467e-6 +nearby_A 1.8314426381392542e-4 +nearby_Adv 8.668966832532898e-6 +nearer_Adv 8.668966832532898e-6 +nearer_Prep 1.9957092251658934e-5 +nearest_Adv 8.668966832532898e-6 +nearest_Prep 1.9957092251658934e-5 +nearness_N 3.729715012475897e-6 +nearside_N 3.729715012475897e-6 +nearsighted_A 1.0773191989054437e-5 +neat_A 1.4005149585770768e-4 +neath_PN 1.865462821325971e-5 +neatness_N 7.459430024951794e-6 +nebbish_N 3.729715012475897e-6 +nebraska_PN 1.865462821325971e-5 +nebuchadnezzar_N 3.729715012475897e-6 +nebula_N 3.729715012475897e-6 +nebular_A 1.0773191989054437e-5 +nebule_N 3.729715012475897e-6 +nebulous_A 1.0773191989054437e-5 +necessary_A 1.2173706947631515e-3 +necessary_N 3.729715012475897e-6 +necessitarian_N 3.729715012475897e-6 +necessitate_V2 3.219730508556434e-5 +necessitous_A 1.0773191989054437e-5 +necessity_N 5.594572518713845e-5 +neck_N 6.713487022456614e-5 +neck_V 2.2678822515534993e-5 +neckband_N 3.729715012475897e-6 +neckcloth_N 3.729715012475897e-6 +necked_A 1.0773191989054437e-5 +necker_N 3.729715012475897e-6 +neckerchief_N 3.729715012475897e-6 +necklace_N 1.118914503742769e-5 +neckless_A 1.0773191989054437e-5 +necklet_N 3.729715012475897e-6 +necklike_A 1.0773191989054437e-5 +neckline_N 3.729715012475897e-6 +neckpiece_N 3.729715012475897e-6 +necktie_N 1.118914503742769e-5 +neckwear_N 3.729715012475897e-6 +necrobiosis_N 3.729715012475897e-6 +necrology_N 3.729715012475897e-6 +necrolysis_N 3.729715012475897e-6 +necromancer_N 3.729715012475897e-6 +necromancy_N 3.729715012475897e-6 +necromantic_A 1.0773191989054437e-5 +necrophagia_N 3.729715012475897e-6 +necrophilia_N 3.729715012475897e-6 +necropolis_N 3.729715012475897e-6 +necrosis_N 3.729715012475897e-6 +necrotic_A 1.0773191989054437e-5 +nectar_N 3.729715012475897e-6 +nectariferous_A 1.0773191989054437e-5 +nectarine_N 3.729715012475897e-6 +nectary_N 3.729715012475897e-6 +ned_PN 1.865462821325971e-5 +neddy_PN 1.865462821325971e-5 +nee_A 1.0773191989054437e-5 +need_N 3.878903612974933e-4 +need_V 3.1069986846282943e-3 +need_V2 2.640179017016276e-3 +need_V2V 3.7400654511453952e-3 +need_VS 1.7328019407381737e-4 +need_VV 8.360561214683836e-3 +needful_A 1.0773191989054437e-5 +neediness_N 3.729715012475897e-6 +needle_N 1.118914503742769e-5 +needle_V2 1.609865254278217e-5 +needlebush_N 3.729715012475897e-6 +needlecraft_N 3.729715012475897e-6 +needlefish_N 3.729715012475897e-6 +needlepoint_N 3.729715012475897e-6 +needless_A 4.309276795621775e-5 +needlewoman_N 3.729715012475897e-6 +needlewood_N 3.729715012475897e-6 +needlework_N 3.729715012475897e-6 +needleworker_N 3.729715012475897e-6 +needs_Adv 8.668966832532898e-6 +needy_A 3.231957596716331e-5 +needy_N 3.729715012475897e-6 +neem_N 3.729715012475897e-6 +neencephalon_N 3.729715012475897e-6 +nefarious_A 1.0773191989054437e-5 +nefariousness_N 3.729715012475897e-6 +nefazodone_N 3.729715012475897e-6 +negate_V2 3.219730508556434e-5 +negation_N 3.729715012475897e-6 +negative_A 9.803604710039537e-4 +negative_N 2.6108005087331277e-5 +negative_V2 1.609865254278217e-5 +negativist_N 3.729715012475897e-6 +negativity_N 3.729715012475897e-6 +neglect_N 2.237829007485538e-5 +neglect_V2 1.4488787288503951e-4 +neglecter_N 3.729715012475897e-6 +neglectful_A 1.0773191989054437e-5 +neglectfulness_N 3.729715012475897e-6 +neglige_N 3.729715012475897e-6 +negligee_N 3.729715012475897e-6 +negligence_N 2.6108005087331277e-5 +negligent_A 3.231957596716331e-5 +negligible_A 8.61855359124355e-5 +negotiable_A 3.1242256768257865e-4 +negotiate_V 1.1339411257767498e-3 +negotiate_V2 9.176231949385836e-4 +negotiate_VV 5.765904285988853e-4 +negotiation_N 3.9162007630996916e-4 +negotiator_N 9.697259032437332e-5 +negotiatress_N 3.729715012475897e-6 +negress_N 3.729715012475897e-6 +negro_A 1.0773191989054437e-5 +negro_N 3.729715012475897e-6 +negroid_A 1.0773191989054437e-5 +negroid_N 3.729715012475897e-6 +negus_N 3.729715012475897e-6 +neigh_N 3.729715012475897e-6 +neigh_V 2.2678822515534993e-5 +neighbour_N 7.459430024951794e-6 +neighbour_V 2.2678822515534993e-5 +neighbour_V2 1.609865254278217e-5 +neighbourhood_N 1.8648575062379485e-5 +neighbourliness_N 3.729715012475897e-6 +neighbourly_A 1.0773191989054437e-5 +neil_PN 1.865462821325971e-5 +neither7nor_DConj 1.801946101789933e-3 +neither_A 1.0773191989054437e-5 +neither_Adv 8.668966832532898e-6 +neither_Det 1.9611025453758555e-4 +neither_Prep 9.978546125829467e-6 +nekton_N 3.729715012475897e-6 +nelfinavir_N 3.729715012475897e-6 +nell_PN 1.865462821325971e-5 +nelly_N 3.729715012475897e-6 +nelly_PN 1.865462821325971e-5 +nelson_N 3.729715012475897e-6 +nelson_PN 1.865462821325971e-5 +nem_con_Adv 1.7337933665065797e-5 +nematode_N 3.729715012475897e-6 +nemesis_N 1.118914503742769e-5 +nemophila_N 3.729715012475897e-6 +neo_A 1.0773191989054437e-5 +neoclassic_A 1.0773191989054437e-5 +neoclassicism_N 3.729715012475897e-6 +neoclassicist_A 1.0773191989054437e-5 +neoclassicist_N 3.729715012475897e-6 +neocolonialism_N 3.729715012475897e-6 +neoconservatism_N 3.729715012475897e-6 +neoconservative_N 3.729715012475897e-6 +neocortical_A 1.0773191989054437e-5 +neodymium_N 3.729715012475897e-6 +neoexpressionism_N 3.729715012475897e-6 +neoliberal_A 1.0773191989054437e-5 +neoliberal_N 3.729715012475897e-6 +neoliberalism_N 3.729715012475897e-6 +neolith_N 3.729715012475897e-6 +neolithic_A 1.0773191989054437e-5 +neologism_N 3.729715012475897e-6 +neologist_N 3.729715012475897e-6 +neomycin_N 3.729715012475897e-6 +neon_N 7.459430024951794e-6 +neonatal_A 1.0773191989054437e-5 +neonate_N 3.729715012475897e-6 +neonatology_N 3.729715012475897e-6 +neopallium_N 3.729715012475897e-6 +neophobia_N 3.729715012475897e-6 +neophyte_N 7.459430024951794e-6 +neoplasia_N 3.729715012475897e-6 +neoplasm_N 3.729715012475897e-6 +neoplastic_A 1.0773191989054437e-5 +neoprene_N 3.729715012475897e-6 +neoromanticism_N 3.729715012475897e-6 +neostigmine_N 3.729715012475897e-6 +neotenic_A 1.0773191989054437e-5 +neoteny_N 3.729715012475897e-6 +neotony_N 3.729715012475897e-6 +nepal_PN 1.865462821325971e-5 +nepalese_A 1.0773191989054437e-5 +nepalese_N 3.729715012475897e-6 +nepali_A 1.0773191989054437e-5 +nepali_N 3.729715012475897e-6 +nepheline_N 3.729715012475897e-6 +nephelinite_N 3.729715012475897e-6 +nephew_N 7.459430024951794e-6 +nephology_N 3.729715012475897e-6 +nephoscope_N 3.729715012475897e-6 +nephralgia_N 3.729715012475897e-6 +nephrectomy_N 3.729715012475897e-6 +nephrite_N 3.729715012475897e-6 +nephritic_A 1.0773191989054437e-5 +nephritis_N 3.729715012475897e-6 +nephrocalcinosis_N 3.729715012475897e-6 +nephrolithiasis_N 3.729715012475897e-6 +nephrology_N 3.729715012475897e-6 +nephron_N 3.729715012475897e-6 +nephroptosis_N 3.729715012475897e-6 +nephrosclerosis_N 3.729715012475897e-6 +nephrotomy_N 3.729715012475897e-6 +nephrotoxic_A 1.0773191989054437e-5 +nephrotoxin_N 3.729715012475897e-6 +nephthytis_N 3.729715012475897e-6 +nepotism_N 7.459430024951794e-6 +nepotist_N 3.729715012475897e-6 +neptune_PN 1.865462821325971e-5 +neptunium_N 3.729715012475897e-6 +nerd_N 3.729715012475897e-6 +nerd_out_V 2.2678822515534993e-5 +nereid_N 3.729715012475897e-6 +nerita_N 3.729715012475897e-6 +neritic_A 1.0773191989054437e-5 +neritid_N 3.729715012475897e-6 +neritina_N 3.729715012475897e-6 +nerve_N 6.340515521209024e-5 +nerve_V2 1.609865254278217e-5 +nerve_cell_N 3.729715012475897e-6 +nerve_centre_N 3.729715012475897e-6 +nerve_racking_A 2.1546383978108874e-5 +nerveless_A 1.0773191989054437e-5 +nerves_N 3.729715012475897e-6 +nervous_A 5.17113215474613e-4 +nervousness_N 3.356743511228307e-5 +nervy_A 2.1546383978108874e-5 +nescience_N 3.729715012475897e-6 +nescient_A 1.0773191989054437e-5 +ness_N 3.729715012475897e-6 +nest_N 2.6108005087331277e-5 +nest_V 2.2678822515534993e-5 +nest_egg_N 3.729715012475897e-6 +nester_N 3.729715012475897e-6 +nestle_V 2.2678822515534993e-5 +nestle_V2 1.609865254278217e-5 +nestling_N 3.729715012475897e-6 +neston_PN 1.865462821325971e-5 +nestor_PN 1.865462821325971e-5 +net_A 6.043760705859539e-3 +net_N 7.981590126698418e-4 +net_V2 4.8295957628346505e-5 +net_out_V 2.2678822515534993e-5 +netball_N 3.729715012475897e-6 +nether_A 1.0773191989054437e-5 +netherlander_N 3.729715012475897e-6 +netherlands_PN 1.865462821325971e-5 +nethermost_A 1.0773191989054437e-5 +netley_PN 1.865462821325971e-5 +nett_A 1.0773191989054437e-5 +nett_V2 8.049326271391085e-5 +netting_N 3.729715012475897e-6 +nettle_N 3.729715012475897e-6 +nettle_V2 1.609865254278217e-5 +nettlerash_N 3.729715012475897e-6 +network_N 8.914018879817394e-4 +networklike_A 1.0773191989054437e-5 +neural_A 1.0773191989054437e-5 +neuralgia_N 3.729715012475897e-6 +neuralgic_A 1.0773191989054437e-5 +neurasthenia_N 3.729715012475897e-6 +neurasthenic_A 1.0773191989054437e-5 +neurasthenic_N 3.729715012475897e-6 +neurectomy_N 3.729715012475897e-6 +neurinoma_N 3.729715012475897e-6 +neuritis_N 3.729715012475897e-6 +neuroanatomic_A 1.0773191989054437e-5 +neuroanatomy_N 3.729715012475897e-6 +neurobiological_A 1.0773191989054437e-5 +neurobiological_Adv 8.668966832532898e-6 +neurobiologist_N 3.729715012475897e-6 +neurobiology_N 3.729715012475897e-6 +neuroblast_N 3.729715012475897e-6 +neuroblastoma_N 3.729715012475897e-6 +neurochemical_N 3.729715012475897e-6 +neurodermatitis_N 3.729715012475897e-6 +neuroendocrine_A 1.0773191989054437e-5 +neuroepithelioma_N 3.729715012475897e-6 +neuroepithelium_N 3.729715012475897e-6 +neuroethics_N 3.729715012475897e-6 +neurofibroma_N 3.729715012475897e-6 +neurofibromatosis_N 3.729715012475897e-6 +neurogenesis_N 3.729715012475897e-6 +neurogenic_A 1.0773191989054437e-5 +neuroglia_N 3.729715012475897e-6 +neurogliacyte_N 3.729715012475897e-6 +neuroglial_A 1.0773191989054437e-5 +neurohormone_N 3.729715012475897e-6 +neurolemma_N 3.729715012475897e-6 +neurolinguist_N 3.729715012475897e-6 +neurolinguistics_N 3.729715012475897e-6 +neurological_A 1.0773191989054437e-5 +neurologist_N 2.237829007485538e-5 +neurology_N 3.729715012475897e-6 +neuroma_N 3.729715012475897e-6 +neuromatous_A 1.0773191989054437e-5 +neuromotor_A 1.0773191989054437e-5 +neuromuscular_A 1.0773191989054437e-5 +neuropathy_N 3.729715012475897e-6 +neurophysiological_A 1.0773191989054437e-5 +neurophysiology_N 3.729715012475897e-6 +neuropil_N 3.729715012475897e-6 +neuroplasty_N 3.729715012475897e-6 +neuropsychiatric_A 1.0773191989054437e-5 +neuropsychiatry_N 3.729715012475897e-6 +neuropsychological_A 1.0773191989054437e-5 +neuropteron_N 3.729715012475897e-6 +neurosarcoma_N 3.729715012475897e-6 +neuroscience_N 3.729715012475897e-6 +neuroscientist_N 3.729715012475897e-6 +neurosis_N 3.729715012475897e-6 +neurosurgeon_N 3.729715012475897e-6 +neurosurgery_N 3.729715012475897e-6 +neurosyphilis_N 3.729715012475897e-6 +neurotic_A 1.0773191989054437e-5 +neurotic_N 3.729715012475897e-6 +neurotically_Adv 8.668966832532898e-6 +neurotoxic_A 1.0773191989054437e-5 +neurotoxin_N 3.729715012475897e-6 +neurotransmitter_N 3.729715012475897e-6 +neurotropic_A 1.0773191989054437e-5 +neurotropism_N 3.729715012475897e-6 +neuss_PN 1.865462821325971e-5 +neuter_A 1.0773191989054437e-5 +neuter_N 3.729715012475897e-6 +neuter_V2 1.609865254278217e-5 +neutering_N 3.729715012475897e-6 +neutral_A 1.0773191989054437e-4 +neutral_N 3.729715012475897e-6 +neutralism_N 3.729715012475897e-6 +neutralist_N 3.729715012475897e-6 +neutrality_N 3.729715012475897e-6 +neutralization_N 1.118914503742769e-5 +neutralize_V2 3.219730508556434e-5 +neutrino_N 3.729715012475897e-6 +neutron_N 4.475658014971076e-5 +neutropenia_N 3.729715012475897e-6 +neutrophil_N 3.729715012475897e-6 +nevada_PN 1.865462821325971e-5 +neve_N 3.729715012475897e-6 +never_AdV 2.153576300916001e-2 +never_Adv 8.668966832532898e-6 +nevermore_Adv 8.668966832532898e-6 +nevertheless_Adv 3.9877247429651334e-4 +neville_PN 1.865462821325971e-5 +nevirapine_N 3.729715012475897e-6 +new_A 2.0092003059586524e-2 +new_Adv 8.668966832532898e-6 +new_cumnock_PN 1.865462821325971e-5 +new_mills_PN 1.865462821325971e-5 +new_orleans_PN 1.865462821325971e-5 +new_tredegar_PN 1.865462821325971e-5 +new_windsor_PN 1.865462821325971e-5 +new_york_PN 7.107413349251949e-3 +newark_PN 1.865462821325971e-5 +newarthill_PN 1.865462821325971e-5 +newbiggin_PN 1.865462821325971e-5 +newborn_A 1.0773191989054437e-5 +newbury_PN 1.865462821325971e-5 +newcastle_PN 1.865462821325971e-5 +newcastle_under_lyme_PN 1.865462821325971e-5 +newcastle_upon_tyne_PN 1.865462821325971e-5 +newcomer_N 4.475658014971076e-5 +newel_N 3.729715012475897e-6 +newfangled_A 1.0773191989054437e-5 +newfound_A 1.0773191989054437e-5 +newfoundland_PN 1.865462821325971e-5 +newham_PN 1.865462821325971e-5 +newhaven_PN 1.865462821325971e-5 +newlywed_N 3.729715012475897e-6 +newmains_PN 1.865462821325971e-5 +newmarket_N 3.729715012475897e-6 +newmarket_PN 1.865462821325971e-5 +newness_N 3.729715012475897e-6 +newport_PN 1.865462821325971e-5 +newport_pagnell_PN 1.865462821325971e-5 +newquay_PN 1.865462821325971e-5 +newry_PN 1.865462821325971e-5 +news_N 1.2121573790546665e-3 +newsagent_N 3.729715012475897e-6 +newsboy_N 3.729715012475897e-6 +newscast_N 2.6108005087331277e-5 +newscaster_N 3.729715012475897e-6 +newsdealer_N 3.729715012475897e-6 +newsflash_N 3.729715012475897e-6 +newsless_A 1.0773191989054437e-5 +newsletter_N 1.3426974044913228e-4 +newsmonger_N 3.729715012475897e-6 +newspaper_N 6.042138320210953e-4 +newspapering_N 3.729715012475897e-6 +newspaperman_N 3.729715012475897e-6 +newspeak_N 3.729715012475897e-6 +newsprint_N 7.832401526199384e-5 +newsreader_N 3.729715012475897e-6 +newsreel_N 3.729715012475897e-6 +newsroom_N 1.118914503742769e-5 +newssheet_N 3.729715012475897e-6 +newsstand_N 2.237829007485538e-5 +newsvendor_N 3.729715012475897e-6 +newswoman_N 3.729715012475897e-6 +newsworthiness_N 3.729715012475897e-6 +newsworthy_A 3.231957596716331e-5 +newsy_A 1.0773191989054437e-5 +newt_N 3.729715012475897e-6 +newton_N 3.729715012475897e-6 +newton_abbot_PN 1.865462821325971e-5 +newton_aycliffe_PN 1.865462821325971e-5 +newton_le_willows_PN 1.865462821325971e-5 +newton_mearns_PN 1.865462821325971e-5 +newtonian_A 1.0773191989054437e-5 +newtonian_N 3.729715012475897e-6 +newtown_PN 1.865462821325971e-5 +next_A 7.077987136808765e-3 +next_N 3.729715012475897e-6 +next_Prep 9.679189742054583e-4 +next_to_Prep 9.978546125829467e-6 +nexus_N 7.459430024951794e-6 +ngultrum_N 3.729715012475897e-6 +ngwee_N 3.729715012475897e-6 +nhs_N 3.729715012475897e-6 +niacin_N 3.729715012475897e-6 +nib_N 3.729715012475897e-6 +nibbed_A 1.0773191989054437e-5 +nibble_N 7.459430024951794e-6 +nibble_V 4.5357645031069986e-5 +nibble_V2 1.609865254278217e-5 +nibbler_N 3.729715012475897e-6 +niblick_N 3.729715012475897e-6 +nicad_N 3.729715012475897e-6 +nicaragua_PN 5.78293474611051e-4 +nicaraguan_A 1.9391745580297985e-4 +nicaraguan_N 3.729715012475897e-6 +nice_A 3.016493756935242e-4 +nice_PN 1.865462821325971e-5 +niceness_N 3.729715012475897e-6 +nicety_N 3.729715012475897e-6 +niche_N 8.578344528694562e-5 +nicholas_PN 1.865462821325971e-5 +nick_N 3.729715012475897e-6 +nick_PN 1.865462821325971e-5 +nick_V2 3.219730508556434e-5 +nickel_N 2.9837720099807175e-5 +nickel_V2 1.609865254278217e-5 +nicknack_N 3.729715012475897e-6 +nickname_N 3.356743511228307e-5 +nickname_V2 1.609865254278217e-5 +nickname_V3 7.936507936507936e-3 +nicola_PN 1.865462821325971e-5 +nicole_PN 1.865462821325971e-5 +nicotine_N 3.729715012475897e-6 +nidicolous_A 1.0773191989054437e-5 +nidifugous_A 1.0773191989054437e-5 +nidus_N 3.729715012475897e-6 +niece_N 3.729715012475897e-6 +nifedipine_N 3.729715012475897e-6 +niff_N 3.729715012475897e-6 +niffy_A 1.0773191989054437e-5 +nifty_A 3.231957596716331e-5 +nigel_PN 1.865462821325971e-5 +nigella_N 3.729715012475897e-6 +niger_PN 1.865462821325971e-5 +nigeria_PN 9.327314106629855e-5 +nigerian_A 1.0773191989054437e-5 +nigerian_N 3.729715012475897e-6 +nigerien_A 1.0773191989054437e-5 +nigerien_N 3.729715012475897e-6 +niggard_N 3.729715012475897e-6 +niggardliness_N 3.729715012475897e-6 +niggardly_A 1.0773191989054437e-5 +nigger_N 3.729715012475897e-6 +niggle_V 2.2678822515534993e-5 +nigh_Adv 8.668966832532898e-6 +nigher_Adv 8.668966832532898e-6 +nighest_Adv 8.668966832532898e-6 +night_N 5.03511526684246e-4 +night_bell_N 3.729715012475897e-6 +night_bird_N 3.729715012475897e-6 +night_light_N 3.729715012475897e-6 +night_line_N 3.729715012475897e-6 +night_porter_N 3.729715012475897e-6 +night_soil_N 3.729715012475897e-6 +night_stop_N 3.729715012475897e-6 +night_time_N 3.729715012475897e-6 +night_watch_N 3.729715012475897e-6 +night_watchman_N 3.729715012475897e-6 +nightcap_N 3.729715012475897e-6 +nightclub_N 1.4918860049903587e-5 +nightdress_N 3.729715012475897e-6 +nightfall_N 3.729715012475897e-6 +nightgown_N 3.729715012475897e-6 +nighthawk_N 3.729715012475897e-6 +nightie_N 3.729715012475897e-6 +nightingale_N 3.729715012475897e-6 +nightjar_N 3.729715012475897e-6 +nightlife_N 3.729715012475897e-6 +nightlong_A 1.0773191989054437e-5 +nightly_A 4.309276795621775e-5 +nightly_Adv 1.7337933665065797e-5 +nightmare_N 3.356743511228307e-5 +nightmarish_A 1.0773191989054437e-5 +nightshade_N 3.729715012475897e-6 +nightshirt_N 3.729715012475897e-6 +nightwear_N 3.729715012475897e-6 +nightwork_N 3.729715012475897e-6 +nihil_N 3.729715012475897e-6 +nihilism_N 3.729715012475897e-6 +nihilist_N 3.729715012475897e-6 +nihilistic_A 1.0773191989054437e-5 +nijmegen_PN 1.865462821325971e-5 +nil_N 3.729715012475897e-6 +nilgai_N 3.729715012475897e-6 +nilotic_A 1.0773191989054437e-5 +nilpotent_A 1.0773191989054437e-5 +nim_N 3.729715012475897e-6 +nimble_A 2.1546383978108874e-5 +nimbleness_N 3.729715012475897e-6 +nimblewill_N 3.729715012475897e-6 +nimbus_N 3.729715012475897e-6 +niminy_piminy_A 1.0773191989054437e-5 +nimrod_PN 1.865462821325971e-5 +nincompoop_N 3.729715012475897e-6 +ninefold_A 1.0773191989054437e-5 +ninefold_Adv 1.7337933665065797e-5 +ninepence_N 3.729715012475897e-6 +ninepenny_A 1.0773191989054437e-5 +ninepin_N 3.729715012475897e-6 +ninepins_N 3.729715012475897e-6 +ninja_N 3.729715012475897e-6 +ninjutsu_N 3.729715012475897e-6 +ninny_N 3.729715012475897e-6 +ninon_N 3.729715012475897e-6 +ninth_A 1.0773191989054437e-5 +ninth_N 3.729715012475897e-6 +niobe_PN 1.865462821325971e-5 +niobite_N 3.729715012475897e-6 +niobium_N 3.729715012475897e-6 +nip_N 3.729715012475897e-6 +nip_V 2.2678822515534993e-5 +nip_V2 1.609865254278217e-5 +nip_off_V 2.2678822515534993e-5 +nip_out_V 2.2678822515534993e-5 +nipa_N 3.729715012475897e-6 +nipper_N 3.729715012475897e-6 +nipple_N 3.729715012475897e-6 +nipponese_A 3.231957596716331e-5 +nippy_A 1.0773191989054437e-5 +niqaabi_N 3.729715012475897e-6 +niqab_N 3.729715012475897e-6 +nirvana_N 3.729715012475897e-6 +nisi_A 1.0773191989054437e-5 +nissen_PN 1.865462821325971e-5 +nit_N 3.729715012475897e-6 +nitpicker_N 3.729715012475897e-6 +nitrate_N 3.729715012475897e-6 +nitrazepam_N 3.729715012475897e-6 +nitre_N 3.729715012475897e-6 +nitric_A 1.0773191989054437e-5 +nitride_N 3.729715012475897e-6 +nitrification_N 3.729715012475897e-6 +nitrile_N 3.729715012475897e-6 +nitrite_N 3.729715012475897e-6 +nitrobacterium_N 3.729715012475897e-6 +nitrobenzene_N 3.729715012475897e-6 +nitrocalcite_N 3.729715012475897e-6 +nitrochalk_N 3.729715012475897e-6 +nitrochloromethane_N 3.729715012475897e-6 +nitrofuran_N 3.729715012475897e-6 +nitrofurantoin_N 3.729715012475897e-6 +nitrogen_N 1.118914503742769e-5 +nitrogenase_N 3.729715012475897e-6 +nitrogenous_A 1.0773191989054437e-5 +nitroglycerin_N 3.729715012475897e-6 +nitroglycerine_N 3.729715012475897e-6 +nitrosobacteria_N 3.729715012475897e-6 +nitrous_A 1.0773191989054437e-5 +nitty_gritty_N 3.729715012475897e-6 +nitwit_N 3.729715012475897e-6 +nitwitted_A 1.0773191989054437e-5 +nix_N 3.729715012475897e-6 +nix_V2 3.219730508556434e-5 +no_Interj 0.12213740458015267 +no_Quant 5.32530397852915e-3 +no_ball_N 3.729715012475897e-6 +no_fewer_than_AdN 3.194888178913738e-3 +no_go_A 1.0773191989054437e-5 +no_longer_AdV 4.482557006431495e-3 +no_man's_land_N 3.729715012475897e-6 +no_more_than_AdN 1.597444089456869e-3 +noah_PN 1.865462821325971e-5 +nob_N 3.729715012475897e-6 +nobble_V2 1.609865254278217e-5 +nobel_PN 1.865462821325971e-5 +nobelium_N 3.729715012475897e-6 +nobility_N 7.459430024951794e-6 +noble_A 5.3865959945272184e-5 +noble_N 3.729715012475897e-6 +noble_mindedness_N 3.729715012475897e-6 +nobleman_N 7.459430024951794e-6 +noblesse_N 3.729715012475897e-6 +noblesse_oblige_N 3.729715012475897e-6 +nobody_NP 1.0102333912169763e-4 +nocent_A 1.0773191989054437e-5 +nociceptive_A 1.0773191989054437e-5 +noctambulist_N 3.729715012475897e-6 +noctiluca_N 3.729715012475897e-6 +noctilucent_A 1.0773191989054437e-5 +nocturia_N 3.729715012475897e-6 +nocturnal_A 1.0773191989054437e-5 +nocturne_N 3.729715012475897e-6 +nod_N 1.118914503742769e-5 +nod_V 4.5357645031069986e-5 +nod_V2 3.219730508556434e-5 +nod_off_V 2.2678822515534993e-5 +nod_through_V2 1.609865254278217e-5 +noddle_N 3.729715012475897e-6 +node_N 3.729715012475897e-6 +nodular_A 1.0773191989054437e-5 +nodulated_A 1.0773191989054437e-5 +nodule_N 3.729715012475897e-6 +nodulose_A 1.0773191989054437e-5 +noel_N 3.729715012475897e-6 +noel_PN 1.865462821325971e-5 +nog_N 3.729715012475897e-6 +noggin_N 3.729715012475897e-6 +nogging_N 3.729715012475897e-6 +nohow_Adv 8.668966832532898e-6 +noise_N 2.9837720099807175e-5 +noise_V2 1.609865254278217e-5 +noiseless_A 1.0773191989054437e-5 +noiselessness_N 3.729715012475897e-6 +noisemaker_N 3.729715012475897e-6 +noisiness_N 3.729715012475897e-6 +noisome_A 1.0773191989054437e-5 +noisy_A 1.0773191989054437e-5 +nom_de_plume_N 3.729715012475897e-6 +noma_N 3.729715012475897e-6 +nomad_N 3.729715012475897e-6 +nomadic_A 1.0773191989054437e-5 +nombril_N 3.729715012475897e-6 +nomenclature_N 3.729715012475897e-6 +nomenklatura_N 3.729715012475897e-6 +nomia_N 3.729715012475897e-6 +nominal_A 1.6159787983581657e-4 +nominalism_N 3.729715012475897e-6 +nominalist_N 3.729715012475897e-6 +nominalistic_A 1.0773191989054437e-5 +nominate_V2 1.4488787288503951e-4 +nomination_N 4.848629516218666e-5 +nominative_A 1.0773191989054437e-5 +nominative_N 3.729715012475897e-6 +nominator_N 3.729715012475897e-6 +nominee_N 4.848629516218666e-5 +nomogram_N 3.729715012475897e-6 +nomothetic_A 1.0773191989054437e-5 +non_compliance_N 3.729715012475897e-6 +non_compos_mentis_A 1.0773191989054437e-5 +non_contentious_A 1.0773191989054437e-5 +non_interference_N 3.729715012475897e-6 +non_sequitur_N 3.729715012475897e-6 +non_skid_A 1.0773191989054437e-5 +non_u_A 1.0773191989054437e-5 +nonabsorbency_N 3.729715012475897e-6 +nonabsorbent_A 1.0773191989054437e-5 +nonacceptance_N 3.729715012475897e-6 +nonaccomplishment_N 3.729715012475897e-6 +nonaddictive_A 1.0773191989054437e-5 +nonadhesive_A 1.0773191989054437e-5 +nonadjacent_A 1.0773191989054437e-5 +nonadsorbent_A 1.0773191989054437e-5 +nonage_N 3.729715012475897e-6 +nonagenarian_A 1.0773191989054437e-5 +nonagenarian_N 3.729715012475897e-6 +nonaggression_N 3.729715012475897e-6 +nonagon_N 3.729715012475897e-6 +nonalcoholic_A 1.0773191989054437e-5 +nonaligned_A 1.0773191989054437e-5 +nonalignment_N 3.729715012475897e-6 +nonallele_N 3.729715012475897e-6 +nonappearance_N 3.729715012475897e-6 +nonappointive_A 1.0773191989054437e-5 +nonarbitrable_A 1.0773191989054437e-5 +nonarbitrary_A 1.0773191989054437e-5 +nonarboreal_A 1.0773191989054437e-5 +nonassertive_A 1.0773191989054437e-5 +nonassociative_A 1.0773191989054437e-5 +nonastringent_A 1.0773191989054437e-5 +nonattendance_N 3.729715012475897e-6 +nonautonomous_A 1.0773191989054437e-5 +nonbearing_A 1.0773191989054437e-5 +nonbeing_N 3.729715012475897e-6 +nonbelligerent_A 1.0773191989054437e-5 +noncaloric_A 1.0773191989054437e-5 +noncandidate_N 3.729715012475897e-6 +noncarbonated_A 1.0773191989054437e-5 +noncausative_A 1.0773191989054437e-5 +nonce_N 3.729715012475897e-6 +nonce_word_N 3.729715012475897e-6 +noncellular_A 1.0773191989054437e-5 +nonchalance_N 3.729715012475897e-6 +nonchalant_A 1.0773191989054437e-5 +noncivilized_A 1.0773191989054437e-5 +nonclassical_A 1.0773191989054437e-5 +noncollapsible_A 1.0773191989054437e-5 +noncolumned_A 1.0773191989054437e-5 +noncombatant_A 1.0773191989054437e-5 +noncombatant_N 3.729715012475897e-6 +noncombinative_A 1.0773191989054437e-5 +noncombining_A 1.0773191989054437e-5 +noncombustible_A 1.0773191989054437e-5 +noncommercial_A 1.0773191989054437e-5 +noncommissioned_A 1.0773191989054437e-5 +noncommittal_A 2.1546383978108874e-5 +noncommunicable_A 1.0773191989054437e-5 +noncompetitive_A 1.0773191989054437e-5 +noncomprehensive_A 1.0773191989054437e-5 +nonconductive_A 1.0773191989054437e-5 +nonconductor_N 3.729715012475897e-6 +nonconforming_A 1.0773191989054437e-5 +nonconformism_N 3.729715012475897e-6 +nonconformist_A 1.0773191989054437e-5 +nonconformist_N 7.459430024951794e-6 +nonconformity_N 3.729715012475897e-6 +nonconscious_A 1.0773191989054437e-5 +noncontentious_A 1.0773191989054437e-5 +nonconvergent_A 1.0773191989054437e-5 +noncritical_A 1.0773191989054437e-5 +noncrucial_A 1.0773191989054437e-5 +noncrystalline_A 1.0773191989054437e-5 +noncurrent_A 1.0773191989054437e-5 +noncyclic_A 1.0773191989054437e-5 +nondeductible_A 1.0773191989054437e-5 +nondenominational_A 1.0773191989054437e-5 +nondescript_A 3.231957596716331e-5 +nondescript_N 3.729715012475897e-6 +nondevelopment_N 3.729715012475897e-6 +nondigestible_A 1.0773191989054437e-5 +nondisjunction_N 3.729715012475897e-6 +nondisposable_A 1.0773191989054437e-5 +nondriver_N 3.729715012475897e-6 +none_A 1.0773191989054437e-5 +none_Adv 8.668966832532898e-6 +nonechoic_A 1.0773191989054437e-5 +noneffervescent_A 1.0773191989054437e-5 +nonelective_A 1.0773191989054437e-5 +nonentity_N 7.459430024951794e-6 +nonenzymatic_A 1.0773191989054437e-5 +nonequivalence_N 3.729715012475897e-6 +nonequivalent_A 1.0773191989054437e-5 +nones_N 3.729715012475897e-6 +nonesuch_N 3.729715012475897e-6 +nonevent_N 7.459430024951794e-6 +nonexempt_A 1.0773191989054437e-5 +nonexistence_N 3.729715012475897e-6 +nonexistent_A 1.0773191989054437e-5 +nonexploratory_A 1.0773191989054437e-5 +nonexplosive_A 1.0773191989054437e-5 +nonextant_A 1.0773191989054437e-5 +nonextensile_A 1.0773191989054437e-5 +nonfat_A 1.0773191989054437e-5 +nonfatal_A 1.0773191989054437e-5 +nonfeasance_N 3.729715012475897e-6 +nonfiction_N 1.118914503742769e-5 +nonfictional_A 1.0773191989054437e-5 +nonfinancial_A 1.0773191989054437e-5 +nonfissile_A 1.0773191989054437e-5 +nonfissionable_A 1.0773191989054437e-5 +nonflammable_A 2.1546383978108874e-5 +nonfunctional_A 1.0773191989054437e-5 +nonglutinous_A 1.0773191989054437e-5 +nongranular_A 1.0773191989054437e-5 +nongregarious_A 1.0773191989054437e-5 +nonhairy_A 1.0773191989054437e-5 +nonharmonic_A 1.0773191989054437e-5 +nonhereditary_A 1.0773191989054437e-5 +nonhierarchical_A 1.0773191989054437e-5 +nonhuman_A 1.0773191989054437e-5 +nonimitative_A 1.0773191989054437e-5 +nonindulgent_A 1.0773191989054437e-5 +nonindustrial_A 1.0773191989054437e-5 +noninfectious_A 1.0773191989054437e-5 +noninflammatory_A 1.0773191989054437e-5 +noninheritable_A 1.0773191989054437e-5 +noninstitutional_A 1.0773191989054437e-5 +noninstitutionalized_A 1.0773191989054437e-5 +nonintegrated_A 1.0773191989054437e-5 +nonintellectual_A 1.0773191989054437e-5 +noninterchangeable_A 1.0773191989054437e-5 +nonintervention_N 7.459430024951794e-6 +noninvasive_A 1.0773191989054437e-5 +nonionic_A 1.0773191989054437e-5 +nonionized_A 1.0773191989054437e-5 +nonjudgmental_A 1.0773191989054437e-5 +nonkosher_A 1.0773191989054437e-5 +nonlethal_A 1.0773191989054437e-5 +nonlexical_A 1.0773191989054437e-5 +nonlinear_A 1.0773191989054437e-5 +nonlinguistic_A 1.0773191989054437e-5 +nonmagnetic_A 1.0773191989054437e-5 +nonmandatory_A 1.0773191989054437e-5 +nonmechanical_A 1.0773191989054437e-5 +nonmechanistic_A 1.0773191989054437e-5 +nonmember_N 3.729715012475897e-6 +nonmetal_N 3.729715012475897e-6 +nonmetallic_A 1.0773191989054437e-5 +nonmetamorphic_A 1.0773191989054437e-5 +nonmigratory_A 1.0773191989054437e-5 +nonmodern_A 1.0773191989054437e-5 +nonmonotonic_A 1.0773191989054437e-5 +nonmoral_A 1.0773191989054437e-5 +nonmotile_A 1.0773191989054437e-5 +nonmoving_A 1.0773191989054437e-5 +nonnative_A 1.0773191989054437e-5 +nonnatural_A 1.0773191989054437e-5 +nonnegative_A 1.0773191989054437e-5 +nonnomadic_A 1.0773191989054437e-5 +nonnormative_A 1.0773191989054437e-5 +nonobservance_N 3.729715012475897e-6 +nonobservant_A 1.0773191989054437e-5 +nonoccurrence_N 3.729715012475897e-6 +nonopening_A 1.0773191989054437e-5 +nonoperational_A 1.0773191989054437e-5 +nonoscillatory_A 1.0773191989054437e-5 +nonparallel_A 1.0773191989054437e-5 +nonparametric_A 1.0773191989054437e-5 +nonpareil_A 1.0773191989054437e-5 +nonpareil_N 3.729715012475897e-6 +nonparticipant_N 3.729715012475897e-6 +nonparticulate_A 1.0773191989054437e-5 +nonpartisan_A 1.0773191989054437e-5 +nonpartisan_N 3.729715012475897e-6 +nonpasserine_A 1.0773191989054437e-5 +nonpayment_N 3.729715012475897e-6 +nonperson_N 3.729715012475897e-6 +nonpersonal_A 1.0773191989054437e-5 +nonphotosynthetic_A 1.0773191989054437e-5 +nonplus_V2 1.609865254278217e-5 +nonpoisonous_A 1.0773191989054437e-5 +nonpolitical_A 1.0773191989054437e-5 +nonporous_A 1.0773191989054437e-5 +nonpregnant_A 1.0773191989054437e-5 +nonprehensile_A 1.0773191989054437e-5 +nonproductive_A 1.0773191989054437e-5 +nonprofessional_A 1.0773191989054437e-5 +nonprofit_A 1.0773191989054437e-5 +nonprognosticative_A 1.0773191989054437e-5 +nonproliferation_N 3.729715012475897e-6 +nonproprietary_A 1.0773191989054437e-5 +nonpsychoactive_A 1.0773191989054437e-5 +nonpublic_A 1.0773191989054437e-5 +nonpurulent_A 1.0773191989054437e-5 +nonracial_A 1.0773191989054437e-5 +nonradioactive_A 1.0773191989054437e-5 +nonrandom_A 1.0773191989054437e-5 +nonrational_A 1.0773191989054437e-5 +nonreader_N 3.729715012475897e-6 +nonreciprocal_A 1.0773191989054437e-5 +nonreciprocating_A 1.0773191989054437e-5 +nonrecreational_A 1.0773191989054437e-5 +nonreflective_A 1.0773191989054437e-5 +nonrepetitive_A 1.0773191989054437e-5 +nonrepresentational_A 1.0773191989054437e-5 +nonrepresentative_A 1.0773191989054437e-5 +nonresident_A 3.231957596716331e-5 +nonresident_N 3.729715012475897e-6 +nonresidential_A 1.0773191989054437e-5 +nonresilient_A 1.0773191989054437e-5 +nonresinous_A 1.0773191989054437e-5 +nonresistance_N 3.729715012475897e-6 +nonresistant_A 1.0773191989054437e-5 +nonrestrictive_A 1.0773191989054437e-5 +nonreticulate_A 1.0773191989054437e-5 +nonretractile_A 1.0773191989054437e-5 +nonreturnable_A 1.0773191989054437e-5 +nonreversible_A 1.0773191989054437e-5 +nonrhythmic_A 1.0773191989054437e-5 +nonrigid_A 1.0773191989054437e-5 +nonruminant_A 1.0773191989054437e-5 +nonsectarian_A 1.0773191989054437e-5 +nonsense_N 2.6108005087331277e-5 +nonsensical_A 1.0773191989054437e-5 +nonsensitive_A 1.0773191989054437e-5 +nonsignificant_A 1.0773191989054437e-5 +nonskid_A 1.0773191989054437e-5 +nonslip_A 1.0773191989054437e-5 +nonslippery_A 1.0773191989054437e-5 +nonsmoker_N 3.729715012475897e-6 +nonspatial_A 1.0773191989054437e-5 +nonspeaking_A 1.0773191989054437e-5 +nonspecific_A 1.0773191989054437e-5 +nonspecifically_Adv 8.668966832532898e-6 +nonspherical_A 1.0773191989054437e-5 +nonstandard_A 1.0773191989054437e-5 +nonstarter_N 3.729715012475897e-6 +nonsteroid_N 3.729715012475897e-6 +nonsteroidal_A 1.0773191989054437e-5 +nonstick_A 1.0773191989054437e-5 +nonstop_A 4.309276795621775e-5 +nonstop_Adv 8.668966832532898e-6 +nonstructural_A 1.0773191989054437e-5 +nonsubmersible_A 1.0773191989054437e-5 +nonsuch_N 3.729715012475897e-6 +nonsuppurative_A 1.0773191989054437e-5 +nonsurgical_A 1.0773191989054437e-5 +nonsyllabic_A 1.0773191989054437e-5 +nonsynchronous_A 1.0773191989054437e-5 +nonsynthetic_A 1.0773191989054437e-5 +nontaxable_A 1.0773191989054437e-5 +nontechnical_A 1.0773191989054437e-5 +nontelescopic_A 1.0773191989054437e-5 +nonterritorial_A 1.0773191989054437e-5 +nonthermal_A 1.0773191989054437e-5 +nontoxic_A 1.0773191989054437e-5 +nontraditional_A 1.0773191989054437e-5 +nontransferable_A 1.0773191989054437e-5 +nontranslational_A 1.0773191989054437e-5 +nontricyclic_N 3.729715012475897e-6 +nonturbulent_A 1.0773191989054437e-5 +nonuniformity_N 3.729715012475897e-6 +nonunion_A 4.309276795621775e-5 +nonuple_A 1.0773191989054437e-5 +nonvenomous_A 1.0773191989054437e-5 +nonverbal_A 1.0773191989054437e-5 +nonviable_A 1.0773191989054437e-5 +nonviolence_N 3.729715012475897e-6 +nonviolent_A 1.0773191989054437e-5 +nonvisual_A 1.0773191989054437e-5 +nonvolatile_A 1.0773191989054437e-5 +nonwashable_A 1.0773191989054437e-5 +nonwoody_A 1.0773191989054437e-5 +nonworker_N 3.729715012475897e-6 +noodle_N 1.118914503742769e-5 +nook_N 3.729715012475897e-6 +noon_N 4.1026865137234865e-5 +noonday_A 1.0773191989054437e-5 +noontide_N 3.729715012475897e-6 +noose_N 3.729715012475897e-6 +noose_V2 1.609865254278217e-5 +nopal_N 3.729715012475897e-6 +nope_Interj 1.5267175572519083e-2 +nor'_east_Adv 8.668966832532898e-6 +nor'_east_N 3.729715012475897e-6 +nor'_nor'_east_Adv 8.668966832532898e-6 +nor'_nor'_east_N 3.729715012475897e-6 +nor'_nor'_west_Adv 8.668966832532898e-6 +nor'_nor'_west_N 3.729715012475897e-6 +nor'_west_Adv 8.668966832532898e-6 +nor'_west_N 3.729715012475897e-6 +nor_Conj 4.0043246706442956e-5 +nora_PN 1.865462821325971e-5 +noradrenaline_N 3.729715012475897e-6 +nordic_A 1.0773191989054437e-5 +nordic_N 3.729715012475897e-6 +norethindrone_N 3.729715012475897e-6 +norethynodrel_N 3.729715012475897e-6 +norfolk_PN 1.865462821325971e-5 +norgestrel_N 3.729715012475897e-6 +noria_N 3.729715012475897e-6 +norm_N 3.356743511228307e-5 +normal_A 1.2496902707303146e-3 +normal_N 3.729715012475897e-6 +normalcy_N 2.6108005087331277e-5 +normality_N 3.729715012475897e-6 +normalization_N 3.729715012475897e-6 +normalize_V2 3.219730508556434e-5 +normalizer_N 3.729715012475897e-6 +norman_A 1.0773191989054437e-5 +norman_N 3.729715012475897e-6 +norman_PN 1.865462821325971e-5 +normanton_PN 1.865462821325971e-5 +normantown_PN 1.865462821325971e-5 +normative_A 1.0773191989054437e-5 +normotensive_A 1.0773191989054437e-5 +normothermia_N 3.729715012475897e-6 +norse_A 1.0773191989054437e-5 +norse_N 3.729715012475897e-6 +north_A 3.44742143649742e-4 +north_Adv 1.0402760199039479e-4 +north_N 2.237829007485538e-5 +north_northeast_Adv 8.668966832532898e-6 +north_northeast_N 3.729715012475897e-6 +north_northwest_Adv 8.668966832532898e-6 +north_northwest_N 3.729715012475897e-6 +north_walsham_PN 1.865462821325971e-5 +northallerton_PN 1.865462821325971e-5 +northam_PN 1.865462821325971e-5 +northampton_PN 5.596388463977913e-5 +northamptonshire_PN 1.865462821325971e-5 +northbound_A 1.0773191989054437e-5 +northeast_Adv 4.33448341626645e-5 +northeast_N 2.9837720099807175e-5 +northeaster_N 3.729715012475897e-6 +northeasterly_A 1.0773191989054437e-5 +northeastern_A 2.1546383978108874e-5 +northeastward_A 1.0773191989054437e-5 +northeastward_Adv 8.668966832532898e-6 +northerly_A 1.0773191989054437e-5 +northerly_Adv 8.668966832532898e-6 +northern_A 4.2015448757312305e-4 +northerner_N 3.729715012475897e-6 +northernmost_A 1.0773191989054437e-5 +northernness_N 3.729715012475897e-6 +northland_N 3.729715012475897e-6 +northman_N 3.729715012475897e-6 +northumberland_PN 1.865462821325971e-5 +northwards_Adv 8.668966832532898e-6 +northwest_Adv 1.7337933665065797e-5 +northwest_N 7.459430024951794e-6 +northwester_N 3.729715012475897e-6 +northwesterly_A 1.0773191989054437e-5 +northwestern_A 1.0773191989054437e-5 +northwestward_A 1.0773191989054437e-5 +northwestward_Adv 8.668966832532898e-6 +northwich_PN 1.865462821325971e-5 +norton_PN 1.865462821325971e-5 +nortriptyline_N 3.729715012475897e-6 +norway_PN 1.678916539193374e-4 +norwegian_A 7.541234392338106e-5 +norwegian_N 3.729715012475897e-6 +norwich_PN 1.865462821325971e-5 +nose_N 5.967544019961435e-5 +nose_V 2.2678822515534993e-5 +nose_V2 1.609865254278217e-5 +nose_about_V 2.2678822515534993e-5 +nose_around_V 2.2678822515534993e-5 +nose_around_V2 1.609865254278217e-5 +nose_flute_N 3.729715012475897e-6 +nose_out_V2 1.609865254278217e-5 +nose_wheel_N 3.729715012475897e-6 +nosebag_N 3.729715012475897e-6 +noseband_N 3.729715012475897e-6 +nosebleed_N 3.729715012475897e-6 +nosecone_N 3.729715012475897e-6 +nosedive_N 7.459430024951794e-6 +nosedive_V 4.5357645031069986e-5 +nosegay_N 3.729715012475897e-6 +noseless_A 1.0773191989054437e-5 +nosepiece_N 3.729715012475897e-6 +nosering_N 3.729715012475897e-6 +nosewheel_N 3.729715012475897e-6 +nosey_A 1.0773191989054437e-5 +nosh_N 3.729715012475897e-6 +nosh_V 2.2678822515534993e-5 +nosh_up_N 3.729715012475897e-6 +nosher_N 3.729715012475897e-6 +nosiness_N 3.729715012475897e-6 +nosocomial_A 1.0773191989054437e-5 +nosohusial_A 1.0773191989054437e-5 +nosology_N 3.729715012475897e-6 +nostalgia_N 1.8648575062379485e-5 +nostalgic_A 6.463915193432663e-5 +nostalgically_Adv 8.668966832532898e-6 +nostoc_N 3.729715012475897e-6 +nostril_N 3.729715012475897e-6 +nostrum_N 3.729715012475897e-6 +nosy_A 1.0773191989054437e-5 +not_Adv 8.244187457738786e-3 +notability_N 3.729715012475897e-6 +notable_A 3.3396895166068756e-4 +notable_N 3.729715012475897e-6 +notary_N 3.729715012475897e-6 +notation_N 3.729715012475897e-6 +notch_N 1.118914503742769e-5 +notch_V2 6.439461017112868e-5 +note_N 1.2681031042418049e-3 +note_V 6.350070304349798e-4 +note_V2 4.8295957628346505e-4 +note_VS 1.4613296366891931e-2 +note_down_V2 1.609865254278217e-5 +notebook_N 6.713487022456614e-5 +notecase_N 3.729715012475897e-6 +notepad_N 3.729715012475897e-6 +notepaper_N 3.729715012475897e-6 +noteworthy_A 2.1546383978108874e-5 +nothing_Adv 8.668966832532898e-6 +nothing_N 3.729715012475897e-6 +nothing_NP 2.894182147810797e-4 +nothingness_N 3.729715012475897e-6 +nothings_N 3.729715012475897e-6 +nothosaur_N 3.729715012475897e-6 +notice_N 8.205373027446973e-5 +notice_V 1.5875175760874494e-4 +notice_V2 1.7708517797060386e-4 +notice_VS 4.6208051753017965e-4 +notice_board_N 3.729715012475897e-6 +noticeable_A 5.3865959945272184e-5 +noticer_N 3.729715012475897e-6 +notifiable_A 1.0773191989054437e-5 +notification_N 4.475658014971076e-5 +notify_V2 5.151568813690294e-4 +notion_N 1.1562116538675279e-4 +notional_A 1.0773191989054437e-5 +notochord_N 3.729715012475897e-6 +notoriety_N 1.118914503742769e-5 +notorious_A 1.0773191989054437e-4 +notornis_N 3.729715012475897e-6 +nottingham_PN 1.865462821325971e-5 +nottinghamshire_PN 1.865462821325971e-5 +notwithstanding_Adv 2.6006900497598697e-5 +notwithstanding_Prep 7.982836900663574e-5 +nougat_N 3.729715012475897e-6 +nought_N 3.729715012475897e-6 +noumenon_N 3.729715012475897e-6 +noun_N 3.729715012475897e-6 +nourish_V2 1.609865254278217e-5 +nourishment_N 3.729715012475897e-6 +nous_N 3.729715012475897e-6 +nouveau_riche_N 3.729715012475897e-6 +nov_PN 1.865462821325971e-5 +nova_N 3.729715012475897e-6 +nova_scotia_PN 1.865462821325971e-5 +novara_PN 1.865462821325971e-5 +novation_N 3.729715012475897e-6 +novel_A 4.309276795621775e-5 +novel_N 1.4172917047408407e-4 +novelette_N 3.729715012475897e-6 +novelist_N 2.9837720099807175e-5 +novelization_N 3.729715012475897e-6 +novelty_N 1.4918860049903587e-5 +november_N 3.729715012475897e-6 +november_PN 5.036749617580122e-4 +novena_N 3.729715012475897e-6 +novice_N 7.459430024951794e-6 +noviciate_N 3.729715012475897e-6 +novillada_N 3.729715012475897e-6 +novillero_N 3.729715012475897e-6 +novitiate_N 1.118914503742769e-5 +novobiocin_N 3.729715012475897e-6 +novokuznetsk_PN 1.865462821325971e-5 +novosibirsk_PN 1.865462821325971e-5 +now_AdV 3.264470863379458e-2 +now_Adv 6.024931948610365e-3 +now_N 3.729715012475897e-6 +nowadays_Adv 3.4675867330131594e-5 +nowhere_Adv 7.802070149279609e-5 +nowhere_N 3.729715012475897e-6 +nowise_Adv 8.668966832532898e-6 +noxious_A 1.0773191989054437e-5 +noxiousness_N 3.729715012475897e-6 +nozzle_N 1.118914503742769e-5 +nr_PN 1.865462821325971e-5 +nspcc_N 3.729715012475897e-6 +nt_N 3.729715012475897e-6 +nth_A 1.0773191989054437e-5 +nu_N 3.729715012475897e-6 +nuance_N 2.6108005087331277e-5 +nub_N 3.729715012475897e-6 +nubbin_N 3.729715012475897e-6 +nubile_A 1.0773191989054437e-5 +nucellus_N 3.729715012475897e-6 +nuclear_A 5.602059834308307e-4 +nuclease_N 3.729715012475897e-6 +nucleated_A 1.0773191989054437e-5 +nucleic_A 1.0773191989054437e-5 +nucleolus_N 3.729715012475897e-6 +nucleon_N 3.729715012475897e-6 +nucleoplasm_N 3.729715012475897e-6 +nucleoprotein_N 3.729715012475897e-6 +nucleoside_N 3.729715012475897e-6 +nucleosynthesis_N 3.729715012475897e-6 +nucleotide_N 3.729715012475897e-6 +nucleus_N 7.459430024951794e-6 +nude_A 3.231957596716331e-5 +nude_N 3.729715012475897e-6 +nudge_N 7.459430024951794e-6 +nudge_V2 3.219730508556434e-5 +nudger_N 3.729715012475897e-6 +nudism_N 3.729715012475897e-6 +nudist_N 3.729715012475897e-6 +nudity_N 3.729715012475897e-6 +nudnik_N 3.729715012475897e-6 +nugatory_A 1.0773191989054437e-5 +nugget_N 3.729715012475897e-6 +nuisance_N 1.118914503742769e-5 +null_A 1.0773191989054437e-5 +nullah_N 3.729715012475897e-6 +nullification_N 3.729715012475897e-6 +nullifier_N 3.729715012475897e-6 +nullify_V2 1.1269056779947518e-4 +nullipara_N 3.729715012475897e-6 +nullity_N 3.729715012475897e-6 +num 1.0 +numb_A 2.1546383978108874e-5 +numb_V2 1.609865254278217e-5 +numbat_N 3.729715012475897e-6 +number_N 1.738047195813768e-3 +number_V2 1.2878922034225736e-4 +numberless_A 1.0773191989054437e-5 +numberplate_N 3.729715012475897e-6 +numbing_A 1.0773191989054437e-5 +numbness_N 3.729715012475897e-6 +numdah_N 3.729715012475897e-6 +numen_N 3.729715012475897e-6 +numerable_A 1.0773191989054437e-5 +numeracy_N 3.729715012475897e-6 +numeral_A 1.0773191989054437e-5 +numeral_N 7.459430024951794e-6 +numerate_A 1.0773191989054437e-5 +numeration_N 3.729715012475897e-6 +numerator_N 7.459430024951794e-6 +numeric_A 1.0773191989054437e-5 +numerical_A 5.3865959945272184e-5 +numerological_A 1.0773191989054437e-5 +numerologist_N 3.729715012475897e-6 +numerology_N 3.729715012475897e-6 +numerous_A 4.7402044751839524e-4 +numerousness_N 3.729715012475897e-6 +numinous_A 1.0773191989054437e-5 +numismatics_N 3.729715012475897e-6 +numismatist_N 3.729715012475897e-6 +nummulite_N 3.729715012475897e-6 +numskull_N 3.729715012475897e-6 +nun_N 7.459430024951794e-6 +nuncio_N 3.729715012475897e-6 +nuneaton_PN 1.865462821325971e-5 +nunnery_N 3.729715012475897e-6 +nuptial_A 1.0773191989054437e-5 +nurenburg_PN 1.865462821325971e-5 +nurse_N 4.475658014971076e-5 +nurse_V2 8.049326271391085e-5 +nurseling_N 3.729715012475897e-6 +nursemaid_N 3.729715012475897e-6 +nurser_N 3.729715012475897e-6 +nursery_N 2.237829007485538e-5 +nurseryman_N 3.729715012475897e-6 +nursing_N 3.729715012475897e-6 +nursing_home_N 3.729715012475897e-6 +nursling_N 3.729715012475897e-6 +nurtural_A 1.0773191989054437e-5 +nurturance_N 3.729715012475897e-6 +nurturant_A 1.0773191989054437e-5 +nurture_N 3.729715012475897e-6 +nurture_V2 6.439461017112868e-5 +nut_N 1.4918860049903587e-5 +nut_V 2.2678822515534993e-5 +nut_brown_A 1.0773191989054437e-5 +nut_butter_N 3.729715012475897e-6 +nut_out_V2 1.609865254278217e-5 +nutation_N 3.729715012475897e-6 +nutbrown_A 1.0773191989054437e-5 +nutcracker_N 3.729715012475897e-6 +nutgrass_N 3.729715012475897e-6 +nuthatch_N 3.729715012475897e-6 +nuthouse_N 3.729715012475897e-6 +nutlet_N 3.729715012475897e-6 +nutlike_A 1.0773191989054437e-5 +nutmeg_N 3.729715012475897e-6 +nutria_N 3.729715012475897e-6 +nutrient_A 1.0773191989054437e-5 +nutrient_N 7.459430024951794e-6 +nutriment_N 3.729715012475897e-6 +nutrition_N 1.4918860049903587e-5 +nutritional_A 2.1546383978108874e-5 +nutritious_A 1.0773191989054437e-5 +nutritiousness_N 3.729715012475897e-6 +nutritive_A 1.0773191989054437e-5 +nuts_A 1.0773191989054437e-5 +nutshell_N 7.459430024951794e-6 +nutter_N 3.729715012475897e-6 +nutty_A 2.1546383978108874e-5 +nuzzle_V 2.2678822515534993e-5 +nuzzle_V2 1.609865254278217e-5 +nyala_N 3.729715012475897e-6 +nybble_N 3.729715012475897e-6 +nyctalopia_N 3.729715012475897e-6 +nyctophobia_N 3.729715012475897e-6 +nylon_N 3.729715012475897e-6 +nylons_N 3.729715012475897e-6 +nymph_N 3.729715012475897e-6 +nymphalid_N 3.729715012475897e-6 +nymphet_N 3.729715012475897e-6 +nympho_N 3.729715012475897e-6 +nympholepsy_N 3.729715012475897e-6 +nympholept_N 3.729715012475897e-6 +nymphomania_N 3.729715012475897e-6 +nymphomaniac_A 1.0773191989054437e-5 +nymphomaniac_N 3.729715012475897e-6 +nymphomaniacal_A 1.0773191989054437e-5 +nystagmus_N 3.729715012475897e-6 +nystatin_N 3.729715012475897e-6 +o'er_Adv 8.668966832532898e-6 +o_level_N 3.729715012475897e-6 +oaf_N 3.729715012475897e-6 +oafish_A 1.0773191989054437e-5 +oak_N 1.8648575062379485e-5 +oak_apple_N 3.729715012475897e-6 +oaken_A 1.0773191989054437e-5 +oakengates_PN 1.865462821325971e-5 +oakum_N 3.729715012475897e-6 +oap_N 3.729715012475897e-6 +oar_N 3.729715012475897e-6 +oarfish_N 3.729715012475897e-6 +oarsman_N 3.729715012475897e-6 +oarsmanship_N 3.729715012475897e-6 +oarswoman_N 3.729715012475897e-6 +oasis_N 1.4918860049903587e-5 +oast_N 3.729715012475897e-6 +oasthouse_N 3.729715012475897e-6 +oat_N 3.356743511228307e-5 +oatcake_N 3.729715012475897e-6 +oaten_A 1.0773191989054437e-5 +oath_N 1.118914503742769e-5 +oatmeal_N 3.729715012475897e-6 +oau_N 3.729715012475897e-6 +ob_PN 1.865462821325971e-5 +oban_PN 1.865462821325971e-5 +obbligato_N 3.729715012475897e-6 +obduracy_N 3.729715012475897e-6 +obdurate_A 2.1546383978108874e-5 +obeah_N 3.729715012475897e-6 +obeche_N 3.729715012475897e-6 +obedience_N 7.459430024951794e-6 +obedient_A 3.231957596716331e-5 +obeisance_N 7.459430024951794e-6 +obelion_N 3.729715012475897e-6 +obelisk_N 7.459430024951794e-6 +oberhausen_PN 1.865462821325971e-5 +obese_A 1.0773191989054437e-5 +obesity_N 3.729715012475897e-6 +obey_V 2.2678822515534993e-5 +obey_V2 3.219730508556434e-5 +obfuscate_V2 3.219730508556434e-5 +obfuscation_N 7.459430024951794e-6 +obi_N 3.729715012475897e-6 +obiism_N 3.729715012475897e-6 +obiter_dictum_N 7.459430024951794e-6 +obituary_N 3.729715012475897e-6 +object_N 2.6108005087331277e-5 +object_V 2.4946704767088494e-4 +object_V2 1.609865254278217e-5 +objectification_N 3.729715012475897e-6 +objection_N 7.086458523704203e-5 +objectionable_A 5.3865959945272184e-5 +objective_A 6.463915193432663e-5 +objective_N 1.1562116538675279e-4 +objectivity_N 1.8648575062379485e-5 +objector_N 3.729715012475897e-6 +objurgate_V2 1.609865254278217e-5 +objurgation_N 3.729715012475897e-6 +oblanceolate_A 1.0773191989054437e-5 +oblate_A 1.0773191989054437e-5 +oblate_N 3.729715012475897e-6 +oblateness_N 3.729715012475897e-6 +oblation_N 3.729715012475897e-6 +obligate_A 1.0773191989054437e-5 +obligate_V2 3.219730508556434e-5 +obligate_V2V 4.675081813931744e-4 +obligation_N 2.7599891092321637e-4 +obligational_A 1.0773191989054437e-5 +obligatory_A 3.231957596716331e-5 +oblige_V2 4.8295957628346505e-5 +oblige_V2V 9.350163627863488e-4 +obliger_N 3.729715012475897e-6 +obliging_A 1.0773191989054437e-5 +oblique_A 3.231957596716331e-5 +oblique_N 3.729715012475897e-6 +obliqueness_N 3.729715012475897e-6 +obliquity_N 3.729715012475897e-6 +obliterable_A 1.0773191989054437e-5 +obliterate_V2 3.219730508556434e-5 +obliteration_N 3.729715012475897e-6 +obliterator_N 3.729715012475897e-6 +oblivion_N 7.459430024951794e-6 +oblivious_A 3.231957596716331e-5 +obliviousness_N 3.729715012475897e-6 +oblong_A 1.0773191989054437e-5 +oblong_N 3.729715012475897e-6 +obloquy_N 3.729715012475897e-6 +obnoxious_A 3.231957596716331e-5 +obnoxiousness_N 3.729715012475897e-6 +oboe_N 3.729715012475897e-6 +oboist_N 7.459430024951794e-6 +obolus_N 3.729715012475897e-6 +obovate_A 1.0773191989054437e-5 +obscene_A 3.231957596716331e-5 +obscenity_N 7.459430024951794e-6 +obscurantism_N 3.729715012475897e-6 +obscurantist_N 3.729715012475897e-6 +obscure_A 5.3865959945272184e-5 +obscure_V2 4.8295957628346505e-5 +obscure_VA 1.968503937007874e-3 +obscureness_N 3.729715012475897e-6 +obscurity_N 1.118914503742769e-5 +obsequious_A 1.0773191989054437e-5 +obsequiousness_N 3.729715012475897e-6 +observable_A 1.0773191989054437e-5 +observance_N 1.118914503742769e-5 +observant_A 1.0773191989054437e-5 +observation_N 2.237829007485538e-5 +observatory_N 7.459430024951794e-6 +observe_V 9.071529006213997e-5 +observe_V2 1.2878922034225736e-4 +observe_VS 1.0396811644429042e-3 +observer_N 1.9394518064874664e-4 +obsess_V2 4.8295957628346505e-5 +obsession_N 1.8648575062379485e-5 +obsessional_A 1.0773191989054437e-5 +obsessive_A 1.0773191989054437e-5 +obsessive_N 3.729715012475897e-6 +obsessiveness_N 3.729715012475897e-6 +obsidian_N 3.729715012475897e-6 +obsolescence_N 3.729715012475897e-6 +obsolescent_A 1.0773191989054437e-5 +obsolete_A 6.463915193432663e-5 +obsoleteness_N 3.729715012475897e-6 +obstacle_N 1.08161735361801e-4 +obstetric_A 1.0773191989054437e-5 +obstetrical_A 1.0773191989054437e-5 +obstetrician_N 3.729715012475897e-6 +obstetrics_N 3.729715012475897e-6 +obstinacy_N 3.729715012475897e-6 +obstinate_A 1.0773191989054437e-5 +obstipation_N 3.729715012475897e-6 +obstreperous_A 1.0773191989054437e-5 +obstreperousness_N 3.729715012475897e-6 +obstruct_V2 8.049326271391085e-5 +obstruction_N 1.4918860049903587e-5 +obstructionism_N 3.729715012475897e-6 +obstructionist_N 7.459430024951794e-6 +obstructive_A 1.0773191989054437e-5 +obstruent_N 3.729715012475897e-6 +obtain_V 3.175035152174899e-4 +obtain_V2 1.320089508508138e-3 +obtainable_A 2.1546383978108874e-5 +obtainment_N 3.729715012475897e-6 +obtrude_V 2.2678822515534993e-5 +obtrude_V2 1.609865254278217e-5 +obtrusive_A 1.0773191989054437e-5 +obtrusiveness_N 3.729715012475897e-6 +obturator_N 3.729715012475897e-6 +obtuse_A 1.0773191989054437e-5 +obtuseness_N 3.729715012475897e-6 +obverse_N 3.729715012475897e-6 +obviate_V2 3.219730508556434e-5 +obviation_N 3.729715012475897e-6 +obvious_A 7.110306712775928e-4 +obviousness_N 3.729715012475897e-6 +oca_N 3.729715012475897e-6 +ocarina_N 3.729715012475897e-6 +occasion_N 6.713487022456614e-5 +occasion_V2 4.8295957628346505e-5 +occasional_A 3.016493756935242e-4 +occasions_N 3.729715012475897e-6 +occident_PN 1.865462821325971e-5 +occidental_A 1.0773191989054437e-5 +occidental_N 3.729715012475897e-6 +occidentalism_N 3.729715012475897e-6 +occipital_A 1.0773191989054437e-5 +occiput_N 3.729715012475897e-6 +occluded_A 1.0773191989054437e-5 +occlusion_N 3.729715012475897e-6 +occlusive_A 1.0773191989054437e-5 +occult_A 1.0773191989054437e-5 +occult_N 3.729715012475897e-6 +occultism_N 3.729715012475897e-6 +occultist_N 3.729715012475897e-6 +occupancy_N 2.237829007485538e-5 +occupant_N 1.4918860049903587e-5 +occupation_N 3.356743511228307e-5 +occupational_A 2.1546383978108874e-5 +occupier_N 3.729715012475897e-6 +occupy_V 1.3607293509320997e-4 +occupy_V2 1.2878922034225736e-4 +occur_V 1.7916269787272645e-3 +occur_to_V2 1.609865254278217e-5 +occurr_V2 6.439461017112868e-5 +occurrence_N 1.4918860049903587e-5 +occurrent_A 1.0773191989054437e-5 +ocean_N 4.848629516218666e-5 +oceanfront_N 3.729715012475897e-6 +oceangoing_A 1.0773191989054437e-5 +oceanic_A 1.0773191989054437e-5 +oceanographer_N 3.729715012475897e-6 +oceanography_N 3.729715012475897e-6 +ocellated_A 1.0773191989054437e-5 +ocelot_N 3.729715012475897e-6 +ocher_A 1.0773191989054437e-5 +ocher_N 3.729715012475897e-6 +ochre_N 3.729715012475897e-6 +ochronosis_N 3.729715012475897e-6 +ockbrook_PN 1.865462821325971e-5 +ockendon_PN 1.865462821325971e-5 +oclock_Adv 8.668966832532898e-6 +ocotillo_N 3.729715012475897e-6 +oct_PN 1.865462821325971e-5 +octagon_N 3.729715012475897e-6 +octagonal_A 1.0773191989054437e-5 +octahedron_N 3.729715012475897e-6 +octal_A 1.0773191989054437e-5 +octameter_N 3.729715012475897e-6 +octane_N 7.459430024951794e-6 +octangular_A 1.0773191989054437e-5 +octant_N 3.729715012475897e-6 +octave_N 7.459430024951794e-6 +octavo_N 3.729715012475897e-6 +octet_N 3.729715012475897e-6 +octette_N 3.729715012475897e-6 +octillion_N 3.729715012475897e-6 +october_N 3.729715012475897e-6 +october_PN 1.6416072827668544e-3 +octogenarian_A 1.0773191989054437e-5 +octogenarian_N 7.459430024951794e-6 +octopod_N 3.729715012475897e-6 +octopus_N 3.729715012475897e-6 +octoroon_N 3.729715012475897e-6 +octosyllabic_A 1.0773191989054437e-5 +octosyllable_N 3.729715012475897e-6 +octroi_N 3.729715012475897e-6 +octuple_A 1.0773191989054437e-5 +ocular_A 1.0773191989054437e-5 +oculism_N 3.729715012475897e-6 +oculist_N 3.729715012475897e-6 +oculomotor_N 3.729715012475897e-6 +odalisque_N 3.729715012475897e-6 +odd_A 2.585566077373065e-4 +odd_job_A 1.0773191989054437e-5 +oddish_A 1.0773191989054437e-5 +oddity_N 1.4918860049903587e-5 +oddment_N 3.729715012475897e-6 +oddness_N 3.729715012475897e-6 +odds_N 3.729715012475897e-6 +odds_on_A 2.1546383978108874e-5 +odds_on_Adv 8.668966832532898e-6 +ode_N 3.729715012475897e-6 +odessa_PN 1.865462821325971e-5 +odious_A 2.1546383978108874e-5 +odist_N 3.729715012475897e-6 +odium_N 3.729715012475897e-6 +odometer_N 3.729715012475897e-6 +odonate_N 3.729715012475897e-6 +odontoglossum_N 3.729715012475897e-6 +odoriferous_A 1.0773191989054437e-5 +odorless_A 1.0773191989054437e-5 +odorous_A 1.0773191989054437e-5 +odour_N 3.729715012475897e-6 +odourless_A 1.0773191989054437e-5 +odynophagia_N 3.729715012475897e-6 +odyssey_N 7.459430024951794e-6 +oecd_N 3.729715012475897e-6 +oecumenical_A 1.0773191989054437e-5 +oed_N 3.729715012475897e-6 +oedipus_PN 1.865462821325971e-5 +oenomel_N 3.729715012475897e-6 +oersted_N 3.729715012475897e-6 +oesophagus_N 3.729715012475897e-6 +oeuvre_N 3.729715012475897e-6 +of_Prep 8.916828818041211e-2 +of_course_Adv 8.235518490906253e-4 +off_A 2.2623703177014317e-4 +off_Adv 9.622553184111518e-4 +off_Prep 1.5267175572519084e-3 +off_day_N 3.729715012475897e-6 +off_licence_N 3.729715012475897e-6 +off_peak_A 1.0773191989054437e-5 +off_putting_A 1.0773191989054437e-5 +off_street_A 1.0773191989054437e-5 +off_white_A 1.0773191989054437e-5 +offal_N 3.729715012475897e-6 +offaly_PN 1.865462821325971e-5 +offbeat_A 2.1546383978108874e-5 +offenbach_PN 1.865462821325971e-5 +offence_N 3.729715012475897e-6 +offenceless_A 1.0773191989054437e-5 +offend_V 6.803646754660499e-5 +offend_V2 1.2878922034225736e-4 +offenderFem_N 3.729715012475897e-6 +offenderMasc_N 3.729715012475897e-5 +offense_N 3.729715012475897e-6 +offenseless_A 1.0773191989054437e-5 +offensive_A 8.61855359124355e-5 +offensive_N 2.9837720099807175e-5 +offensiveness_N 3.729715012475897e-6 +offer_N 1.6821014706266293e-3 +offer_V 3.220392797205969e-3 +offer_V2 5.779416262858799e-3 +offer_V2V 1.402524544179523e-3 +offer_V3 4.761904761904762e-3 +offer_VS 1.1552012938254491e-4 +offer_VV 3.651739381126273e-3 +offer_up_V 2.2678822515534993e-5 +offerer_N 3.729715012475897e-6 +offering_N 1.0890767836429617e-3 +offertory_N 3.729715012475897e-6 +offhand_A 1.0773191989054437e-5 +offhand_Adv 8.668966832532898e-6 +offhanded_A 2.1546383978108874e-5 +offhanded_Adv 8.668966832532898e-6 +offhandedly_A 1.0773191989054437e-5 +office_N 1.7082094757139607e-3 +office_bearer_N 3.729715012475897e-6 +office_block_N 3.729715012475897e-6 +office_boy_N 3.729715012475897e-6 +office_holder_N 3.729715012475897e-6 +officeholder_N 3.729715012475897e-6 +officer_N 1.6336151754644428e-3 +officialFem_N 3.729715012475897e-6 +officialMasc_N 3.1590686155670844e-3 +official_A 1.1635047348178792e-3 +officialdom_N 7.459430024951794e-6 +officialese_N 3.729715012475897e-6 +officiant_N 3.729715012475897e-6 +officiate_V 2.2678822515534993e-5 +officiation_N 3.729715012475897e-6 +officious_A 2.1546383978108874e-5 +officiousness_N 3.729715012475897e-6 +offing_N 1.4918860049903587e-5 +offish_A 1.0773191989054437e-5 +offprint_N 3.729715012475897e-6 +offset_N 7.459430024951794e-6 +offset_V2 1.915739652591078e-3 +offshoot_N 1.8648575062379485e-5 +offshore_A 6.463915193432663e-5 +offshore_Adv 8.668966832532898e-6 +offside_A 1.0773191989054437e-5 +offside_Adv 8.668966832532898e-6 +offside_N 3.729715012475897e-6 +offspring_N 1.4918860049903587e-5 +offstage_A 1.0773191989054437e-5 +offstage_Adv 8.668966832532898e-6 +oft_Adv 8.668966832532898e-6 +oft_times_Adv 8.668966832532898e-6 +often_AdA 1.0141987829614604e-3 +often_AdV 1.0719158058857923e-2 +often_Adv 1.0922898208991453e-3 +oftener_Adv 8.668966832532898e-6 +ogee_N 3.729715012475897e-6 +ogle_V 2.2678822515534993e-5 +ogle_V2 4.8295957628346505e-5 +ogler_N 3.729715012475897e-6 +ogmore_valley_PN 1.865462821325971e-5 +ogre_N 3.729715012475897e-6 +ogreish_A 1.0773191989054437e-5 +ogress_N 3.729715012475897e-6 +oh_Interj 7.633587786259542e-2 +ohio_PN 7.648397567436481e-4 +ohm_N 3.729715012475897e-6 +ohmage_N 3.729715012475897e-6 +ohmic_A 1.0773191989054437e-5 +ohmmeter_N 3.729715012475897e-6 +oil_N 1.4956157200028345e-3 +oil_V2 1.609865254278217e-5 +oil_bearing_A 1.0773191989054437e-5 +oil_burner_N 3.729715012475897e-6 +oil_cake_N 3.729715012475897e-6 +oil_painting_N 3.729715012475897e-6 +oil_palm_N 3.729715012475897e-6 +oil_paper_N 3.729715012475897e-6 +oil_rig_N 3.729715012475897e-6 +oil_silk_N 3.729715012475897e-6 +oil_slick_N 3.729715012475897e-6 +oil_tanker_N 3.729715012475897e-6 +oil_well_N 3.729715012475897e-6 +oilbird_N 3.729715012475897e-6 +oilcan_N 3.729715012475897e-6 +oilcloth_N 3.729715012475897e-6 +oiler_N 7.459430024951794e-6 +oilfield_N 7.459430024951794e-6 +oilfired_A 1.0773191989054437e-5 +oilfish_N 3.729715012475897e-6 +oiliness_N 3.729715012475897e-6 +oilman_N 3.729715012475897e-6 +oilpaper_N 3.729715012475897e-6 +oilseed_N 3.729715012475897e-6 +oilskin_N 3.729715012475897e-6 +oilstone_N 3.729715012475897e-6 +oily_A 2.1546383978108874e-5 +ointment_N 7.459430024951794e-6 +ok_Interj 3.816793893129771e-2 +oka_N 3.729715012475897e-6 +okapi_N 3.729715012475897e-6 +okay_A 3.231957596716331e-5 +okay_Adv 8.668966832532898e-6 +okay_Interj 1.5267175572519083e-2 +okay_V2 1.609865254278217e-5 +oklahoma_PN 1.865462821325971e-4 +oklahoma_city_PN 1.865462821325971e-5 +okra_N 3.729715012475897e-6 +ola_N 3.729715012475897e-6 +old_A 3.716751236223781e-3 +old_N 2.237829007485538e-5 +old_fashioned_A 1.2927830386865325e-4 +old_maidish_A 1.0773191989054437e-5 +old_time_A 4.309276795621775e-5 +old_timer_N 3.729715012475897e-6 +old_windsor_PN 1.865462821325971e-5 +old_womanish_A 1.0773191989054437e-5 +old_world_A 1.0773191989054437e-5 +olden_A 1.0773191989054437e-5 +oldenburg_PN 1.865462821325971e-5 +oldham_PN 1.865462821325971e-5 +oldie_N 3.729715012475897e-6 +oldish_A 1.0773191989054437e-5 +oldland_PN 1.865462821325971e-5 +oldline_A 1.0773191989054437e-5 +oldness_N 3.729715012475897e-6 +oldster_N 3.729715012475897e-6 +oleaceous_A 1.0773191989054437e-5 +oleaginous_A 1.0773191989054437e-5 +oleander_N 3.729715012475897e-6 +oleaster_N 3.729715012475897e-6 +olecranon_N 3.729715012475897e-6 +oleophilic_A 1.0773191989054437e-5 +oleophobic_A 1.0773191989054437e-5 +oleoresin_N 3.729715012475897e-6 +olfactory_A 1.0773191989054437e-5 +oligarch_N 3.729715012475897e-6 +oligarchic_A 1.0773191989054437e-5 +oligarchy_N 3.729715012475897e-6 +oligochaete_N 3.729715012475897e-6 +oligodactyly_N 3.729715012475897e-6 +oligodendrocyte_N 3.729715012475897e-6 +oligodendroglia_N 3.729715012475897e-6 +oligodontia_N 3.729715012475897e-6 +oligomenorrhea_N 3.729715012475897e-6 +oligopoly_N 3.729715012475897e-6 +oligosaccharide_N 3.729715012475897e-6 +oligospermia_N 3.729715012475897e-6 +oliguria_N 3.729715012475897e-6 +olive_A 1.0773191989054437e-5 +olive_N 3.729715012475897e-6 +olive_PN 1.865462821325971e-5 +olive_tree_N 3.729715012475897e-6 +olivelike_A 1.0773191989054437e-5 +olivenite_N 3.729715012475897e-6 +oliver_PN 1.865462821325971e-5 +olivia_PN 1.865462821325971e-5 +olivine_N 3.729715012475897e-6 +ollerton_PN 1.865462821325971e-5 +ollie_PN 1.865462821325971e-5 +olm_N 3.729715012475897e-6 +ology_N 3.729715012475897e-6 +olympiad_N 3.729715012475897e-6 +olympian_A 1.0773191989054437e-5 +olympian_N 3.729715012475897e-6 +olympic_A 2.1546383978108874e-5 +olympics_PN 1.865462821325971e-5 +oman_PN 1.865462821325971e-5 +omani_A 1.0773191989054437e-5 +omani_N 3.729715012475897e-6 +ombu_N 3.729715012475897e-6 +ombudsman_N 1.118914503742769e-5 +omega_N 3.729715012475897e-6 +omelet_N 3.729715012475897e-6 +omelette_N 3.729715012475897e-6 +omen_N 1.118914503742769e-5 +omen_V2 1.609865254278217e-5 +omentum_N 3.729715012475897e-6 +omeprazole_N 3.729715012475897e-6 +omerta_N 3.729715012475897e-6 +omicron_N 3.729715012475897e-6 +ominous_A 7.541234392338106e-5 +omissible_A 1.0773191989054437e-5 +omission_N 1.118914503742769e-5 +omissive_A 1.0773191989054437e-5 +omit_V2 3.541703559412077e-4 +ommastrephes_N 3.729715012475897e-6 +ommatidium_N 3.729715012475897e-6 +omnibus_N 2.9837720099807175e-5 +omnidirectional_A 1.0773191989054437e-5 +omnifarious_A 1.0773191989054437e-5 +omnipotence_N 3.729715012475897e-6 +omnipotent_A 1.0773191989054437e-5 +omnipresent_A 1.0773191989054437e-5 +omnirange_N 3.729715012475897e-6 +omniscience_N 3.729715012475897e-6 +omniscient_A 1.0773191989054437e-5 +omnivore_N 3.729715012475897e-6 +omnivorous_A 1.0773191989054437e-5 +omophagia_N 3.729715012475897e-6 +omphaloskepsis_N 3.729715012475897e-6 +omsk_PN 1.865462821325971e-5 +on_Adv 2.8607590547358565e-4 +on_Prep 6.346355336027541e-2 +on_account_of_Prep 9.978546125829467e-6 +on_behalf_of_Prep 3.093349299007135e-4 +on_licence_N 3.729715012475897e-6 +on_top_of_Prep 2.4946365314573667e-4 +onager_N 3.729715012475897e-6 +once_AdV 6.139154160982265e-3 +once_Adv 1.2136553565546058e-3 +once_Prep 4.49034575662326e-4 +once_Subj 4.016064257028112e-3 +onchocerciasis_N 3.729715012475897e-6 +oncidium_N 3.729715012475897e-6 +oncogene_N 7.459430024951794e-6 +oncological_A 1.0773191989054437e-5 +oncologist_N 3.729715012475897e-6 +oncology_N 3.729715012475897e-6 +oncoming_A 1.0773191989054437e-5 +oncoming_N 3.729715012475897e-6 +one_armed_A 1.0773191989054437e-5 +one_eyed_A 1.0773191989054437e-5 +one_horse_A 1.0773191989054437e-5 +one_idea'd_A 1.0773191989054437e-5 +one_sided_A 2.1546383978108874e-5 +one_step_N 3.729715012475897e-6 +one_time_A 6.032987513870484e-4 +one_upmanship_N 3.729715012475897e-6 +oneiric_A 1.0773191989054437e-5 +oneiromancer_N 3.729715012475897e-6 +oneiromancy_N 3.729715012475897e-6 +oneness_N 3.729715012475897e-6 +onerous_A 8.61855359124355e-5 +ongar_PN 1.865462821325971e-5 +ongoing_A 1.6159787983581657e-4 +onion_N 3.729715012475897e-6 +onionskin_N 3.729715012475897e-6 +onlooker_N 1.118914503742769e-5 +only_Adv 8.426235761221977e-3 +only_Predet 1.6666666666666666e-2 +onomancer_N 3.729715012475897e-6 +onomancy_N 3.729715012475897e-6 +onomastic_A 1.0773191989054437e-5 +onomasticon_N 3.729715012475897e-6 +onomastics_N 3.729715012475897e-6 +onomatomania_N 3.729715012475897e-6 +onomatopoeia_N 3.729715012475897e-6 +onomatopoeic_A 1.0773191989054437e-5 +onrush_N 3.729715012475897e-6 +onset_N 1.118914503742769e-5 +onshore_A 1.0773191989054437e-5 +onshore_Adv 8.668966832532898e-6 +onside_A 1.0773191989054437e-5 +onslaught_N 1.8648575062379485e-5 +onstage_A 1.0773191989054437e-5 +onstage_Adv 8.668966832532898e-6 +ontario_PN 1.865462821325971e-5 +onto_Prep 3.1931347602654294e-4 +ontogenetic_A 1.0773191989054437e-5 +ontological_A 1.0773191989054437e-5 +ontology_N 3.729715012475897e-6 +onus_N 1.118914503742769e-5 +onward_A 1.0773191989054437e-5 +onward_Adv 8.668966832532898e-6 +onwards_Adv 8.668966832532898e-6 +onycholysis_N 3.729715012475897e-6 +onychophoran_N 3.729715012475897e-6 +onychosis_N 3.729715012475897e-6 +onymous_A 1.0773191989054437e-5 +onyx_N 3.729715012475897e-6 +oocyte_N 3.729715012475897e-6 +oogenesis_N 3.729715012475897e-6 +oology_N 3.729715012475897e-6 +oolong_N 3.729715012475897e-6 +oomph_N 7.459430024951794e-6 +oophorectomy_N 3.729715012475897e-6 +oophoritis_N 3.729715012475897e-6 +oophorosalpingectomy_N 3.729715012475897e-6 +oosphere_N 3.729715012475897e-6 +oospore_N 3.729715012475897e-6 +ootid_N 3.729715012475897e-6 +ooze_N 7.459430024951794e-6 +ooze_V 6.803646754660499e-5 +ooze_V2 1.609865254278217e-5 +oozy_A 1.0773191989054437e-5 +op_PN 1.865462821325971e-5 +op_art_N 2.648097658857887e-4 +op_cit_PN 1.865462821325971e-5 +opacification_N 3.729715012475897e-6 +opacity_N 3.729715012475897e-6 +opah_N 3.729715012475897e-6 +opal_N 3.729715012475897e-6 +opalescence_N 3.729715012475897e-6 +opalescent_A 1.0773191989054437e-5 +opaque_A 1.0773191989054437e-5 +opaqueness_N 3.729715012475897e-6 +opec_PN 1.865462821325971e-5 +open_A 1.4112881505661313e-3 +open_N 2.237829007485538e-5 +open_V 3.628611602485599e-3 +open_V2 1.4488787288503952e-3 +open_air_A 1.0773191989054437e-5 +open_ended_A 3.231957596716331e-5 +open_eyed_A 1.0773191989054437e-5 +open_handed_A 1.0773191989054437e-5 +open_hearted_A 1.0773191989054437e-5 +open_minded_A 1.0773191989054437e-5 +open_mouthed_A 1.0773191989054437e-5 +open_up_V 2.2678822515534993e-5 +open_up_V2 4.8295957628346505e-5 +openbill_N 3.729715012475897e-6 +opencast_A 1.0773191989054437e-5 +opener_N 1.4918860049903587e-5 +openhearted_A 1.0773191989054437e-5 +opening_N 2.237829007485538e-4 +openness_N 2.6108005087331277e-5 +openwork_N 3.729715012475897e-6 +opepe_N 3.729715012475897e-6 +opera_N 1.8648575062379485e-5 +opera_cloak_N 3.729715012475897e-6 +opera_hat_N 3.729715012475897e-6 +opera_house_N 3.729715012475897e-6 +operable_A 2.1546383978108874e-5 +operagoer_N 3.729715012475897e-6 +operand_N 3.729715012475897e-6 +operant_A 1.0773191989054437e-5 +operate_V 1.0092076019413072e-2 +operate_V2 1.1591029830803161e-3 +operate_on_V2 1.609865254278217e-5 +operatic_A 2.1546383978108874e-5 +operating_table_N 3.729715012475897e-6 +operating_theatre_N 3.729715012475897e-6 +operation_N 2.1222078420987853e-3 +operational_A 2.6932979972636094e-4 +operationalism_N 3.729715012475897e-6 +operationalist_A 1.0773191989054437e-5 +operations_N 3.729715012475897e-6 +operative_A 3.231957596716331e-5 +operative_N 1.4918860049903587e-5 +operator_N 3.543229261852102e-4 +operculate_A 1.0773191989054437e-5 +operculum_N 3.729715012475897e-6 +operetta_N 3.729715012475897e-6 +operon_N 3.729715012475897e-6 +ophidism_N 3.729715012475897e-6 +ophiolatry_N 3.729715012475897e-6 +ophryon_N 3.729715012475897e-6 +ophthalmectomy_N 3.729715012475897e-6 +ophthalmia_N 3.729715012475897e-6 +ophthalmic_A 1.0773191989054437e-5 +ophthalmologist_N 3.729715012475897e-6 +ophthalmology_N 3.729715012475897e-6 +ophthalmoplegia_N 3.729715012475897e-6 +ophthalmoscope_N 3.729715012475897e-6 +ophthalmoscopy_N 3.729715012475897e-6 +opiate_N 3.729715012475897e-6 +opine_V2 1.609865254278217e-5 +opine_VS 1.1552012938254491e-4 +opinion_N 2.9837720099807176e-4 +opinionated_A 1.0773191989054437e-5 +opinionative_A 1.0773191989054437e-5 +opisthognathous_A 1.0773191989054437e-5 +opisthorchiasis_N 3.729715012475897e-6 +opisthotonos_N 3.729715012475897e-6 +opium_N 1.4918860049903587e-5 +opium_den_N 3.729715012475897e-6 +opopanax_N 3.729715012475897e-6 +opossum_N 3.729715012475897e-6 +opp_PN 1.865462821325971e-5 +opponent_A 1.0773191989054437e-5 +opponent_N 1.6783717556141534e-4 +opportune_A 2.1546383978108874e-5 +opportuneness_N 3.729715012475897e-6 +opportunism_N 7.459430024951794e-6 +opportunist_A 1.0773191989054437e-5 +opportunist_N 1.4918860049903587e-5 +opportunity_N 4.774035215969148e-4 +opposable_A 1.0773191989054437e-5 +oppose_V 6.576858529505148e-4 +oppose_V2 1.3522868135937022e-3 +oppose_VS 1.1552012938254491e-4 +opposite_A 1.4005149585770768e-4 +opposite_N 2.6108005087331277e-5 +opposite_Prep 1.9957092251658934e-5 +opposition_N 3.61782356210162e-4 +oppress_V2 1.609865254278217e-5 +oppression_N 1.118914503742769e-5 +oppressive_A 3.231957596716331e-5 +oppressor_N 3.729715012475897e-6 +opprobrious_A 1.0773191989054437e-5 +opprobrium_N 3.729715012475897e-6 +oppugn_V2 1.609865254278217e-5 +opsin_N 3.729715012475897e-6 +opsonin_N 3.729715012475897e-6 +opsonization_N 3.729715012475897e-6 +opt_V 1.8143058012427994e-4 +opt_V2V 4.675081813931744e-4 +opt_VV 2.8829521429944266e-4 +opt_for_V2 1.609865254278217e-5 +opt_in_V 2.2678822515534993e-5 +opt_into_V2 1.609865254278217e-5 +opt_out_V2 1.609865254278217e-5 +optative_A 1.0773191989054437e-5 +optative_N 3.729715012475897e-6 +optic_A 1.0773191989054437e-5 +optical_A 2.1546383978108874e-4 +optician_N 3.729715012475897e-6 +optics_N 3.729715012475897e-6 +optimal_A 1.0773191989054437e-5 +optimism_N 5.594572518713845e-5 +optimist_N 1.4918860049903587e-5 +optimistic_A 3.770617196169053e-4 +optimistically_Adv 1.7337933665065797e-5 +optimization_N 3.729715012475897e-6 +optimum_A 1.0773191989054437e-5 +optimum_N 3.729715012475897e-6 +option_N 1.0741579235930582e-3 +optional_A 4.309276795621775e-5 +optometrist_N 3.729715012475897e-6 +optometry_N 3.729715012475897e-6 +opulence_N 7.459430024951794e-6 +opulent_A 4.309276795621775e-5 +opus_N 3.729715012475897e-6 +or_Conj 0.12585592439835022 +orach_N 3.729715012475897e-6 +oracle_N 3.729715012475897e-6 +oracular_A 1.0773191989054437e-5 +orad_Adv 8.668966832532898e-6 +oral_A 8.61855359124355e-5 +oral_N 3.729715012475897e-6 +orang_outan_N 3.729715012475897e-6 +orang_outang_N 3.729715012475897e-6 +orang_utan_N 3.729715012475897e-6 +orange_1_N 2.6108005087331277e-5 +orange_2_N 3.729715012475897e-6 +orange_A 5.3865959945272184e-5 +orangeade_N 3.729715012475897e-6 +orangeman_N 3.729715012475897e-6 +orangery_N 3.729715012475897e-6 +orangewood_N 3.729715012475897e-6 +orangutan_N 3.729715012475897e-6 +orate_V 2.2678822515534993e-5 +oration_N 3.729715012475897e-6 +orator_N 3.729715012475897e-6 +oratorical_A 1.0773191989054437e-5 +oratorio_N 3.729715012475897e-6 +oratory_N 3.729715012475897e-6 +orb_N 3.729715012475897e-6 +orbiculate_A 1.0773191989054437e-5 +orbit_N 2.6108005087331277e-5 +orbit_V 2.2678822515534993e-5 +orbit_V2 1.609865254278217e-5 +orbital_A 1.0773191989054437e-5 +orbitale_N 3.729715012475897e-6 +orchard_N 2.237829007485538e-5 +orchestra_N 2.9837720099807175e-5 +orchestral_A 2.1546383978108874e-5 +orchestrate_V2 6.439461017112868e-5 +orchestration_N 3.729715012475897e-6 +orchestrator_N 3.729715012475897e-6 +orchid_N 7.459430024951794e-6 +orchidalgia_N 3.729715012475897e-6 +orchidectomy_N 3.729715012475897e-6 +orchil_N 3.729715012475897e-6 +orchiopexy_N 3.729715012475897e-6 +orchis_N 3.729715012475897e-6 +orchitis_N 3.729715012475897e-6 +orchotomy_N 3.729715012475897e-6 +ordain_V2 1.609865254278217e-5 +ordain_VS 1.1552012938254491e-4 +ordainer_N 3.729715012475897e-6 +ordeal_N 1.4918860049903587e-5 +order_N 1.8499386461880447e-3 +order_V 1.5875175760874494e-4 +order_V2 1.1108070254519696e-3 +order_V2V 6.5451145395044414e-3 +order_VS 3.4656038814763474e-4 +order_VV 1.9219680953296174e-4 +order_book_N 3.729715012475897e-6 +order_form_N 3.729715012475897e-6 +order_paper_N 3.729715012475897e-6 +orderer_N 3.729715012475897e-6 +ordering_N 3.729715012475897e-6 +orderliness_N 3.729715012475897e-6 +orderly_A 1.8314426381392542e-4 +orderly_N 3.729715012475897e-6 +ordinal_A 1.0773191989054437e-5 +ordinal_N 3.729715012475897e-6 +ordinance_N 3.356743511228307e-5 +ordinand_N 3.729715012475897e-6 +ordinariness_N 3.729715012475897e-6 +ordinary_A 3.986081035950142e-4 +ordinary_N 3.729715012475897e-6 +ordinate_N 3.729715012475897e-6 +ordination_N 3.729715012475897e-6 +ordnance_N 1.118914503742769e-5 +ordure_N 3.729715012475897e-6 +ore_N 1.118914503742769e-5 +oregano_N 3.729715012475897e-6 +oregon_PN 1.865462821325971e-5 +oreo_N 3.729715012475897e-6 +organ_N 2.9837720099807175e-5 +organ_blower_N 3.729715012475897e-6 +organ_grinder_N 3.729715012475897e-6 +organ_loft_N 3.729715012475897e-6 +organdie_N 3.729715012475897e-6 +organdy_N 3.729715012475897e-6 +organelle_N 3.729715012475897e-6 +organic_A 5.3865959945272184e-5 +organic_N 3.729715012475897e-6 +organically_Adv 8.668966832532898e-6 +organicism_N 3.729715012475897e-6 +organicistic_A 1.0773191989054437e-5 +organification_N 3.729715012475897e-6 +organism_N 1.4918860049903587e-5 +organismal_A 1.0773191989054437e-5 +organist_N 3.729715012475897e-6 +organization_N 3.9534979132244504e-4 +organizational_A 7.541234392338106e-5 +organize_V2 6.761434067968511e-4 +organize_V2V 4.675081813931744e-4 +organizer_N 1.8648575062379485e-5 +organon_N 3.729715012475897e-6 +organophosphate_N 3.729715012475897e-6 +organza_N 3.729715012475897e-6 +orgasm_N 3.729715012475897e-6 +orgiastic_A 1.0773191989054437e-5 +orgy_N 7.459430024951794e-6 +oriel_N 3.729715012475897e-6 +orient_A 1.0773191989054437e-5 +orient_N 3.729715012475897e-6 +orient_V2 9.659191525669301e-5 +oriental_A 4.309276795621775e-5 +oriental_N 3.729715012475897e-6 +orientalism_N 3.729715012475897e-6 +orientalist_N 3.729715012475897e-6 +orientate_V2 1.609865254278217e-5 +orientation_N 3.729715012475897e-6 +orienting_A 1.0773191989054437e-5 +orifice_N 3.729715012475897e-6 +oriflamme_N 3.729715012475897e-6 +origami_N 3.729715012475897e-6 +origanum_N 3.729715012475897e-6 +origin_N 1.4918860049903587e-5 +original_A 1.1742779268069335e-3 +original_N 1.4918860049903587e-5 +originalism_N 3.729715012475897e-6 +originality_N 3.729715012475897e-6 +originate_V 1.1339411257767497e-4 +originate_V2 4.8295957628346505e-5 +originator_N 1.8648575062379485e-5 +oriole_N 3.729715012475897e-6 +orison_N 3.729715012475897e-6 +orkney_PN 1.865462821325971e-5 +orleans_PN 1.865462821325971e-5 +orlop_N 3.729715012475897e-6 +ormer_N 3.729715012475897e-6 +ormolu_N 3.729715012475897e-6 +ormskirk_PN 1.865462821325971e-5 +ornament_N 7.459430024951794e-6 +ornament_V2 1.609865254278217e-5 +ornamental_A 4.309276795621775e-5 +ornamental_N 3.729715012475897e-6 +ornamentalism_N 3.729715012475897e-6 +ornamentation_N 3.729715012475897e-6 +ornate_A 2.1546383978108874e-5 +ornateness_N 3.729715012475897e-6 +ornery_A 2.1546383978108874e-5 +ornithine_N 3.729715012475897e-6 +ornithischian_N 3.729715012475897e-6 +ornithological_A 1.0773191989054437e-5 +ornithologist_N 3.729715012475897e-6 +ornithology_N 3.729715012475897e-6 +ornithomimid_N 3.729715012475897e-6 +ornithopod_N 3.729715012475897e-6 +orogeny_N 3.729715012475897e-6 +oroide_N 3.729715012475897e-6 +orology_N 3.729715012475897e-6 +oropharyngeal_A 1.0773191989054437e-5 +oropharynx_N 3.729715012475897e-6 +orotund_A 1.0773191989054437e-5 +orphan_N 1.118914503742769e-5 +orphan_V2 3.219730508556434e-5 +orphanage_N 3.729715012475897e-6 +orphenadrine_N 3.729715012475897e-6 +orphrey_N 3.729715012475897e-6 +orpiment_N 3.729715012475897e-6 +orpine_N 3.729715012475897e-6 +orrery_N 3.729715012475897e-6 +orrisroot_N 3.729715012475897e-6 +orthicon_N 3.729715012475897e-6 +orthochorea_N 3.729715012475897e-6 +orthoclase_N 3.729715012475897e-6 +orthodontic_A 1.0773191989054437e-5 +orthodontics_N 3.729715012475897e-6 +orthodontist_N 3.729715012475897e-6 +orthodox_A 6.463915193432663e-5 +orthodoxy_N 7.459430024951794e-6 +orthoepist_N 3.729715012475897e-6 +orthoepy_N 3.729715012475897e-6 +orthogonal_A 1.0773191989054437e-5 +orthogonality_N 3.729715012475897e-6 +orthographic_A 1.0773191989054437e-5 +orthography_N 3.729715012475897e-6 +orthomolecular_A 1.0773191989054437e-5 +orthomyxovirus_N 3.729715012475897e-6 +orthopaedic_A 1.0773191989054437e-5 +orthopaedics_N 3.729715012475897e-6 +orthopedic_A 1.0773191989054437e-5 +orthopedics_N 3.729715012475897e-6 +orthopedist_N 3.729715012475897e-6 +orthopnea_N 3.729715012475897e-6 +orthopter_N 3.729715012475897e-6 +orthoptic_A 1.0773191989054437e-5 +orthoptics_N 3.729715012475897e-6 +orthoptist_N 3.729715012475897e-6 +orthoscope_N 3.729715012475897e-6 +orthostatic_A 1.0773191989054437e-5 +orthotropous_A 1.0773191989054437e-5 +ortolan_N 3.729715012475897e-6 +ortygan_N 3.729715012475897e-6 +oryx_N 3.729715012475897e-6 +orzo_N 3.729715012475897e-6 +os_N 3.729715012475897e-6 +osaka_PN 1.865462821325971e-5 +oscar_N 3.729715012475897e-6 +oscar_PN 1.865462821325971e-5 +oscheocele_N 3.729715012475897e-6 +oscillate_V 2.2678822515534993e-5 +oscillate_V2 1.609865254278217e-5 +oscillation_N 3.729715012475897e-6 +oscillator_N 3.729715012475897e-6 +oscillatory_A 1.0773191989054437e-5 +oscillogram_N 3.729715012475897e-6 +oscillograph_N 3.729715012475897e-6 +oscilloscope_N 3.729715012475897e-6 +oscine_A 1.0773191989054437e-5 +oscine_N 3.729715012475897e-6 +oscitancy_N 3.729715012475897e-6 +osculation_N 3.729715012475897e-6 +osier_N 3.729715012475897e-6 +oslo_PN 1.865462821325971e-5 +osmiridium_N 3.729715012475897e-6 +osmium_N 3.729715012475897e-6 +osmoreceptor_N 3.729715012475897e-6 +osmosis_N 3.729715012475897e-6 +osmotic_A 1.0773191989054437e-5 +osmotically_Adv 8.668966832532898e-6 +osnabruck_PN 1.865462821325971e-5 +osprey_N 3.729715012475897e-6 +osseous_A 1.0773191989054437e-5 +ossett_PN 1.865462821325971e-5 +ossicle_N 3.729715012475897e-6 +ossicular_A 1.0773191989054437e-5 +ossiferous_A 1.0773191989054437e-5 +ossification_N 3.729715012475897e-6 +ossify_V 2.2678822515534993e-5 +ossify_V2 1.609865254278217e-5 +ossuary_N 3.729715012475897e-6 +osteal_A 1.0773191989054437e-5 +osteitis_N 3.729715012475897e-6 +ostensible_A 4.309276795621775e-5 +ostensive_A 1.0773191989054437e-5 +ostentation_N 7.459430024951794e-6 +ostentatious_A 2.1546383978108874e-5 +osteoarthritis_N 3.729715012475897e-6 +osteoblast_N 3.729715012475897e-6 +osteoblastoma_N 3.729715012475897e-6 +osteochondroma_N 3.729715012475897e-6 +osteoclasis_N 3.729715012475897e-6 +osteoclast_N 3.729715012475897e-6 +osteocyte_N 3.729715012475897e-6 +osteodystrophy_N 3.729715012475897e-6 +osteologist_N 3.729715012475897e-6 +osteology_N 3.729715012475897e-6 +osteolysis_N 3.729715012475897e-6 +osteoma_N 3.729715012475897e-6 +osteomalacia_N 3.729715012475897e-6 +osteomyelitis_N 3.729715012475897e-6 +osteopath_N 3.729715012475897e-6 +osteopathy_N 3.729715012475897e-6 +osteopetrosis_N 3.729715012475897e-6 +osteophyte_N 3.729715012475897e-6 +osteoporosis_N 3.729715012475897e-6 +osteosarcoma_N 3.729715012475897e-6 +osteosclerosis_N 3.729715012475897e-6 +osteostracan_N 3.729715012475897e-6 +osteotomy_N 3.729715012475897e-6 +ostinato_N 3.729715012475897e-6 +ostiole_N 3.729715012475897e-6 +ostler_N 3.729715012475897e-6 +ostomy_N 3.729715012475897e-6 +ostracism_N 3.729715012475897e-6 +ostracize_V2 1.609865254278217e-5 +ostracoderm_N 3.729715012475897e-6 +ostrich_N 3.729715012475897e-6 +oswald_PN 1.865462821325971e-5 +oswestry_PN 1.865462821325971e-5 +ot_N 3.729715012475897e-6 +otago_PN 1.865462821325971e-5 +other_A 1.942406515626515e-2 +other_Adv 8.668966832532898e-6 +other_N 9.846447632936366e-4 +otherness_N 3.729715012475897e-6 +otherwise_A 1.0773191989054437e-5 +otherwise_Adv 4.0744144112904625e-4 +otherworld_N 3.729715012475897e-6 +otherworldly_A 1.0773191989054437e-5 +othonna_N 3.729715012475897e-6 +otic_A 1.0773191989054437e-5 +otiose_A 1.0773191989054437e-5 +otitis_N 3.729715012475897e-6 +otley_PN 1.865462821325971e-5 +otology_N 3.729715012475897e-6 +otoplasty_N 3.729715012475897e-6 +otorrhea_N 3.729715012475897e-6 +otosclerosis_N 3.729715012475897e-6 +otoscope_N 3.729715012475897e-6 +ototoxic_A 1.0773191989054437e-5 +ottawa_PN 1.865462821325971e-5 +otter_N 3.729715012475897e-6 +otterhound_N 3.729715012475897e-6 +ottoman_N 3.729715012475897e-6 +oubliette_N 3.729715012475897e-6 +ouguiya_N 3.729715012475897e-6 +ouija_N 3.729715012475897e-6 +ouija_board_N 3.729715012475897e-6 +ounce_N 2.8718805596064407e-4 +ourselves_NP 5.4607210336052775e-6 +oust_V 1.8143058012427994e-4 +oust_V2 3.8636766102677204e-4 +ouster_N 3.729715012475897e-6 +out_A 1.0773191989054437e-5 +out_Adv 1.0749518872340794e-3 +out_N 3.729715012475897e-6 +out_Prep 1.157511350596218e-3 +out_V2 1.609865254278217e-5 +out_from_Prep 9.978546125829467e-6 +out_herod_V2 1.609865254278217e-5 +out_of_Prep 3.123284937384623e-3 +out_of_date_A 1.0773191989054437e-5 +out_of_door_A 1.0773191989054437e-5 +out_of_doors_Adv 8.668966832532898e-6 +out_of_the_way_A 1.0773191989054437e-5 +out_of_the_way_Adv 8.668966832532898e-6 +out_of_work_A 1.0773191989054437e-5 +out_trade_V2 3.219730508556434e-5 +out_tray_N 3.729715012475897e-6 +outage_N 3.729715012475897e-6 +outback_A 1.0773191989054437e-5 +outback_N 7.459430024951794e-6 +outbalance_V2 1.609865254278217e-5 +outbid_V2 8.049326271391085e-5 +outboard_A 1.0773191989054437e-5 +outbound_A 1.0773191989054437e-5 +outbrave_V2 1.609865254278217e-5 +outbreak_N 2.6108005087331277e-5 +outbred_A 1.0773191989054437e-5 +outbuilding_N 3.729715012475897e-6 +outburst_N 3.729715012475897e-6 +outcast_A 1.0773191989054437e-5 +outcast_N 3.729715012475897e-6 +outcaste_A 1.0773191989054437e-5 +outcaste_N 3.729715012475897e-6 +outclass_V2 1.609865254278217e-5 +outcome_N 1.193508803992287e-4 +outcrop_N 3.729715012475897e-6 +outcry_N 5.967544019961435e-5 +outdated_A 3.231957596716331e-5 +outdistance_V2 3.219730508556434e-5 +outdo_V2 4.8295957628346505e-5 +outdoor_A 4.309276795621775e-5 +outdoors_Adv 8.668966832532898e-6 +outdoors_N 3.729715012475897e-6 +outdoorsman_N 3.729715012475897e-6 +outdoorswoman_N 3.729715012475897e-6 +outdoorsy_A 1.0773191989054437e-5 +outer_A 7.541234392338106e-5 +outercourse_N 3.729715012475897e-6 +outermost_A 1.0773191989054437e-5 +outerwear_N 3.729715012475897e-6 +outface_V2 1.609865254278217e-5 +outfall_N 3.729715012475897e-6 +outfield_N 1.118914503742769e-5 +outfielder_N 7.459430024951794e-6 +outfight_V2 1.609865254278217e-5 +outfit_N 2.237829007485538e-5 +outfit_V2 4.8295957628346505e-5 +outfitter_N 3.729715012475897e-6 +outfitting_N 3.729715012475897e-6 +outflank_V2 3.219730508556434e-5 +outflow_N 6.340515521209024e-5 +outfly_V2 4.8295957628346505e-5 +outfox_V2 1.609865254278217e-5 +outgain_V2 3.219730508556434e-5 +outgo_N 3.729715012475897e-6 +outgo_V 6.803646754660499e-5 +outgrow_V2 4.8295957628346505e-5 +outgrowth_N 1.118914503742769e-5 +outhouse_N 3.729715012475897e-6 +outing_N 7.459430024951794e-6 +outlandish_A 2.1546383978108874e-5 +outlandishness_N 3.729715012475897e-6 +outlast_V2 4.8295957628346505e-5 +outlaw_N 3.729715012475897e-6 +outlaw_V2 1.7708517797060386e-4 +outlawry_N 3.729715012475897e-6 +outlay_N 7.086458523704203e-5 +outleap_V2 3.219730508556434e-5 +outlet_N 1.118914503742769e-4 +outlier_N 3.729715012475897e-6 +outline_N 1.118914503742769e-5 +outline_V2 2.575784406845147e-4 +outlive_V2 1.609865254278217e-5 +outlook_N 2.275126157610297e-4 +outlying_A 3.231957596716331e-5 +outmanoeuvre_V2 1.609865254278217e-5 +outmarch_V2 1.609865254278217e-5 +outmatch_V2 1.609865254278217e-5 +outmoded_A 2.1546383978108874e-5 +outmost_A 1.0773191989054437e-5 +outnumber_V2 2.2538113559895037e-4 +outpace_V2 1.7708517797060386e-4 +outpatient_N 1.4918860049903587e-5 +outperform_V2 2.2538113559895037e-4 +outplay_V2 1.609865254278217e-5 +outpoint_V2 1.609865254278217e-5 +outport_N 3.729715012475897e-6 +outpost_N 1.8648575062379485e-5 +outpouring_N 3.729715012475897e-6 +output_N 3.170257760604512e-4 +outrage_N 1.8648575062379485e-5 +outrage_V2 8.049326271391085e-5 +outrageous_A 5.3865959945272184e-5 +outrageousness_N 3.729715012475897e-6 +outrange_V2 1.609865254278217e-5 +outrank_V2 3.219730508556434e-5 +outre_A 1.0773191989054437e-5 +outreach_N 3.729715012475897e-6 +outride_V2 1.609865254278217e-5 +outrider_N 3.729715012475897e-6 +outrigged_A 1.0773191989054437e-5 +outrigger_N 3.729715012475897e-6 +outright_A 6.463915193432663e-5 +outright_Adv 5.2013800995197394e-5 +outrival_V2 1.609865254278217e-5 +outrun_V2 1.609865254278217e-5 +outsail_V2 1.609865254278217e-5 +outsell_V2 6.439461017112868e-5 +outset_N 2.9837720099807175e-5 +outshine_V2 4.8295957628346505e-5 +outside_A 5.817523674089396e-4 +outside_Adv 5.2013800995197394e-5 +outside_N 3.356743511228307e-5 +outside_Prep 8.381978745696752e-4 +outside_of_Prep 3.991418450331787e-5 +outsider_N 7.086458523704203e-5 +outsize_A 1.0773191989054437e-5 +outsize_N 3.729715012475897e-6 +outskirt_N 3.729715012475897e-6 +outskirts_N 3.729715012475897e-6 +outsmart_V2 1.609865254278217e-5 +outsole_N 3.729715012475897e-6 +outspan_V 2.2678822515534993e-5 +outspan_V2 1.609865254278217e-5 +outspoken_A 9.695872790148993e-5 +outspokenness_N 3.729715012475897e-6 +outspread_A 1.0773191989054437e-5 +outstanding_A 2.4131950055481938e-3 +outstation_N 3.729715012475897e-6 +outstay_V2 1.609865254278217e-5 +outstretched_A 1.0773191989054437e-5 +outstrip_V2 1.4488787288503951e-4 +outstroke_N 3.729715012475897e-6 +outtake_N 3.729715012475897e-6 +outthrust_N 3.729715012475897e-6 +outvie_V2 1.609865254278217e-5 +outvote_V2 1.609865254278217e-5 +outward_A 3.231957596716331e-5 +outward_Adv 1.7337933665065797e-5 +outwardness_N 3.729715012475897e-6 +outwards_Adv 8.668966832532898e-6 +outwear_V2 1.609865254278217e-5 +outweigh_V2 1.7708517797060386e-4 +outwit_V2 1.609865254278217e-5 +outwith_Prep 9.978546125829467e-6 +outwork_N 3.729715012475897e-6 +ouzel_N 3.729715012475897e-6 +ouzo_N 3.729715012475897e-6 +oval_A 1.0773191989054437e-5 +oval_N 3.729715012475897e-6 +ovarian_A 1.0773191989054437e-5 +ovaritis_N 3.729715012475897e-6 +ovary_N 3.729715012475897e-6 +ovate_A 1.0773191989054437e-5 +ovation_N 7.459430024951794e-6 +oven_N 1.118914503742769e-5 +ovenbird_N 3.729715012475897e-6 +ovenware_N 3.729715012475897e-6 +over_Adv 4.2477937479411205e-4 +over_N 1.4918860049903587e-5 +over_Prep 9.120391159008133e-3 +over_abundance_N 3.729715012475897e-6 +over_magazine_V2 3.219730508556434e-5 +over_ripe_A 1.0773191989054437e-5 +overabundance_N 3.729715012475897e-6 +overabundant_A 1.0773191989054437e-5 +overachievement_N 3.729715012475897e-6 +overachiever_N 3.729715012475897e-6 +overact_V 2.2678822515534993e-5 +overact_V2 1.609865254278217e-5 +overactive_A 1.0773191989054437e-5 +overactivity_N 3.729715012475897e-6 +overage_A 1.0773191989054437e-5 +overage_N 3.729715012475897e-6 +overall_A 9.157213190696271e-4 +overall_N 1.8648575062379485e-5 +overambitious_A 1.0773191989054437e-5 +overanxiety_N 3.729715012475897e-6 +overanxious_A 1.0773191989054437e-5 +overarch_V 6.803646754660499e-5 +overarch_V2 1.609865254278217e-5 +overarm_A 1.0773191989054437e-5 +overarm_Adv 8.668966832532898e-6 +overawe_V2 1.609865254278217e-5 +overbalance_V 2.2678822515534993e-5 +overbalance_V2 1.609865254278217e-5 +overbear_V2 1.609865254278217e-5 +overbearing_A 1.0773191989054437e-5 +overbid_N 3.729715012475897e-6 +overbid_V 4.5357645031069986e-5 +overbid_V2 3.219730508556434e-5 +overbite_N 3.729715012475897e-6 +overblown_A 2.1546383978108874e-5 +overboard_Adv 2.6006900497598697e-5 +overbold_A 1.0773191989054437e-5 +overburden_N 3.729715012475897e-6 +overburden_V2 3.219730508556434e-5 +overbusy_A 1.0773191989054437e-5 +overcall_V 2.2678822515534993e-5 +overcall_V2 1.609865254278217e-5 +overcapitalization_N 3.729715012475897e-6 +overcapitalize_V2 1.609865254278217e-5 +overcareful_A 1.0773191989054437e-5 +overcast_A 1.0773191989054437e-5 +overcast_N 3.729715012475897e-6 +overcautious_A 1.0773191989054437e-5 +overcharge_N 1.4918860049903587e-5 +overcharge_V 2.2678822515534993e-5 +overcharge_V2 1.609865254278217e-5 +overclothe_V2 1.609865254278217e-5 +overcloud_V 2.2678822515534993e-5 +overcloud_V2 1.609865254278217e-5 +overcoat_N 3.729715012475897e-6 +overcome_V 1.1339411257767497e-4 +overcome_V2 3.3807170339842556e-4 +overcommit_V2 3.219730508556434e-5 +overcompensation_N 3.729715012475897e-6 +overconfidence_N 3.729715012475897e-6 +overconfident_A 1.0773191989054437e-5 +overcook_V2 1.609865254278217e-5 +overcredulity_N 3.729715012475897e-6 +overcredulous_A 1.0773191989054437e-5 +overcritical_A 1.0773191989054437e-5 +overcrop_V2 1.609865254278217e-5 +overcrowd_V2 3.219730508556434e-5 +overcurious_A 1.0773191989054437e-5 +overdelicate_A 1.0773191989054437e-5 +overdo_V2 3.219730508556434e-5 +overdose_V 6.803646754660499e-5 +overdraft_N 7.459430024951794e-6 +overdraw_V 2.2678822515534993e-5 +overdraw_V2 1.609865254278217e-5 +overdress_V 2.2678822515534993e-5 +overdress_V2 3.219730508556434e-5 +overdrive_N 3.729715012475897e-6 +overdue_A 1.1850511187959881e-4 +overeager_A 2.1546383978108874e-5 +overeat_V 2.2678822515534993e-5 +overemotional_A 1.0773191989054437e-5 +overemphasis_N 3.729715012475897e-6 +overemphasize_V 4.5357645031069986e-5 +overemphasize_V2 3.219730508556434e-5 +overenthusiastic_A 1.0773191989054437e-5 +overestimate_N 3.729715012475897e-6 +overestimate_V2 1.609865254278217e-5 +overexcited_A 1.0773191989054437e-5 +overexert_V2 1.609865254278217e-5 +overexertion_N 3.729715012475897e-6 +overexploitation_N 3.729715012475897e-6 +overexpose_V2 1.609865254278217e-5 +overexposure_N 3.729715012475897e-6 +overfamiliar_A 1.0773191989054437e-5 +overfed_A 1.0773191989054437e-5 +overfeed_V 2.2678822515534993e-5 +overfeed_V2 1.609865254278217e-5 +overfeeding_N 3.729715012475897e-6 +overflight_N 3.729715012475897e-6 +overflow_N 7.459430024951794e-6 +overflow_V 6.803646754660499e-5 +overflow_V2 1.609865254278217e-5 +overfly_V2 1.609865254278217e-5 +overfond_A 1.0773191989054437e-5 +overfull_A 1.0773191989054437e-5 +overgarment_N 3.729715012475897e-6 +overgenerous_A 1.0773191989054437e-5 +overgreedy_A 1.0773191989054437e-5 +overgrown_A 1.0773191989054437e-5 +overgrowth_N 3.729715012475897e-6 +overhand_A 1.0773191989054437e-5 +overhang_N 1.8648575062379485e-5 +overhang_V 2.2678822515534993e-5 +overhang_V2 4.8295957628346505e-5 +overhasty_A 1.0773191989054437e-5 +overhaul_N 6.340515521209024e-5 +overhaul_V2 2.7367709322729687e-4 +overhead_A 5.3865959945272184e-5 +overhead_Adv 2.6006900497598697e-5 +overhead_N 1.118914503742769e-5 +overhear_V2 1.609865254278217e-5 +overheat_V2 4.8295957628346505e-5 +overheating_N 3.729715012475897e-6 +overindulge_V 2.2678822515534993e-5 +overindulge_V2 1.609865254278217e-5 +overindulgence_N 3.729715012475897e-6 +overindulgent_A 1.0773191989054437e-5 +overjealous_A 1.0773191989054437e-5 +overjoyed_A 1.0773191989054437e-5 +overkill_N 3.729715012475897e-6 +overladen_A 1.0773191989054437e-5 +overland_A 1.0773191989054437e-5 +overlap_N 3.729715012475897e-6 +overlap_V 1.1339411257767497e-4 +overlap_V2 1.609865254278217e-5 +overlarge_A 1.0773191989054437e-5 +overlay_N 7.459430024951794e-6 +overlay_V2 4.8295957628346505e-5 +overleaf_Adv 8.668966832532898e-6 +overleap_V2 1.609865254278217e-5 +overlie_V 2.2678822515534993e-5 +overlip_N 3.729715012475897e-6 +overload_N 3.729715012475897e-6 +overload_V2 1.609865254278217e-5 +overlook_N 3.729715012475897e-6 +overlook_V2 1.609865254278217e-4 +overlord_N 3.729715012475897e-6 +overlordship_N 3.729715012475897e-6 +overly_Adv 9.535863515786188e-5 +overmantel_N 3.729715012475897e-6 +overmaster_V2 1.609865254278217e-5 +overmodest_A 1.0773191989054437e-5 +overmuch_A 1.0773191989054437e-5 +overmuch_Adv 8.668966832532898e-6 +overnervous_A 1.0773191989054437e-5 +overnight_A 3.555153356387964e-4 +overnight_Adv 4.33448341626645e-5 +overnighter_N 3.729715012475897e-6 +overpass_N 7.459430024951794e-6 +overpay_V 9.071529006213997e-5 +overpay_V2 4.8295957628346505e-5 +overpayment_N 3.729715012475897e-6 +overplant_V2 3.219730508556434e-5 +overplay_V2 1.609865254278217e-5 +overplus_N 3.729715012475897e-6 +overpopulation_N 3.729715012475897e-6 +overpower_V2 3.219730508556434e-5 +overpowering_A 1.0773191989054437e-5 +overpraise_V2 1.609865254278217e-5 +overpressure_N 3.729715012475897e-6 +overprice_V2 8.049326271391085e-5 +overprint_N 3.729715012475897e-6 +overprint_V2 1.609865254278217e-5 +overproduce_V 2.2678822515534993e-5 +overproduce_V2 1.609865254278217e-5 +overproduction_N 1.4918860049903587e-5 +overprotective_A 1.0773191989054437e-5 +overproud_A 1.0773191989054437e-5 +overrate_V2 1.609865254278217e-5 +overreach_V2 1.609865254278217e-5 +overreaching_A 1.0773191989054437e-5 +overreact_V 2.7214587018641994e-4 +overreaction_N 3.729715012475897e-6 +overrefined_A 1.0773191989054437e-5 +override_N 7.459430024951794e-6 +override_V2 2.4147978814173252e-4 +overriding_A 1.0773191989054437e-5 +overripe_A 1.0773191989054437e-5 +overrule_V2 4.8295957628346505e-5 +overrun_V2 1.609865254278217e-5 +oversea_A 1.0773191989054437e-5 +oversea_Adv 8.668966832532898e-6 +overseas_A 6.787110953104295e-4 +overseas_Adv 4.1611040796157915e-4 +oversee_V2 6.60044754254069e-4 +overseer_N 7.459430024951794e-6 +oversell_V2 3.219730508556434e-5 +oversensitive_A 1.0773191989054437e-5 +oversensitiveness_N 3.729715012475897e-6 +overserious_A 1.0773191989054437e-5 +oversew_V2 1.609865254278217e-5 +oversewn_A 1.0773191989054437e-5 +oversexed_A 1.0773191989054437e-5 +overshadow_V2 1.1269056779947518e-4 +overshoe_N 3.729715012475897e-6 +overshoot_N 3.729715012475897e-6 +overshoot_V2 1.609865254278217e-5 +overside_Adv 8.668966832532898e-6 +oversight_N 4.848629516218666e-5 +oversimplification_N 3.729715012475897e-6 +oversimplify_V 4.5357645031069986e-5 +oversimplify_V2 1.609865254278217e-5 +oversize_A 1.0773191989054437e-5 +overskirt_N 3.729715012475897e-6 +oversleep_V 2.2678822515534993e-5 +oversolicitous_A 1.0773191989054437e-5 +overspend_V 2.2678822515534993e-5 +overspend_V2 1.609865254278217e-5 +overspill_N 3.729715012475897e-6 +overstate_V2 1.609865254278217e-4 +overstatement_N 7.459430024951794e-6 +overstay_V2 1.609865254278217e-5 +overstep_V2 1.609865254278217e-5 +overstock_V2 1.609865254278217e-5 +overstrain_N 3.729715012475897e-6 +overstrain_V2 3.219730508556434e-5 +overstrung_A 1.0773191989054437e-5 +overstuffed_A 1.0773191989054437e-5 +oversubscribe_V2 1.4488787288503951e-4 +oversuspicious_A 1.0773191989054437e-5 +overt_A 4.309276795621775e-5 +overtake_V2 3.219730508556434e-5 +overtax_V2 3.219730508556434e-5 +overthrow_N 3.729715012475897e-6 +overthrow_V2 1.2878922034225736e-4 +overthwart_Prep 9.978546125829467e-6 +overtime_Adv 6.068276782773029e-5 +overtime_N 3.356743511228307e-5 +overtolerance_N 3.729715012475897e-6 +overtone_N 3.729715012475897e-6 +overtop_V2 1.609865254278217e-5 +overtrump_V2 1.609865254278217e-5 +overture_N 1.4918860049903587e-5 +overturn_N 3.729715012475897e-6 +overturn_V 4.5357645031069986e-5 +overturn_V2 1.4488787288503951e-4 +overvaliant_A 1.0773191989054437e-5 +overvaluation_N 3.729715012475897e-6 +overvalue_V2 9.659191525669301e-5 +overview_N 3.729715012475897e-6 +overweening_A 1.0773191989054437e-5 +overweight_A 2.1546383978108874e-5 +overweight_N 7.459430024951794e-6 +overweighted_A 1.0773191989054437e-5 +overwhelm_V2 1.4488787288503951e-4 +overwhelmingly_Adv 4.33448341626645e-5 +overwork_N 3.729715012475897e-6 +overwork_V 2.2678822515534993e-5 +overwork_V2 3.219730508556434e-5 +overwrought_A 2.1546383978108874e-5 +overzealous_A 2.1546383978108874e-5 +oviduct_N 3.729715012475897e-6 +oviedo_PN 1.865462821325971e-5 +ovine_A 1.0773191989054437e-5 +oviparous_A 1.0773191989054437e-5 +ovipositor_N 3.729715012475897e-6 +oviraptorid_N 3.729715012475897e-6 +ovoid_A 1.0773191989054437e-5 +ovoid_N 3.729715012475897e-6 +ovolo_N 3.729715012475897e-6 +ovotestis_N 3.729715012475897e-6 +ovoviviparous_A 1.0773191989054437e-5 +ovular_A 1.0773191989054437e-5 +ovulation_N 3.729715012475897e-6 +ovule_N 3.729715012475897e-6 +ovum_N 3.729715012475897e-6 +owe_V 5.216129178573049e-4 +owe_V2 5.634528389973759e-4 +owe_to_V3 1.5873015873015873e-3 +owing_to_Prep 9.978546125829467e-6 +owl_N 1.118914503742769e-5 +owlet_N 3.729715012475897e-6 +owlish_A 1.0773191989054437e-5 +own_A 5.020307466899368e-3 +own_V 1.1112623032612148e-3 +own_V2 5.296456686575334e-3 +own_up_V 2.2678822515534993e-5 +owner_N 6.191326920709988e-4 +owner_driven_A 1.0773191989054437e-5 +owner_driver_N 3.729715012475897e-6 +owner_occupied_A 1.0773191989054437e-5 +owner_occupier_N 3.729715012475897e-6 +ownerless_A 1.0773191989054437e-5 +ownership_N 3.0210691601054764e-4 +ox_N 7.459430024951794e-6 +oxacillin_N 3.729715012475897e-6 +oxalacetate_N 3.729715012475897e-6 +oxalate_N 3.729715012475897e-6 +oxalis_N 3.729715012475897e-6 +oxaprozin_N 3.729715012475897e-6 +oxazepam_N 3.729715012475897e-6 +oxbow_N 3.729715012475897e-6 +oxbridge_PN 1.865462821325971e-5 +oxcart_N 3.729715012475897e-6 +oxeye_N 3.729715012475897e-6 +oxeyed_A 1.0773191989054437e-5 +oxford_N 3.729715012475897e-6 +oxford_PN 1.865462821325971e-5 +oxfordshire_PN 1.865462821325971e-5 +oxidant_N 3.729715012475897e-6 +oxidase_N 3.729715012475897e-6 +oxidation_N 3.729715012475897e-6 +oxidative_A 1.0773191989054437e-5 +oxide_N 1.118914503742769e-5 +oxidizable_A 1.0773191989054437e-5 +oxidization_N 3.729715012475897e-6 +oxidize_V 2.2678822515534993e-5 +oxidize_V2 1.609865254278217e-5 +oxidoreductase_N 3.729715012475897e-6 +oxime_N 3.729715012475897e-6 +oximeter_N 3.729715012475897e-6 +oxlip_N 3.729715012475897e-6 +oxon_PN 1.865462821325971e-5 +oxonian_A 1.0773191989054437e-5 +oxonian_N 3.729715012475897e-6 +oxtail_N 3.729715012475897e-6 +oxtant_N 3.729715012475897e-6 +oxted_PN 1.865462821325971e-5 +oxtongue_N 3.729715012475897e-6 +oxyacetylene_A 1.0773191989054437e-5 +oxyacetylene_N 3.729715012475897e-6 +oxyacid_N 3.729715012475897e-6 +oxycephaly_N 3.729715012475897e-6 +oxygen_N 2.237829007485538e-5 +oxygenase_N 3.729715012475897e-6 +oxygenate_V2 1.609865254278217e-5 +oxygenation_N 3.729715012475897e-6 +oxygenize_V2 1.609865254278217e-5 +oxyhemoglobin_N 3.729715012475897e-6 +oxymoron_N 3.729715012475897e-6 +oxyopia_N 3.729715012475897e-6 +oxyphenbutazone_N 3.729715012475897e-6 +oxyphencyclimine_N 3.729715012475897e-6 +oxytetracycline_N 3.729715012475897e-6 +oxytocic_N 3.729715012475897e-6 +oxytocin_N 3.729715012475897e-6 +oxytone_N 3.729715012475897e-6 +oyabun_N 3.729715012475897e-6 +oyster_N 3.729715012475897e-6 +oyster_bank_N 3.729715012475897e-6 +oyster_bar_N 3.729715012475897e-6 +oyster_bed_N 3.729715012475897e-6 +oyster_catcher_N 3.729715012475897e-6 +oystercatcher_N 3.729715012475897e-6 +oz_N 3.729715012475897e-6 +ozena_N 3.729715012475897e-6 +ozone_N 8.205373027446973e-5 +ozonide_N 3.729715012475897e-6 +ozzie_PN 1.865462821325971e-5 +pa_N 3.729715012475897e-6 +paanga_N 3.729715012475897e-6 +pabulum_N 3.729715012475897e-6 +paca_N 3.729715012475897e-6 +pace_N 2.349720457859815e-4 +pace_Prep 9.978546125829467e-6 +pace_V 4.5357645031069986e-5 +pace_V2 3.219730508556434e-5 +pacemaker_N 2.237829007485538e-5 +pacer_N 3.729715012475897e-6 +pacesetter_N 3.729715012475897e-6 +pachinko_N 5.967544019961435e-5 +pachisi_N 3.729715012475897e-6 +pachuco_N 3.729715012475897e-6 +pachycephalosaur_N 3.729715012475897e-6 +pachycheilia_N 3.729715012475897e-6 +pachyderm_N 3.729715012475897e-6 +pachydermatous_A 1.0773191989054437e-5 +pachysandra_N 3.729715012475897e-6 +pachytene_N 3.729715012475897e-6 +pacific_A 9.695872790148993e-5 +pacific_PN 1.4923702570607768e-4 +pacifically_Adv 8.668966832532898e-6 +pacification_N 3.729715012475897e-6 +pacifier_N 3.729715012475897e-6 +pacifism_N 3.729715012475897e-6 +pacifist_N 3.729715012475897e-6 +pacifistically_Adv 8.668966832532898e-6 +pacify_V2 3.219730508556434e-5 +pacing_N 3.729715012475897e-6 +pack_N 4.475658014971076e-5 +pack_V 1.8143058012427994e-4 +pack_V2 1.4488787288503951e-4 +pack_animal_N 3.729715012475897e-6 +pack_away_V2 1.609865254278217e-5 +pack_in_V 2.2678822515534993e-5 +pack_in_V2 1.609865254278217e-5 +pack_it_in_V 2.2678822515534993e-5 +pack_off_V2 1.609865254278217e-5 +pack_out_V2 1.609865254278217e-5 +pack_saddle_N 3.729715012475897e-6 +pack_thread_N 3.729715012475897e-6 +pack_up_V 2.2678822515534993e-5 +pack_up_V2 1.609865254278217e-5 +packable_A 1.0773191989054437e-5 +package_N 4.662143765594871e-4 +package_V2 3.058743983128612e-4 +packaging_N 7.459430024951794e-6 +packer_N 3.729715012475897e-6 +packet_N 2.237829007485538e-5 +packet_boat_N 3.729715012475897e-6 +packhorse_N 3.729715012475897e-6 +packing_N 3.729715012475897e-6 +packing_case_N 3.729715012475897e-6 +packing_needle_N 3.729715012475897e-6 +packinghouse_N 3.729715012475897e-6 +packrat_N 3.729715012475897e-6 +packsaddle_N 3.729715012475897e-6 +packthread_N 3.729715012475897e-6 +pact_N 1.9021546563627073e-4 +pad_N 1.118914503742769e-5 +pad_V 2.2678822515534993e-5 +pad_V2 3.219730508556434e-5 +pad_down_V 2.2678822515534993e-5 +pad_out_V2 1.609865254278217e-5 +padauk_N 3.729715012475897e-6 +padding_N 7.459430024951794e-6 +paddle_N 7.459430024951794e-6 +paddle_V 2.2678822515534993e-5 +paddle_V2 1.609865254278217e-5 +paddle_box_N 3.729715012475897e-6 +paddle_steamer_N 3.729715012475897e-6 +paddle_wheel_N 3.729715012475897e-6 +paddlefish_N 3.729715012475897e-6 +paddlewheel_N 3.729715012475897e-6 +paddock_N 3.729715012475897e-6 +paddy_N 3.729715012475897e-6 +paddy_PN 1.865462821325971e-5 +paddy_field_N 3.729715012475897e-6 +paddy_wagon_N 3.729715012475897e-6 +pademelon_N 3.729715012475897e-6 +padlock_N 3.729715012475897e-6 +padlock_V2 1.609865254278217e-5 +padova_PN 1.865462821325971e-5 +padre_N 3.729715012475897e-6 +padrone_N 3.729715012475897e-6 +padua_PN 1.865462821325971e-5 +paean_N 7.459430024951794e-6 +paederasty_N 3.729715012475897e-6 +paediatrics_N 3.729715012475897e-6 +paella_N 3.729715012475897e-6 +paeony_N 3.729715012475897e-6 +pagan_A 1.0773191989054437e-5 +pagan_N 3.729715012475897e-6 +paganism_N 3.729715012475897e-6 +page_N 3.468634961602584e-4 +page_V2 1.609865254278217e-5 +pageant_N 1.118914503742769e-5 +pageantry_N 7.459430024951794e-6 +pageboy_N 3.729715012475897e-6 +pagination_N 3.729715012475897e-6 +paging_N 3.729715012475897e-6 +pagoda_N 3.729715012475897e-6 +pahautea_N 3.729715012475897e-6 +pahoehoe_N 3.729715012475897e-6 +pail_N 1.118914503742769e-5 +pailful_N 3.729715012475897e-6 +paillasse_N 3.729715012475897e-6 +pailliasse_N 3.729715012475897e-6 +pain_N 5.594572518713845e-5 +pain_V2 3.219730508556434e-5 +painful_A 2.3701022375919762e-4 +painfulness_N 3.729715012475897e-6 +painkiller_N 3.729715012475897e-6 +painless_A 2.1546383978108874e-5 +painstaking_A 2.1546383978108874e-5 +paint_N 2.237829007485538e-5 +paint_V 1.5875175760874494e-4 +paint_V2 2.575784406845147e-4 +paintable_A 1.0773191989054437e-5 +paintball_N 3.729715012475897e-6 +paintbox_N 3.729715012475897e-6 +paintbrush_N 7.459430024951794e-6 +painter_N 1.4918860049903587e-5 +painterly_A 1.0773191989054437e-5 +painting_N 1.9021546563627073e-4 +pair_N 3.729715012475897e-5 +pair_V 6.803646754660499e-5 +pair_V2 8.049326271391085e-5 +pair_off_V 2.2678822515534993e-5 +pair_off_V2 1.609865254278217e-5 +pair_off_with_V2 1.609865254278217e-5 +pair_up_V 2.2678822515534993e-5 +pairing_N 3.729715012475897e-6 +paisa_N 3.729715012475897e-6 +paisley_N 3.729715012475897e-6 +paisley_PN 1.865462821325971e-5 +pajama_N 3.729715012475897e-6 +pakistan_PN 2.052009103458568e-4 +pakistani_A 4.309276795621775e-5 +pakistani_N 3.729715012475897e-6 +pal_N 1.118914503742769e-5 +pal_V 2.2678822515534993e-5 +pal_about_V 2.2678822515534993e-5 +pal_around_V 2.2678822515534993e-5 +pal_up_V 2.2678822515534993e-5 +palace_N 1.118914503742769e-5 +paladin_N 3.729715012475897e-6 +palaeolithic_A 1.0773191989054437e-5 +palaeontologist_N 3.729715012475897e-6 +palaeontology_N 3.729715012475897e-6 +palankeen_N 3.729715012475897e-6 +palanquin_N 3.729715012475897e-6 +palatability_N 3.729715012475897e-6 +palatable_A 2.1546383978108874e-5 +palatal_A 1.0773191989054437e-5 +palatal_N 3.729715012475897e-6 +palate_N 7.459430024951794e-6 +palatial_A 2.1546383978108874e-5 +palatinate_N 3.729715012475897e-6 +palatine_A 1.0773191989054437e-5 +palatine_N 3.729715012475897e-6 +palatoglossal_A 1.0773191989054437e-5 +palatopharyngoplasty_N 3.729715012475897e-6 +palaver_N 3.729715012475897e-6 +palaver_V 2.2678822515534993e-5 +pale_A 6.463915193432663e-5 +pale_N 7.459430024951794e-6 +pale_V 1.1339411257767497e-4 +paleencephalon_N 3.729715012475897e-6 +paleface_N 3.729715012475897e-6 +palembang_PN 1.865462821325971e-5 +paleness_N 3.729715012475897e-6 +paleoanthropological_A 1.0773191989054437e-5 +paleoanthropology_N 3.729715012475897e-6 +paleobiology_N 3.729715012475897e-6 +paleobotany_N 3.729715012475897e-6 +paleocerebellum_N 3.729715012475897e-6 +paleoclimatology_N 3.729715012475897e-6 +paleocortical_A 1.0773191989054437e-5 +paleodendrology_N 3.729715012475897e-6 +paleoecology_N 3.729715012475897e-6 +paleoethnography_N 3.729715012475897e-6 +paleogeography_N 3.729715012475897e-6 +paleogeology_N 3.729715012475897e-6 +paleographer_N 3.729715012475897e-6 +paleography_N 3.729715012475897e-6 +paleolith_N 3.729715012475897e-6 +paleolithic_A 1.0773191989054437e-5 +paleology_N 3.729715012475897e-6 +paleomammalogy_N 3.729715012475897e-6 +paleontological_A 1.0773191989054437e-5 +paleontologist_N 3.729715012475897e-6 +paleontology_N 3.729715012475897e-6 +paleopathology_N 3.729715012475897e-6 +paleornithology_N 3.729715012475897e-6 +paleozoology_N 3.729715012475897e-6 +palermo_PN 1.865462821325971e-5 +palestine_PN 1.865462821325971e-5 +palestinian_A 1.2927830386865325e-4 +palestinian_N 7.459430024951794e-6 +palestra_N 3.729715012475897e-6 +paletiology_N 3.729715012475897e-6 +palette_N 3.729715012475897e-6 +palette_knife_N 3.729715012475897e-6 +palfrey_N 3.729715012475897e-6 +palilalia_N 3.729715012475897e-6 +palimony_N 3.729715012475897e-6 +palimpsest_N 3.729715012475897e-6 +palindrome_N 3.729715012475897e-6 +paling_N 3.729715012475897e-6 +palingenesis_N 3.729715012475897e-6 +palingenetic_A 1.0773191989054437e-5 +palisade_N 3.729715012475897e-6 +palisade_V2 1.609865254278217e-5 +palish_A 1.0773191989054437e-5 +pall_N 3.356743511228307e-5 +pall_V 2.2678822515534993e-5 +palladium_N 3.729715012475897e-6 +pallasite_N 3.729715012475897e-6 +pallbearer_N 3.729715012475897e-6 +pallet_N 3.729715012475897e-6 +pallette_N 3.729715012475897e-6 +palliasse_N 3.729715012475897e-6 +palliate_V2 1.609865254278217e-5 +palliation_N 3.729715012475897e-6 +palliative_A 1.0773191989054437e-5 +palliative_N 3.729715012475897e-6 +pallid_A 1.0773191989054437e-5 +pallidness_N 3.729715012475897e-6 +pallidum_N 3.729715012475897e-6 +pallium_N 3.729715012475897e-6 +pallone_N 3.729715012475897e-6 +pallor_N 7.459430024951794e-6 +pally_A 1.0773191989054437e-5 +palm_N 2.6108005087331277e-5 +palm_V2 4.8295957628346505e-5 +palm_off_V 2.2678822515534993e-5 +palm_off_V2 1.609865254278217e-5 +palm_oil_N 3.729715012475897e-6 +palmar_A 1.0773191989054437e-5 +palmate_A 1.0773191989054437e-5 +palmatifid_A 1.0773191989054437e-5 +palmature_N 3.729715012475897e-6 +palmer_N 3.729715012475897e-6 +palmetto_N 3.729715012475897e-6 +palmist_N 3.729715012475897e-6 +palmistry_N 3.729715012475897e-6 +palmitin_N 3.729715012475897e-6 +palmlike_A 1.0773191989054437e-5 +palmy_A 1.0773191989054437e-5 +palmyra_N 3.729715012475897e-6 +palometa_N 3.729715012475897e-6 +palomino_N 3.729715012475897e-6 +paloverde_N 3.729715012475897e-6 +palpable_A 1.0773191989054437e-5 +palpation_N 3.729715012475897e-6 +palpatory_A 1.0773191989054437e-5 +palpebrate_A 1.0773191989054437e-5 +palpebration_N 3.729715012475897e-6 +palpitant_A 1.0773191989054437e-5 +palpitate_V 2.2678822515534993e-5 +palpitation_N 3.729715012475897e-6 +palsy_N 3.729715012475897e-6 +palsy_V2 1.609865254278217e-5 +palter_V 2.2678822515534993e-5 +paltriness_N 3.729715012475897e-6 +paltry_A 5.3865959945272184e-5 +pam_PN 1.865462821325971e-5 +pamela_PN 1.865462821325971e-5 +pampas_N 3.729715012475897e-6 +pampas_grass_N 3.729715012475897e-6 +pamper_V2 4.8295957628346505e-5 +pamperer_N 3.729715012475897e-6 +pamphlet_N 1.118914503742769e-5 +pamphleteer_N 7.459430024951794e-6 +pamplona_PN 1.865462821325971e-5 +pan_N 3.729715012475897e-6 +pan_V 1.1339411257767497e-4 +pan_V2 1.609865254278217e-5 +pan_out_V 2.2678822515534993e-5 +panacea_N 7.459430024951794e-6 +panache_N 3.729715012475897e-6 +panama_N 3.729715012475897e-6 +panama_PN 8.95422154236466e-4 +panamanian_A 2.3701022375919762e-4 +panamanian_N 3.729715012475897e-6 +panatela_N 3.729715012475897e-6 +panatella_N 3.729715012475897e-6 +pancake_N 7.459430024951794e-6 +pancarditis_N 3.729715012475897e-6 +panchayat_N 3.729715012475897e-6 +panchromatic_A 1.0773191989054437e-5 +pancreas_N 7.459430024951794e-6 +pancreatectomy_N 3.729715012475897e-6 +pancreatic_A 1.0773191989054437e-5 +pancreatin_N 3.729715012475897e-6 +pancreatitis_N 3.729715012475897e-6 +pancytopenia_N 3.729715012475897e-6 +panda_N 7.459430024951794e-6 +pandanus_N 3.729715012475897e-6 +pandemic_A 1.0773191989054437e-5 +pandemic_N 3.729715012475897e-6 +pandemonium_N 7.459430024951794e-6 +pander_N 3.729715012475897e-6 +pander_V 2.2678822515534993e-5 +panderer_N 3.729715012475897e-6 +pandiculation_N 3.729715012475897e-6 +pandurate_A 1.0773191989054437e-5 +pane_N 3.729715012475897e-6 +panegyric_N 3.729715012475897e-6 +panel_N 3.394040661353066e-4 +panel_V2 1.609865254278217e-5 +paneled_A 1.0773191989054437e-5 +paneling_N 3.729715012475897e-6 +panelist_N 3.729715012475897e-6 +panelling_N 3.729715012475897e-6 +panencephalitis_N 3.729715012475897e-6 +panfish_N 3.729715012475897e-6 +pang_N 7.459430024951794e-6 +panga_N 3.729715012475897e-6 +pangolin_N 3.729715012475897e-6 +panhandle_N 7.459430024951794e-6 +panhandle_V 2.2678822515534993e-5 +panhandler_N 3.729715012475897e-6 +panic_N 2.051343256861743e-4 +panic_V 2.2678822515534994e-4 +panic_V2 3.219730508556434e-5 +panic_stricken_A 1.0773191989054437e-5 +panicky_A 6.463915193432663e-5 +panicle_N 3.729715012475897e-6 +panicled_A 1.0773191989054437e-5 +paniculate_A 1.0773191989054437e-5 +panjandrum_N 7.459430024951794e-6 +pannier_N 3.729715012475897e-6 +pannikin_N 3.729715012475897e-6 +panoplied_A 1.0773191989054437e-5 +panoply_N 3.729715012475897e-6 +panoptic_A 1.0773191989054437e-5 +panopticon_N 3.729715012475897e-6 +panorama_N 3.729715012475897e-6 +panoramic_A 2.1546383978108874e-5 +panpipe_N 3.729715012475897e-6 +pansexual_N 3.729715012475897e-6 +pansinusitis_N 3.729715012475897e-6 +pansy_N 3.729715012475897e-6 +pant_N 2.237829007485538e-5 +pant_V 2.2678822515534993e-5 +pant_V2 1.609865254278217e-5 +pantaloon_N 3.729715012475897e-6 +pantechnicon_N 3.729715012475897e-6 +pantheism_N 3.729715012475897e-6 +pantheist_A 1.0773191989054437e-5 +pantheist_N 3.729715012475897e-6 +pantheistic_A 1.0773191989054437e-5 +pantheon_N 3.729715012475897e-6 +panther_N 3.729715012475897e-6 +pantie_N 3.729715012475897e-6 +pantile_N 3.729715012475897e-6 +panting_N 3.729715012475897e-6 +pantingly_Adv 8.668966832532898e-6 +panto_N 3.729715012475897e-6 +pantograph_N 3.729715012475897e-6 +pantomime_N 3.729715012475897e-6 +pantropical_A 1.0773191989054437e-5 +pantry_N 7.459430024951794e-6 +pantryman_N 3.729715012475897e-6 +panty_hose_N 3.729715012475897e-6 +pantyhose_N 3.729715012475897e-6 +panzer_A 1.0773191989054437e-5 +panzer_N 3.729715012475897e-6 +paotow_PN 1.865462821325971e-5 +pap_N 1.118914503742769e-5 +papa_N 7.459430024951794e-6 +papacy_N 3.729715012475897e-6 +papain_N 3.729715012475897e-6 +papal_A 1.0773191989054437e-5 +paparazzo_N 3.729715012475897e-6 +papaverine_N 3.729715012475897e-6 +papaw_N 3.729715012475897e-6 +papaya_N 3.729715012475897e-6 +paper_N 1.0443202034932512e-3 +paper_V2 1.609865254278217e-5 +paper_chase_N 3.729715012475897e-6 +paper_over_V2 1.609865254278217e-5 +paperback_A 1.0773191989054437e-5 +paperback_N 7.459430024951794e-6 +paperbacked_A 1.0773191989054437e-5 +paperboard_N 3.729715012475897e-6 +paperboy_N 3.729715012475897e-6 +paperclip_N 7.459430024951794e-6 +paperhanger_N 3.729715012475897e-6 +papering_N 3.729715012475897e-6 +paperknife_N 3.729715012475897e-6 +paperless_A 1.0773191989054437e-5 +papermaking_N 3.729715012475897e-6 +papermill_N 3.729715012475897e-6 +paperweight_N 3.729715012475897e-6 +paperwork_N 7.459430024951794e-6 +papery_A 1.0773191989054437e-5 +papier_mache_N 3.729715012475897e-6 +papilla_N 3.729715012475897e-6 +papillary_A 1.0773191989054437e-5 +papillate_A 1.0773191989054437e-5 +papilledema_N 3.729715012475897e-6 +papilliform_A 1.0773191989054437e-5 +papilloma_N 3.729715012475897e-6 +papillon_N 3.729715012475897e-6 +papist_A 1.0773191989054437e-5 +papist_N 3.729715012475897e-6 +papoose_N 3.729715012475897e-6 +papovavirus_N 3.729715012475897e-6 +pappose_A 1.0773191989054437e-5 +pappus_N 3.729715012475897e-6 +paprika_N 3.729715012475897e-6 +papua_PN 1.865462821325971e-5 +papuan_A 1.0773191989054437e-5 +papuan_N 3.729715012475897e-6 +papule_N 3.729715012475897e-6 +papulovesicle_N 3.729715012475897e-6 +papyrus_N 3.729715012475897e-6 +par_N 2.275126157610297e-4 +par_down_V 2.2678822515534993e-5 +par_excellence_Adv 8.668966832532898e-6 +para_N 3.729715012475897e-6 +parable_N 3.729715012475897e-6 +parabola_N 3.729715012475897e-6 +parabolic_A 1.0773191989054437e-5 +parabolical_A 1.0773191989054437e-5 +paraboloid_N 3.729715012475897e-6 +paraboloidal_A 1.0773191989054437e-5 +parachute_N 1.118914503742769e-5 +parachute_V 9.071529006213997e-5 +parachute_V2 1.609865254278217e-5 +parachutist_N 3.729715012475897e-6 +paracosm_N 3.729715012475897e-6 +parade_N 2.9837720099807175e-5 +parade_V 2.2678822515534993e-5 +parade_V2 1.609865254278217e-5 +parade_ground_N 3.729715012475897e-6 +paradiddle_N 3.729715012475897e-6 +paradigm_N 3.729715012475897e-6 +paradigmatic_A 1.0773191989054437e-5 +paradise_N 7.459430024951794e-6 +paradisiac_A 1.0773191989054437e-5 +paradisiacal_A 1.0773191989054437e-5 +paradox_N 1.8648575062379485e-5 +paradoxical_A 1.0773191989054437e-5 +paraffin_N 3.729715012475897e-6 +parafovea_N 3.729715012475897e-6 +paragon_N 3.729715012475897e-6 +paragonite_N 3.729715012475897e-6 +paragraph_N 1.8648575062379485e-5 +paragraph_V2 1.609865254278217e-5 +paragrapher_N 3.729715012475897e-6 +paraguay_PN 1.865462821325971e-5 +paraguayan_A 1.0773191989054437e-5 +paraguayan_N 3.729715012475897e-6 +parakeet_N 1.4918860049903587e-5 +paralanguage_N 3.729715012475897e-6 +paraldehyde_N 3.729715012475897e-6 +paralegal_N 3.729715012475897e-6 +paralepsis_N 3.729715012475897e-6 +parallax_N 3.729715012475897e-6 +parallel_A 6.463915193432663e-5 +parallel_N 3.729715012475897e-5 +parallel_V2 8.049326271391085e-5 +parallelepiped_N 3.729715012475897e-6 +parallelism_N 3.729715012475897e-6 +parallelogram_N 3.729715012475897e-6 +paralogism_N 3.729715012475897e-6 +paralyse_V2 1.609865254278217e-5 +paralysis_N 1.118914503742769e-5 +paralytic_A 1.0773191989054437e-5 +paralytic_N 3.729715012475897e-6 +paralyze_V2 1.1269056779947518e-4 +paramagnet_N 3.729715012475897e-6 +paramagnetic_A 1.0773191989054437e-5 +paramagnetism_N 3.729715012475897e-6 +paramecium_N 3.729715012475897e-6 +paramedic_N 3.729715012475897e-6 +paramedical_A 1.0773191989054437e-5 +parameter_N 7.459430024951794e-6 +parametric_A 1.0773191989054437e-5 +parametritis_N 3.729715012475897e-6 +paramilitary_A 2.1546383978108874e-5 +paramilitary_N 3.729715012475897e-6 +paramnesia_N 3.729715012475897e-6 +paramount_A 2.1546383978108874e-5 +paramountcy_N 3.729715012475897e-6 +paramour_N 3.729715012475897e-6 +paramyxovirus_N 3.729715012475897e-6 +paranasal_A 1.0773191989054437e-5 +parang_N 3.729715012475897e-6 +paranoia_N 7.459430024951794e-6 +paranoiac_N 3.729715012475897e-6 +paranoid_A 3.231957596716331e-5 +paranoid_N 3.729715012475897e-6 +paranormal_A 1.0773191989054437e-5 +paraparesis_N 3.729715012475897e-6 +parapet_N 3.729715012475897e-6 +paraph_N 3.729715012475897e-6 +paraphernalia_N 3.729715012475897e-6 +paraphilia_N 3.729715012475897e-6 +paraphrase_N 3.729715012475897e-6 +paraphrase_V2 1.609865254278217e-5 +paraphrastic_A 1.0773191989054437e-5 +paraphysis_N 3.729715012475897e-6 +paraplegia_N 3.729715012475897e-6 +paraplegic_A 1.0773191989054437e-5 +paraplegic_N 3.729715012475897e-6 +parapodium_N 3.729715012475897e-6 +paraprofessional_N 3.729715012475897e-6 +parapsychological_A 1.0773191989054437e-5 +parapsychologist_N 3.729715012475897e-6 +paraquat_N 3.729715012475897e-6 +parasail_N 3.729715012475897e-6 +parasailing_N 3.729715012475897e-6 +parasite_N 7.459430024951794e-6 +parasitemia_N 3.729715012475897e-6 +parasitic_A 1.0773191989054437e-5 +parasitical_A 1.0773191989054437e-5 +parasitism_N 3.729715012475897e-6 +parasol_N 3.729715012475897e-6 +parasympathetic_A 1.0773191989054437e-5 +parasympathomimetic_A 1.0773191989054437e-5 +parathion_N 3.729715012475897e-6 +paratrooper_N 3.729715012475897e-6 +paratroops_N 3.729715012475897e-6 +paratyphoid_N 3.729715012475897e-6 +parboil_V2 1.609865254278217e-5 +parcel_N 2.6108005087331277e-5 +parcel_V2 4.8295957628346505e-5 +parcel_out_V 2.2678822515534993e-5 +parcellation_N 3.729715012475897e-6 +parch_V2 3.219730508556434e-5 +parchment_N 3.729715012475897e-6 +pardon_N 7.459430024951794e-6 +pardon_V2 3.219730508556434e-5 +pardonable_A 1.0773191989054437e-5 +pardoner_N 3.729715012475897e-6 +pare_V2 1.609865254278217e-4 +pare_back_V2 1.609865254278217e-5 +pare_down_V2 1.609865254278217e-5 +paregmenon_N 3.729715012475897e-6 +paregoric_N 3.729715012475897e-6 +parenchyma_N 3.729715012475897e-6 +parent_N 8.69023597906884e-4 +parentage_N 3.729715012475897e-6 +parental_A 8.61855359124355e-5 +parented_A 1.0773191989054437e-5 +parenteral_A 1.0773191989054437e-5 +parenthesis_N 3.729715012475897e-6 +parenthetic_A 1.0773191989054437e-5 +parenthetical_A 1.0773191989054437e-5 +parenthood_N 3.729715012475897e-6 +parer_N 3.729715012475897e-6 +paresis_N 3.729715012475897e-6 +paresthesia_N 3.729715012475897e-6 +paretic_N 3.729715012475897e-6 +pareve_A 1.0773191989054437e-5 +parfait_N 3.729715012475897e-6 +parget_N 3.729715012475897e-6 +pargeting_N 3.729715012475897e-6 +parhelic_A 1.0773191989054437e-5 +parhelion_N 3.729715012475897e-6 +pari_mutuel_N 3.729715012475897e-6 +pari_passu_Adv 8.668966832532898e-6 +pariah_N 7.459430024951794e-6 +pariah_dog_N 3.729715012475897e-6 +parietal_A 1.0773191989054437e-5 +parimutuel_N 3.729715012475897e-6 +paring_N 3.729715012475897e-6 +paris_PN 1.026004551729284e-3 +parish_N 7.459430024951794e-6 +parishioner_N 7.459430024951794e-6 +parisian_A 3.231957596716331e-5 +parisian_N 3.729715012475897e-6 +parisology_N 3.729715012475897e-6 +parity_N 4.475658014971076e-5 +park_N 1.268103104241805e-4 +park_V 1.1339411257767497e-4 +park_V2 6.439461017112868e-5 +parka_N 3.729715012475897e-6 +parking_N 7.086458523704203e-5 +parkinson's_A 1.0773191989054437e-5 +parky_A 1.0773191989054437e-5 +parlance_N 1.4918860049903587e-5 +parlay_N 3.729715012475897e-6 +parley_N 7.459430024951794e-6 +parley_V 2.2678822515534993e-5 +parliament_N 4.848629516218666e-5 +parliamentarian_N 7.459430024951794e-6 +parliamentary_A 1.508246878467621e-4 +parlor_N 2.6108005087331277e-5 +parlormaid_N 3.729715012475897e-6 +parlour_N 3.729715012475897e-6 +parlour_car_N 3.729715012475897e-6 +parlous_A 1.0773191989054437e-5 +parma_PN 1.865462821325971e-5 +parmesan_N 3.729715012475897e-6 +parnassia_N 3.729715012475897e-6 +parochial_A 3.231957596716331e-5 +parochialism_N 3.729715012475897e-6 +parodist_N 3.729715012475897e-6 +parody_N 1.8648575062379485e-5 +parody_V2 1.609865254278217e-5 +paroicous_A 1.0773191989054437e-5 +parole_N 3.729715012475897e-6 +parole_V2 1.609865254278217e-5 +paronychia_N 3.729715012475897e-6 +paroquet_N 3.729715012475897e-6 +parotid_A 1.0773191989054437e-5 +parotitis_N 3.729715012475897e-6 +parous_A 1.0773191989054437e-5 +paroxetime_N 3.729715012475897e-6 +paroxysm_N 3.729715012475897e-6 +paroxysmal_A 1.0773191989054437e-5 +paroxytone_N 3.729715012475897e-6 +parquet_N 3.729715012475897e-6 +parquetry_N 3.729715012475897e-6 +parr_N 3.729715012475897e-6 +parricide_N 3.729715012475897e-6 +parrot_N 3.729715012475897e-6 +parrotfish_N 3.729715012475897e-6 +parrotlike_A 1.0773191989054437e-5 +parry_N 3.729715012475897e-6 +parry_V2 4.8295957628346505e-5 +parse_V2 1.609865254278217e-5 +parsec_N 3.729715012475897e-6 +parsee_N 3.729715012475897e-6 +parser_N 3.729715012475897e-6 +parsimonious_A 1.0773191989054437e-5 +parsimony_N 3.729715012475897e-6 +parsley_N 3.729715012475897e-6 +parsnip_N 3.729715012475897e-6 +parson_N 3.729715012475897e-6 +parsonage_N 3.729715012475897e-6 +part_Adv 8.668966832532898e-6 +part_N 1.9394518064874664e-4 +part_V 6.803646754660499e-5 +part_V2 3.219730508556434e-5 +part_of_N2 0.832409972299169 +part_owner_N 3.729715012475897e-6 +part_singing_N 3.729715012475897e-6 +part_song_N 3.729715012475897e-6 +part_time_A 7.541234392338106e-5 +part_time_Adv 1.7337933665065797e-5 +part_timer_N 3.729715012475897e-6 +part_with_V2 1.609865254278217e-5 +partake_V 4.5357645031069986e-5 +partake_V2 1.609865254278217e-5 +partaker_N 3.729715012475897e-6 +parterre_N 3.729715012475897e-6 +parthenocarpy_N 3.729715012475897e-6 +parthenogenesis_N 3.729715012475897e-6 +parthenote_N 3.729715012475897e-6 +parthian_A 1.0773191989054437e-5 +parti_coloured_A 1.0773191989054437e-5 +partial_A 4.093812955840686e-4 +partiality_N 3.729715012475897e-6 +partialness_N 3.729715012475897e-6 +partible_A 1.0773191989054437e-5 +participant_N 2.237829007485538e-4 +participate_V 1.3607293509320995e-3 +participate_V2 4.8295957628346505e-5 +participation_N 1.2308059541170458e-4 +participatory_A 1.0773191989054437e-5 +participial_A 1.0773191989054437e-5 +participle_N 3.729715012475897e-6 +particle_N 7.459430024951794e-6 +particular_A 2.391648621570085e-3 +particular_N 2.237829007485538e-5 +particularism_N 3.729715012475897e-6 +particularistic_A 1.0773191989054437e-5 +particularity_N 3.729715012475897e-6 +particularization_N 3.729715012475897e-6 +particularize_V 2.2678822515534993e-5 +particularize_V2 1.609865254278217e-5 +particulate_A 1.0773191989054437e-5 +particulate_N 3.729715012475897e-6 +parting_N 7.459430024951794e-6 +partisan_A 5.3865959945272184e-5 +partisan_N 1.4918860049903587e-5 +partisanship_N 3.729715012475897e-6 +partita_N 3.729715012475897e-6 +partition_N 3.729715012475897e-6 +partition_V2 1.609865254278217e-5 +partitionist_N 3.729715012475897e-6 +partitive_A 1.0773191989054437e-5 +partitive_N 3.729715012475897e-6 +partly_Adv 9.709242852436846e-4 +partner_N 7.347538574577516e-4 +partner_V2 1.609865254278217e-5 +partnership_N 3.7297150124758965e-4 +partridge_N 3.729715012475897e-6 +partridgeberry_N 3.729715012475897e-6 +parts_N 3.729715012475897e-6 +partsong_N 3.729715012475897e-6 +parturiency_N 3.729715012475897e-6 +parturient_A 1.0773191989054437e-5 +parturition_N 3.729715012475897e-6 +party_N 7.347538574577516e-4 +party_spirit_N 3.729715012475897e-6 +party_spirited_A 1.0773191989054437e-5 +party_wall_N 3.729715012475897e-6 +partygoer_N 3.729715012475897e-6 +parvenu_A 1.0773191989054437e-5 +parvenu_N 3.729715012475897e-6 +parvis_N 3.729715012475897e-6 +parvovirus_N 3.729715012475897e-6 +pas_N 3.729715012475897e-6 +pascal_N 3.729715012475897e-6 +paschal_A 1.0773191989054437e-5 +pasha_N 7.459430024951794e-6 +pashto_N 3.729715012475897e-6 +pasqueflower_N 3.729715012475897e-6 +pass_N 1.8648575062379485e-5 +pass_V 1.6101963986029845e-3 +pass_V2 1.3844841186792666e-3 +pass_around_V2 1.609865254278217e-5 +pass_as_V2 1.609865254278217e-5 +pass_away_V 2.2678822515534993e-5 +pass_back_V2 1.609865254278217e-5 +pass_by_V 2.2678822515534993e-5 +pass_by_V2 1.609865254278217e-5 +pass_down_V2 1.609865254278217e-5 +pass_for_V2 1.609865254278217e-5 +pass_off_V 2.2678822515534993e-5 +pass_off_V2 1.609865254278217e-5 +pass_on_V 2.2678822515534993e-5 +pass_on_V2 1.609865254278217e-5 +pass_on_to_V2 1.609865254278217e-5 +pass_out_V 2.2678822515534993e-5 +pass_out_V2 1.609865254278217e-5 +pass_over_V 2.2678822515534993e-5 +pass_over_V2 1.609865254278217e-5 +pass_round_V2 1.609865254278217e-5 +pass_through_V2 1.609865254278217e-5 +pass_to_V2 1.609865254278217e-5 +pass_up_V2 1.609865254278217e-5 +passable_A 4.309276795621775e-5 +passage_N 7.086458523704203e-5 +passageway_N 3.729715012475897e-6 +passbook_N 1.118914503742769e-5 +passe_A 1.0773191989054437e-5 +passee_A 1.0773191989054437e-5 +passenger_N 1.7902632059884304e-4 +passepartout_N 3.729715012475897e-6 +passer_N 3.729715012475897e-6 +passer_by_N 3.729715012475897e-6 +passerby_N 3.729715012475897e-6 +passerine_A 1.0773191989054437e-5 +passerine_N 3.729715012475897e-6 +passim_Adv 8.668966832532898e-6 +passing_Adv 8.668966832532898e-6 +passing_N 1.118914503742769e-5 +passing_out_A 1.0773191989054437e-5 +passion_N 4.475658014971076e-5 +passion_flower_N 3.729715012475897e-6 +passionate_A 7.541234392338106e-5 +passionflower_N 3.729715012475897e-6 +passionless_A 1.0773191989054437e-5 +passive_A 1.6159787983581657e-4 +passive_N 7.459430024951794e-6 +passiveness_N 3.729715012475897e-6 +passivity_N 7.459430024951794e-6 +passkey_N 3.729715012475897e-6 +passover_N 3.729715012475897e-6 +passport_N 2.237829007485538e-5 +password_N 2.237829007485538e-5 +past_A 3.7382976202018896e-3 +past_Adv 5.2013800995197394e-5 +past_N 3.9534979132244504e-4 +past_Prep 1.6963528413910093e-4 +pasta_N 3.729715012475897e-5 +paste_N 3.729715012475897e-6 +paste_V2 3.219730508556434e-5 +paste_up_N 3.729715012475897e-6 +pasteboard_N 3.729715012475897e-6 +pastel_A 1.0773191989054437e-5 +pastel_N 3.729715012475897e-6 +paster_N 3.729715012475897e-6 +pastern_N 3.729715012475897e-6 +pasteurization_N 3.729715012475897e-6 +pasteurize_V2 3.219730508556434e-5 +pastiche_N 3.729715012475897e-6 +pastille_N 3.729715012475897e-6 +pastime_N 1.118914503742769e-5 +pasting_N 3.729715012475897e-6 +pastis_N 3.729715012475897e-6 +pastness_N 3.729715012475897e-6 +pastor_N 1.118914503742769e-5 +pastoral_A 1.0773191989054437e-5 +pastoral_N 3.729715012475897e-6 +pastorale_N 3.729715012475897e-6 +pastorate_N 3.729715012475897e-6 +pastorship_N 3.729715012475897e-6 +pastrami_N 3.729715012475897e-6 +pastry_N 1.8648575062379485e-5 +pastry_cook_N 3.729715012475897e-6 +pasturage_N 3.729715012475897e-6 +pasture_N 1.118914503742769e-5 +pasture_V 2.2678822515534993e-5 +pasture_V2 1.609865254278217e-5 +pasty_A 1.0773191989054437e-5 +pasty_N 3.729715012475897e-6 +pat_A 1.0773191989054437e-5 +pat_Adv 8.668966832532898e-6 +pat_N 7.459430024951794e-6 +pat_PN 1.865462821325971e-5 +pat_V 2.2678822515534993e-5 +pat_V2 1.609865254278217e-5 +pat_down_V2 1.609865254278217e-5 +pataca_N 3.729715012475897e-6 +patas_N 3.729715012475897e-6 +patch_N 2.237829007485538e-5 +patch_V2 6.439461017112868e-5 +patch_pocket_N 3.729715012475897e-6 +patch_together_V2 1.609865254278217e-5 +patch_up_V2 1.609865254278217e-5 +patchcord_N 3.729715012475897e-6 +patchiness_N 3.729715012475897e-6 +patching_N 3.729715012475897e-6 +patchouli_N 3.729715012475897e-6 +patchwork_N 7.459430024951794e-6 +patchy_A 1.0773191989054437e-5 +pate_1_N 3.729715012475897e-6 +pate_2_N 3.729715012475897e-6 +pate_N 3.729715012475897e-6 +pate_de_foie_gras_N 3.729715012475897e-6 +patella_N 3.729715012475897e-6 +patellar_A 1.0773191989054437e-5 +patency_N 3.729715012475897e-6 +patent_A 3.231957596716331e-5 +patent_N 2.7972862593569225e-4 +patent_V2 9.659191525669301e-5 +patentee_N 3.729715012475897e-6 +pater_N 3.729715012475897e-6 +paterfamilias_N 3.729715012475897e-6 +paternal_A 1.0773191989054437e-5 +paternalism_N 3.729715012475897e-6 +paternalistic_A 1.0773191989054437e-5 +paternity_N 3.729715012475897e-6 +paternoster_N 3.729715012475897e-6 +path_N 1.0070230533684921e-4 +path_finder_N 3.729715012475897e-6 +pathetic_A 2.1546383978108874e-5 +pathetically_Adv 8.668966832532898e-6 +pathless_A 1.0773191989054437e-5 +pathogen_N 3.729715012475897e-6 +pathogenesis_N 3.729715012475897e-6 +pathogenically_Adv 8.668966832532898e-6 +pathological_A 2.1546383978108874e-5 +pathologist_N 3.729715012475897e-6 +pathology_N 3.729715012475897e-6 +pathos_N 3.729715012475897e-6 +pathway_N 3.729715012475897e-6 +patience_N 2.6108005087331277e-5 +patience_PN 1.865462821325971e-5 +patient_A 7.541234392338106e-5 +patient_N 2.349720457859815e-4 +patina_N 3.729715012475897e-6 +patio_N 3.729715012475897e-6 +patisserie_N 3.729715012475897e-6 +patka_N 3.729715012475897e-6 +patois_N 3.729715012475897e-6 +patrai_PN 1.865462821325971e-5 +patrial_N 3.729715012475897e-6 +patriarch_N 1.118914503742769e-5 +patriarchal_A 2.1546383978108874e-5 +patriarchate_N 7.459430024951794e-6 +patriarchic_A 1.0773191989054437e-5 +patriarchy_N 7.459430024951794e-6 +patricentric_A 1.0773191989054437e-5 +patricia_PN 1.865462821325971e-5 +patrician_A 1.0773191989054437e-5 +patrician_N 7.459430024951794e-6 +patricide_N 3.729715012475897e-6 +patrick_PN 1.865462821325971e-5 +patrilineage_N 3.729715012475897e-6 +patrilineal_A 1.0773191989054437e-5 +patrimonial_A 1.0773191989054437e-5 +patrimony_N 3.729715012475897e-6 +patriot_N 7.459430024951794e-6 +patriotic_A 4.309276795621775e-5 +patriotically_Adv 8.668966832532898e-6 +patriotism_N 7.459430024951794e-6 +patristic_A 1.0773191989054437e-5 +patristics_N 3.729715012475897e-6 +patrol_N 3.356743511228307e-5 +patrol_V 4.5357645031069986e-5 +patrol_V2 3.219730508556434e-5 +patroller_N 3.729715012475897e-6 +patrolman_N 3.729715012475897e-6 +patron_N 3.356743511228307e-5 +patronage_N 1.118914503742769e-5 +patroness_N 3.729715012475897e-6 +patronize_V2 6.439461017112868e-5 +patronizing_A 2.1546383978108874e-5 +patronymic_A 1.0773191989054437e-5 +patronymic_N 3.729715012475897e-6 +patten_N 3.729715012475897e-6 +patter_N 7.459430024951794e-6 +patter_V 2.2678822515534993e-5 +patter_V2 1.609865254278217e-5 +pattern_N 1.7902632059884304e-4 +pattern_V2 4.8295957628346505e-5 +patternmaker_N 3.729715012475897e-6 +patty_N 3.729715012475897e-6 +patty_PN 1.865462821325971e-5 +patty_pan_N 3.729715012475897e-6 +patzer_N 3.729715012475897e-6 +paucity_N 3.729715012475897e-6 +paul_PN 1.865462821325971e-5 +paula_PN 1.865462821325971e-5 +pauline_PN 1.865462821325971e-5 +paunch_N 3.729715012475897e-6 +paunchiness_N 3.729715012475897e-6 +paunchy_A 1.0773191989054437e-5 +pauper_N 7.459430024951794e-6 +pauperism_N 3.729715012475897e-6 +pauperization_N 3.729715012475897e-6 +pauperize_V2 1.609865254278217e-5 +pause_N 1.8648575062379485e-5 +pause_V 1.5875175760874494e-4 +pause_V2V 4.675081813931744e-4 +pause_VS 1.1552012938254491e-4 +pavage_N 3.729715012475897e-6 +pavane_N 3.729715012475897e-6 +pave_N 3.729715012475897e-6 +pave_V2 1.4488787288503951e-4 +pavement_N 3.729715012475897e-6 +pavilion_N 3.729715012475897e-6 +paving_N 3.729715012475897e-6 +paving_stone_N 3.729715012475897e-6 +pavior_N 3.729715012475897e-6 +pavis_N 3.729715012475897e-6 +pavlova_N 3.729715012475897e-6 +pavonia_N 3.729715012475897e-6 +paw_N 3.729715012475897e-6 +paw_V 4.5357645031069986e-5 +paw_V2 1.609865254278217e-5 +pawer_N 3.729715012475897e-6 +pawky_A 1.0773191989054437e-5 +pawl_N 3.729715012475897e-6 +pawn_N 3.729715012475897e-5 +pawn_V2 3.219730508556434e-5 +pawn_ticket_N 3.729715012475897e-6 +pawnbroker_N 3.729715012475897e-6 +pawnshop_N 3.729715012475897e-6 +pawpaw_N 3.729715012475897e-6 +pax_N 3.729715012475897e-6 +pax_romana_N 3.729715012475897e-6 +pay_N 2.4616119082340916e-4 +pay_V 7.053113802331383e-3 +pay_V2 7.42147882222258e-3 +pay_V2V 9.350163627863488e-4 +pay_V3 4.761904761904762e-3 +pay_as_you_earn_N 3.729715012475897e-6 +pay_back_V 2.2678822515534993e-5 +pay_back_V2 3.219730508556434e-5 +pay_claim_N 3.729715012475897e-6 +pay_down_V2 1.609865254278217e-5 +pay_for_V3 1.5873015873015873e-3 +pay_into_V3 1.5873015873015873e-3 +pay_off_V 6.803646754660499e-5 +pay_off_V2 1.609865254278217e-5 +pay_out_V 2.2678822515534993e-5 +pay_packet_N 3.729715012475897e-6 +pay_station_N 3.729715012475897e-6 +pay_up_V 2.2678822515534993e-5 +payable_A 3.878349116059597e-4 +payable_N 7.459430024951794e-6 +payback_N 3.729715012475897e-6 +paycheck_N 3.729715012475897e-6 +payday_N 3.729715012475897e-6 +paydirt_N 3.729715012475897e-6 +paye_PN 1.865462821325971e-5 +payee_N 3.729715012475897e-6 +payer_N 2.237829007485538e-5 +payload_N 3.729715012475897e-6 +paymaster_N 3.729715012475897e-6 +payment_N 1.0294013434433474e-3 +paynim_N 3.729715012475897e-6 +payoff_N 1.4918860049903587e-5 +payola_N 3.729715012475897e-6 +payphone_N 3.729715012475897e-6 +payroll_N 8.578344528694562e-5 +paysheet_N 3.729715012475897e-6 +payslip_N 3.729715012475897e-6 +pc_PN 1.865462821325971e-5 +pdsa_N 3.729715012475897e-6 +pe_N 3.729715012475897e-6 +pea_N 1.118914503742769e-5 +pea_chick_N 3.729715012475897e-6 +pea_flour_N 3.729715012475897e-6 +pea_green_A 1.0773191989054437e-5 +pea_green_N 3.729715012475897e-6 +pea_jacket_N 3.729715012475897e-6 +pea_soup_N 3.729715012475897e-6 +peace_N 1.3426974044913228e-4 +peace_offering_N 3.729715012475897e-6 +peaceable_A 1.0773191989054437e-5 +peaceableness_N 3.729715012475897e-6 +peaceful_A 1.1850511187959881e-4 +peacefulness_N 3.729715012475897e-6 +peacehaven_PN 1.865462821325971e-5 +peacekeeper_N 3.729715012475897e-6 +peacekeeping_A 1.0773191989054437e-5 +peacekeeping_N 3.729715012475897e-6 +peacemaker_N 1.118914503742769e-5 +peacetime_N 1.118914503742769e-5 +peach_N 7.459430024951794e-6 +peach_V 2.2678822515534993e-5 +peach_V2 1.609865254278217e-5 +peachick_N 3.729715012475897e-6 +peachy_A 1.0773191989054437e-5 +peacock_N 3.729715012475897e-6 +peacock_blue_A 1.0773191989054437e-5 +peacock_blue_N 3.729715012475897e-6 +peafowl_N 3.729715012475897e-6 +peahen_N 3.729715012475897e-6 +peak_N 1.3426974044913228e-4 +peak_V 2.4946704767088494e-4 +peak_V2 9.659191525669301e-5 +peaky_A 1.0773191989054437e-5 +peal_N 1.8648575062379485e-5 +peal_V 4.5357645031069986e-5 +peal_V2 1.609865254278217e-5 +peanut_N 2.237829007485538e-5 +peanuts_N 3.729715012475897e-6 +pear_N 7.459430024951794e-6 +pearl_N 7.459430024951794e-6 +pearl_PN 1.865462821325971e-5 +pearl_V 2.2678822515534993e-5 +pearl_barley_N 3.729715012475897e-6 +pearl_diver_N 3.729715012475897e-6 +pearl_fishery_N 3.729715012475897e-6 +pearl_oyster_N 3.729715012475897e-6 +pearl_sago_N 3.729715012475897e-6 +pearlfish_N 3.729715012475897e-6 +pearlite_N 3.729715012475897e-6 +pearlwort_N 3.729715012475897e-6 +pearly_A 1.0773191989054437e-5 +pearmain_N 3.729715012475897e-6 +peasant_N 3.356743511228307e-5 +peasanthood_N 3.729715012475897e-6 +peasantry_N 3.729715012475897e-6 +pease_N 3.729715012475897e-6 +pease_pudding_N 3.729715012475897e-6 +peashooter_N 3.729715012475897e-6 +peasouper_N 3.729715012475897e-6 +peat_N 3.729715012475897e-6 +peaty_A 1.0773191989054437e-5 +peavey_N 3.729715012475897e-6 +peba_N 3.729715012475897e-6 +pebble_N 3.729715012475897e-6 +pebbly_A 1.0773191989054437e-5 +pebibit_N 3.729715012475897e-6 +pecan_N 3.729715012475897e-6 +peccable_A 1.0773191989054437e-5 +peccadillo_N 3.729715012475897e-6 +peccary_N 3.729715012475897e-6 +peck_N 7.459430024951794e-6 +peck_V 4.5357645031069986e-5 +peck_V2 1.609865254278217e-5 +peck_at_V2 1.609865254278217e-5 +pecker_N 3.729715012475897e-6 +peckish_A 1.0773191989054437e-5 +pecopteris_N 3.729715012475897e-6 +pectic_A 1.0773191989054437e-5 +pectin_N 3.729715012475897e-6 +pectinate_A 1.0773191989054437e-5 +pectineal_A 1.0773191989054437e-5 +pectoral_A 1.0773191989054437e-5 +pectoral_N 3.729715012475897e-6 +peculate_V 2.2678822515534993e-5 +peculate_V2 1.609865254278217e-5 +peculation_N 3.729715012475897e-6 +peculiar_A 7.541234392338106e-5 +peculiarity_N 1.118914503742769e-5 +pecuniary_A 1.0773191989054437e-5 +pedagogic_A 1.0773191989054437e-5 +pedagogical_A 1.0773191989054437e-5 +pedagogue_N 7.459430024951794e-6 +pedagogy_N 3.729715012475897e-6 +pedal_A 1.0773191989054437e-5 +pedal_N 3.729715012475897e-6 +pedal_V 6.803646754660499e-5 +pedal_V2 1.609865254278217e-5 +pedaler_N 3.729715012475897e-6 +pedant_N 3.729715012475897e-6 +pedantic_A 1.0773191989054437e-5 +pedantically_Adv 8.668966832532898e-6 +pedantry_N 3.729715012475897e-6 +pedate_A 1.0773191989054437e-5 +peddle_V 9.071529006213997e-5 +peddle_V2 1.609865254278217e-4 +peddler_N 7.459430024951794e-6 +pederast_N 3.729715012475897e-6 +pederastic_A 1.0773191989054437e-5 +pederasty_N 3.729715012475897e-6 +pedestal_N 3.729715012475897e-6 +pedestrian_A 2.1546383978108874e-5 +pedestrian_N 1.4918860049903587e-5 +pediatric_A 1.0773191989054437e-5 +pediatrician_N 1.118914503742769e-5 +pediatrics_N 3.729715012475897e-6 +pedicab_N 3.729715012475897e-6 +pedicel_N 3.729715012475897e-6 +pediculicide_N 3.729715012475897e-6 +pediculosis_N 3.729715012475897e-6 +pedicure_N 3.729715012475897e-6 +pedigree_N 7.459430024951794e-6 +pediment_N 3.729715012475897e-6 +pedlar_N 3.729715012475897e-6 +pedodontist_N 3.729715012475897e-6 +pedometer_N 3.729715012475897e-6 +pedophile_N 3.729715012475897e-6 +pedophilia_N 3.729715012475897e-6 +peduncle_N 3.729715012475897e-6 +pedunculate_A 1.0773191989054437e-5 +pee_N 3.729715012475897e-6 +pee_V 2.2678822515534993e-5 +peebles_PN 1.865462821325971e-5 +peeing_N 3.729715012475897e-6 +peek_N 7.459430024951794e-6 +peek_V 4.5357645031069986e-5 +peek_a_boo_N 3.729715012475897e-6 +peekaboo_N 3.729715012475897e-6 +peel_N 3.729715012475897e-6 +peel_V 4.5357645031069986e-5 +peel_V2 4.8295957628346505e-5 +peel_away_V 2.2678822515534993e-5 +peel_away_from_V2 1.609865254278217e-5 +peel_off_V 2.2678822515534993e-5 +peel_off_from_V2 1.609865254278217e-5 +peel_out_V 2.2678822515534993e-5 +peeler_N 3.729715012475897e-6 +peen_N 3.729715012475897e-6 +peep_N 7.459430024951794e-6 +peep_V 2.2678822515534993e-5 +peeper_N 3.729715012475897e-6 +peephole_N 3.729715012475897e-6 +peepshow_N 3.729715012475897e-6 +peepul_N 3.729715012475897e-6 +peer_N 1.8648575062379485e-5 +peer_V 1.1339411257767497e-4 +peerage_N 3.729715012475897e-6 +peeress_N 3.729715012475897e-6 +peerless_A 2.1546383978108874e-5 +peeve_N 3.729715012475897e-6 +peeve_V2 1.609865254278217e-5 +peevish_A 1.0773191989054437e-5 +peevishness_N 3.729715012475897e-6 +peewit_N 3.729715012475897e-6 +peg_N 3.729715012475897e-6 +peg_PN 1.865462821325971e-5 +peg_V 1.1339411257767497e-4 +peg_V2 2.2538113559895037e-4 +peg_away_V 2.2678822515534993e-5 +peg_down_V2 1.609865254278217e-5 +peg_it_V 2.2678822515534993e-5 +peg_out_V 2.2678822515534993e-5 +peg_out_V2 1.609865254278217e-5 +pegboard_N 3.729715012475897e-6 +peggy_PN 1.865462821325971e-5 +pegmatite_N 3.729715012475897e-6 +peignoir_N 3.729715012475897e-6 +pejorative_A 2.1546383978108874e-5 +peke_N 3.729715012475897e-6 +pekinese_N 3.729715012475897e-6 +peking_PN 1.865462821325971e-5 +pekoe_N 3.729715012475897e-6 +pelf_N 3.729715012475897e-6 +pelican_N 3.729715012475897e-6 +pelisse_N 3.729715012475897e-6 +pell_mell_Adv 8.668966832532898e-6 +pellagra_N 3.729715012475897e-6 +pellet_N 3.729715012475897e-6 +pellicle_N 3.729715012475897e-6 +pellitory_N 3.729715012475897e-6 +pellucid_A 1.0773191989054437e-5 +pellucidness_N 3.729715012475897e-6 +pelmet_N 3.729715012475897e-6 +pelota_N 3.729715012475897e-6 +pelt_N 3.729715012475897e-6 +pelt_V 2.2678822515534993e-5 +pelt_V2 1.609865254278217e-5 +peltate_A 1.0773191989054437e-5 +pelter_N 3.729715012475897e-6 +pelton_PN 1.865462821325971e-5 +peludo_N 3.729715012475897e-6 +pelvic_A 3.231957596716331e-5 +pelvimeter_N 3.729715012475897e-6 +pelvimetry_N 3.729715012475897e-6 +pelvis_N 3.729715012475897e-6 +pelycosaur_N 3.729715012475897e-6 +pembroke_PN 1.865462821325971e-5 +pemmican_N 3.729715012475897e-6 +pemphigous_A 1.0773191989054437e-5 +pemphigus_N 3.729715012475897e-6 +pen_N 2.237829007485538e-5 +pen_V2 3.219730508556434e-5 +pen_and_ink_N 3.729715012475897e-6 +pen_friend_N 3.729715012475897e-6 +pen_name_N 3.729715012475897e-6 +pen_pusher_N 3.729715012475897e-6 +penal_A 1.0773191989054437e-5 +penalization_N 3.729715012475897e-6 +penalize_V2 8.049326271391085e-5 +penalty_N 2.3124233077350558e-4 +penance_N 3.729715012475897e-6 +penarth_PN 1.865462821325971e-5 +penchant_N 1.8648575062379485e-5 +pencil_N 6.713487022456614e-5 +pencil_V2 1.609865254278217e-5 +pencil_in_V2 1.609865254278217e-5 +pend_V 1.6101963986029845e-3 +pend_V2 4.8295957628346505e-5 +pendant_N 3.729715012475897e-6 +pendent_A 1.0773191989054437e-5 +pending_Prep 1.9957092251658934e-5 +pendlebury_PN 1.865462821325971e-5 +pendragon_N 3.729715012475897e-6 +pendulous_A 1.0773191989054437e-5 +pendulum_N 1.118914503742769e-5 +penelope_PN 1.865462821325971e-5 +peneplain_N 3.729715012475897e-6 +penetrability_N 3.729715012475897e-6 +penetrable_A 1.0773191989054437e-5 +penetralia_N 3.729715012475897e-6 +penetrate_V 4.5357645031069986e-5 +penetrate_V2 1.2878922034225736e-4 +penetratingly_Adv 8.668966832532898e-6 +penetration_N 7.459430024951794e-6 +penetrative_A 1.0773191989054437e-5 +penetrator_N 3.729715012475897e-6 +pengo_N 3.729715012475897e-6 +penguin_N 3.729715012475897e-6 +penicillamine_N 3.729715012475897e-6 +penicillin_N 3.729715012475897e-6 +penicillinase_N 3.729715012475897e-6 +penicuik_PN 1.865462821325971e-5 +penile_A 1.0773191989054437e-5 +peninsula_N 1.4918860049903587e-5 +peninsular_A 1.0773191989054437e-5 +penis_N 7.459430024951794e-6 +penitence_N 3.729715012475897e-6 +penitent_A 1.0773191989054437e-5 +penitent_N 3.729715012475897e-6 +penitential_A 1.0773191989054437e-5 +penitentiary_A 1.0773191989054437e-5 +penitentiary_N 3.729715012475897e-6 +penki_PN 1.865462821325971e-5 +penknife_N 3.729715012475897e-6 +penlight_N 3.729715012475897e-6 +penmanship_N 3.729715012475897e-6 +penn'orth_N 3.729715012475897e-6 +pennant_N 1.8648575062379485e-5 +pennate_A 1.0773191989054437e-5 +penne_N 3.729715012475897e-6 +penni_N 3.729715012475897e-6 +penniless_A 1.0773191989054437e-5 +pennon_N 3.729715012475897e-6 +pennoncel_N 3.729715012475897e-6 +pennsylvania_PN 4.8502033354475243e-4 +penny_N 1.7529660558636716e-4 +penny_PN 1.865462821325971e-5 +pennycress_N 3.729715012475897e-6 +pennyroyal_N 3.729715012475897e-6 +pennyweight_N 3.729715012475897e-6 +pennywhistle_N 3.729715012475897e-6 +pennyworth_N 3.729715012475897e-6 +penologist_N 3.729715012475897e-6 +penology_N 3.729715012475897e-6 +penpusher_N 3.729715012475897e-6 +penrhyn_PN 1.865462821325971e-5 +penrith_PN 1.865462821325971e-5 +penryn_PN 1.865462821325971e-5 +pension_N 3.5805264119768607e-4 +pension_V2 1.609865254278217e-5 +pensionable_A 1.0773191989054437e-5 +pensioner_N 3.729715012475897e-6 +pensive_A 1.0773191989054437e-5 +pensiveness_N 3.729715012475897e-6 +penstock_N 3.729715012475897e-6 +pent_A 1.0773191989054437e-5 +pent_up_A 6.463915193432663e-5 +pentacle_N 3.729715012475897e-6 +pentaerythritol_N 3.729715012475897e-6 +pentagon_N 3.729715012475897e-6 +pentagonal_A 1.0773191989054437e-5 +pentahedron_N 3.729715012475897e-6 +pentail_N 3.729715012475897e-6 +pentamerous_A 1.0773191989054437e-5 +pentameter_N 7.459430024951794e-6 +pentangular_A 1.0773191989054437e-5 +pentasyllabic_A 1.0773191989054437e-5 +pentateuch_N 3.729715012475897e-6 +pentathlete_N 3.729715012475897e-6 +pentathlon_N 3.729715012475897e-6 +pentatonic_A 1.0773191989054437e-5 +pentavalent_A 1.0773191989054437e-5 +pentazocine_N 3.729715012475897e-6 +pentecost_N 3.729715012475897e-6 +pentecostal_A 1.0773191989054437e-5 +pentecostalism_N 3.729715012475897e-6 +penthouse_N 1.118914503742769e-5 +pentimento_N 3.729715012475897e-6 +pentlandite_N 3.729715012475897e-6 +pentode_N 3.729715012475897e-6 +pentose_N 3.729715012475897e-6 +pentoxide_N 3.729715012475897e-6 +pentoxifylline_N 3.729715012475897e-6 +pentylenetetrazol_N 3.729715012475897e-6 +penuche_N 3.729715012475897e-6 +penult_N 3.729715012475897e-6 +penultimate_A 1.0773191989054437e-5 +penultimate_N 3.729715012475897e-6 +penumbra_N 3.729715012475897e-6 +penumbral_A 1.0773191989054437e-5 +penurious_A 1.0773191989054437e-5 +penuriousness_N 3.729715012475897e-6 +penury_N 3.729715012475897e-6 +penzance_PN 1.865462821325971e-5 +peon_N 3.729715012475897e-6 +peonage_N 3.729715012475897e-6 +peony_N 3.729715012475897e-6 +people_N 5.482681068339568e-4 +people_V2 3.219730508556434e-5 +peoples_N 3.729715012475897e-6 +pep_N 1.118914503742769e-5 +pep_V2 1.609865254278217e-5 +pep_up_V2 1.609865254278217e-5 +peperomia_N 3.729715012475897e-6 +peplos_N 3.729715012475897e-6 +peplum_N 3.729715012475897e-6 +pepper_N 7.459430024951794e-6 +pepper_V2 3.219730508556434e-5 +pepper_and_salt_N 3.729715012475897e-6 +pepper_mill_N 3.729715012475897e-6 +pepper_pot_N 3.729715012475897e-6 +peppercorn_N 3.729715012475897e-6 +peppermint_N 3.729715012475897e-6 +pepperoni_N 3.729715012475897e-6 +peppery_A 1.0773191989054437e-5 +pepsin_N 3.729715012475897e-6 +pepsinogen_N 3.729715012475897e-6 +peptic_A 1.0773191989054437e-5 +peptide_N 3.729715012475897e-6 +peptization_N 3.729715012475897e-6 +peptone_N 3.729715012475897e-6 +per_Prep 1.1774684428478772e-3 +peradventure_Adv 8.668966832532898e-6 +peradventure_N 3.729715012475897e-6 +perambulate_V 2.2678822515534993e-5 +perambulate_V2 1.609865254278217e-5 +perambulation_N 3.729715012475897e-6 +perambulator_N 3.729715012475897e-6 +percale_N 3.729715012475897e-6 +perceivable_A 1.0773191989054437e-5 +perceive_V2 2.4147978814173252e-4 +perceive_V2V 4.675081813931744e-4 +perceive_VS 1.1552012938254491e-4 +perceiver_N 3.729715012475897e-6 +percent_N 8.578344528694562e-5 +percentage_N 6.303218371084265e-4 +percentile_N 3.729715012475897e-6 +percept_N 3.729715012475897e-6 +perceptibility_N 3.729715012475897e-6 +perceptible_A 1.0773191989054437e-5 +perception_N 1.1562116538675279e-4 +perceptive_A 1.0773191989054437e-5 +perceptiveness_N 3.729715012475897e-6 +perceptual_A 1.0773191989054437e-5 +perch_N 1.118914503742769e-5 +perch_V 4.5357645031069986e-5 +perch_V2 3.219730508556434e-5 +perchance_Adv 8.668966832532898e-6 +percher_N 3.729715012475897e-6 +perchlorate_N 3.729715012475897e-6 +perchloride_N 3.729715012475897e-6 +percipient_A 1.0773191989054437e-5 +percolate_N 3.729715012475897e-6 +percolate_V 2.2678822515534993e-5 +percolate_V2 1.609865254278217e-5 +percolation_N 3.729715012475897e-6 +percolator_N 3.729715012475897e-6 +percussion_N 3.729715012475897e-6 +percussionist_N 3.729715012475897e-6 +percussive_A 1.0773191989054437e-5 +percy_PN 1.865462821325971e-5 +perdition_N 3.729715012475897e-6 +perdurability_N 3.729715012475897e-6 +peregrination_N 3.729715012475897e-6 +peregrine_N 3.729715012475897e-6 +peremptory_A 2.1546383978108874e-5 +perennation_N 3.729715012475897e-6 +perennial_A 5.3865959945272184e-5 +perennial_N 3.729715012475897e-6 +perestroika_N 7.459430024951794e-6 +perfect_A 3.3396895166068756e-4 +perfect_V2 4.8295957628346505e-5 +perfecter_N 3.729715012475897e-6 +perfectibility_N 3.729715012475897e-6 +perfectible_A 1.0773191989054437e-5 +perfection_N 1.8648575062379485e-5 +perfectionism_N 3.729715012475897e-6 +perfectionist_N 3.729715012475897e-6 +perfective_N 3.729715012475897e-6 +perfervid_A 1.0773191989054437e-5 +perfidious_A 2.1546383978108874e-5 +perfidiousness_N 3.729715012475897e-6 +perfidy_N 3.729715012475897e-6 +perfluorocarbon_N 3.729715012475897e-6 +perfoliate_A 1.0773191989054437e-5 +perforate_V2 3.219730508556434e-5 +perforation_N 3.729715012475897e-6 +perforce_Adv 8.668966832532898e-6 +perform_V 9.978681906835398e-4 +perform_V2 4.185649661123364e-4 +performance_N 7.011864223454686e-4 +performer_N 5.967544019961435e-5 +perfume_N 2.237829007485538e-5 +perfume_V2 3.219730508556434e-5 +perfumer_N 3.729715012475897e-6 +perfumery_N 3.729715012475897e-6 +perfunctory_A 1.0773191989054437e-5 +perfusion_N 3.729715012475897e-6 +pergola_N 3.729715012475897e-6 +perhaps_Adv 1.2396622570522045e-3 +peri_N 3.729715012475897e-6 +perianal_A 1.0773191989054437e-5 +perianth_N 3.729715012475897e-6 +periapsis_N 3.729715012475897e-6 +periarteritis_N 3.729715012475897e-6 +pericardial_A 1.0773191989054437e-5 +pericarditis_N 3.729715012475897e-6 +pericardium_N 3.729715012475897e-6 +pericarp_N 3.729715012475897e-6 +pericementoclasia_N 3.729715012475897e-6 +periclase_N 3.729715012475897e-6 +peridinian_N 3.729715012475897e-6 +peridium_N 3.729715012475897e-6 +peridot_N 3.729715012475897e-6 +peridotite_N 3.729715012475897e-6 +perigee_N 3.729715012475897e-6 +perigon_N 3.729715012475897e-6 +perigonal_A 1.0773191989054437e-5 +perihelion_N 3.729715012475897e-6 +perijove_N 3.729715012475897e-6 +peril_N 1.8648575062379485e-5 +peril_V2 1.609865254278217e-5 +perilous_A 4.309276795621775e-5 +perilymph_N 3.729715012475897e-6 +perimeter_N 7.459430024951794e-6 +perimysium_N 3.729715012475897e-6 +perinasal_A 1.0773191989054437e-5 +perinatal_A 1.0773191989054437e-5 +perinatologist_N 3.729715012475897e-6 +perinatology_N 3.729715012475897e-6 +perineal_A 1.0773191989054437e-5 +perineotomy_N 3.729715012475897e-6 +perineum_N 3.729715012475897e-6 +perineurium_N 3.729715012475897e-6 +period_N 1.443399709828172e-3 +periodic_A 8.61855359124355e-5 +periodical_A 5.3865959945272184e-5 +periodical_N 1.118914503742769e-5 +periodontic_A 1.0773191989054437e-5 +periodontics_N 3.729715012475897e-6 +periodontist_N 3.729715012475897e-6 +periosteum_N 3.729715012475897e-6 +peripatetic_A 1.0773191989054437e-5 +peripatetic_N 3.729715012475897e-6 +peripeteia_N 3.729715012475897e-6 +peripheral_A 7.541234392338106e-5 +peripheral_N 3.729715012475897e-6 +periphery_N 1.118914503742769e-5 +periphrasis_N 3.729715012475897e-6 +periphrastic_A 1.0773191989054437e-5 +peripteral_A 1.0773191989054437e-5 +periscope_N 3.729715012475897e-6 +periselene_N 3.729715012475897e-6 +perish_V 2.2678822515534993e-5 +perish_V2 1.609865254278217e-5 +perishability_N 3.729715012475897e-6 +perishable_A 1.0773191989054437e-5 +perishable_N 3.729715012475897e-6 +perisher_N 3.729715012475897e-6 +perisperm_N 3.729715012475897e-6 +peristalsis_N 3.729715012475897e-6 +peristome_N 3.729715012475897e-6 +peristylar_A 1.0773191989054437e-5 +peristyle_N 3.729715012475897e-6 +perithecium_N 3.729715012475897e-6 +perithelial_A 1.0773191989054437e-5 +perithelium_N 3.729715012475897e-6 +peritoneal_A 1.0773191989054437e-5 +peritoneum_N 3.729715012475897e-6 +peritonitis_N 3.729715012475897e-6 +peritrichous_A 1.0773191989054437e-5 +periwig_N 3.729715012475897e-6 +periwinkle_N 3.729715012475897e-6 +perjure_V2 1.609865254278217e-5 +perjurer_N 3.729715012475897e-6 +perjury_N 2.9837720099807175e-5 +perk_N 1.4918860049903587e-5 +perk_V 6.803646754660499e-5 +perk_V2 1.609865254278217e-5 +perk_up_V2 1.609865254278217e-5 +perkiness_N 3.729715012475897e-6 +perky_A 1.0773191989054437e-5 +perm_N 3.729715012475897e-6 +perm_PN 1.865462821325971e-5 +perm_V2 1.609865254278217e-5 +permafrost_N 3.729715012475897e-6 +permanence_N 7.459430024951794e-6 +permanency_N 3.729715012475897e-6 +permanent_A 5.063400234855585e-4 +permanganate_N 3.729715012475897e-6 +permeability_N 3.729715012475897e-6 +permeable_A 2.1546383978108874e-5 +permeant_A 1.0773191989054437e-5 +permeate_V 2.2678822515534993e-5 +permeate_V2 4.8295957628346505e-5 +permeation_N 3.729715012475897e-6 +permissibility_N 3.729715012475897e-6 +permissible_A 7.541234392338106e-5 +permission_N 1.2308059541170458e-4 +permissive_A 2.1546383978108874e-5 +permissiveness_N 3.729715012475897e-6 +permit_N 4.848629516218666e-5 +permit_V 3.401823377330249e-4 +permit_V2 5.151568813690294e-4 +permit_V2V 1.168770453482936e-2 +permutability_N 3.729715012475897e-6 +permutation_N 3.729715012475897e-6 +permute_V2 1.609865254278217e-5 +pernicious_A 2.1546383978108874e-5 +perniciousness_N 3.729715012475897e-6 +pernickety_A 1.0773191989054437e-5 +peroneal_A 1.0773191989054437e-5 +peroneus_N 3.729715012475897e-6 +peroration_N 3.729715012475897e-6 +peroxidase_N 3.729715012475897e-6 +peroxide_N 3.729715012475897e-6 +perpendicular_A 1.0773191989054437e-5 +perpendicular_N 3.729715012475897e-6 +perpendicularity_N 3.729715012475897e-6 +perpetrate_V2 3.219730508556434e-5 +perpetration_N 3.729715012475897e-6 +perpetrator_N 3.729715012475897e-6 +perpetual_A 8.61855359124355e-5 +perpetuate_V2 9.659191525669301e-5 +perpetuation_N 3.729715012475897e-6 +perpetuity_N 3.729715012475897e-6 +perphenazine_N 3.729715012475897e-6 +perplex_V2 1.609865254278217e-5 +perplexedly_Adv 8.668966832532898e-6 +perplexity_N 3.729715012475897e-6 +perquisite_N 3.729715012475897e-6 +perry_N 3.729715012475897e-6 +persecute_V2 4.8295957628346505e-5 +persecution_N 7.459430024951794e-6 +persecutor_N 3.729715012475897e-6 +perseverance_N 3.729715012475897e-6 +perseveration_N 3.729715012475897e-6 +persevere_V 2.2678822515534993e-5 +perseveringly_Adv 8.668966832532898e-6 +pershore_PN 1.865462821325971e-5 +persia_PN 1.865462821325971e-5 +persianFem_N 3.729715012475897e-6 +persianMasc_N 3.729715012475897e-6 +persian_A 2.1546383978108874e-5 +persiflage_N 3.729715012475897e-6 +persimmon_N 3.729715012475897e-6 +persist_V 2.7214587018641994e-4 +persistence_N 1.118914503742769e-5 +persistent_A 1.8314426381392542e-4 +person_N 3.319446361103548e-4 +persona_N 3.729715012475897e-6 +persona_grata_N 3.729715012475897e-6 +persona_non_grata_N 1.4918860049903587e-5 +personable_A 1.0773191989054437e-5 +personableness_N 3.729715012475897e-6 +personage_N 3.729715012475897e-6 +personal_A 2.1869579737780506e-3 +personal_N 7.086458523704203e-5 +personality_N 4.475658014971076e-5 +personalize_V2 8.049326271391085e-5 +personalty_N 3.729715012475897e-6 +personate_V2 1.609865254278217e-5 +personation_N 3.729715012475897e-6 +personhood_N 3.729715012475897e-6 +personification_N 7.459430024951794e-6 +personify_V2 1.609865254278217e-5 +personnel_N 7.459430024951794e-6 +perspective_N 5.594572518713845e-5 +perspex_N 3.729715012475897e-6 +perspicacious_A 1.0773191989054437e-5 +perspicacity_N 3.729715012475897e-6 +perspicuity_N 3.729715012475897e-6 +perspicuous_A 1.0773191989054437e-5 +perspicuousness_N 3.729715012475897e-6 +perspiration_N 3.729715012475897e-6 +perspire_V 2.2678822515534993e-5 +perspirer_N 3.729715012475897e-6 +persuadable_A 1.0773191989054437e-5 +persuade_V2 6.278474491685046e-4 +persuade_V2V 1.402524544179523e-3 +persuader_N 3.729715012475897e-6 +persuasion_N 7.459430024951794e-6 +persuasive_A 4.309276795621775e-5 +persuasiveness_N 7.459430024951794e-6 +pert_A 1.0773191989054437e-5 +pertain_V 4.5357645031069986e-5 +pertainym_N 3.729715012475897e-6 +perth_PN 1.865462821325971e-5 +pertinacious_A 1.0773191989054437e-5 +pertinacity_N 3.729715012475897e-6 +pertinence_N 3.729715012475897e-6 +pertinent_A 5.3865959945272184e-5 +pertness_N 3.729715012475897e-6 +perturb_V2 3.219730508556434e-5 +perturbation_N 3.729715012475897e-6 +peru_PN 1.865462821325971e-4 +perugia_PN 1.865462821325971e-5 +peruke_N 3.729715012475897e-6 +peruked_A 1.0773191989054437e-5 +perusal_N 3.729715012475897e-6 +peruse_V2 4.8295957628346505e-5 +peruvian_A 6.463915193432663e-5 +peruvian_N 3.729715012475897e-6 +pervade_V2 4.8295957628346505e-5 +pervaporation_N 3.729715012475897e-6 +pervasion_N 3.729715012475897e-6 +pervasive_A 9.695872790148993e-5 +pervasiveness_N 3.729715012475897e-6 +perverse_A 5.3865959945272184e-5 +perverseness_N 3.729715012475897e-6 +perversion_N 7.459430024951794e-6 +perversity_N 7.459430024951794e-6 +pervert_N 7.459430024951794e-6 +pervert_V2 1.609865254278217e-5 +pervious_A 1.0773191989054437e-5 +pesantran_N 3.729715012475897e-6 +pescara_PN 1.865462821325971e-5 +peseta_N 2.6108005087331277e-5 +pesewa_N 3.729715012475897e-6 +peshmerga_N 3.729715012475897e-6 +pesky_A 1.0773191989054437e-5 +peso_N 1.118914503742769e-5 +pessary_N 3.729715012475897e-6 +pessimal_A 1.0773191989054437e-5 +pessimism_N 1.4918860049903587e-5 +pessimist_N 1.4918860049903587e-5 +pessimistic_A 1.508246878467621e-4 +pessimistically_Adv 8.668966832532898e-6 +pest_N 3.729715012475897e-6 +pester_V2 3.219730508556434e-5 +pesthole_N 3.729715012475897e-6 +pesticide_N 7.459430024951794e-5 +pestiferous_A 1.0773191989054437e-5 +pestilence_N 3.729715012475897e-6 +pestilent_A 1.0773191989054437e-5 +pestilential_A 1.0773191989054437e-5 +pestle_N 3.729715012475897e-6 +pestle_V2 1.609865254278217e-5 +pesto_N 3.729715012475897e-6 +pet_N 3.729715012475897e-5 +pet_V2 1.609865254278217e-5 +petabit_N 3.729715012475897e-6 +petabyte_N 3.729715012475897e-6 +petal_N 3.729715012475897e-6 +petaled_A 1.0773191989054437e-5 +petalled_A 1.0773191989054437e-5 +petallike_A 1.0773191989054437e-5 +petaloid_A 1.0773191989054437e-5 +petalous_A 1.0773191989054437e-5 +petard_N 3.729715012475897e-6 +petcock_N 3.729715012475897e-6 +pete_PN 1.865462821325971e-5 +petechia_N 3.729715012475897e-6 +peter_PN 1.865462821325971e-5 +peter_V 2.2678822515534993e-5 +peter_out_V 2.2678822515534993e-5 +peterborough_PN 1.865462821325971e-5 +peterhead_PN 1.865462821325971e-5 +peterlee_PN 1.865462821325971e-5 +petersfield_PN 1.865462821325971e-5 +petfood_N 3.729715012475897e-6 +petiole_N 3.729715012475897e-6 +petiolule_N 3.729715012475897e-6 +petit_bourgeois_N 3.729715012475897e-6 +petite_A 2.1546383978108874e-5 +petite_N 3.729715012475897e-6 +petition_N 5.967544019961435e-5 +petition_V 4.5357645031069986e-5 +petition_V2 3.219730508556434e-5 +petitionary_A 1.0773191989054437e-5 +petitioner_N 3.729715012475897e-6 +petrel_N 3.729715012475897e-6 +petrifaction_N 3.729715012475897e-6 +petrify_V 2.2678822515534993e-5 +petrify_V2 1.609865254278217e-5 +petrissage_N 3.729715012475897e-6 +petro_chemical_N 3.729715012475897e-6 +petrochemical_N 8.578344528694562e-5 +petroglyph_N 3.729715012475897e-6 +petrol_N 3.729715012475897e-6 +petrolatum_N 3.729715012475897e-6 +petroleum_N 1.08161735361801e-4 +petrology_N 3.729715012475897e-6 +petrous_A 1.0773191989054437e-5 +petter_N 3.729715012475897e-6 +petticoat_N 3.729715012475897e-6 +petticoated_A 1.0773191989054437e-5 +pettifogging_A 1.0773191989054437e-5 +pettiness_N 7.459430024951794e-6 +pettish_A 1.0773191989054437e-5 +pettishness_N 3.729715012475897e-6 +petty_A 4.309276795621775e-5 +petulance_N 3.729715012475897e-6 +petulant_A 2.1546383978108874e-5 +petunia_N 3.729715012475897e-6 +pew_N 3.729715012475897e-6 +pew_opener_N 3.729715012475897e-6 +pewee_N 3.729715012475897e-6 +pewit_N 3.729715012475897e-6 +pewter_N 3.729715012475897e-6 +peyote_N 3.729715012475897e-6 +pfannkuchen_N 3.729715012475897e-6 +pfennig_N 3.729715012475897e-6 +ph_N 3.729715012475897e-6 +phacoemulsification_N 3.729715012475897e-6 +phaeton_N 3.729715012475897e-6 +phagocyte_N 3.729715012475897e-6 +phagocytic_A 1.0773191989054437e-5 +phagocytosis_N 3.729715012475897e-6 +phaius_N 3.729715012475897e-6 +phalangeal_A 1.0773191989054437e-5 +phalanger_N 3.729715012475897e-6 +phalangitis_N 3.729715012475897e-6 +phalanx_N 7.459430024951794e-6 +phalarope_N 3.729715012475897e-6 +phallic_A 1.0773191989054437e-5 +phalloplasty_N 3.729715012475897e-6 +phallus_N 3.729715012475897e-6 +phalsa_N 3.729715012475897e-6 +phaneromania_N 3.729715012475897e-6 +phantasm_N 3.729715012475897e-6 +phantasmagoria_N 3.729715012475897e-6 +phantasmagoric_A 1.0773191989054437e-5 +phantasmal_A 1.0773191989054437e-5 +phantasy_N 3.729715012475897e-6 +phantom_A 1.0773191989054437e-5 +phantom_N 3.729715012475897e-6 +pharaoh_N 7.459430024951794e-6 +pharisaic_A 1.0773191989054437e-5 +pharisaical_A 1.0773191989054437e-5 +pharisee_N 3.729715012475897e-6 +pharmaceutical_A 4.7402044751839524e-4 +pharmaceutical_N 3.729715012475897e-6 +pharmacist_N 7.459430024951794e-6 +pharmacogenetics_N 3.729715012475897e-6 +pharmacokinetics_N 3.729715012475897e-6 +pharmacological_A 1.0773191989054437e-5 +pharmacologist_N 3.729715012475897e-6 +pharmacology_N 3.729715012475897e-6 +pharmacopoeia_N 3.729715012475897e-6 +pharmacy_N 1.118914503742769e-5 +pharos_N 3.729715012475897e-6 +pharyngeal_A 1.0773191989054437e-5 +pharyngitis_N 3.729715012475897e-6 +pharynx_N 3.729715012475897e-6 +phase_N 8.951316029942152e-5 +phase_V2 2.2538113559895037e-4 +phase_in_V2 1.609865254278217e-5 +phase_out_V2 3.219730508556434e-5 +phasianid_N 3.729715012475897e-6 +phasmid_N 3.729715012475897e-6 +phd_N 3.729715012475897e-6 +pheasant_N 3.729715012475897e-6 +phellem_N 3.729715012475897e-6 +phenacomys_N 3.729715012475897e-6 +phenazopyridine_N 3.729715012475897e-6 +phencyclidine_N 3.729715012475897e-6 +phenelzine_N 3.729715012475897e-6 +pheniramine_N 3.729715012475897e-6 +phenobarbitone_N 3.729715012475897e-6 +phenol_N 3.729715012475897e-6 +phenolphthalein_N 3.729715012475897e-6 +phenomenal_A 3.231957596716331e-5 +phenomenology_N 3.729715012475897e-6 +phenomenon_N 7.086458523704203e-5 +phenothiazine_N 3.729715012475897e-6 +phenotype_N 3.729715012475897e-6 +phenotypical_A 1.0773191989054437e-5 +phensuximide_N 3.729715012475897e-6 +phentolamine_N 3.729715012475897e-6 +phenylalanine_N 3.729715012475897e-6 +phenylbutazone_N 3.729715012475897e-6 +phenylephrine_N 3.729715012475897e-6 +phenylketonuria_N 3.729715012475897e-6 +phenylpropanolamine_N 3.729715012475897e-6 +phenyltoloxamine_N 3.729715012475897e-6 +pheochromocytoma_N 3.729715012475897e-6 +pheromone_N 3.729715012475897e-6 +phi_N 3.729715012475897e-6 +phial_N 3.729715012475897e-6 +phil_PN 1.865462821325971e-5 +philadelphia_PN 4.6636570533149275e-4 +philadelphus_N 3.729715012475897e-6 +philander_V 2.2678822515534993e-5 +philanderer_N 3.729715012475897e-6 +philanthropic_A 1.0773191989054437e-5 +philanthropically_Adv 8.668966832532898e-6 +philanthropist_N 7.459430024951794e-6 +philanthropy_N 3.729715012475897e-6 +philatelic_A 1.0773191989054437e-5 +philatelically_Adv 8.668966832532898e-6 +philatelist_N 3.729715012475897e-6 +philately_N 3.729715012475897e-6 +philharmonic_A 1.0773191989054437e-5 +philhellene_A 1.0773191989054437e-5 +philhellene_N 3.729715012475897e-6 +philhellenic_A 1.0773191989054437e-5 +philhellenism_N 3.729715012475897e-6 +philip_PN 1.865462821325971e-5 +philippa_PN 1.865462821325971e-5 +philippine_A 1.1850511187959881e-4 +philippine_N 3.729715012475897e-6 +philippines_PN 4.8502033354475243e-4 +philistine_N 3.729715012475897e-6 +philistinism_N 3.729715012475897e-6 +phillipsite_N 3.729715012475897e-6 +philodendron_N 3.729715012475897e-6 +philogyny_N 3.729715012475897e-6 +philological_A 1.0773191989054437e-5 +philologist_N 3.729715012475897e-6 +philology_N 3.729715012475897e-6 +philomath_N 3.729715012475897e-6 +philosopher_N 1.4918860049903587e-5 +philosophic_A 3.231957596716331e-5 +philosophical_A 7.541234392338106e-5 +philosophize_V 2.2678822515534993e-5 +philosophizer_N 3.729715012475897e-6 +philosophizing_N 3.729715012475897e-6 +philosophy_N 7.459430024951794e-5 +philter_N 3.729715012475897e-6 +philtre_N 3.729715012475897e-6 +phimosis_N 3.729715012475897e-6 +phlebectomy_N 3.729715012475897e-6 +phlebitis_N 3.729715012475897e-6 +phlebothrombosis_N 3.729715012475897e-6 +phlebotomist_N 3.729715012475897e-6 +phlegm_N 3.729715012475897e-6 +phlegmatic_A 1.0773191989054437e-5 +phlegmatically_Adv 8.668966832532898e-6 +phlegmy_A 1.0773191989054437e-5 +phloem_N 3.729715012475897e-6 +phlogiston_N 3.729715012475897e-6 +phlogopite_N 3.729715012475897e-6 +phlomis_N 3.729715012475897e-6 +phlox_N 3.729715012475897e-6 +phnom_penh_PN 1.865462821325971e-5 +phobia_N 7.459430024951794e-6 +phobic_A 1.0773191989054437e-5 +phobophobia_N 3.729715012475897e-6 +phocine_A 1.0773191989054437e-5 +phocomelia_N 3.729715012475897e-6 +phoebe_N 3.729715012475897e-6 +phoebe_PN 1.865462821325971e-5 +phoenicophorium_N 3.729715012475897e-6 +phoenix_N 3.729715012475897e-6 +phoenix_PN 1.865462821325971e-5 +phon_N 3.729715012475897e-6 +phone_N 3.878903612974933e-4 +phone_V 9.071529006213997e-5 +phone_V2 9.659191525669301e-5 +phone_in_N 3.729715012475897e-6 +phonebook_N 7.459430024951794e-6 +phonebooth_N 3.729715012475897e-6 +phonecall_N 3.729715012475897e-6 +phoneme_N 3.729715012475897e-6 +phonemic_A 1.0773191989054437e-5 +phonemic_Adv 8.668966832532898e-6 +phonemics_N 3.729715012475897e-6 +phonetic_A 1.0773191989054437e-5 +phonetically_Adv 8.668966832532898e-6 +phonetician_N 3.729715012475897e-6 +phonetics_N 3.729715012475897e-6 +phoney_A 2.1546383978108874e-5 +phoney_N 3.729715012475897e-6 +phonic_A 1.0773191989054437e-5 +phonics_N 3.729715012475897e-6 +phonogram_N 3.729715012475897e-6 +phonogramic_A 1.0773191989054437e-5 +phonograph_N 3.729715012475897e-6 +phonological_A 1.0773191989054437e-5 +phonologist_N 3.729715012475897e-6 +phonology_N 3.729715012475897e-6 +phonophobia_N 3.729715012475897e-6 +phony_A 8.61855359124355e-5 +phony_N 7.459430024951794e-6 +phoronid_N 3.729715012475897e-6 +phosgene_N 3.729715012475897e-6 +phosphatase_N 3.729715012475897e-6 +phosphate_N 3.729715012475897e-6 +phosphine_N 3.729715012475897e-6 +phosphocreatine_N 3.729715012475897e-6 +phospholipid_N 3.729715012475897e-6 +phosphoprotein_N 3.729715012475897e-6 +phosphor_N 3.729715012475897e-6 +phosphorescence_N 3.729715012475897e-6 +phosphorescent_A 1.0773191989054437e-5 +phosphoric_A 1.0773191989054437e-5 +phosphorous_A 1.0773191989054437e-5 +phosphorus_N 3.729715012475897e-6 +phot_N 3.729715012475897e-6 +photalgia_N 3.729715012475897e-6 +photic_A 1.0773191989054437e-5 +photo_N 8.205373027446973e-5 +photocathode_N 3.729715012475897e-6 +photochemical_A 1.0773191989054437e-5 +photochemistry_N 3.729715012475897e-6 +photocoagulation_N 3.729715012475897e-6 +photocoagulator_N 3.729715012475897e-6 +photoconductive_A 1.0773191989054437e-5 +photoconductivity_N 3.729715012475897e-6 +photocopier_N 7.459430024951794e-6 +photocopy_N 3.729715012475897e-6 +photocopy_V2 3.219730508556434e-5 +photoelectric_A 1.0773191989054437e-5 +photoelectrically_Adv 8.668966832532898e-6 +photoelectricity_N 3.729715012475897e-6 +photoelectron_N 3.729715012475897e-6 +photoemission_N 3.729715012475897e-6 +photoemissive_A 1.0773191989054437e-5 +photoflash_N 3.729715012475897e-6 +photogenic_A 1.0773191989054437e-5 +photograph_N 5.2216010174662554e-5 +photograph_V2 6.439461017112868e-5 +photographer_N 1.8648575062379485e-5 +photographic_A 1.4005149585770768e-4 +photographically_Adv 8.668966832532898e-6 +photography_N 4.475658014971076e-5 +photogravure_N 3.729715012475897e-6 +photojournalism_N 3.729715012475897e-6 +photojournalist_N 3.729715012475897e-6 +photolithograph_N 3.729715012475897e-6 +photolithography_N 3.729715012475897e-6 +photomechanical_A 1.0773191989054437e-5 +photomechanics_N 3.729715012475897e-6 +photometer_N 3.729715012475897e-6 +photometric_A 1.0773191989054437e-5 +photometrically_Adv 8.668966832532898e-6 +photometrist_N 3.729715012475897e-6 +photometry_N 3.729715012475897e-6 +photomicrograph_N 3.729715012475897e-6 +photomontage_N 3.729715012475897e-6 +photon_N 3.729715012475897e-6 +photophobia_N 3.729715012475897e-6 +photopigment_N 3.729715012475897e-6 +photoretinitis_N 3.729715012475897e-6 +photosensitivity_N 3.729715012475897e-6 +photosensitize_V2 1.609865254278217e-5 +photosphere_N 3.729715012475897e-6 +photostat_N 3.729715012475897e-6 +photostat_V2 1.609865254278217e-5 +photosynthesis_N 7.459430024951794e-6 +photosynthetic_A 1.0773191989054437e-5 +phototherapy_N 3.729715012475897e-6 +phototropism_N 3.729715012475897e-6 +photovoltaic_A 1.0773191989054437e-5 +phragmocone_N 3.729715012475897e-6 +phrasal_A 1.0773191989054437e-5 +phrase_N 4.848629516218666e-5 +phrase_V2 1.609865254278217e-5 +phrase_book_N 3.729715012475897e-6 +phraseology_N 3.729715012475897e-6 +phrasing_N 3.729715012475897e-6 +phreatic_A 1.0773191989054437e-5 +phrenetic_A 1.0773191989054437e-5 +phrenic_A 1.0773191989054437e-5 +phrenological_A 1.0773191989054437e-5 +phrenologist_N 3.729715012475897e-6 +phrenology_N 3.729715012475897e-6 +phrontistery_N 3.729715012475897e-6 +phthisis_N 3.729715012475897e-6 +phut_Adv 8.668966832532898e-6 +phycobilin_N 3.729715012475897e-6 +phycocyanin_N 3.729715012475897e-6 +phycoerythrin_N 3.729715012475897e-6 +phycology_N 3.729715012475897e-6 +phycomycosis_N 3.729715012475897e-6 +phylactery_N 3.729715012475897e-6 +phyle_N 3.729715012475897e-6 +phylliform_A 1.0773191989054437e-5 +phyllis_PN 1.865462821325971e-5 +phyllo_N 3.729715012475897e-6 +phyllode_N 3.729715012475897e-6 +phyllodial_A 1.0773191989054437e-5 +phylogenetic_A 1.0773191989054437e-5 +phylogenetically_Adv 8.668966832532898e-6 +phylum_N 3.729715012475897e-6 +physa_N 3.729715012475897e-6 +physic_N 3.729715012475897e-6 +physical_A 2.2623703177014317e-4 +physician_N 6.713487022456614e-5 +physicist_N 1.8648575062379485e-5 +physicochemical_A 1.0773191989054437e-5 +physics_N 2.237829007485538e-5 +physiognomy_N 3.729715012475897e-6 +physiologic_A 1.0773191989054437e-5 +physiological_A 1.0773191989054437e-5 +physiologist_N 3.729715012475897e-6 +physiology_N 3.729715012475897e-6 +physiotherapeutic_A 1.0773191989054437e-5 +physiotherapist_N 3.729715012475897e-6 +physiotherapy_N 3.729715012475897e-6 +physique_N 3.729715012475897e-6 +physostegia_N 3.729715012475897e-6 +physostigmine_N 3.729715012475897e-6 +phytelephas_N 3.729715012475897e-6 +phytochemical_N 3.729715012475897e-6 +phytochemist_N 3.729715012475897e-6 +phytochemistry_N 3.729715012475897e-6 +phytohormone_N 3.729715012475897e-6 +phytoplankton_N 3.729715012475897e-6 +phytotherapy_N 3.729715012475897e-6 +pi_N 7.459430024951794e-6 +pia_N 3.729715012475897e-6 +piacenza_PN 1.865462821325971e-5 +piaffe_N 3.729715012475897e-6 +pianism_N 3.729715012475897e-6 +pianissimo_A 1.0773191989054437e-5 +pianissimo_Adv 8.668966832532898e-6 +pianist_N 1.8648575062379485e-5 +pianistic_A 1.0773191989054437e-5 +piano_A 1.0773191989054437e-5 +piano_Adv 8.668966832532898e-6 +piano_N 4.1026865137234865e-5 +pianoforte_N 3.729715012475897e-6 +pianola_N 3.729715012475897e-6 +piaster_N 3.729715012475897e-6 +piastre_N 3.729715012475897e-6 +piazza_N 3.729715012475897e-6 +pibroch_N 3.729715012475897e-6 +pica_N 3.729715012475897e-6 +picador_N 3.729715012475897e-6 +picaresque_A 1.0773191989054437e-5 +piccalilli_N 3.729715012475897e-6 +piccaninny_N 3.729715012475897e-6 +piccolo_N 3.729715012475897e-6 +pichi_N 3.729715012475897e-6 +pichiciago_N 3.729715012475897e-6 +pick_N 3.729715012475897e-5 +pick_V 1.5421599310563795e-3 +pick_V2 4.0246631356955425e-4 +pick_at_V2 1.609865254278217e-5 +pick_away_V 2.2678822515534993e-5 +pick_me_up_N 3.729715012475897e-6 +pick_off_V2 1.609865254278217e-5 +pick_on_V2 1.609865254278217e-5 +pick_out_V2 1.609865254278217e-5 +pick_through_V2 1.609865254278217e-5 +pick_up_N 3.729715012475897e-6 +pick_up_V 2.2678822515534993e-5 +pick_up_V2 4.8295957628346505e-5 +pick_up_after_V2 1.609865254278217e-5 +pick_up_on_V2 1.609865254278217e-5 +pick_yourself_up_V 2.2678822515534993e-5 +pickaback_Adv 8.668966832532898e-6 +pickaninny_N 3.729715012475897e-6 +pickaxe_N 3.729715012475897e-6 +pickelhaube_N 3.729715012475897e-6 +picker_N 3.729715012475897e-5 +pickerel_N 3.729715012475897e-6 +pickerelweed_N 3.729715012475897e-6 +picket_N 2.6108005087331277e-5 +picket_V 6.803646754660499e-5 +picket_V2 1.609865254278217e-5 +picking_N 1.8648575062379485e-5 +pickings_N 3.729715012475897e-6 +pickle_N 7.459430024951794e-6 +pickle_V2 1.609865254278217e-5 +pickpocket_N 3.729715012475897e-6 +pickup_N 3.729715012475897e-6 +picnic_N 1.118914503742769e-5 +picnic_V 2.2678822515534993e-5 +picnicker_N 3.729715012475897e-6 +picofarad_N 3.729715012475897e-6 +picometer_N 3.729715012475897e-6 +picornavirus_N 3.729715012475897e-6 +picosecond_N 3.729715012475897e-6 +picot_N 3.729715012475897e-6 +picovolt_N 3.729715012475897e-6 +picric_A 1.0773191989054437e-5 +pictograph_N 3.729715012475897e-6 +pictographic_A 1.0773191989054437e-5 +pictorial_A 1.0773191989054437e-5 +pictorial_N 3.729715012475897e-6 +picture_N 2.8718805596064407e-4 +picture_V2 8.049326271391085e-5 +picture_book_N 3.729715012475897e-6 +picture_card_N 3.729715012475897e-6 +picture_gallery_N 3.729715012475897e-6 +picturesque_A 2.1546383978108874e-5 +picturesqueness_N 3.729715012475897e-6 +picturing_N 3.729715012475897e-6 +picul_N 3.729715012475897e-6 +piculet_N 3.729715012475897e-6 +piddle_N 3.729715012475897e-6 +piddle_V 2.2678822515534993e-5 +piddock_N 3.729715012475897e-6 +pidgin_N 3.729715012475897e-6 +pie_N 3.729715012475897e-5 +pie_crust_N 3.729715012475897e-6 +piebald_A 1.0773191989054437e-5 +piece_N 3.282149210978789e-4 +piece_V2 4.8295957628346505e-5 +piecemeal_A 1.0773191989054437e-5 +piecemeal_Adv 2.6006900497598697e-5 +piecework_N 3.729715012475897e-6 +pied_A 1.0773191989054437e-5 +pied_a_terre_N 3.729715012475897e-6 +piedmont_N 3.729715012475897e-6 +pieplant_N 3.729715012475897e-6 +pier_N 1.8648575062379485e-5 +pier_glass_N 3.729715012475897e-6 +pierce_V 2.2678822515534993e-5 +pierce_V2 1.609865254278217e-5 +piercingly_Adv 8.668966832532898e-6 +pierid_N 3.729715012475897e-6 +pierrot_N 3.729715012475897e-6 +pieta_N 3.729715012475897e-6 +pietistic_A 1.0773191989054437e-5 +piety_N 3.729715012475897e-6 +piezoelectric_A 1.0773191989054437e-5 +piezoelectricity_N 3.729715012475897e-6 +piezometer_N 3.729715012475897e-6 +piffle_N 3.729715012475897e-6 +piffle_V 2.2678822515534993e-5 +pig_N 4.848629516218666e-5 +pig_V 2.2678822515534993e-5 +pig_headed_A 1.0773191989054437e-5 +pig_headedness_N 3.729715012475897e-6 +pig_iron_N 3.729715012475897e-6 +pig_off_V 2.2678822515534993e-5 +pig_out_V 2.2678822515534993e-5 +pig_sticking_N 3.729715012475897e-6 +pigboat_N 3.729715012475897e-6 +pigeon_N 3.729715012475897e-6 +pigeon_breasted_A 1.0773191989054437e-5 +pigeon_toed_A 1.0773191989054437e-5 +pigeonhole_N 3.729715012475897e-6 +pigeonhole_V2 1.609865254278217e-5 +pigfish_N 3.729715012475897e-6 +piggery_N 3.729715012475897e-6 +piggish_A 1.0773191989054437e-5 +piggishness_N 3.729715012475897e-6 +piggy_A 1.0773191989054437e-5 +piggy_N 3.729715012475897e-6 +piggyback_Adv 8.668966832532898e-6 +piggyback_N 3.729715012475897e-6 +piggyback_V 9.071529006213997e-5 +piglet_N 1.118914503742769e-5 +pigment_N 2.237829007485538e-5 +pigmentation_N 3.729715012475897e-6 +pigmy_N 3.729715012475897e-6 +pignut_N 3.729715012475897e-6 +pigskin_N 3.729715012475897e-6 +pigsticking_N 3.729715012475897e-6 +pigsty_N 7.459430024951794e-6 +pigswill_N 3.729715012475897e-6 +pigtail_N 3.729715012475897e-6 +pigwash_N 3.729715012475897e-6 +pigweed_N 3.729715012475897e-6 +pika_N 3.729715012475897e-6 +pike_N 3.729715012475897e-6 +pikeblenny_N 3.729715012475897e-6 +pikestaff_N 3.729715012475897e-6 +pilaf_N 3.729715012475897e-6 +pilaff_N 3.729715012475897e-6 +pilar_A 1.0773191989054437e-5 +pilaster_N 3.729715012475897e-6 +pilau_N 3.729715012475897e-6 +pilchard_N 3.729715012475897e-6 +pile_N 2.237829007485538e-5 +pile_V 2.9482469270195494e-4 +pile_V2 4.8295957628346505e-5 +pile_driver_N 3.729715012475897e-6 +pile_dwelling_N 3.729715012475897e-6 +pile_in_V 2.2678822515534993e-5 +pile_into_V2 1.609865254278217e-5 +pile_on_V2 1.609865254278217e-5 +pile_out_V 2.2678822515534993e-5 +pile_up_N 3.729715012475897e-6 +pile_up_V 2.2678822515534993e-5 +pile_up_V2 1.609865254278217e-5 +piles_N 1.8648575062379485e-5 +pileup_N 3.729715012475897e-6 +pilfer_V 2.2678822515534993e-5 +pilfer_V2 1.609865254278217e-5 +pilferage_N 7.459430024951794e-6 +pilferer_N 3.729715012475897e-6 +pilgrim_N 3.729715012475897e-6 +pilgrimage_N 7.459430024951794e-6 +pill_N 1.6410746054893946e-4 +pill_PN 1.865462821325971e-5 +pillage_N 3.729715012475897e-6 +pillage_V2 1.609865254278217e-5 +pillager_N 3.729715012475897e-6 +pillar_N 3.356743511228307e-5 +pillar_box_N 3.729715012475897e-6 +pillared_A 1.0773191989054437e-5 +pillbox_N 3.729715012475897e-6 +pillion_N 3.729715012475897e-6 +pillory_N 3.729715012475897e-6 +pillory_V2 4.8295957628346505e-5 +pillow_N 1.4918860049903587e-5 +pillow_V2 1.609865254278217e-5 +pillow_fight_N 3.729715012475897e-6 +pillowcase_N 7.459430024951794e-6 +pillowslip_N 3.729715012475897e-6 +pillwort_N 3.729715012475897e-6 +pilocarpine_N 3.729715012475897e-6 +pilosebaceous_A 1.0773191989054437e-5 +pilot_N 5.743761119212881e-4 +pilot_V2 1.609865254278217e-5 +pilot_boat_N 3.729715012475897e-6 +pilot_burner_N 3.729715012475897e-6 +pilot_cloth_N 3.729715012475897e-6 +pilot_engine_N 3.729715012475897e-6 +pilot_fish_N 3.729715012475897e-6 +pilot_light_N 3.729715012475897e-6 +pilotfish_N 3.729715012475897e-6 +pilothouse_N 3.729715012475897e-6 +piloting_N 3.729715012475897e-6 +pilotless_A 1.0773191989054437e-5 +pilous_A 1.0773191989054437e-5 +pilus_N 3.729715012475897e-6 +pimento_N 3.729715012475897e-6 +pimozide_N 3.729715012475897e-6 +pimp_N 1.4918860049903587e-5 +pimp_V 2.2678822515534993e-5 +pimpernel_N 3.729715012475897e-6 +pimple_N 3.729715012475897e-6 +pimpled_A 1.0773191989054437e-5 +pimply_A 1.0773191989054437e-5 +pin_N 2.237829007485538e-5 +pin_V2 1.2878922034225736e-4 +pin_down_V2 1.609865254278217e-5 +pin_money_N 3.729715012475897e-6 +pin_on_V3 1.5873015873015873e-3 +pin_point_V2 3.219730508556434e-5 +pin_table_N 3.729715012475897e-6 +pin_up_N 3.729715012475897e-6 +pin_up_V2 1.609865254278217e-5 +pinafore_N 3.729715012475897e-6 +pinata_N 3.729715012475897e-6 +pinball_N 1.4918860049903587e-5 +pince_nez_N 3.729715012475897e-6 +pincer_N 3.729715012475897e-6 +pinch_N 1.118914503742769e-5 +pinch_V 2.2678822515534993e-5 +pinch_V2 6.439461017112868e-5 +pinchbeck_A 1.0773191989054437e-5 +pinchbeck_N 3.729715012475897e-6 +pinche_N 3.729715012475897e-6 +pinchgut_N 3.729715012475897e-6 +pincushion_N 3.729715012475897e-6 +pindolol_N 3.729715012475897e-6 +pine_N 3.729715012475897e-6 +pine_V 4.5357645031069986e-5 +pine_away_V 2.2678822515534993e-5 +pineal_A 1.0773191989054437e-5 +pinealoma_N 3.729715012475897e-6 +pineapple_N 1.118914503742769e-5 +pinecone_N 3.729715012475897e-6 +pinesap_N 3.729715012475897e-6 +pinetum_N 3.729715012475897e-6 +pinfish_N 3.729715012475897e-6 +pinfold_N 3.729715012475897e-6 +ping_N 7.459430024951794e-6 +ping_V 6.803646754660499e-5 +pinger_N 3.729715012475897e-6 +pingpong_N 3.729715012475897e-6 +pinguecula_N 3.729715012475897e-6 +pinhead_N 3.729715012475897e-6 +pinhole_N 3.729715012475897e-6 +pining_N 3.729715012475897e-6 +pinion_N 3.729715012475897e-6 +pinion_V2 1.609865254278217e-5 +pinite_N 3.729715012475897e-6 +pink_A 4.309276795621775e-5 +pink_N 3.729715012475897e-6 +pink_V 2.2678822515534993e-5 +pink_V2 1.609865254278217e-5 +pinkish_A 1.0773191989054437e-5 +pinkness_N 3.729715012475897e-6 +pinko_N 3.729715012475897e-6 +pinkroot_N 3.729715012475897e-6 +pinna_N 3.729715012475897e-6 +pinnace_N 3.729715012475897e-6 +pinnacle_N 3.729715012475897e-6 +pinnacle_V2 1.609865254278217e-5 +pinnate_A 1.0773191989054437e-5 +pinnatifid_A 1.0773191989054437e-5 +pinnatisect_A 1.0773191989054437e-5 +pinner_N 3.729715012475897e-6 +pinning_N 3.729715012475897e-6 +pinny_N 3.729715012475897e-6 +pinochle_N 3.729715012475897e-6 +pinocytosis_N 3.729715012475897e-6 +pinole_N 3.729715012475897e-6 +pinon_N 3.729715012475897e-6 +pinpoint_N 3.729715012475897e-6 +pinpoint_V2 8.049326271391085e-5 +pinprick_N 3.729715012475897e-6 +pinscher_N 3.729715012475897e-6 +pinstripe_A 1.0773191989054437e-5 +pinstripe_N 3.729715012475897e-6 +pinstriped_A 1.0773191989054437e-5 +pint_N 7.459430024951794e-6 +pintail_N 3.729715012475897e-6 +pintle_N 3.729715012475897e-6 +pinto_N 3.729715012475897e-6 +pinwheel_N 3.729715012475897e-6 +pinworm_N 3.729715012475897e-6 +pion_N 3.729715012475897e-6 +pioneer_N 3.729715012475897e-5 +pioneer_V 6.803646754660499e-5 +pioneer_V2 6.439461017112868e-5 +pious_A 2.1546383978108874e-5 +pip_N 3.729715012475897e-6 +pip_V2 1.609865254278217e-5 +pipage_N 3.729715012475897e-6 +pipal_N 3.729715012475897e-6 +pipe_N 5.594572518713845e-5 +pipe_V 4.5357645031069986e-5 +pipe_V2 3.219730508556434e-5 +pipe_down_V 2.2678822515534993e-5 +pipe_in_V 2.2678822515534993e-5 +pipe_organ_N 3.729715012475897e-6 +pipe_rack_N 3.729715012475897e-6 +pipe_up_V 2.2678822515534993e-5 +pipeclay_N 3.729715012475897e-6 +pipedream_N 3.729715012475897e-6 +pipefish_N 3.729715012475897e-6 +pipefitting_N 3.729715012475897e-6 +pipeful_N 3.729715012475897e-6 +pipeline_N 2.0140461067369843e-4 +piper_N 3.729715012475897e-6 +piperacillin_N 3.729715012475897e-6 +piperazine_N 3.729715012475897e-6 +piperin_N 3.729715012475897e-6 +piperocaine_N 3.729715012475897e-6 +pipet_N 3.729715012475897e-6 +pipette_N 3.729715012475897e-6 +pipework_N 3.729715012475897e-6 +pipewort_N 3.729715012475897e-6 +piping_Adv 8.668966832532898e-6 +piping_N 7.459430024951794e-6 +pipistrelle_N 3.729715012475897e-6 +pipit_N 3.729715012475897e-6 +pippin_N 3.729715012475897e-6 +pipsissewa_N 3.729715012475897e-6 +pipsqueak_N 7.459430024951794e-6 +piquancy_N 3.729715012475897e-6 +piquant_A 2.1546383978108874e-5 +pique_N 3.729715012475897e-6 +pique_V2 1.609865254278217e-5 +piquet_N 3.729715012475897e-6 +piracy_N 7.459430024951794e-6 +piraeus_PN 1.865462821325971e-5 +piranha_N 7.459430024951794e-6 +pirate_N 1.118914503742769e-5 +pirate_V2 3.219730508556434e-5 +piratical_A 1.0773191989054437e-5 +pirogi_N 3.729715012475897e-6 +piroplasm_N 3.729715012475897e-6 +pirouette_N 3.729715012475897e-6 +pirouette_V 2.2678822515534993e-5 +piroxicam_N 3.729715012475897e-6 +pis_aller_N 3.729715012475897e-6 +pisa_PN 1.865462821325971e-5 +pisanosaur_N 3.729715012475897e-6 +piscatorial_A 1.0773191989054437e-5 +pisces_PN 1.865462821325971e-5 +piscine_A 1.0773191989054437e-5 +piscivorous_A 1.0773191989054437e-5 +pisiform_N 3.729715012475897e-6 +piss_N 3.729715012475897e-6 +piss_V 2.2678822515534993e-5 +piss_V2 1.609865254278217e-5 +pisser_N 3.729715012475897e-6 +pistachio_N 3.729715012475897e-6 +piste_N 3.729715012475897e-6 +pistia_N 3.729715012475897e-6 +pistil_N 7.459430024951794e-6 +pistillate_A 1.0773191989054437e-5 +pistillode_N 3.729715012475897e-6 +pistol_N 2.237829007485538e-5 +pistoleer_N 3.729715012475897e-6 +piston_N 1.8648575062379485e-5 +pit_N 1.0070230533684921e-4 +pit_V2 1.2878922034225736e-4 +pit_a_pat_Adv 8.668966832532898e-6 +pit_against_V3 1.5873015873015873e-3 +pit_out_V 2.2678822515534993e-5 +pit_prop_N 3.729715012475897e-6 +pita_N 3.729715012475897e-6 +pitahaya_N 3.729715012475897e-6 +pitch_N 8.205373027446973e-5 +pitch_V 1.3607293509320997e-4 +pitch_V2 1.9318383051338602e-4 +pitch_black_A 1.0773191989054437e-5 +pitch_dark_A 1.0773191989054437e-5 +pitch_for_V2 1.609865254278217e-5 +pitch_in_V 2.2678822515534993e-5 +pitch_into_V2 1.609865254278217e-5 +pitchblende_N 3.729715012475897e-6 +pitcher_N 3.729715012475897e-5 +pitchfork_N 3.729715012475897e-6 +pitchfork_V2 1.609865254278217e-5 +pitching_N 3.729715012475897e-6 +pitchman_N 3.729715012475897e-6 +pitchstone_N 3.729715012475897e-6 +pitchy_A 1.0773191989054437e-5 +piteous_A 1.0773191989054437e-5 +pitfall_N 2.237829007485538e-5 +pith_N 3.729715012475897e-6 +pithead_N 3.729715012475897e-6 +pithy_A 3.231957596716331e-5 +pitiable_A 1.0773191989054437e-5 +pitiful_A 1.0773191989054437e-5 +pitiless_A 1.0773191989054437e-5 +pitilessness_N 3.729715012475897e-6 +pitman_N 3.729715012475897e-6 +piton_N 3.729715012475897e-6 +pitprop_N 3.729715012475897e-6 +pitsaw_N 3.729715012475897e-6 +pitta_N 3.729715012475897e-6 +pittance_N 1.118914503742769e-5 +pitter_patter_N 3.729715012475897e-6 +pitting_N 3.729715012475897e-6 +pittsburgh_PN 6.156027310375705e-4 +pituitary_A 1.0773191989054437e-5 +pituitary_N 3.729715012475897e-6 +pity_N 7.459430024951794e-6 +pity_V2 1.609865254278217e-5 +pitying_A 1.0773191989054437e-5 +pityriasis_N 3.729715012475897e-6 +pivot_N 3.729715012475897e-6 +pivot_V 4.5357645031069986e-5 +pivot_V2 1.609865254278217e-5 +pivotal_A 4.309276795621775e-5 +pixel_N 3.729715012475897e-6 +pixie_N 3.729715012475897e-6 +pixilated_A 1.0773191989054437e-5 +pixy_N 3.729715012475897e-6 +pizza_N 2.6108005087331277e-5 +pizzeria_N 3.729715012475897e-6 +pizzicato_A 1.0773191989054437e-5 +pizzicato_Adv 8.668966832532898e-6 +pizzicato_N 3.729715012475897e-6 +placable_A 1.0773191989054437e-5 +placard_N 3.729715012475897e-6 +placard_V2 1.609865254278217e-5 +placate_V2 6.439461017112868e-5 +placatingly_Adv 8.668966832532898e-6 +placation_N 3.729715012475897e-6 +place_N 7.496727175076552e-4 +place_V2 1.8996410000482959e-3 +place_bet_N 3.729715012475897e-6 +place_name_N 3.729715012475897e-6 +placebo_N 7.459430024951794e-6 +placeholder_N 3.729715012475897e-6 +placeman_N 3.729715012475897e-6 +placement_N 6.713487022456614e-5 +placenta_N 3.729715012475897e-6 +placental_A 1.0773191989054437e-5 +placental_N 3.729715012475897e-6 +placentation_N 3.729715012475897e-6 +placer_N 3.729715012475897e-6 +placeseeker_N 3.729715012475897e-6 +placid_A 2.1546383978108874e-5 +placidity_N 3.729715012475897e-6 +placing_N 7.459430024951794e-6 +placket_N 3.729715012475897e-6 +placoderm_N 3.729715012475897e-6 +placoid_A 1.0773191989054437e-5 +plage_N 3.729715012475897e-6 +plagiarism_N 7.459430024951794e-6 +plagiarist_N 3.729715012475897e-6 +plagiaristic_A 1.0773191989054437e-5 +plagiarize_V2 1.609865254278217e-5 +plagiocephaly_N 3.729715012475897e-6 +plagioclase_N 3.729715012475897e-6 +plagioclastic_A 1.0773191989054437e-5 +plague_N 3.729715012475897e-6 +plague_V2 1.9318383051338602e-4 +plague_spot_N 3.729715012475897e-6 +plaguey_Adv 8.668966832532898e-6 +plaguy_A 1.0773191989054437e-5 +plaice_N 3.729715012475897e-6 +plaid_N 1.4918860049903587e-5 +plain_A 1.6159787983581657e-4 +plain_Adv 2.6006900497598697e-5 +plain_N 2.237829007485538e-5 +plain_V 2.2678822515534993e-5 +plain_V2 1.609865254278217e-5 +plain_spoken_A 1.0773191989054437e-5 +plainclothesman_N 3.729715012475897e-6 +plainness_N 3.729715012475897e-6 +plainsman_N 3.729715012475897e-6 +plainsong_N 3.729715012475897e-6 +plainspoken_A 1.0773191989054437e-5 +plaint_N 3.729715012475897e-6 +plaintiff_N 1.2308059541170458e-4 +plaintive_A 4.309276795621775e-5 +plaintiveness_N 3.729715012475897e-6 +plait_N 3.729715012475897e-6 +plait_V2 1.609865254278217e-5 +plaiter_N 3.729715012475897e-6 +plan_N 2.9091777097311994e-3 +plan_V 2.1544881389758243e-3 +plan_V2 1.6420625593637813e-3 +plan_V2V 9.350163627863488e-4 +plan_VS 9.241610350603593e-4 +plan_VV 2.5850470882183355e-2 +planar_A 1.0773191989054437e-5 +planarian_N 3.729715012475897e-6 +planate_A 1.0773191989054437e-5 +planation_N 3.729715012475897e-6 +planchet_N 3.729715012475897e-6 +planchette_N 3.729715012475897e-6 +plane_N 2.387017607984574e-4 +plane_V 2.2678822515534993e-5 +plane_V2 1.609865254278217e-5 +plane_tree_N 3.729715012475897e-6 +planet_N 5.2216010174662554e-5 +planetal_A 1.0773191989054437e-5 +planetarium_N 3.729715012475897e-6 +planetary_A 1.0773191989054437e-5 +planetesimal_N 3.729715012475897e-6 +plangency_N 3.729715012475897e-6 +plangent_A 1.0773191989054437e-5 +plank_N 7.459430024951794e-6 +plank_V2 1.609865254278217e-5 +plank_bed_N 3.729715012475897e-6 +planking_N 3.729715012475897e-6 +plankton_N 3.729715012475897e-6 +planktonic_A 1.0773191989054437e-5 +planless_A 1.0773191989054437e-5 +planner_N 2.0886404069865022e-4 +planning_N 3.729715012475897e-6 +planoconcave_A 1.0773191989054437e-5 +planoconvex_A 1.0773191989054437e-5 +planographic_A 1.0773191989054437e-5 +plant_N 1.6149666004020634e-3 +plant_V2 3.219730508556434e-4 +plant_louse_N 3.729715012475897e-6 +plant_out_V2 1.609865254278217e-5 +plantain_N 3.729715012475897e-6 +plantal_A 1.0773191989054437e-5 +plantar_A 1.0773191989054437e-5 +plantation_N 1.118914503742769e-5 +planter_N 7.459430024951794e-6 +plantigrade_A 1.0773191989054437e-5 +planting_N 7.459430024951794e-6 +plantlet_N 3.729715012475897e-6 +planula_N 3.729715012475897e-6 +plaque_N 7.459430024951794e-6 +plash_N 3.729715012475897e-6 +plash_V 2.2678822515534993e-5 +plash_V2 1.609865254278217e-5 +plasm_N 3.729715012475897e-6 +plasma_N 7.459430024951794e-6 +plasmablast_N 3.729715012475897e-6 +plasmacytoma_N 3.729715012475897e-6 +plasmapheresis_N 3.729715012475897e-6 +plasmid_N 3.729715012475897e-6 +plasmin_N 3.729715012475897e-6 +plasminogen_N 3.729715012475897e-6 +plasmodium_N 3.729715012475897e-6 +plaster_N 2.237829007485538e-5 +plaster_V2 1.609865254278217e-5 +plasterboard_N 3.729715012475897e-6 +plasterer_N 3.729715012475897e-6 +plastering_N 3.729715012475897e-6 +plastic_A 2.046906477920343e-4 +plastic_N 9.324287531189741e-5 +plastic_bomb_N 3.729715012475897e-6 +plastically_Adv 8.668966832532898e-6 +plasticine_N 3.729715012475897e-6 +plasticity_N 3.729715012475897e-6 +plasticizer_N 3.729715012475897e-6 +plastics_N 1.4172917047408407e-4 +plastid_N 3.729715012475897e-6 +plastination_N 3.729715012475897e-6 +plastron_N 3.729715012475897e-6 +plat_N 3.729715012475897e-6 +plate_N 5.967544019961435e-5 +plate_V2 1.609865254278217e-5 +plate_glass_N 3.729715012475897e-6 +plate_powder_N 3.729715012475897e-6 +plate_rack_N 3.729715012475897e-6 +plate_up_V 2.2678822515534993e-5 +plateau_N 1.8648575062379485e-5 +plateful_N 3.729715012475897e-6 +platelayer_N 3.729715012475897e-6 +platelet_N 3.729715012475897e-6 +plateletpheresis_N 3.729715012475897e-6 +platen_N 3.729715012475897e-6 +plater_N 3.729715012475897e-6 +platform_N 5.594572518713845e-5 +plating_N 3.729715012475897e-6 +platinum_N 6.713487022456614e-5 +platitude_N 1.118914503742769e-5 +platitudinarian_N 3.729715012475897e-6 +platitudinous_A 1.0773191989054437e-5 +platonic_A 1.0773191989054437e-5 +platoon_N 7.459430024951794e-6 +platter_N 3.729715012475897e-6 +platy_N 3.729715012475897e-6 +platyctenean_N 3.729715012475897e-6 +platypus_N 3.729715012475897e-6 +platyrrhine_A 1.0773191989054437e-5 +platysma_N 3.729715012475897e-6 +plaudit_N 7.459430024951794e-6 +plausibility_N 3.729715012475897e-6 +plausible_A 7.541234392338106e-5 +play_N 1.6037774553646355e-4 +play_V 1.7916269787272645e-3 +play_V2 1.803049084791603e-3 +play_VV 1.9219680953296174e-4 +play_acting_N 3.729715012475897e-6 +play_actor_N 3.729715012475897e-6 +play_along_V 2.2678822515534993e-5 +play_around_V 2.2678822515534993e-5 +play_at_V2 1.609865254278217e-5 +play_away_V 2.2678822515534993e-5 +play_back_V2 1.609865254278217e-5 +play_box_N 3.729715012475897e-6 +play_down_V2 1.609865254278217e-5 +play_off_N 3.729715012475897e-6 +play_off_V 2.2678822515534993e-5 +play_off_V2 1.609865254278217e-5 +play_on_V 2.2678822515534993e-5 +play_on_V2 1.609865254278217e-5 +play_out_V 2.2678822515534993e-5 +play_out_V2 1.609865254278217e-5 +play_reading_N 3.729715012475897e-6 +play_up_V 2.2678822515534993e-5 +play_up_V2 1.609865254278217e-5 +play_up_to_V2 1.609865254278217e-5 +play_upon_V2 1.609865254278217e-5 +play_with_V2 1.609865254278217e-5 +playable_A 1.0773191989054437e-5 +playback_N 3.729715012475897e-6 +playbill_N 3.729715012475897e-6 +playbook_N 3.729715012475897e-6 +playbox_N 3.729715012475897e-6 +playboy_N 3.729715012475897e-6 +player_N 4.32646941447204e-4 +player_piano_N 3.729715012475897e-6 +playfellow_N 3.729715012475897e-6 +playful_A 2.1546383978108874e-5 +playfulness_N 7.459430024951794e-6 +playgoer_N 3.729715012475897e-6 +playground_N 1.8648575062379485e-5 +playgroup_N 3.729715012475897e-6 +playhouse_N 3.729715012475897e-6 +playing_N 5.2216010174662554e-5 +playing_card_N 3.729715012475897e-6 +playing_field_N 3.729715012475897e-6 +playlet_N 3.729715012475897e-6 +playlist_N 3.729715012475897e-6 +playmaker_N 3.729715012475897e-6 +playmate_N 3.729715012475897e-6 +playoff_N 3.729715012475897e-6 +playpen_N 3.729715012475897e-6 +playroom_N 3.729715012475897e-6 +playschool_N 3.729715012475897e-6 +playsuit_N 3.729715012475897e-6 +plaything_N 3.729715012475897e-6 +playtime_N 3.729715012475897e-6 +playwright_N 3.356743511228307e-5 +plaza_N 7.459430024951794e-6 +plc_PN 1.865462821325971e-5 +plea_N 1.1562116538675279e-4 +pleach_V2 1.609865254278217e-5 +plead_V 2.2678822515534994e-4 +plead_V2 9.659191525669301e-5 +plead_VA 2.3622047244094488e-2 +plead_VS 1.7328019407381737e-4 +plead_out_V 2.2678822515534993e-5 +pleading_N 3.729715012475897e-6 +pleadingly_Adv 1.7337933665065797e-5 +pleasance_N 3.729715012475897e-6 +pleasant_A 4.309276795621775e-5 +pleasantness_N 3.729715012475897e-6 +pleasantry_N 1.4918860049903587e-5 +please_Adv 8.668966832532898e-6 +please_V 1.3607293509320997e-4 +please_V2 4.0246631356955425e-4 +please_V2V 1.8700327255726976e-3 +please_VV 5.765904285988853e-4 +pleaser_N 3.729715012475897e-6 +pleasing_N 3.729715012475897e-6 +pleasingly_Adv 8.668966832532898e-6 +pleasingness_N 3.729715012475897e-6 +pleasurable_A 2.1546383978108874e-5 +pleasure_N 4.1026865137234865e-5 +pleasure_boat_N 3.729715012475897e-6 +pleasure_craft_N 3.729715012475897e-6 +pleasure_ground_N 3.729715012475897e-6 +pleat_N 3.729715012475897e-6 +pleat_V2 3.219730508556434e-5 +pleb_N 3.729715012475897e-6 +plebeian_A 1.0773191989054437e-5 +plebeian_N 3.729715012475897e-6 +plebiscite_N 3.729715012475897e-6 +plectognath_N 3.729715012475897e-6 +plectranthus_N 3.729715012475897e-6 +plectrum_N 3.729715012475897e-6 +pledge_N 4.848629516218666e-5 +pledge_V2 1.2878922034225736e-4 +pledge_V2V 4.675081813931744e-4 +pledge_VS 2.3104025876508982e-4 +pledgee_N 3.729715012475897e-6 +pledger_N 3.729715012475897e-6 +plenary_A 1.0773191989054437e-5 +plenipotentiary_N 3.729715012475897e-6 +plenitude_N 3.729715012475897e-6 +plenteous_A 1.0773191989054437e-5 +plentiful_A 6.463915193432663e-5 +plenty_Adv 7.802070149279609e-5 +plenty_N 8.578344528694562e-5 +plenum_N 3.729715012475897e-6 +pleochroic_A 1.0773191989054437e-5 +pleochroism_N 3.729715012475897e-6 +pleomorphic_A 1.0773191989054437e-5 +pleomorphism_N 3.729715012475897e-6 +pleonasm_N 3.729715012475897e-6 +pleonastic_A 1.0773191989054437e-5 +plesiosaur_N 3.729715012475897e-6 +plethora_N 7.459430024951794e-6 +plethysmograph_N 3.729715012475897e-6 +pleura_N 3.729715012475897e-6 +pleural_A 1.0773191989054437e-5 +pleurisy_N 3.729715012475897e-6 +pleurocarp_N 3.729715012475897e-6 +pleurocarpous_A 1.0773191989054437e-5 +pleurodont_N 3.729715012475897e-6 +pleurodynia_N 3.729715012475897e-6 +pleuropneumonia_N 3.729715012475897e-6 +pleurothallis_N 3.729715012475897e-6 +pleximeter_N 3.729715012475897e-6 +plexor_N 3.729715012475897e-6 +plexus_N 3.729715012475897e-6 +pliability_N 3.729715012475897e-6 +pliable_A 1.0773191989054437e-5 +pliancy_N 3.729715012475897e-6 +pliant_A 2.1546383978108874e-5 +plication_N 3.729715012475897e-6 +plier_N 3.729715012475897e-6 +pliers_N 3.729715012475897e-6 +plight_N 4.1026865137234865e-5 +plight_V2 1.609865254278217e-5 +plimsoll_N 3.729715012475897e-6 +plinth_N 3.729715012475897e-6 +ploce_N 3.729715012475897e-6 +plod_V 2.2678822515534993e-5 +plod_V2 1.609865254278217e-5 +plodder_N 3.729715012475897e-6 +plodding_N 3.729715012475897e-6 +ploddingly_Adv 8.668966832532898e-6 +plonk_Adv 8.668966832532898e-6 +plonk_N 3.729715012475897e-6 +plonk_V 2.2678822515534993e-5 +plop_Adv 8.668966832532898e-6 +plop_N 3.729715012475897e-6 +plop_V 2.2678822515534993e-5 +plosion_N 3.729715012475897e-6 +plosive_A 1.0773191989054437e-5 +plosive_N 3.729715012475897e-6 +plot_N 6.340515521209024e-5 +plot_V 4.5357645031069986e-5 +plot_V2 8.049326271391085e-5 +plot_out_V 2.2678822515534993e-5 +plotter_N 1.118914503742769e-5 +plough_N 3.729715012475897e-6 +plough_V 2.2678822515534993e-5 +plough_V2 1.609865254278217e-5 +plough_back_V2 1.609865254278217e-5 +plough_into_V2 1.609865254278217e-5 +plough_on_V 2.2678822515534993e-5 +plough_through_V2 1.609865254278217e-5 +plough_up_V2 1.609865254278217e-5 +ploughboy_N 3.729715012475897e-6 +ploughman_N 3.729715012475897e-6 +ploughshare_N 3.729715012475897e-6 +plover_N 3.729715012475897e-6 +plow_N 3.729715012475897e-6 +plow_V 6.803646754660499e-5 +plow_V2 8.049326271391085e-5 +plow_back_V2 1.609865254278217e-5 +plow_into_V2 1.609865254278217e-5 +plow_on_V 2.2678822515534993e-5 +plow_through_V2 1.609865254278217e-5 +plow_up_V2 1.609865254278217e-5 +plowboy_N 3.729715012475897e-6 +plowing_N 3.729715012475897e-6 +plowman_N 3.729715012475897e-6 +plowshare_N 3.729715012475897e-6 +plowwright_N 3.729715012475897e-6 +ploy_N 2.9837720099807175e-5 +pluck_N 3.729715012475897e-6 +pluck_V 4.5357645031069986e-5 +pluck_V2 3.219730508556434e-5 +pluck_at_V2 1.609865254278217e-5 +pluck_up_V2 1.609865254278217e-5 +plucky_A 1.0773191989054437e-5 +plug_N 2.237829007485538e-5 +plug_V 4.5357645031069986e-5 +plug_V2 1.2878922034225736e-4 +plug_in_V2 1.609865254278217e-5 +plughole_N 3.729715012475897e-6 +plum_N 3.729715012475897e-6 +plum_pudding_N 3.729715012475897e-6 +plumage_N 3.729715012475897e-6 +plumaged_A 1.0773191989054437e-5 +plumate_A 1.0773191989054437e-5 +plumb_A 1.0773191989054437e-5 +plumb_Adv 8.668966832532898e-6 +plumb_N 3.729715012475897e-6 +plumb_V2 1.609865254278217e-5 +plumbaginaceous_A 1.0773191989054437e-5 +plumbago_N 3.729715012475897e-6 +plumber_N 3.729715012475897e-6 +plumbic_A 1.0773191989054437e-5 +plumbing_N 2.9837720099807175e-5 +plumcot_N 3.729715012475897e-6 +plume_N 7.459430024951794e-6 +plume_V2 1.609865254278217e-5 +plumelike_A 1.0773191989054437e-5 +plumlike_A 1.0773191989054437e-5 +plummet_N 7.459430024951794e-6 +plummet_V 7.710799655281898e-4 +plummet_V2 3.058743983128612e-4 +plummy_A 1.0773191989054437e-5 +plump_A 2.1546383978108874e-5 +plump_Adv 8.668966832532898e-6 +plump_N 3.729715012475897e-6 +plump_V 2.2678822515534993e-5 +plump_V2 1.609865254278217e-5 +plump_down_V 2.2678822515534993e-5 +plump_for_V2 1.609865254278217e-5 +plump_up_V2 1.609865254278217e-5 +plump_yourself_down_V 2.2678822515534993e-5 +plumpness_N 3.729715012475897e-6 +plumule_N 3.729715012475897e-6 +plunder_N 3.729715012475897e-6 +plunder_V 2.2678822515534993e-5 +plunder_V2 1.609865254278217e-5 +plunderage_N 3.729715012475897e-6 +plunderer_N 3.729715012475897e-6 +plundering_N 3.729715012475897e-6 +plunge_N 5.370789617965291e-4 +plunge_V 1.4287658184787045e-3 +plunge_V2 6.117487966257224e-4 +plunge_in_V 2.2678822515534993e-5 +plunger_N 3.729715012475897e-6 +plunk_N 3.729715012475897e-6 +pluperfect_A 1.0773191989054437e-5 +pluperfect_N 3.729715012475897e-6 +plural_A 1.0773191989054437e-5 +plural_N 3.729715012475897e-6 +pluralism_N 7.459430024951794e-6 +pluralist_N 3.729715012475897e-6 +pluralistic_A 1.0773191989054437e-5 +plurality_N 1.118914503742769e-5 +pluralization_N 3.729715012475897e-6 +plus_A 3.231957596716331e-5 +plus_Conj 2.4426380490930205e-3 +plus_N 4.1026865137234865e-5 +plush_A 4.309276795621775e-5 +plush_N 3.729715012475897e-6 +plushy_A 1.0773191989054437e-5 +pluto_PN 1.865462821325971e-5 +plutocracy_N 3.729715012475897e-6 +plutocrat_N 3.729715012475897e-6 +plutocratic_A 1.0773191989054437e-5 +plutonium_N 1.4918860049903587e-5 +ply_N 3.729715012475897e-6 +ply_V 2.2678822515534993e-5 +ply_V2 4.8295957628346505e-5 +ply_V2A 1.0e-2 +plymouth_PN 1.865462821325971e-5 +plywood_N 1.4918860049903587e-5 +pneumatic_A 1.0773191989054437e-5 +pneumatically_Adv 8.668966832532898e-6 +pneumatics_N 3.729715012475897e-6 +pneumatophore_N 3.729715012475897e-6 +pneumococcal_A 1.0773191989054437e-5 +pneumococcus_N 3.729715012475897e-6 +pneumoconiosis_N 3.729715012475897e-6 +pneumocytosis_N 3.729715012475897e-6 +pneumogastric_A 1.0773191989054437e-5 +pneumonectomy_N 3.729715012475897e-6 +pneumonia_N 1.4918860049903587e-5 +pneumonic_A 1.0773191989054437e-5 +pneumonitis_N 3.729715012475897e-6 +pneumothorax_N 3.729715012475897e-6 +po_N 3.729715012475897e-6 +poach_V 2.2678822515534993e-5 +poach_V2 3.219730508556434e-5 +poacher_N 7.459430024951794e-6 +poaching_N 3.729715012475897e-6 +pochard_N 3.729715012475897e-6 +pock_N 3.729715012475897e-6 +pocked_A 1.0773191989054437e-5 +pocket_N 6.713487022456614e-5 +pocket_V2 6.439461017112868e-5 +pocket_book_N 3.729715012475897e-6 +pocket_handkerchief_N 3.729715012475897e-6 +pocket_knife_N 3.729715012475897e-6 +pocket_money_N 3.729715012475897e-6 +pocketbook_N 3.729715012475897e-6 +pocketcomb_N 3.729715012475897e-6 +pocketful_N 3.729715012475897e-6 +pocketknife_N 3.729715012475897e-6 +pockmark_N 3.729715012475897e-6 +pockmarked_A 1.0773191989054437e-5 +pod_N 7.459430024951794e-6 +pod_V 2.2678822515534993e-5 +pod_V2 1.609865254278217e-5 +podalgia_N 3.729715012475897e-6 +podetium_N 3.729715012475897e-6 +podgy_A 1.0773191989054437e-5 +podiatry_N 3.729715012475897e-6 +podium_N 1.4918860049903587e-5 +podlike_A 1.0773191989054437e-5 +podocarp_N 3.729715012475897e-6 +podzol_N 3.729715012475897e-6 +poem_N 3.729715012475897e-6 +poesy_N 3.729715012475897e-6 +poet_N 1.8648575062379485e-5 +poetess_N 3.729715012475897e-6 +poetic_A 1.0773191989054437e-5 +poetical_A 1.0773191989054437e-5 +poetics_N 3.729715012475897e-6 +poetry_N 1.4918860049903587e-5 +pogge_N 3.729715012475897e-6 +pogonia_N 3.729715012475897e-6 +pogonion_N 3.729715012475897e-6 +pogrom_N 3.729715012475897e-6 +poi_N 3.729715012475897e-6 +poignance_N 3.729715012475897e-6 +poignancy_N 3.729715012475897e-6 +poignant_A 4.309276795621775e-5 +poikilotherm_N 3.729715012475897e-6 +poikilothermic_A 1.0773191989054437e-5 +poilu_N 3.729715012475897e-6 +poinsettia_N 3.729715012475897e-6 +point_N 2.461611908234092e-3 +point_V 1.8369846237583345e-3 +point_V2 1.2878922034225736e-4 +point_blank_A 1.0773191989054437e-5 +point_blank_Adv 8.668966832532898e-6 +point_duty_N 3.729715012475897e-6 +point_out_V2 3.219730508556434e-5 +point_out_VS 1.1552012938254491e-4 +point_up_V 2.2678822515534993e-5 +pointedly_AdV 3.897875657766517e-4 +pointedly_Adv 8.668966832532898e-6 +pointedness_N 3.729715012475897e-6 +pointer_N 7.459430024951794e-6 +pointillism_N 3.729715012475897e-6 +pointillist_A 1.0773191989054437e-5 +pointillist_N 3.729715012475897e-6 +pointless_A 3.231957596716331e-5 +pointsman_N 3.729715012475897e-6 +poise_N 3.729715012475897e-6 +poise_V 9.071529006213997e-5 +poise_V2 3.219730508556434e-5 +poison_N 1.2308059541170458e-4 +poison_V2 3.219730508556434e-5 +poison_gas_N 3.729715012475897e-6 +poison_ivy_N 3.729715012475897e-6 +poisoner_N 3.729715012475897e-6 +poisoning_N 3.729715012475897e-6 +poisonous_A 2.1546383978108874e-5 +poke_N 3.729715012475897e-6 +poke_V 6.803646754660499e-5 +poke_V2 4.8295957628346505e-5 +poke_about_V 2.2678822515534993e-5 +poke_around_V 2.2678822515534993e-5 +poke_bonnet_N 3.729715012475897e-6 +poker_N 1.8648575062379485e-5 +poker_face_N 3.729715012475897e-6 +pokeweed_N 3.729715012475897e-6 +poky_A 1.0773191989054437e-5 +polack_N 3.729715012475897e-6 +poland_PN 1.6602619109801142e-3 +polar_A 2.1546383978108874e-5 +polarimeter_N 3.729715012475897e-6 +polaris_N 3.729715012475897e-6 +polarity_N 3.729715012475897e-6 +polarization_N 3.729715012475897e-6 +polarize_V2 3.219730508556434e-5 +polarographic_A 1.0773191989054437e-5 +polarography_N 3.729715012475897e-6 +polaroid_N 3.729715012475897e-6 +polder_N 3.729715012475897e-6 +pole_N 1.8648575062379485e-5 +pole_jumping_N 3.729715012475897e-6 +pole_star_N 3.729715012475897e-6 +pole_vault_N 3.729715012475897e-6 +poleax_N 3.729715012475897e-6 +poleax_V2 1.609865254278217e-5 +poleaxe_N 3.729715012475897e-6 +poleaxe_V2 1.609865254278217e-5 +polecat_N 3.729715012475897e-6 +polemic_A 1.0773191989054437e-5 +polemic_N 3.729715012475897e-6 +polemically_Adv 8.668966832532898e-6 +polemicist_N 3.729715012475897e-6 +polemics_N 3.729715012475897e-6 +polemoniaceous_A 1.0773191989054437e-5 +polemonium_N 3.729715012475897e-6 +polenta_N 3.729715012475897e-6 +police_N 1.118914503742769e-5 +police_V2 8.049326271391085e-5 +police_office_N 3.729715012475897e-6 +police_officer_N 7.459430024951794e-6 +police_station_N 3.729715012475897e-6 +policeman_N 1.4918860049903587e-5 +policewoman_N 1.4918860049903587e-5 +policy_N 1.4508591398531237e-3 +policyholder_N 3.729715012475897e-6 +polio_N 3.729715012475897e-6 +poliomyelitis_N 3.729715012475897e-6 +poliosis_N 3.729715012475897e-6 +poliovirus_N 3.729715012475897e-6 +polish_A 2.2623703177014317e-4 +polish_N 7.459430024951794e-6 +polish_V 1.1339411257767497e-4 +polish_V2 9.659191525669301e-5 +polish_off_V2 1.609865254278217e-5 +polish_up_V2 1.609865254278217e-5 +polisher_N 3.729715012475897e-6 +politburo_N 3.729715012475897e-6 +polite_A 4.309276795621775e-5 +politeness_N 3.729715012475897e-6 +politic_A 2.1546383978108874e-5 +political_A 3.3935554765521475e-3 +politician_N 2.1259375571112613e-4 +politicize_V 4.5357645031069986e-5 +politicize_V2 4.8295957628346505e-5 +politick_V 6.803646754660499e-5 +politics_N 1.9021546563627073e-4 +polity_N 3.729715012475897e-6 +polka_N 3.729715012475897e-6 +poll_N 2.0886404069865022e-4 +poll_V 1.3607293509320997e-4 +poll_V2 1.7708517797060386e-4 +poll_tax_N 3.729715012475897e-6 +pollack_N 3.729715012475897e-6 +pollard_N 3.729715012475897e-6 +pollard_V2 1.609865254278217e-5 +pollen_N 2.237829007485538e-5 +pollinate_V2 9.659191525669301e-5 +pollination_N 1.118914503742769e-5 +pollinator_N 3.729715012475897e-6 +polling_booth_N 3.729715012475897e-6 +polling_day_N 3.729715012475897e-6 +polling_station_N 3.729715012475897e-6 +pollinium_N 3.729715012475897e-6 +polls_N 3.729715012475897e-6 +pollster_N 1.8648575062379485e-5 +pollucite_N 3.729715012475897e-6 +pollutant_N 2.237829007485538e-5 +pollute_V2 6.439461017112868e-5 +polluter_N 3.729715012475897e-6 +pollution_N 1.305400254366564e-4 +polly_PN 1.865462821325971e-5 +polo_N 3.729715012475897e-6 +polo_neck_A 1.0773191989054437e-5 +polonaise_N 3.729715012475897e-6 +polonium_N 3.729715012475897e-6 +polony_N 3.729715012475897e-6 +poltergeist_N 1.118914503742769e-5 +poltroon_A 1.0773191989054437e-5 +poltroon_N 3.729715012475897e-6 +poltroonery_N 3.729715012475897e-6 +poly_N 3.729715012475897e-6 +polyamide_N 3.729715012475897e-6 +polyandrist_N 3.729715012475897e-6 +polyandrous_A 1.0773191989054437e-5 +polyandry_N 3.729715012475897e-6 +polyanthus_N 3.729715012475897e-6 +polyarteritis_N 3.729715012475897e-6 +polyatomic_A 1.0773191989054437e-5 +polybutylene_N 3.729715012475897e-6 +polychaete_N 3.729715012475897e-6 +polychromatic_A 1.0773191989054437e-5 +polychrome_N 3.729715012475897e-6 +polycrystalline_A 1.0773191989054437e-5 +polycythemia_N 3.729715012475897e-6 +polydactyl_A 1.0773191989054437e-5 +polydactyly_N 3.729715012475897e-6 +polydipsia_N 3.729715012475897e-6 +polyelectrolyte_N 3.729715012475897e-6 +polyester_N 3.729715012475897e-6 +polyestrous_A 1.0773191989054437e-5 +polyethylene_N 1.4918860049903587e-5 +polyfoam_N 3.729715012475897e-6 +polygamist_N 3.729715012475897e-6 +polygamous_A 1.0773191989054437e-5 +polygamy_N 3.729715012475897e-6 +polygene_N 3.729715012475897e-6 +polygenic_A 1.0773191989054437e-5 +polyglot_A 1.0773191989054437e-5 +polyglot_N 3.729715012475897e-6 +polygon_N 3.729715012475897e-6 +polygonal_A 1.0773191989054437e-5 +polygraph_N 3.729715012475897e-6 +polygynist_N 3.729715012475897e-6 +polygynous_A 1.0773191989054437e-5 +polygyny_N 3.729715012475897e-6 +polyhedral_A 1.0773191989054437e-5 +polyhedron_N 3.729715012475897e-6 +polymastigote_N 3.729715012475897e-6 +polymath_N 3.729715012475897e-6 +polymer_N 3.729715012475897e-6 +polymerase_N 7.459430024951794e-6 +polymeric_A 1.0773191989054437e-5 +polymerization_N 3.729715012475897e-6 +polymorph_N 3.729715012475897e-6 +polymorphemic_A 1.0773191989054437e-5 +polymorphic_A 1.0773191989054437e-5 +polymorphism_N 3.729715012475897e-6 +polymorphous_A 1.0773191989054437e-5 +polymyositis_N 3.729715012475897e-6 +polymyxin_N 3.729715012475897e-6 +polyneuritis_N 3.729715012475897e-6 +polynomial_A 1.0773191989054437e-5 +polynomial_N 3.729715012475897e-6 +polynya_N 3.729715012475897e-6 +polyoma_N 3.729715012475897e-6 +polyp_N 2.237829007485538e-5 +polypectomy_N 3.729715012475897e-6 +polypeptide_N 3.729715012475897e-6 +polypetalous_A 1.0773191989054437e-5 +polyphone_N 3.729715012475897e-6 +polyphonic_A 1.0773191989054437e-5 +polyphonically_Adv 8.668966832532898e-6 +polyphony_N 3.729715012475897e-6 +polyphosphate_N 3.729715012475897e-6 +polyploid_A 1.0773191989054437e-5 +polyploid_N 3.729715012475897e-6 +polyploidy_N 3.729715012475897e-6 +polypody_N 3.729715012475897e-6 +polypore_N 3.729715012475897e-6 +polypropenonitrile_N 3.729715012475897e-6 +polypropylene_N 7.459430024951794e-6 +polyptoton_N 3.729715012475897e-6 +polypus_N 3.729715012475897e-6 +polysaccharide_N 3.729715012475897e-6 +polysemant_N 3.729715012475897e-6 +polysemous_A 1.0773191989054437e-5 +polysemy_N 3.729715012475897e-6 +polysomy_N 3.729715012475897e-6 +polystyrene_N 3.729715012475897e-6 +polysyllabic_A 1.0773191989054437e-5 +polysyllabically_Adv 8.668966832532898e-6 +polysyllable_N 3.729715012475897e-6 +polysyndeton_N 3.729715012475897e-6 +polytechnic_N 3.729715012475897e-6 +polytheism_N 3.729715012475897e-6 +polytheist_N 3.729715012475897e-6 +polytheistic_A 1.0773191989054437e-5 +polythene_N 3.729715012475897e-6 +polytonal_A 1.0773191989054437e-5 +polytonality_N 3.729715012475897e-6 +polyunsaturated_A 1.0773191989054437e-5 +polyurethane_N 3.729715012475897e-6 +polyuria_N 3.729715012475897e-6 +polyvalence_N 3.729715012475897e-6 +polyvalent_A 1.0773191989054437e-5 +pom_N 3.729715012475897e-6 +pomade_N 3.729715012475897e-6 +pomade_V2 1.609865254278217e-5 +pome_N 3.729715012475897e-6 +pomegranate_N 3.729715012475897e-6 +pomelo_N 3.729715012475897e-6 +pomfret_N 3.729715012475897e-6 +pommel_N 3.729715012475897e-6 +pommel_V2 1.609865254278217e-5 +pommy_N 3.729715012475897e-6 +pomologist_N 3.729715012475897e-6 +pomology_N 3.729715012475897e-6 +pomp_N 3.729715012475897e-6 +pompadour_N 3.729715012475897e-6 +pompano_N 3.729715012475897e-6 +pompon_N 3.729715012475897e-6 +pomposity_N 3.729715012475897e-6 +pompous_A 1.0773191989054437e-5 +ponce_N 3.729715012475897e-6 +poncho_N 3.729715012475897e-6 +pond_N 1.4918860049903587e-5 +ponder_V 6.803646754660499e-5 +ponder_V2 6.439461017112868e-5 +ponderable_A 1.0773191989054437e-5 +ponderosa_N 3.729715012475897e-6 +ponderous_A 1.0773191989054437e-5 +ponderousness_N 3.729715012475897e-6 +pondweed_N 3.729715012475897e-6 +pone_N 3.729715012475897e-6 +pongee_N 3.729715012475897e-6 +poniard_N 3.729715012475897e-6 +poniard_V2 1.609865254278217e-5 +pons_N 3.729715012475897e-6 +pont_llan_fraith_PN 1.865462821325971e-5 +pontardawe_PN 1.865462821325971e-5 +pontardulais_PN 1.865462821325971e-5 +pontefract_PN 1.865462821325971e-5 +pontifex_N 3.729715012475897e-6 +pontiff_N 3.729715012475897e-6 +pontifical_A 1.0773191989054437e-5 +pontifical_N 3.729715012475897e-6 +pontificate_N 3.729715012475897e-6 +pontificate_V 4.5357645031069986e-5 +pontoon_N 3.729715012475897e-6 +pontycymmer_PN 1.865462821325971e-5 +pontypool_PN 1.865462821325971e-5 +pony_N 3.729715012475897e-6 +pony_trekking_N 3.729715012475897e-6 +pony_up_V2 1.609865254278217e-5 +ponytail_N 3.729715012475897e-6 +pooch_N 3.729715012475897e-6 +pood_N 3.729715012475897e-6 +poodle_N 3.729715012475897e-6 +poof_N 7.459430024951794e-6 +pooh_pooh_V2 1.609865254278217e-5 +pool_N 1.4545888548655997e-4 +pool_V2 9.659191525669301e-5 +poole_PN 1.865462821325971e-5 +pooler_N 3.729715012475897e-6 +poolroom_N 3.729715012475897e-6 +poon_N 3.729715012475897e-6 +poona_PN 1.865462821325971e-5 +poop_N 3.729715012475897e-6 +poop_out_V 2.2678822515534993e-5 +poop_out_on_V2 1.609865254278217e-5 +poor_A 1.109638774872607e-3 +poor_box_N 3.729715012475897e-6 +poor_rate_N 3.729715012475897e-6 +poor_spirited_A 1.0773191989054437e-5 +poorhouse_N 3.729715012475897e-6 +poorly_A 1.0773191989054437e-5 +poorness_N 3.729715012475897e-6 +poorwill_N 3.729715012475897e-6 +pootle_along_V 2.2678822515534993e-5 +pop_A 3.231957596716331e-5 +pop_Adv 8.668966832532898e-6 +pop_N 3.729715012475897e-5 +pop_V 2.0410940263981494e-4 +pop_V2 3.219730508556434e-5 +pop_in_V 2.2678822515534993e-5 +pop_off_V 2.2678822515534993e-5 +pop_out_V 2.2678822515534993e-5 +pop_up_V 2.2678822515534993e-5 +popcorn_N 3.729715012475897e-6 +pope_N 7.459430024951794e-6 +popery_N 3.729715012475897e-6 +popeyed_A 1.0773191989054437e-5 +popgun_N 3.729715012475897e-6 +popinjay_N 3.729715012475897e-6 +popish_A 1.0773191989054437e-5 +poplar_N 3.729715012475897e-6 +poplin_N 3.729715012475897e-6 +popliteal_A 1.0773191989054437e-5 +popover_N 3.729715012475897e-6 +poppa_N 3.729715012475897e-6 +popper_N 3.729715012475897e-6 +poppet_N 3.729715012475897e-6 +poppy_N 3.729715012475897e-6 +poppycock_N 3.729715012475897e-6 +populace_N 7.459430024951794e-6 +popular_A 8.834017431024638e-4 +popularism_N 3.729715012475897e-6 +popularity_N 7.086458523704203e-5 +popularization_N 3.729715012475897e-6 +popularize_V2 4.8295957628346505e-5 +popularizer_N 3.729715012475897e-6 +populate_V2 1.2878922034225736e-4 +population_N 1.8648575062379482e-4 +populism_N 7.459430024951794e-6 +populist_N 7.459430024951794e-6 +populous_A 3.231957596716331e-5 +porbeagle_N 3.729715012475897e-6 +porcelain_N 2.237829007485538e-5 +porch_N 1.4918860049903587e-5 +porcine_A 1.0773191989054437e-5 +porcupine_N 3.729715012475897e-6 +porcupinefish_N 3.729715012475897e-6 +pore_N 3.729715012475897e-6 +pore_V 9.071529006213997e-5 +pore_over_V2 1.609865254278217e-5 +porgy_N 3.729715012475897e-6 +pork_N 6.340515521209024e-5 +pork_barrel_N 3.729715012475897e-6 +pork_butcher_N 3.729715012475897e-6 +porkchop_N 3.729715012475897e-6 +porker_N 3.729715012475897e-6 +porkfish_N 3.729715012475897e-6 +porkholt_N 3.729715012475897e-6 +porkpie_N 3.729715012475897e-6 +porn_N 3.729715012475897e-6 +pornographer_N 3.729715012475897e-6 +pornographic_A 2.1546383978108874e-5 +pornographically_Adv 8.668966832532898e-6 +pornography_N 7.459430024951794e-6 +porose_A 1.0773191989054437e-5 +porosity_N 3.729715012475897e-6 +porous_A 2.1546383978108874e-5 +porousness_N 3.729715012475897e-6 +porphyria_N 3.729715012475897e-6 +porphyrin_N 3.729715012475897e-6 +porphyritic_A 1.0773191989054437e-5 +porphyry_N 3.729715012475897e-6 +porpoise_N 3.729715012475897e-6 +porridge_N 7.459430024951794e-6 +porringer_N 3.729715012475897e-6 +port_A 3.231957596716331e-5 +port_N 6.340515521209024e-5 +port_V2 3.219730508556434e-5 +port_glasgow_PN 1.865462821325971e-5 +port_talbot_PN 1.865462821325971e-5 +portability_N 3.729715012475897e-6 +portable_A 1.6159787983581657e-4 +portable_N 3.729715012475897e-6 +portage_N 3.729715012475897e-6 +portal_N 3.729715012475897e-6 +portcullis_N 3.729715012475897e-6 +porte_cochere_N 3.729715012475897e-6 +portend_V2 6.439461017112868e-5 +portent_N 3.729715012475897e-6 +portentous_A 1.0773191989054437e-5 +porter_N 3.729715012475897e-6 +porterage_N 3.729715012475897e-6 +porterhouse_N 3.729715012475897e-6 +portfolio_N 8.205373027446972e-4 +porthcawl_PN 1.865462821325971e-5 +porthmadog_PN 1.865462821325971e-5 +porthole_N 3.729715012475897e-6 +portico_N 7.459430024951794e-6 +portiere_N 3.729715012475897e-6 +portion_N 3.0210691601054764e-4 +portion_V2 1.609865254278217e-5 +portishead_PN 1.865462821325971e-5 +portland_PN 1.865462821325971e-5 +portly_A 1.0773191989054437e-5 +portmanteau_N 3.729715012475897e-6 +porto_alegre_PN 1.865462821325971e-5 +portrait_N 5.594572518713845e-5 +portraitist_N 3.729715012475897e-6 +portraiture_N 3.729715012475897e-6 +portray_V2 3.541703559412077e-4 +portrayal_N 3.729715012475897e-5 +portsmouth_PN 1.865462821325971e-5 +portugal_PN 1.3058239749281798e-4 +portuguese_A 1.0773191989054437e-5 +portuguese_N 3.729715012475897e-6 +portulaca_N 3.729715012475897e-6 +portwatcher_N 3.729715012475897e-6 +pose_N 3.729715012475897e-6 +pose_V 1.5875175760874494e-4 +pose_V2 3.702690084839899e-4 +poser_N 3.729715012475897e-6 +poseur_N 3.729715012475897e-6 +poseuse_N 3.729715012475897e-6 +posh_A 3.231957596716331e-5 +posh_V2 1.609865254278217e-5 +posit_V2 1.609865254278217e-5 +position_N 1.193508803992287e-3 +position_V2 2.2538113559895037e-4 +position_V2V 9.350163627863488e-4 +positionable_A 1.0773191989054437e-5 +positional_A 1.0773191989054437e-5 +positive_A 7.325770552557017e-4 +positive_N 7.459430024951794e-6 +positiveness_N 3.729715012475897e-6 +positivism_N 3.729715012475897e-6 +positivist_A 1.0773191989054437e-5 +positivist_N 3.729715012475897e-6 +positivity_N 3.729715012475897e-6 +positron_N 3.729715012475897e-6 +posology_N 3.729715012475897e-6 +posse_N 3.729715012475897e-6 +posseman_N 3.729715012475897e-6 +possess_V2 2.092824830561682e-4 +possession_N 2.237829007485538e-5 +possessive_A 1.0773191989054437e-5 +possessiveness_N 3.729715012475897e-6 +possessor_N 3.729715012475897e-6 +posset_N 3.729715012475897e-6 +possibility_N 2.498909058358851e-4 +possible_A 3.1780916367710587e-3 +possible_N 3.729715012475897e-6 +possum_N 3.729715012475897e-6 +post_N 3.356743511228307e-4 +post_Prep 1.9957092251658934e-5 +post_V 1.3153717059010295e-3 +post_V2 3.2680264661847803e-3 +post_chaise_N 3.729715012475897e-6 +post_free_A 1.0773191989054437e-5 +post_free_Adv 8.668966832532898e-6 +post_haste_Adv 8.668966832532898e-6 +post_horse_N 3.729715012475897e-6 +post_meridiem_Adv 8.668966832532898e-6 +post_mortem_A 1.0773191989054437e-5 +post_mortem_N 3.729715012475897e-6 +post_paid_A 1.0773191989054437e-5 +post_paid_Adv 8.668966832532898e-6 +postage_N 7.459430024951794e-6 +postage_stamp_N 3.729715012475897e-6 +postal_A 9.695872790148993e-5 +postbag_N 3.729715012475897e-6 +postbiblical_A 1.0773191989054437e-5 +postbox_N 3.729715012475897e-6 +postcard_N 1.118914503742769e-5 +postcode_N 3.729715012475897e-6 +postdate_V2 1.609865254278217e-5 +postdiluvian_A 1.0773191989054437e-5 +postdiluvian_N 3.729715012475897e-6 +postdoc_N 3.729715012475897e-6 +postdoctoral_A 1.0773191989054437e-5 +postdoctoral_N 3.729715012475897e-6 +poste_restante_N 3.729715012475897e-6 +poster_N 3.729715012475897e-5 +posterior_A 1.0773191989054437e-5 +posterior_N 3.729715012475897e-6 +posteriority_N 3.729715012475897e-6 +posterity_N 3.729715012475897e-6 +postern_N 3.729715012475897e-6 +postexilic_A 1.0773191989054437e-5 +postganglionic_A 1.0773191989054437e-5 +postglacial_A 1.0773191989054437e-5 +postgraduate_A 1.0773191989054437e-5 +postgraduate_N 3.729715012475897e-6 +posthitis_N 3.729715012475897e-6 +posthole_N 3.729715012475897e-6 +posthouse_N 3.729715012475897e-6 +posthumous_A 1.0773191989054437e-5 +postictal_A 1.0773191989054437e-5 +postilion_N 3.729715012475897e-6 +postillion_N 3.729715012475897e-6 +postindustrial_A 1.0773191989054437e-5 +posting_N 3.729715012475897e-6 +postlude_N 3.729715012475897e-6 +postman_N 3.729715012475897e-6 +postmark_N 1.118914503742769e-5 +postmark_V2 3.219730508556434e-5 +postmaster_N 1.118914503742769e-5 +postmenopausal_A 1.0773191989054437e-5 +postmeridian_A 1.0773191989054437e-5 +postmillennial_A 1.0773191989054437e-5 +postmistress_N 3.729715012475897e-6 +postmodernism_N 3.729715012475897e-6 +postmodernist_A 1.0773191989054437e-5 +postmortem_A 1.0773191989054437e-5 +postmortem_N 3.729715012475897e-6 +postnatal_A 1.0773191989054437e-5 +postnuptial_A 1.0773191989054437e-5 +postoperative_A 1.0773191989054437e-5 +postpaid_A 1.0773191989054437e-5 +postpone_V2 5.473541864545937e-4 +postponement_N 1.4918860049903587e-5 +postposition_N 3.729715012475897e-6 +postpositive_A 1.0773191989054437e-5 +postprandial_A 1.0773191989054437e-5 +postscript_N 3.729715012475897e-6 +postulant_N 3.729715012475897e-6 +postulate_N 3.729715012475897e-6 +postulate_V2 1.609865254278217e-5 +postulation_N 3.729715012475897e-6 +postulator_N 3.729715012475897e-6 +postural_A 1.0773191989054437e-5 +posture_N 2.6108005087331277e-5 +posture_V 4.5357645031069986e-5 +posture_V2 1.609865254278217e-5 +posturer_N 3.729715012475897e-6 +posturing_N 1.4918860049903587e-5 +postwar_A 1.0773191989054437e-5 +posy_N 3.729715012475897e-6 +pot0 0.7646001796945193 +pot01 0.23539982030548068 +pot0as1 0.9982057416267942 +pot1 2.990430622009569e-4 +pot110 5.980861244019139e-4 +pot111 2.990430622009569e-4 +pot1as2 0.9994013768332835 +pot1plus 2.990430622009569e-4 +pot1to19 2.990430622009569e-4 +pot2 2.99311583358276e-4 +pot2as3 0.9994013768332835 +pot2plus 2.99311583358276e-4 +pot3 2.99311583358276e-4 +pot3plus 2.99311583358276e-4 +pot_N 2.9837720099807175e-5 +pot_V 4.5357645031069986e-5 +pot_V2 4.8295957628346505e-5 +pot_shot_N 3.729715012475897e-6 +pot_trained_A 1.0773191989054437e-5 +potable_A 1.0773191989054437e-5 +potage_N 3.729715012475897e-6 +potash_N 3.729715012475897e-6 +potassium_N 3.729715012475897e-6 +potation_N 3.729715012475897e-6 +potato_N 6.713487022456614e-5 +potbellied_A 1.0773191989054437e-5 +potbelly_N 3.729715012475897e-6 +potboiler_N 3.729715012475897e-6 +potbound_A 1.0773191989054437e-5 +potboy_N 3.729715012475897e-6 +poteen_N 3.729715012475897e-6 +potency_N 3.729715012475897e-6 +potent_A 7.541234392338106e-5 +potentate_N 7.459430024951794e-6 +potential_A 2.0576796699093972e-3 +potential_N 1.3426974044913228e-4 +potentiality_N 7.459430024951794e-6 +potentiation_N 3.729715012475897e-6 +potentiometer_N 3.729715012475897e-6 +pothead_N 3.729715012475897e-6 +pother_N 3.729715012475897e-6 +potherb_N 3.729715012475897e-6 +potholder_N 3.729715012475897e-6 +pothole_N 1.118914503742769e-5 +potholer_N 3.729715012475897e-6 +pothook_N 3.729715012475897e-6 +pothos_N 3.729715012475897e-6 +pothouse_N 3.729715012475897e-6 +pothunter_N 3.729715012475897e-6 +potion_N 3.729715012475897e-6 +potlatch_N 3.729715012475897e-6 +potluck_N 3.729715012475897e-6 +potman_N 3.729715012475897e-6 +potoroo_N 3.729715012475897e-6 +potpie_N 3.729715012475897e-6 +potpourri_N 1.118914503742769e-5 +potsdam_PN 1.865462821325971e-5 +potsherd_N 3.729715012475897e-6 +potshot_N 3.729715012475897e-6 +pottage_N 7.459430024951794e-6 +potter_N 3.729715012475897e-6 +potter_V 2.2678822515534993e-5 +potter_about_V 2.2678822515534993e-5 +potter_around_V 2.2678822515534993e-5 +potterer_N 3.729715012475897e-6 +potters_bar_PN 1.865462821325971e-5 +pottery_N 1.118914503742769e-5 +pottle_N 3.729715012475897e-6 +potto_N 3.729715012475897e-6 +potty_A 1.0773191989054437e-5 +potty_N 3.729715012475897e-6 +pouch_N 7.459430024951794e-6 +pouch_V2 1.609865254278217e-5 +pouf_N 3.729715012475897e-6 +pouffe_N 3.729715012475897e-6 +poulette_N 3.729715012475897e-6 +poulterer_N 3.729715012475897e-6 +poultice_N 3.729715012475897e-6 +poultice_V2 1.609865254278217e-5 +poultry_N 7.459430024951794e-6 +poultryman_N 3.729715012475897e-6 +pounce_N 3.729715012475897e-6 +pounce_V 4.5357645031069986e-5 +pound_N 5.370789617965291e-4 +pound_V 4.5357645031069986e-5 +pound_V2 6.439461017112868e-5 +poundage_N 3.729715012475897e-6 +poundal_N 3.729715012475897e-6 +pounder_N 3.729715012475897e-6 +pounding_N 3.729715012475897e-6 +pour_V 4.762552728262349e-4 +pour_V2 2.4147978814173252e-4 +pour_down_V 2.2678822515534993e-5 +pour_forth_V 2.2678822515534993e-5 +pour_in_V2 3.219730508556434e-5 +pour_out_V 2.2678822515534993e-5 +pout_N 3.729715012475897e-6 +pout_V 2.2678822515534993e-5 +pout_V2 1.609865254278217e-5 +poutingly_Adv 8.668966832532898e-6 +poverty_N 1.1562116538675279e-4 +poverty_stricken_A 1.0773191989054437e-5 +pow_N 3.729715012475897e-6 +powder_N 1.8648575062379485e-5 +powder_V 2.2678822515534993e-5 +powder_V2 4.8295957628346505e-5 +powder_flask_N 3.729715012475897e-6 +powder_horn_N 3.729715012475897e-6 +powder_magazine_N 3.729715012475897e-6 +powder_puff_N 3.729715012475897e-6 +powder_room_N 3.729715012475897e-6 +powderer_N 3.729715012475897e-6 +powderpuff_N 3.729715012475897e-6 +powdery_A 1.0773191989054437e-5 +power_N 1.1487522238425763e-3 +power_V2 6.439461017112868e-5 +power_dive_N 3.729715012475897e-6 +power_dive_V2 1.609865254278217e-5 +power_down_V2 1.609865254278217e-5 +power_off_V2 1.609865254278217e-5 +power_point_N 3.729715012475897e-6 +power_station_N 3.729715012475897e-6 +power_up_V2 1.609865254278217e-5 +powerboat_N 7.459430024951794e-6 +powerful_A 7.972162071900284e-4 +powerhouse_N 4.1026865137234865e-5 +powerless_A 3.231957596716331e-5 +powerlessness_N 3.729715012475897e-6 +powwow_N 7.459430024951794e-6 +powwow_V 2.2678822515534993e-5 +powys_PN 1.865462821325971e-5 +pox_N 3.729715012475897e-6 +poxvirus_N 3.729715012475897e-6 +poynton_PN 1.865462821325971e-5 +poznan_PN 1.865462821325971e-5 +pp_N 7.459430024951794e-6 +pr_N 3.729715012475897e-6 +practicability_N 3.729715012475897e-6 +practicable_A 1.0773191989054437e-5 +practical_A 2.6932979972636094e-4 +practicality_N 3.729715012475897e-6 +practice_N 5.333492467840533e-4 +practice_V 2.2678822515534994e-4 +practice_V2 2.2538113559895037e-4 +practician_N 3.729715012475897e-6 +practise_V 2.2678822515534993e-5 +practise_V2 1.609865254278217e-5 +practitioner_N 4.1026865137234865e-5 +praenomen_N 3.729715012475897e-6 +praesidium_N 3.729715012475897e-6 +praetor_N 3.729715012475897e-6 +praetorian_A 1.0773191989054437e-5 +praetorium_N 3.729715012475897e-6 +praetorship_N 3.729715012475897e-6 +pragmatic_A 5.3865959945272184e-5 +pragmatically_Adv 8.668966832532898e-6 +pragmatics_N 3.729715012475897e-6 +pragmatism_N 1.4918860049903587e-5 +pragmatist_N 1.4918860049903587e-5 +prague_PN 1.865462821325971e-5 +prairie_N 7.459430024951794e-6 +praise_N 2.237829007485538e-5 +praise_V2 2.8977574577007903e-4 +praiseworthiness_N 3.729715012475897e-6 +praiseworthy_A 2.1546383978108874e-5 +praisworthiness_N 3.729715012475897e-6 +praline_N 3.729715012475897e-6 +pram_N 3.729715012475897e-6 +prance_N 3.729715012475897e-6 +prance_V 4.5357645031069986e-5 +prancer_N 3.729715012475897e-6 +prandial_A 1.0773191989054437e-5 +prang_N 3.729715012475897e-6 +prank_N 3.729715012475897e-6 +prankishness_N 3.729715012475897e-6 +prankster_N 3.729715012475897e-6 +praseodymium_N 3.729715012475897e-6 +prate_N 3.729715012475897e-6 +prate_V 2.2678822515534993e-5 +pratfall_N 3.729715012475897e-6 +pratincole_N 3.729715012475897e-6 +prato_PN 1.865462821325971e-5 +prattle_N 7.459430024951794e-6 +prattle_V 2.2678822515534993e-5 +prattle_on_V 2.2678822515534993e-5 +prattler_N 3.729715012475897e-6 +pravastatin_N 3.729715012475897e-6 +prawn_N 3.729715012475897e-6 +prawn_V 2.2678822515534993e-5 +pray_V 6.803646754660499e-5 +pray_V2 1.609865254278217e-5 +praya_N 3.729715012475897e-6 +prayer_N 1.8648575062379485e-5 +prayer_book_N 3.729715012475897e-6 +prayer_mat_N 3.729715012475897e-6 +prayer_meeting_N 3.729715012475897e-6 +prayer_rug_N 3.729715012475897e-6 +prayer_wheel_N 3.729715012475897e-6 +prayerful_A 1.0773191989054437e-5 +prazosin_N 3.729715012475897e-6 +pre_approve_V2 4.8295957628346505e-5 +pre_eminence_N 3.729715012475897e-6 +pre_eminent_A 2.1546383978108874e-5 +pre_empt_V2 6.439461017112868e-5 +pre_emption_N 3.729715012475897e-6 +pre_emptive_A 4.309276795621775e-5 +pre_exist_V 2.2678822515534993e-5 +pre_existence_N 3.729715012475897e-6 +pre_existent_A 1.0773191989054437e-5 +pre_packaged_A 1.0773191989054437e-5 +pre_raphaelite_A 1.0773191989054437e-5 +pre_raphaelite_N 3.729715012475897e-6 +pre_register_V2 4.8295957628346505e-5 +pre_sign_V2 3.219730508556434e-5 +pre_test_V2 3.219730508556434e-5 +preach_V 6.803646754660499e-5 +preach_V2 3.219730508556434e-5 +preacher_N 3.729715012475897e-6 +preachification_N 3.729715012475897e-6 +preachify_V 2.2678822515534993e-5 +preachy_A 1.0773191989054437e-5 +preamble_N 3.356743511228307e-5 +preanal_A 1.0773191989054437e-5 +prearrange_V2 3.219730508556434e-5 +prearrangement_N 3.729715012475897e-6 +prebend_N 3.729715012475897e-6 +prebendary_N 3.729715012475897e-6 +precancerous_A 1.0773191989054437e-5 +precarious_A 5.3865959945272184e-5 +precariousness_N 3.729715012475897e-6 +precast_A 1.0773191989054437e-5 +precatory_A 1.0773191989054437e-5 +precaution_N 2.6108005087331277e-5 +precautionary_A 2.1546383978108874e-5 +precede_V 1.5875175760874494e-4 +precede_V2 1.2878922034225736e-4 +precedence_N 3.729715012475897e-6 +precedent_A 1.0773191989054437e-5 +precedent_N 4.848629516218666e-5 +precedented_A 1.0773191989054437e-5 +precedential_A 1.0773191989054437e-5 +preceding_A 2.1546383978108874e-5 +precentor_N 3.729715012475897e-6 +precentorship_N 3.729715012475897e-6 +precept_N 3.729715012475897e-6 +preceptor_N 3.729715012475897e-6 +preceptorship_N 3.729715012475897e-6 +precession_N 3.729715012475897e-6 +prechlorination_N 3.729715012475897e-6 +precinct_N 7.459430024951794e-6 +preciosity_N 3.729715012475897e-6 +precious_A 3.770617196169053e-4 +precious_Adv 8.668966832532898e-6 +preciousness_N 3.729715012475897e-6 +precipice_N 7.459430024951794e-6 +precipitant_N 3.729715012475897e-6 +precipitate_A 1.0773191989054437e-5 +precipitate_N 3.729715012475897e-6 +precipitate_V2 9.659191525669301e-5 +precipitation_N 3.729715012475897e-6 +precipitator_N 3.729715012475897e-6 +precipitin_N 3.729715012475897e-6 +precipitous_A 8.61855359124355e-5 +precis_N 3.729715012475897e-6 +precis_V2 1.609865254278217e-5 +precise_A 2.47783415748252e-4 +preciseness_N 3.729715012475897e-6 +precision_N 2.9837720099807175e-5 +preclinical_A 1.0773191989054437e-5 +preclude_V2 1.9318383051338602e-4 +preclusion_N 3.729715012475897e-6 +preclusive_A 1.0773191989054437e-5 +precocial_A 1.0773191989054437e-5 +precocious_A 2.1546383978108874e-5 +precociousness_N 3.729715012475897e-6 +precocity_N 3.729715012475897e-6 +precognition_N 3.729715012475897e-6 +preconceive_V2 1.609865254278217e-5 +preconception_N 3.729715012475897e-6 +preconcerted_A 1.0773191989054437e-5 +precondition_N 7.459430024951794e-6 +preconditioned_A 1.0773191989054437e-5 +precooked_A 1.0773191989054437e-5 +precooled_A 1.0773191989054437e-5 +precordial_A 1.0773191989054437e-5 +precordium_N 3.729715012475897e-6 +precursor_N 7.459430024951794e-6 +precursory_A 2.1546383978108874e-5 +predaceous_A 1.0773191989054437e-5 +predacious_A 1.0773191989054437e-5 +predate_V2 4.8295957628346505e-5 +predation_N 3.729715012475897e-6 +predator_N 1.4918860049903587e-5 +predatory_A 1.0773191989054437e-5 +predecease_V2 1.609865254278217e-5 +predecessor_N 6.340515521209024e-5 +predestinarian_A 1.0773191989054437e-5 +predestinarianism_N 3.729715012475897e-6 +predestinate_A 1.0773191989054437e-5 +predestinate_V2 1.609865254278217e-5 +predestination_N 3.729715012475897e-6 +predestine_V2 1.609865254278217e-5 +predetermination_N 3.729715012475897e-6 +predetermine_V2 6.439461017112868e-5 +predicament_N 1.118914503742769e-5 +predicate_N 3.729715012475897e-6 +predicate_V2 3.219730508556434e-5 +predicative_A 1.0773191989054437e-5 +predicator_N 3.729715012475897e-6 +predict_V2 9.337218474813658e-4 +predict_VS 5.9492866632010625e-3 +predictability_N 1.118914503742769e-5 +predictable_A 2.046906477920343e-4 +prediction_N 8.205373027446973e-5 +predictive_A 1.0773191989054437e-5 +predictor_N 7.459430024951794e-6 +predigest_V2 1.609865254278217e-5 +predilection_N 7.459430024951794e-6 +predispose_V2 4.8295957628346505e-5 +predisposition_N 3.729715012475897e-6 +prednisolone_N 3.729715012475897e-6 +prednisone_N 3.729715012475897e-6 +predominance_N 3.729715012475897e-6 +predominant_A 4.309276795621775e-5 +predominate_V 2.2678822515534993e-5 +predomination_N 3.729715012475897e-6 +preeclampsia_N 3.729715012475897e-6 +preemption_N 3.729715012475897e-6 +preemptive_A 1.0773191989054437e-5 +preemptor_N 3.729715012475897e-6 +preen_V2 1.609865254278217e-5 +preexistence_N 3.729715012475897e-6 +preexistent_A 1.0773191989054437e-5 +prefab_A 1.0773191989054437e-5 +prefab_N 3.729715012475897e-6 +prefabricate_V2 1.609865254278217e-5 +prefabrication_N 3.729715012475897e-6 +preface_N 7.459430024951794e-6 +preface_V2 1.609865254278217e-5 +prefaded_A 1.0773191989054437e-5 +prefatory_A 1.0773191989054437e-5 +prefect_N 3.729715012475897e-6 +prefectural_A 2.1546383978108874e-5 +prefecture_N 1.8648575062379485e-5 +prefer_V2 2.0606275254761177e-3 +prefer_V2V 9.350163627863488e-4 +prefer_VS 1.7328019407381737e-4 +prefer_VV 1.6336728810301749e-3 +preferable_A 5.3865959945272184e-5 +preference_N 1.0070230533684921e-4 +preferential_A 6.463915193432663e-5 +preferment_N 3.729715012475897e-6 +prefiguration_N 3.729715012475897e-6 +prefigure_V2 1.609865254278217e-5 +prefix_N 3.729715012475897e-6 +prefix_V2 1.609865254278217e-5 +prefixation_N 3.729715012475897e-6 +preformation_N 3.729715012475897e-6 +prefrontal_A 1.0773191989054437e-5 +pregnancy_N 5.594572518713845e-5 +pregnanediol_N 3.729715012475897e-6 +pregnant_A 2.2623703177014317e-4 +preheat_V2 1.609865254278217e-5 +prehensile_A 1.0773191989054437e-5 +prehensor_N 3.729715012475897e-6 +prehistoric_A 1.0773191989054437e-5 +prehistorical_A 1.0773191989054437e-5 +prehistory_N 3.729715012475897e-6 +prejudge_V2 1.609865254278217e-5 +prejudgement_N 3.729715012475897e-6 +prejudgment_N 3.729715012475897e-6 +prejudice_N 1.8648575062379485e-5 +prejudice_V2 4.8295957628346505e-5 +prejudicial_A 2.1546383978108874e-5 +prelacy_N 3.729715012475897e-6 +prelapsarian_A 1.0773191989054437e-5 +prelate_N 3.729715012475897e-6 +prelim_N 3.729715012475897e-6 +preliminary_A 6.140719433761029e-4 +preliminary_N 3.729715012475897e-6 +preliterate_A 1.0773191989054437e-5 +prelude_N 4.1026865137234865e-5 +prelude_V2 1.609865254278217e-5 +premarital_A 1.0773191989054437e-5 +premature_A 1.0773191989054437e-4 +prematureness_N 3.729715012475897e-6 +premedical_A 1.0773191989054437e-5 +premeditate_V2 1.609865254278217e-5 +premeditation_N 3.729715012475897e-6 +premenopausal_A 1.0773191989054437e-5 +premenstrual_A 1.0773191989054437e-5 +premier_A 7.541234392338106e-5 +premier_N 2.6108005087331277e-5 +premiere_N 3.729715012475897e-6 +premiere_V 1.3607293509320997e-4 +premiere_V2 4.8295957628346505e-5 +premiership_N 3.729715012475897e-6 +premise_N 3.356743511228307e-5 +premise_V2 1.609865254278217e-5 +premises_N 3.729715012475897e-6 +premiss_N 3.729715012475897e-6 +premiss_V2 1.609865254278217e-5 +premium_A 1.0773191989054437e-5 +premium_N 4.587549465345353e-4 +premolar_N 3.729715012475897e-6 +premonition_N 3.729715012475897e-6 +premonitory_A 1.0773191989054437e-5 +prenatal_A 2.1546383978108874e-5 +prentice_N 3.729715012475897e-6 +prenuptial_A 1.0773191989054437e-5 +preoccupancy_N 3.729715012475897e-6 +preoccupation_N 1.8648575062379485e-5 +preoccupy_V2 8.049326271391085e-5 +preoperative_A 1.0773191989054437e-5 +preordain_V2 1.609865254278217e-5 +prep_N 3.729715012475897e-6 +prepackaged_A 1.0773191989054437e-5 +prepacked_A 1.0773191989054437e-5 +preparation_N 5.967544019961435e-5 +preparatory_A 1.0773191989054437e-5 +prepare_V 9.298317231369348e-4 +prepare_V2 6.922420593396333e-4 +prepare_V2V 2.3375409069658717e-3 +prepare_VS 1.7328019407381737e-4 +prepare_VV 3.171247357293869e-3 +preparedness_N 1.4918860049903587e-5 +prepay_V2 1.609865254278217e-4 +prepayment_N 3.729715012475897e-6 +preponderance_N 3.729715012475897e-6 +preponderant_A 1.0773191989054437e-5 +preponderate_V 2.2678822515534993e-5 +preposition_N 3.729715012475897e-6 +prepositional_A 1.0773191989054437e-5 +prepossess_V2 1.609865254278217e-5 +prepossessing_A 1.0773191989054437e-5 +prepossession_N 3.729715012475897e-6 +preposterous_A 3.231957596716331e-5 +preprandial_A 1.0773191989054437e-5 +prepuberty_N 3.729715012475897e-6 +prepubescent_A 1.0773191989054437e-5 +prepuce_N 3.729715012475897e-6 +prepupal_A 1.0773191989054437e-5 +prerecord_V2 1.609865254278217e-5 +prerequisite_A 1.0773191989054437e-5 +prerequisite_N 7.459430024951794e-6 +prerogative_N 3.356743511228307e-5 +pres_N 3.729715012475897e-6 +presage_N 3.729715012475897e-6 +presage_V2 1.1269056779947518e-4 +presbyope_N 3.729715012475897e-6 +presbyopia_N 3.729715012475897e-6 +presbyter_N 3.729715012475897e-6 +presbyterian_A 1.0773191989054437e-5 +presbyterian_N 3.729715012475897e-6 +presbyterianism_N 3.729715012475897e-6 +presbytery_N 3.729715012475897e-6 +preschool_N 3.729715012475897e-6 +preschooler_N 3.729715012475897e-6 +prescience_N 3.729715012475897e-6 +prescient_A 2.1546383978108874e-5 +prescot_PN 1.865462821325971e-5 +prescribe_V 9.071529006213997e-5 +prescribe_V2 1.4488787288503951e-4 +prescript_N 3.729715012475897e-6 +prescription_N 7.459430024951794e-5 +prescriptive_A 2.1546383978108874e-5 +prescriptivism_N 3.729715012475897e-6 +preseason_N 3.729715012475897e-6 +presence_N 1.7529660558636716e-4 +present_A 4.95566831496504e-4 +present_N 3.356743511228307e-5 +present_V2 9.337218474813658e-4 +present_day_A 5.3865959945272184e-5 +presentable_A 1.0773191989054437e-5 +presentation_N 5.2216010174662554e-5 +presentational_A 1.0773191989054437e-5 +presenter_N 3.729715012475897e-6 +presentiment_N 3.729715012475897e-6 +presentism_N 3.729715012475897e-6 +presentist_N 3.729715012475897e-6 +presentment_N 3.729715012475897e-6 +presentness_N 3.729715012475897e-6 +preservable_A 1.0773191989054437e-5 +preservation_N 7.459430024951794e-6 +preservationist_N 3.729715012475897e-6 +preservative_A 1.0773191989054437e-5 +preservative_N 3.729715012475897e-6 +preserve_N 3.729715012475897e-6 +preserve_V2 5.795514915401581e-4 +preserver_N 3.729715012475897e-6 +preset_A 1.0773191989054437e-5 +preside_V 9.071529006213997e-5 +presidency_N 6.340515521209024e-5 +presidentFem_N 7.459430024951794e-6 +presidentMasc_N 4.259334544247474e-3 +presidential_A 3.1242256768257865e-4 +presidio_N 3.729715012475897e-6 +presidium_N 3.729715012475897e-6 +presocratic_A 1.0773191989054437e-5 +press_N 3.394040661353066e-4 +press_V 7.484011430126548e-4 +press_V2 3.8636766102677204e-4 +press_V2V 1.8700327255726976e-3 +press_agency_N 3.729715012475897e-6 +press_agent_N 3.729715012475897e-6 +press_ahead_V 2.2678822515534993e-5 +press_box_N 3.729715012475897e-6 +press_clipping_N 3.729715012475897e-6 +press_cutting_N 3.729715012475897e-6 +press_for_V2 1.609865254278217e-5 +press_forward_with_V2 1.609865254278217e-5 +press_gallery_N 3.729715012475897e-6 +press_gang_N 3.729715012475897e-6 +press_into_V2 1.609865254278217e-5 +press_lord_N 3.729715012475897e-6 +press_on_V 2.2678822515534993e-5 +press_photographer_N 3.729715012475897e-6 +press_stud_N 3.729715012475897e-6 +press_up_N 3.729715012475897e-6 +press_upon_V2 1.609865254278217e-5 +pressing_A 3.231957596716331e-5 +pressing_N 3.729715012475897e-6 +pressman_N 7.459430024951794e-6 +pressmark_N 3.729715012475897e-6 +pressor_A 1.0773191989054437e-5 +pressure_N 6.788081322706132e-4 +pressure_V2 2.8977574577007903e-4 +pressure_V2V 2.3375409069658717e-3 +pressure_cooker_N 3.729715012475897e-6 +pressure_gauge_N 3.729715012475897e-6 +pressurized_A 1.0773191989054437e-5 +prestatyn_PN 1.865462821325971e-5 +prestidigitation_N 3.729715012475897e-6 +prestidigitator_N 3.729715012475897e-6 +prestige_N 2.9837720099807175e-5 +prestigious_A 1.4005149585770768e-4 +prestissimo_A 1.0773191989054437e-5 +prestissimo_Adv 8.668966832532898e-6 +presto_A 1.0773191989054437e-5 +presto_Adv 8.668966832532898e-6 +preston_PN 1.865462821325971e-5 +prestonpans_PN 1.865462821325971e-5 +prestressed_A 1.0773191989054437e-5 +prestwich_PN 1.865462821325971e-5 +prestwick_PN 1.865462821325971e-5 +presumable_A 1.0773191989054437e-4 +presume_V 4.5357645031069986e-5 +presume_V2 8.049326271391085e-5 +presume_VS 1.1552012938254491e-4 +presume_VV 1.9219680953296174e-4 +presumption_N 1.8648575062379485e-5 +presumptive_A 1.0773191989054437e-5 +presumptuous_A 1.0773191989054437e-5 +presuppose_V2 1.609865254278217e-5 +presupposition_N 3.729715012475897e-6 +preteen_A 1.0773191989054437e-5 +preteen_N 3.729715012475897e-6 +pretence_N 3.729715012475897e-6 +pretend_V 2.2678822515534993e-5 +pretend_V2 1.609865254278217e-5 +pretend_VS 2.3104025876508982e-4 +pretendedly_Adv 8.668966832532898e-6 +pretender_N 3.729715012475897e-6 +pretense_N 3.729715012475897e-6 +pretension_N 7.459430024951794e-6 +pretentious_A 1.0773191989054437e-5 +pretentiousness_N 3.729715012475897e-6 +preterist_N 3.729715012475897e-6 +preterit_A 1.0773191989054437e-5 +preterit_N 3.729715012475897e-6 +preterite_A 1.0773191989054437e-5 +preterite_N 3.729715012475897e-6 +pretermission_N 3.729715012475897e-6 +preternatural_A 1.0773191989054437e-5 +pretext_N 1.8648575062379485e-5 +pretor_N 3.729715012475897e-6 +pretoria_PN 1.865462821325971e-4 +pretrial_N 3.729715012475897e-6 +prettify_V2 1.609865254278217e-5 +prettily_Adv 8.668966832532898e-6 +prettiness_N 3.729715012475897e-6 +pretty_A 1.8314426381392542e-4 +pretty_AdA 2.8904665314401622e-2 +pretty_N 3.729715012475897e-6 +pretty_pretty_A 1.0773191989054437e-5 +pretzel_N 3.729715012475897e-6 +prevail_V 7.484011430126548e-4 +prevail_V2 3.219730508556434e-5 +prevalence_N 3.729715012475897e-6 +prevalent_A 4.309276795621775e-5 +prevaricate_V 2.2678822515534993e-5 +prevarication_N 3.729715012475897e-6 +prevent_V2 2.012331567847771e-3 +preventable_A 1.0773191989054437e-5 +preventative_N 3.729715012475897e-6 +prevention_N 2.6108005087331277e-5 +preventive_A 1.0773191989054437e-5 +preventive_N 3.729715012475897e-6 +preview_N 1.8648575062379485e-5 +preview_V2 3.219730508556434e-5 +previous_A 4.406235523523264e-3 +prevision_N 3.729715012475897e-6 +prewar_A 1.0773191989054437e-5 +prey_N 1.118914503742769e-5 +prey_V 6.803646754660499e-5 +prey_on_V2 1.609865254278217e-5 +prey_upon_V2 1.609865254278217e-5 +priapic_A 1.0773191989054437e-5 +priapism_N 3.729715012475897e-6 +price_N 7.023053368492113e-3 +price_V 5.080056243479838e-3 +price_V2 1.6420625593637813e-3 +price_V2V 4.675081813931744e-4 +price_control_N 3.729715012475897e-6 +price_controlled_A 1.0773191989054437e-5 +price_in_V2 1.609865254278217e-5 +price_up_V2 1.609865254278217e-5 +priceless_A 3.231957596716331e-5 +pricelist_N 3.729715012475897e-6 +pricey_A 5.3865959945272184e-5 +pricing_N 3.729715012475897e-6 +prick_N 3.729715012475897e-6 +prick_V 2.2678822515534993e-5 +prick_V2 3.219730508556434e-5 +pricker_N 3.729715012475897e-6 +pricket_N 3.729715012475897e-6 +pricking_N 3.729715012475897e-6 +prickle_N 3.729715012475897e-6 +prickle_V 2.2678822515534993e-5 +prickle_V2 1.609865254278217e-5 +prickleback_N 3.729715012475897e-6 +prickliness_N 3.729715012475897e-6 +prickling_N 3.729715012475897e-6 +prickly_A 3.231957596716331e-5 +pride_N 5.967544019961435e-5 +pride_V2 1.609865254278217e-5 +prie_dieu_N 3.729715012475897e-6 +priest_N 1.118914503742769e-5 +priest_ridden_A 1.0773191989054437e-5 +priestcraft_N 3.729715012475897e-6 +priestess_N 3.729715012475897e-6 +priesthood_N 3.729715012475897e-6 +priestlike_A 1.0773191989054437e-5 +priestly_A 1.0773191989054437e-5 +prig_N 3.729715012475897e-6 +priggish_A 1.0773191989054437e-5 +priggishness_N 3.729715012475897e-6 +prim_A 2.1546383978108874e-5 +prim_V2 1.609865254278217e-5 +prima_A 1.0773191989054437e-5 +prima_ballerina_N 3.729715012475897e-6 +prima_donna_N 3.729715012475897e-6 +prima_facie_A 1.0773191989054437e-5 +prima_facie_Adv 8.668966832532898e-6 +primacy_N 3.729715012475897e-6 +primaeval_A 1.0773191989054437e-5 +primal_A 1.0773191989054437e-5 +primality_N 3.729715012475897e-6 +primaquine_N 3.729715012475897e-6 +primary_A 1.4436077265332946e-3 +primary_N 2.9837720099807175e-5 +primate_N 3.729715012475897e-6 +primateship_N 3.729715012475897e-6 +primatology_N 3.729715012475897e-6 +prime_A 6.89484287299484e-4 +prime_N 3.729715012475897e-5 +prime_V2 4.8295957628346505e-5 +primer_N 3.729715012475897e-6 +primeval_A 1.0773191989054437e-5 +primidone_N 3.729715012475897e-6 +primigravida_N 3.729715012475897e-6 +priming_N 3.729715012475897e-6 +primipara_N 3.729715012475897e-6 +primiparous_A 1.0773191989054437e-5 +primitive_A 5.3865959945272184e-5 +primitive_N 3.729715012475897e-6 +primitiveness_N 3.729715012475897e-6 +primitivism_N 3.729715012475897e-6 +primness_N 3.729715012475897e-6 +primo_A 1.0773191989054437e-5 +primo_N 3.729715012475897e-6 +primogeniture_N 3.729715012475897e-6 +primordial_A 3.231957596716331e-5 +primordium_N 3.729715012475897e-6 +primp_V2 1.609865254278217e-5 +primping_N 3.729715012475897e-6 +primrose_N 3.729715012475897e-6 +primula_N 3.729715012475897e-6 +primus_N 3.729715012475897e-6 +prince_N 1.4918860049903587e-5 +princedom_N 3.729715012475897e-6 +princeling_N 3.729715012475897e-6 +princely_A 2.1546383978108874e-5 +princes_risborough_PN 1.865462821325971e-5 +princess_N 3.729715012475897e-6 +princewood_N 3.729715012475897e-6 +principal_A 4.632472555293408e-4 +principal_N 1.8275603561131894e-4 +principality_N 3.729715012475897e-6 +principalship_N 3.729715012475897e-6 +principle_N 1.8275603561131894e-4 +principled_A 1.0773191989054437e-5 +prink_V2 1.609865254278217e-5 +print_N 8.578344528694562e-5 +print_V 1.8143058012427994e-4 +print_V2 3.541703559412077e-4 +print_out_V2 1.609865254278217e-5 +print_seller_N 3.729715012475897e-6 +print_shop_N 3.729715012475897e-6 +printable_A 1.0773191989054437e-5 +printer_N 8.578344528694562e-5 +printing_N 1.0070230533684921e-4 +printing_ink_N 3.729715012475897e-6 +printing_press_N 3.729715012475897e-6 +printmaker_N 3.729715012475897e-6 +printmaking_N 3.729715012475897e-6 +printout_N 7.459430024951794e-6 +prion_N 3.729715012475897e-6 +prior_A 2.3701022375919762e-4 +prior_N 3.729715012475897e-6 +prior_to_Prep 8.98069151324652e-5 +prioress_N 3.729715012475897e-6 +priority_N 1.9394518064874664e-4 +priorship_N 3.729715012475897e-6 +priory_N 3.729715012475897e-6 +priscilla_PN 1.865462821325971e-5 +prise_V2 1.609865254278217e-5 +prism_N 3.729715012475897e-6 +prismatic_A 1.0773191989054437e-5 +prismatoid_N 3.729715012475897e-6 +prismoid_N 3.729715012475897e-6 +prison_N 1.9394518064874664e-4 +prison_breaking_N 3.729715012475897e-6 +prisoner_N 4.475658014971076e-5 +prisonlike_A 1.0773191989054437e-5 +pristine_A 3.231957596716331e-5 +privacy_N 3.356743511228307e-5 +private_A 2.9195350290337524e-3 +private_N 2.237829007485538e-5 +privateer_N 3.729715012475897e-6 +privation_N 3.729715012475897e-6 +privatization_N 7.459430024951794e-6 +privatize_V2 1.9318383051338602e-4 +privet_N 3.729715012475897e-6 +privilege_N 8.951316029942152e-5 +privileged_A 4.309276795621775e-5 +privy_A 2.1546383978108874e-5 +privy_N 3.729715012475897e-6 +prize_N 5.967544019961435e-5 +prize_V2 6.439461017112868e-5 +prize_fight_N 3.729715012475897e-6 +prize_money_N 3.729715012475897e-6 +prize_ring_N 3.729715012475897e-6 +prizefight_N 3.729715012475897e-6 +prizefighter_N 3.729715012475897e-6 +pro_A 1.0773191989054437e-5 +pro_Adv 8.668966832532898e-6 +pro_N 8.578344528694562e-5 +pro_Prep 9.978546125829467e-6 +pro_forma_A 1.2927830386865325e-4 +pro_forma_Adv 8.668966832532898e-6 +pro_rata_Adv 8.668966832532898e-6 +pro_tem_Adv 8.668966832532898e-6 +pro_tempore_Adv 8.668966832532898e-6 +proaccelerin_N 3.729715012475897e-6 +proactive_A 1.0773191989054437e-5 +probabilism_N 3.729715012475897e-6 +probabilistic_A 1.0773191989054437e-5 +probabilistically_Adv 8.668966832532898e-6 +probability_N 2.9837720099807175e-5 +probable_A 2.046906477920343e-3 +probable_N 3.729715012475897e-6 +probate_N 7.459430024951794e-6 +probate_V2 1.609865254278217e-5 +probation_N 1.8648575062379485e-5 +probationary_A 1.0773191989054437e-5 +probationer_N 3.729715012475897e-6 +probative_A 1.0773191989054437e-5 +probe_N 1.193508803992287e-4 +probe_V 1.1339411257767497e-4 +probe_V2 8.049326271391085e-5 +probenecid_N 3.729715012475897e-6 +probiotic_N 3.729715012475897e-6 +probity_N 7.459430024951794e-6 +problem_N 2.3236124527724836e-3 +problematic_A 8.61855359124355e-5 +problematically_Adv 8.668966832532898e-6 +proboscidean_N 3.729715012475897e-6 +proboscis_N 3.729715012475897e-6 +procaine_N 3.729715012475897e-6 +procarbazine_N 3.729715012475897e-6 +procedural_A 1.8314426381392542e-4 +procedure_N 1.9767489566122252e-4 +proceed_V 7.257223204971198e-4 +proceed_V2 3.219730508556434e-5 +proceed_VV 1.9219680953296174e-4 +proceeding_N 2.237829007485538e-4 +process_N 5.930246869836676e-4 +process_V 1.0432258357146098e-3 +process_V2 4.8295957628346505e-4 +process_server_N 3.729715012475897e-6 +processing_N 3.729715012475897e-6 +procession_N 7.459430024951794e-6 +processional_A 1.0773191989054437e-5 +processional_N 3.729715012475897e-6 +processor_N 8.578344528694562e-5 +prochlorperazine_N 3.729715012475897e-6 +proclaim_V2 9.659191525669301e-5 +proclaim_VS 5.776006469127245e-4 +proclamation_N 1.8648575062379485e-5 +proclivity_N 3.729715012475897e-6 +proconsul_N 3.729715012475897e-6 +proconsular_A 1.0773191989054437e-5 +proconsulate_N 3.729715012475897e-6 +proconsulship_N 3.729715012475897e-6 +proconvertin_N 3.729715012475897e-6 +procrastinate_V 2.2678822515534993e-5 +procrastination_N 1.118914503742769e-5 +procrastinator_N 3.729715012475897e-6 +procreate_V2 1.609865254278217e-5 +procreation_N 7.459430024951794e-6 +proctalgia_N 3.729715012475897e-6 +proctitis_N 3.729715012475897e-6 +proctologist_N 3.729715012475897e-6 +proctology_N 3.729715012475897e-6 +proctoplasty_N 3.729715012475897e-6 +proctor_N 3.729715012475897e-6 +proctorship_N 3.729715012475897e-6 +proctoscope_N 3.729715012475897e-6 +proctoscopy_N 3.729715012475897e-6 +procumbent_A 1.0773191989054437e-5 +procurable_A 1.0773191989054437e-5 +procurator_N 3.729715012475897e-6 +procure_V2 1.609865254278217e-5 +procurement_N 2.6108005087331277e-5 +procurer_N 3.729715012475897e-6 +procuress_N 3.729715012475897e-6 +procyclidine_N 3.729715012475897e-6 +procyonid_N 3.729715012475897e-6 +prod_N 3.729715012475897e-6 +prod_V 9.071529006213997e-5 +prod_V2 6.439461017112868e-5 +prod_V2V 3.7400654511453952e-3 +prodigal_A 2.1546383978108874e-5 +prodigal_N 3.729715012475897e-6 +prodigality_N 3.729715012475897e-6 +prodigious_A 3.231957596716331e-5 +prodigy_N 7.459430024951794e-6 +prodromal_A 1.0773191989054437e-5 +prodrome_N 3.729715012475897e-6 +produce_N 1.4918860049903587e-5 +produce_V 1.3607293509320995e-3 +produce_V2 4.411030796722315e-3 +producer_N 9.02591033019167e-4 +product_N 3.0509068802052836e-3 +production_N 1.2904813943166603e-3 +productive_A 8.61855359124355e-5 +productiveness_N 3.729715012475897e-6 +productivity_N 1.118914503742769e-4 +proenzyme_N 3.729715012475897e-6 +prof_PN 1.865462821325971e-5 +profanation_N 3.729715012475897e-6 +profanatory_A 1.0773191989054437e-5 +profane_A 1.0773191989054437e-5 +profane_V2 1.609865254278217e-5 +profaneness_N 3.729715012475897e-6 +profanity_N 3.729715012475897e-6 +profess_V 2.2678822515534993e-5 +profess_V2 4.8295957628346505e-5 +profess_V2V 4.675081813931744e-4 +professedly_Adv 8.668966832532898e-6 +profession_N 5.2216010174662554e-5 +professional_A 5.817523674089396e-4 +professional_N 1.2308059541170458e-4 +professionalism_N 1.118914503742769e-5 +professionalization_N 3.729715012475897e-6 +professor_N 2.275126157610297e-4 +professorial_A 1.0773191989054437e-5 +professorship_N 3.729715012475897e-6 +proffer_N 3.729715012475897e-6 +proffer_V2 4.8295957628346505e-5 +proficiency_N 7.459430024951794e-6 +proficient_A 4.309276795621775e-5 +profile_N 4.848629516218666e-5 +profile_V2 4.8295957628346505e-5 +profiling_N 3.729715012475897e-6 +profit_N 2.8047456893818745e-3 +profit_V 6.803646754660498e-4 +profit_V2 1.609865254278217e-5 +profit_margin_N 3.729715012475897e-6 +profit_sharing_N 3.729715012475897e-6 +profitable_A 8.834017431024638e-4 +profitableness_N 3.729715012475897e-6 +profiteer_N 1.118914503742769e-5 +profiteer_V 4.5357645031069986e-5 +profiterole_N 3.729715012475897e-6 +profitless_A 1.0773191989054437e-5 +profligacy_N 3.729715012475897e-6 +profligate_A 3.231957596716331e-5 +profligate_N 3.729715012475897e-6 +profound_A 1.2927830386865325e-4 +profoundness_N 3.729715012475897e-6 +profundity_N 3.729715012475897e-6 +profuse_A 1.0773191989054437e-5 +profuseness_N 3.729715012475897e-6 +profusion_N 3.729715012475897e-6 +progenitor_N 7.459430024951794e-6 +progeria_N 3.729715012475897e-6 +progestational_A 1.0773191989054437e-5 +progesterone_N 3.729715012475897e-6 +progestin_N 3.729715012475897e-6 +prognathism_N 3.729715012475897e-6 +prognathous_A 1.0773191989054437e-5 +prognosis_N 7.459430024951794e-6 +prognostic_A 1.0773191989054437e-5 +prognostic_N 3.729715012475897e-6 +prognosticate_V2 1.609865254278217e-5 +prognostication_N 3.729715012475897e-6 +program_N 3.3380949361659275e-3 +program_V2 8.049326271391085e-5 +program_V2V 4.675081813931744e-4 +programma_N 3.729715012475897e-6 +programme_N 3.729715012475897e-6 +programme_V2 6.439461017112868e-5 +programmerFem_N 3.729715012475897e-6 +programmerMasc_N 3.356743511228307e-5 +programming_N 3.729715012475897e-6 +progress_N 1.5291831551151176e-4 +progress_V 2.7214587018641994e-4 +progress_V2 3.219730508556434e-5 +progression_N 7.459430024951794e-6 +progressive_A 8.61855359124355e-5 +progressive_N 3.729715012475897e-6 +progressiveness_N 3.729715012475897e-6 +progressivism_N 3.729715012475897e-6 +progymnosperm_N 3.729715012475897e-6 +prohibit_V 2.2678822515534993e-5 +prohibit_V2 5.312555339118116e-4 +prohibition_N 3.729715012475897e-5 +prohibitionist_N 3.729715012475897e-6 +prohibitive_A 3.231957596716331e-5 +prohibitory_A 1.0773191989054437e-5 +proinflammatory_A 1.0773191989054437e-5 +project_N 9.846447632936366e-4 +project_V 1.8143058012427994e-4 +project_V2 4.8295957628346505e-4 +project_V2V 9.350163627863488e-4 +project_VS 8.086409056778143e-4 +projectile_A 1.0773191989054437e-5 +projectile_N 3.729715012475897e-6 +projection_N 1.7902632059884304e-4 +projectionist_N 3.729715012475897e-6 +projector_N 7.459430024951794e-6 +prokaryote_N 3.729715012475897e-6 +prokaryotic_A 1.0773191989054437e-5 +prolactin_N 3.729715012475897e-6 +prolamine_N 3.729715012475897e-6 +prolapse_N 3.729715012475897e-6 +prolapse_V 2.2678822515534993e-5 +prolate_A 1.0773191989054437e-5 +prole_N 3.729715012475897e-6 +prolegomenon_N 3.729715012475897e-6 +prolepsis_N 3.729715012475897e-6 +proletarian_A 2.1546383978108874e-5 +proletarian_N 3.729715012475897e-6 +proletariat_N 3.729715012475897e-6 +proliferate_V 9.071529006213997e-5 +proliferate_V2 1.609865254278217e-5 +proliferation_N 3.356743511228307e-5 +prolific_A 3.231957596716331e-5 +proline_N 3.729715012475897e-6 +prolix_A 1.0773191989054437e-5 +prolixity_N 3.729715012475897e-6 +prologue_N 3.729715012475897e-6 +prolong_V2 3.541703559412077e-4 +prolongation_N 3.729715012475897e-6 +prolonge_N 3.729715012475897e-6 +prolusory_A 1.0773191989054437e-5 +prom_N 3.729715012475897e-6 +promenade_N 3.729715012475897e-6 +promenade_V 2.2678822515534993e-5 +promenade_V2 1.609865254278217e-5 +promethazine_N 3.729715012475897e-6 +promethium_N 3.729715012475897e-6 +prominence_N 1.4918860049903587e-5 +prominent_A 3.1242256768257865e-4 +promiscuity_N 3.729715012475897e-6 +promiscuous_A 1.0773191989054437e-5 +promise_N 1.9021546563627073e-4 +promise_V 6.803646754660498e-4 +promise_V2 4.990582288262473e-4 +promise_VS 5.198405822214521e-4 +promise_VV 2.4024601191620218e-3 +promisee_N 3.729715012475897e-6 +promiser_N 3.729715012475897e-6 +promisingly_Adv 8.668966832532898e-6 +promissory_A 3.231957596716331e-5 +promontory_N 3.729715012475897e-6 +promote_V 3.401823377330249e-4 +promote_V2 8.049326271391085e-4 +promoter_N 3.729715012475897e-5 +promotion_N 2.237829007485538e-4 +promotional_A 2.046906477920343e-4 +promotive_A 1.0773191989054437e-5 +prompt_A 2.1546383978108874e-4 +prompt_N 3.729715012475897e-6 +prompt_V2 7.727353220535441e-4 +prompt_V2V 1.2155212716222535e-2 +prompt_box_N 3.729715012475897e-6 +prompt_copy_N 3.729715012475897e-6 +promptbook_N 3.729715012475897e-6 +prompter_N 3.729715012475897e-6 +prompting_N 3.729715012475897e-6 +promptitude_N 3.729715012475897e-6 +promptness_N 3.729715012475897e-6 +promulgate_V2 3.219730508556434e-5 +promulgation_N 3.729715012475897e-6 +promulgator_N 3.729715012475897e-6 +promycelium_N 3.729715012475897e-6 +pronation_N 3.729715012475897e-6 +pronator_N 3.729715012475897e-6 +prone_A 7.541234392338106e-5 +proneness_N 3.729715012475897e-6 +prong_N 7.459430024951794e-6 +pronged_A 1.0773191989054437e-5 +pronghorn_N 3.729715012475897e-6 +pronominal_A 1.0773191989054437e-5 +pronoun_N 3.729715012475897e-6 +pronounce_V 6.803646754660499e-5 +pronounce_V2 4.8295957628346505e-5 +pronounce_VS 1.7328019407381737e-4 +pronounceable_A 1.0773191989054437e-5 +pronounced_A 2.1546383978108874e-5 +pronouncement_N 7.459430024951794e-6 +pronto_Adv 8.668966832532898e-6 +pronucleus_N 3.729715012475897e-6 +pronunciamento_N 3.729715012475897e-6 +pronunciation_N 7.459430024951794e-6 +proof_A 2.1546383978108874e-5 +proof_N 5.594572518713845e-5 +proof_V2 1.609865254278217e-5 +proofread_V 2.2678822515534993e-5 +proofread_V2 3.219730508556434e-5 +proofreader_N 3.729715012475897e-6 +prop_N 1.118914503742769e-5 +prop_V2 1.609865254278217e-4 +prop_up_V2 3.219730508556434e-5 +propaedeutic_N 3.729715012475897e-6 +propaganda_N 2.9837720099807175e-5 +propagandist_A 1.0773191989054437e-5 +propagandist_N 1.118914503742769e-5 +propagandize_V 4.5357645031069986e-5 +propagandize_V2 3.219730508556434e-5 +propagate_V 2.2678822515534993e-5 +propagate_V2 1.609865254278217e-5 +propagation_N 3.729715012475897e-6 +propagative_A 1.0773191989054437e-5 +propagator_N 3.729715012475897e-6 +propanal_N 3.729715012475897e-6 +propane_N 3.356743511228307e-5 +propanol_N 3.729715012475897e-6 +propanolol_N 3.729715012475897e-6 +proparoxytone_N 3.729715012475897e-6 +propel_V2 1.9318383051338602e-4 +propellant_A 1.0773191989054437e-5 +propellant_N 7.459430024951794e-6 +propellent_A 1.0773191989054437e-5 +propellent_N 3.729715012475897e-6 +propeller_N 3.729715012475897e-6 +propenal_N 3.729715012475897e-6 +propenoate_N 3.729715012475897e-6 +propenonitrile_N 3.729715012475897e-6 +propensity_N 1.118914503742769e-5 +proper_A 4.5247406354028633e-4 +propertied_A 1.0773191989054437e-5 +property_N 8.354561627946009e-4 +property_man_N 3.729715012475897e-6 +property_master_N 3.729715012475897e-6 +propertyless_A 1.0773191989054437e-5 +prophase_N 3.729715012475897e-6 +prophecy_N 7.459430024951794e-6 +prophesy_V 2.2678822515534993e-5 +prophesy_V2 1.609865254278217e-5 +prophet_N 3.729715012475897e-6 +prophetess_N 3.729715012475897e-6 +prophetic_A 1.0773191989054437e-5 +prophetical_A 1.0773191989054437e-5 +prophylactic_A 1.0773191989054437e-5 +prophylactic_N 3.729715012475897e-6 +prophylaxis_N 3.729715012475897e-6 +prophyll_N 3.729715012475897e-6 +propinquity_N 3.729715012475897e-6 +propitiate_V2 1.609865254278217e-5 +propitiation_N 3.729715012475897e-6 +propitiative_A 1.0773191989054437e-5 +propitiatory_A 1.0773191989054437e-5 +propitious_A 1.0773191989054437e-5 +propjet_N 3.729715012475897e-6 +proponent_N 7.832401526199384e-5 +proportion_N 7.459430024951794e-5 +proportion_V2 1.609865254278217e-5 +proportionable_A 1.0773191989054437e-5 +proportional_A 2.1546383978108874e-5 +proportional_N 3.729715012475897e-6 +proportionality_N 3.729715012475897e-6 +proportionate_A 1.0773191989054437e-5 +proposal_N 1.1823196589548592e-3 +propose_V 8.617952555903298e-4 +propose_V2 3.589999517040424e-3 +propose_VS 1.0396811644429042e-3 +propose_VV 1.9219680953296175e-3 +proposer_N 3.729715012475897e-6 +proposition_N 3.729715012475897e-5 +proposition_V2 1.609865254278217e-5 +propositus_N 3.729715012475897e-6 +propound_V2 1.609865254278217e-5 +propoxyphene_N 3.729715012475897e-6 +proprietary_A 4.309276795621775e-5 +proprietor_N 1.8648575062379485e-5 +proprietorship_N 3.729715012475897e-6 +proprietress_N 3.729715012475897e-6 +propriety_N 1.118914503742769e-5 +proprioception_N 3.729715012475897e-6 +proprioceptive_A 1.0773191989054437e-5 +proprioceptor_N 3.729715012475897e-6 +proprionamide_N 3.729715012475897e-6 +props_N 3.729715012475897e-6 +propulsion_N 2.237829007485538e-5 +propulsive_A 2.1546383978108874e-5 +propyl_N 3.729715012475897e-6 +propylene_N 7.459430024951794e-6 +propylthiouracil_N 3.729715012475897e-6 +proration_N 7.459430024951794e-6 +prorogation_N 3.729715012475897e-6 +prorogue_V2 1.609865254278217e-5 +prosaic_A 1.0773191989054437e-5 +prosaically_Adv 8.668966832532898e-6 +proscenium_N 3.729715012475897e-6 +prosciutto_N 3.729715012475897e-6 +proscribe_V2 3.219730508556434e-5 +proscription_N 3.729715012475897e-6 +prose_N 2.237829007485538e-5 +prosecute_V2 2.092824830561682e-4 +prosecution_N 1.1562116538675279e-4 +prosecutor_N 3.095663460354994e-4 +proselyte_N 3.729715012475897e-6 +proselytism_N 3.729715012475897e-6 +proselytize_V 2.2678822515534993e-5 +proselytize_V2 1.609865254278217e-5 +prosimian_N 3.729715012475897e-6 +prosiness_N 3.729715012475897e-6 +prosodic_A 1.0773191989054437e-5 +prosody_N 3.729715012475897e-6 +prospect_N 3.2448520608540304e-4 +prospect_V 2.2678822515534993e-5 +prospective_A 3.016493756935242e-4 +prospector_N 3.729715012475897e-6 +prospectus_N 5.594572518713845e-5 +prosper_V 9.071529006213997e-5 +prosper_V2 1.609865254278217e-5 +prosperity_N 3.729715012475897e-5 +prosperous_A 7.541234392338106e-5 +prostaglandin_N 3.729715012475897e-6 +prostate_A 1.0773191989054437e-5 +prostate_N 7.459430024951794e-6 +prostatectomy_N 3.729715012475897e-6 +prostatitis_N 3.729715012475897e-6 +prosthesis_N 3.729715012475897e-6 +prosthetic_A 1.0773191989054437e-5 +prosthetics_N 3.729715012475897e-6 +prosthetist_N 3.729715012475897e-6 +prosthion_N 3.729715012475897e-6 +prosthodontic_A 1.0773191989054437e-5 +prosthodontics_N 3.729715012475897e-6 +prosthodontist_N 3.729715012475897e-6 +prostitute_N 2.9837720099807175e-5 +prostitute_V2 1.609865254278217e-5 +prostitution_N 2.237829007485538e-5 +prostrate_A 1.0773191989054437e-5 +prostrate_V2 1.609865254278217e-5 +prostration_N 3.729715012475897e-6 +prostyle_A 1.0773191989054437e-5 +prosy_A 1.0773191989054437e-5 +protactinium_N 3.729715012475897e-6 +protagonist_N 1.118914503742769e-5 +protamine_N 3.729715012475897e-6 +protanopia_N 3.729715012475897e-6 +protanopic_A 1.0773191989054437e-5 +protea_N 3.729715012475897e-6 +protean_A 1.0773191989054437e-5 +protease_N 3.729715012475897e-6 +protect_V 4.535764503106999e-4 +protect_V2 1.529371991564306e-3 +protection_N 4.1772808139730044e-4 +protectionism_N 2.237829007485538e-5 +protectionist_N 3.729715012475897e-6 +protective_A 4.309276795621775e-5 +protectiveness_N 3.729715012475897e-6 +protector_N 1.4918860049903587e-5 +protectorate_N 3.729715012475897e-6 +protectorship_N 3.729715012475897e-6 +protege_N 3.729715012475897e-6 +protegee_N 3.729715012475897e-6 +protein_N 8.578344528694562e-5 +proteinaceous_A 1.0773191989054437e-5 +proteolysis_N 3.729715012475897e-6 +proteolytic_A 1.0773191989054437e-5 +proteome_N 3.729715012475897e-6 +proteomics_N 3.729715012475897e-6 +proterozoic_A 1.0773191989054437e-5 +protest_N 1.4545888548655997e-4 +protest_V 1.1339411257767497e-4 +protest_V2 1.7708517797060386e-4 +protestant_A 2.1546383978108874e-5 +protestant_N 3.729715012475897e-6 +protestantism_N 3.729715012475897e-6 +protestation_N 3.729715012475897e-6 +protester_N 7.459430024951794e-5 +protestingly_Adv 8.668966832532898e-6 +prothalamion_N 3.729715012475897e-6 +prothorax_N 3.729715012475897e-6 +prothrombin_N 3.729715012475897e-6 +prothrombinase_N 3.729715012475897e-6 +protist_N 3.729715012475897e-6 +protoarcheology_N 3.729715012475897e-6 +protoavis_N 3.729715012475897e-6 +protoceratops_N 3.729715012475897e-6 +protocol_N 2.237829007485538e-5 +protoctist_N 3.729715012475897e-6 +protogeometric_A 1.0773191989054437e-5 +protohippus_N 3.729715012475897e-6 +protohistory_N 3.729715012475897e-6 +protology_N 3.729715012475897e-6 +proton_N 3.729715012475897e-6 +protoplasm_N 3.729715012475897e-6 +prototherian_N 3.729715012475897e-6 +prototype_N 3.356743511228307e-5 +protozoal_A 1.0773191989054437e-5 +protozoan_N 3.729715012475897e-6 +protozoological_A 1.0773191989054437e-5 +protozoologist_N 3.729715012475897e-6 +protozoology_N 3.729715012475897e-6 +protract_V2 8.049326271391085e-5 +protractile_A 1.0773191989054437e-5 +protraction_N 3.729715012475897e-6 +protractor_N 3.729715012475897e-6 +protriptyline_N 3.729715012475897e-6 +protrude_V 2.2678822515534993e-5 +protrude_V2 1.609865254278217e-5 +protrusile_A 1.0773191989054437e-5 +protrusion_N 3.729715012475897e-6 +protrusive_A 1.0773191989054437e-5 +protuberance_N 3.729715012475897e-6 +protuberant_A 1.0773191989054437e-5 +proturan_N 3.729715012475897e-6 +proud_A 1.2927830386865325e-4 +provable_A 1.0773191989054437e-5 +prove_V 3.628611602485599e-4 +prove_V2 5.151568813690294e-4 +prove_V2V 4.675081813931744e-4 +prove_VA 3.051181102362205e-2 +prove_VS 1.270721423207994e-3 +provenance_N 7.459430024951794e-6 +provencal_A 1.0773191989054437e-5 +provender_N 3.729715012475897e-6 +proverb_N 7.459430024951794e-6 +proverbial_A 2.1546383978108874e-5 +provide_V 1.8596634462738695e-3 +provide_V2 6.036994703543313e-3 +provide_VS 5.198405822214521e-4 +providence_N 3.729715012475897e-6 +providence_PN 1.865462821325971e-5 +provident_A 1.0773191989054437e-5 +providential_A 1.0773191989054437e-5 +provider_N 8.578344528694562e-5 +province_N 7.459430024951794e-5 +provincial_A 6.463915193432663e-5 +provincial_N 3.729715012475897e-6 +provincialism_N 3.729715012475897e-6 +provirus_N 3.729715012475897e-6 +provision_N 7.683212925700347e-4 +provision_V2 4.8295957628346505e-5 +provisional_A 1.4005149585770768e-4 +proviso_N 1.4918860049903587e-5 +provisory_A 1.0773191989054437e-5 +provitamin_N 3.729715012475897e-6 +provocation_N 1.118914503742769e-5 +provocative_A 3.231957596716331e-5 +provoke_V2 2.2538113559895037e-4 +provoking_A 2.1546383978108874e-5 +provost_N 7.459430024951794e-6 +prow_N 3.729715012475897e-6 +prowess_N 1.8648575062379485e-5 +prowl_N 1.118914503742769e-5 +prowl_V 2.2678822515534993e-5 +prowl_V2 1.609865254278217e-5 +prowler_N 3.729715012475897e-6 +prox_Adv 8.668966832532898e-6 +proxemics_N 3.729715012475897e-6 +proximal_A 1.0773191989054437e-5 +proximate_A 1.0773191989054437e-5 +proximity_N 3.729715012475897e-6 +proximo_A 1.0773191989054437e-5 +proxy_N 3.729715012475897e-5 +pru_PN 1.865462821325971e-5 +prude_N 7.459430024951794e-6 +prudence_N 7.459430024951794e-6 +prudence_PN 1.865462821325971e-5 +prudent_A 1.4005149585770768e-4 +prudential_A 3.231957596716331e-5 +prudery_N 3.729715012475897e-6 +prudhoe_PN 1.865462821325971e-5 +prudish_A 1.0773191989054437e-5 +prune_N 3.729715012475897e-6 +prune_V2 4.8295957628346505e-5 +pruner_N 3.729715012475897e-6 +pruning_N 7.459430024951794e-6 +pruning_hook_N 3.729715012475897e-6 +pruning_knife_N 3.729715012475897e-6 +pruning_saw_N 3.729715012475897e-6 +pruno_N 3.729715012475897e-6 +prurience_N 3.729715012475897e-6 +pruriency_N 3.729715012475897e-6 +prurient_A 1.0773191989054437e-5 +prurigo_N 3.729715012475897e-6 +pruritus_N 3.729715012475897e-6 +prussian_A 1.0773191989054437e-5 +prussian_N 3.729715012475897e-6 +prussic_A 1.0773191989054437e-5 +pry_V 4.5357645031069986e-5 +pry_V2 1.609865254278217e-5 +pryingly_Adv 8.668966832532898e-6 +psalm_N 3.729715012475897e-6 +psalmist_N 3.729715012475897e-6 +psalmody_N 3.729715012475897e-6 +psalter_N 3.729715012475897e-6 +psalterium_N 3.729715012475897e-6 +psaltery_N 3.729715012475897e-6 +psammoma_N 3.729715012475897e-6 +psephologist_N 3.729715012475897e-6 +psephology_N 3.729715012475897e-6 +pseud_N 3.729715012475897e-6 +pseudo_A 1.0773191989054437e-5 +pseudo_N 7.459430024951794e-6 +pseudobulb_N 3.729715012475897e-6 +pseudoephedrine_N 3.729715012475897e-6 +pseudohallucination_N 3.729715012475897e-6 +pseudohermaphrodite_N 3.729715012475897e-6 +pseudohermaphroditic_A 1.0773191989054437e-5 +pseudohermaphroditism_N 3.729715012475897e-6 +pseudomonad_N 3.729715012475897e-6 +pseudonym_N 3.729715012475897e-6 +pseudonymous_A 1.0773191989054437e-5 +pseudophloem_N 3.729715012475897e-6 +pseudopod_N 3.729715012475897e-6 +pseudoscience_N 3.729715012475897e-6 +pseudoscientific_A 1.0773191989054437e-5 +psi_N 3.729715012475897e-6 +psilocybin_N 3.729715012475897e-6 +psilomelane_N 3.729715012475897e-6 +psilophyte_N 3.729715012475897e-6 +psilophyton_N 3.729715012475897e-6 +psilosis_N 3.729715012475897e-6 +psittacosaur_N 3.729715012475897e-6 +psittacosis_N 3.729715012475897e-6 +psoas_N 3.729715012475897e-6 +psocid_N 3.729715012475897e-6 +psoriasis_N 3.729715012475897e-6 +psych_out_V2 1.609865254278217e-5 +psych_up_V2 1.609865254278217e-5 +psyche_N 7.459430024951794e-6 +psychedelia_N 3.729715012475897e-6 +psychedelic_A 1.0773191989054437e-5 +psychiatric_A 9.695872790148993e-5 +psychiatrist_N 1.118914503742769e-5 +psychiatry_N 7.459430024951794e-6 +psychic_A 3.231957596716331e-5 +psychic_N 7.459430024951794e-6 +psychical_A 1.0773191989054437e-5 +psychoactive_A 1.0773191989054437e-5 +psychoanalyse_V2 1.609865254278217e-5 +psychoanalysis_N 3.729715012475897e-6 +psychoanalyst_N 1.4918860049903587e-5 +psychoanalytic_A 2.1546383978108874e-5 +psychoanalytical_A 1.0773191989054437e-5 +psychoanalyze_V2 1.609865254278217e-5 +psychobabble_N 3.729715012475897e-6 +psychodid_N 3.729715012475897e-6 +psychodynamics_N 3.729715012475897e-6 +psychogenesis_N 3.729715012475897e-6 +psychogenetic_A 1.0773191989054437e-5 +psychogenic_A 1.0773191989054437e-5 +psychokinetic_A 1.0773191989054437e-5 +psycholinguist_N 3.729715012475897e-6 +psycholinguistic_A 1.0773191989054437e-5 +psycholinguistics_N 3.729715012475897e-6 +psychological_A 1.6159787983581657e-4 +psychologist_N 2.9837720099807175e-5 +psychology_N 7.832401526199384e-5 +psychometric_A 1.0773191989054437e-5 +psychometry_N 3.729715012475897e-6 +psychomotor_A 1.0773191989054437e-5 +psychopath_N 3.729715012475897e-6 +psychopathic_A 1.0773191989054437e-5 +psychopharmacological_A 1.0773191989054437e-5 +psychopharmacology_N 3.729715012475897e-6 +psychophysicist_N 3.729715012475897e-6 +psychophysics_N 3.729715012475897e-6 +psychopomp_N 3.729715012475897e-6 +psychosexual_A 1.0773191989054437e-5 +psychosexuality_N 3.729715012475897e-6 +psychosis_N 3.729715012475897e-6 +psychosomatic_A 1.0773191989054437e-5 +psychosurgery_N 3.729715012475897e-6 +psychotherapeutic_A 1.0773191989054437e-5 +psychotherapist_N 3.729715012475897e-6 +psychotherapy_N 3.729715012475897e-6 +psychotic_A 1.0773191989054437e-5 +psychotic_N 3.729715012475897e-6 +psychrometer_N 3.729715012475897e-6 +pt_N 3.729715012475897e-6 +pta_N 3.729715012475897e-6 +ptarmigan_N 3.729715012475897e-6 +pte_PN 1.865462821325971e-5 +pteridological_A 1.0773191989054437e-5 +pteridologist_N 3.729715012475897e-6 +pteridology_N 3.729715012475897e-6 +pteridophyte_N 3.729715012475897e-6 +pterion_N 3.729715012475897e-6 +pterodactyl_N 3.729715012475897e-6 +pteropogon_N 3.729715012475897e-6 +pterosaur_N 3.729715012475897e-6 +pterygium_N 3.729715012475897e-6 +pto_PN 1.865462821325971e-5 +ptomaine_N 3.729715012475897e-6 +ptosis_N 3.729715012475897e-6 +pty_PN 1.865462821325971e-5 +ptyalin_N 3.729715012475897e-6 +ptyalism_N 3.729715012475897e-6 +ptyalith_N 3.729715012475897e-6 +pub_N 1.8648575062379485e-5 +pub_crawl_N 3.729715012475897e-6 +pub_crawl_V 2.2678822515534993e-5 +pubertal_A 1.0773191989054437e-5 +puberty_N 3.729715012475897e-6 +pubes_N 3.729715012475897e-6 +pubescent_A 1.0773191989054437e-5 +pubic_A 1.0773191989054437e-5 +pubis_N 3.729715012475897e-6 +public_A 3.932215076004869e-3 +public_N 3.8416064628501735e-4 +public_spirited_A 1.0773191989054437e-5 +publican_N 3.729715012475897e-6 +publication_N 1.5291831551151176e-4 +publicist_N 2.237829007485538e-5 +publicity_N 7.832401526199384e-5 +publicize_V2 1.609865254278217e-4 +publish_V 1.6555540436340545e-3 +publish_V2 1.0786097203664053e-3 +publishable_A 1.0773191989054437e-5 +publisher_N 2.5735033586083686e-4 +publishing_A 2.1546383978108874e-5 +puccoon_N 3.729715012475897e-6 +puce_N 3.729715012475897e-6 +puck_N 3.729715012475897e-6 +pucker_N 3.729715012475897e-6 +pucker_V 2.2678822515534993e-5 +pucker_V2 1.609865254278217e-5 +pucker_up_V 2.2678822515534993e-5 +pucker_up_V2 1.609865254278217e-5 +puckish_A 4.309276795621775e-5 +pud_N 3.729715012475897e-6 +pudden_N 3.729715012475897e-6 +pudden_head_N 3.729715012475897e-6 +pudding_N 7.459430024951794e-6 +pudding_face_N 3.729715012475897e-6 +puddingwife_N 3.729715012475897e-6 +puddle_N 3.729715012475897e-6 +puddle_V2 1.609865254278217e-5 +puddler_N 3.729715012475897e-6 +pudendal_A 1.0773191989054437e-5 +pudendum_N 3.729715012475897e-6 +pudge_N 3.729715012475897e-6 +pudgy_A 1.0773191989054437e-5 +pudsey_PN 1.865462821325971e-5 +pueblo_N 3.729715012475897e-6 +puerile_A 1.0773191989054437e-5 +puerility_N 3.729715012475897e-6 +puerpera_N 3.729715012475897e-6 +puerperal_A 1.0773191989054437e-5 +puerperium_N 3.729715012475897e-6 +puff_A 1.0773191989054437e-5 +puff_N 7.459430024951794e-6 +puff_V 2.2678822515534993e-5 +puff_V2 1.609865254278217e-5 +puffball_N 3.729715012475897e-6 +puffbird_N 3.729715012475897e-6 +puffer_N 3.729715012475897e-6 +puffery_N 3.729715012475897e-6 +puffin_N 3.729715012475897e-6 +puffiness_N 3.729715012475897e-6 +puffing_N 3.729715012475897e-6 +puffy_A 1.0773191989054437e-5 +pug_N 3.729715012475897e-6 +pug_dog_N 3.729715012475897e-6 +pug_nose_A 1.0773191989054437e-5 +pug_nose_N 3.729715012475897e-6 +pug_nosed_A 2.1546383978108874e-5 +pugilism_N 3.729715012475897e-6 +pugilist_N 3.729715012475897e-6 +pugilistic_A 1.0773191989054437e-5 +pugnacious_A 1.0773191989054437e-5 +pugnacity_N 3.729715012475897e-6 +puissance_N 3.729715012475897e-6 +puissant_A 1.0773191989054437e-5 +puka_N 3.729715012475897e-6 +puke_N 3.729715012475897e-6 +puke_V 2.2678822515534993e-5 +puke_V2 1.609865254278217e-5 +pukka_A 1.0773191989054437e-5 +puku_N 3.729715012475897e-6 +pul_N 3.729715012475897e-6 +pula_N 3.729715012475897e-6 +pulasan_N 3.729715012475897e-6 +pulchritude_N 7.459430024951794e-6 +pulchritudinous_A 1.0773191989054437e-5 +pule_V 2.2678822515534993e-5 +pull_N 1.4918860049903587e-5 +pull_V 1.6101963986029845e-3 +pull_V2 3.219730508556434e-4 +pull_ahead_V 2.2678822515534993e-5 +pull_apart_V2 1.609865254278217e-5 +pull_away_V 2.2678822515534993e-5 +pull_back_V 2.2678822515534993e-5 +pull_back_V2 1.609865254278217e-5 +pull_down_V 2.2678822515534993e-5 +pull_down_V2 1.609865254278217e-5 +pull_for_V2 1.609865254278217e-5 +pull_in_N 3.729715012475897e-6 +pull_in_V 2.2678822515534993e-5 +pull_in_V2 1.609865254278217e-5 +pull_off_N 3.729715012475897e-6 +pull_off_V 2.2678822515534993e-5 +pull_off_V2 1.609865254278217e-5 +pull_on_V2 1.609865254278217e-5 +pull_out_N 3.729715012475897e-6 +pull_out_V 2.2678822515534993e-5 +pull_out_V2 1.609865254278217e-5 +pull_over_V2 1.609865254278217e-5 +pull_through_N 3.729715012475897e-6 +pull_through_V 2.2678822515534993e-5 +pull_to_V2 1.609865254278217e-5 +pull_together_V 2.2678822515534993e-5 +pull_up_N 3.729715012475897e-6 +pull_up_V 2.2678822515534993e-5 +pull_up_V2 1.609865254278217e-5 +pull_yourself_together_V 2.2678822515534993e-5 +pullback_N 3.729715012475897e-6 +puller_N 3.729715012475897e-6 +pullet_N 3.729715012475897e-6 +pulley_N 3.729715012475897e-6 +pulley_block_N 3.729715012475897e-6 +pullman_N 3.729715012475897e-6 +pullover_N 3.729715012475897e-6 +pullulate_V 2.2678822515534993e-5 +pullulation_N 3.729715012475897e-6 +pulmonary_A 1.0773191989054437e-5 +pulp_N 1.305400254366564e-4 +pulp_V 2.2678822515534993e-5 +pulp_V2 1.609865254278217e-5 +pulpit_N 7.459430024951794e-6 +pulpwood_N 3.729715012475897e-6 +pulpy_A 1.0773191989054437e-5 +pulque_N 3.729715012475897e-6 +pulsar_N 3.729715012475897e-6 +pulsate_V 2.2678822515534993e-5 +pulsate_V2 1.609865254278217e-5 +pulsation_N 3.729715012475897e-6 +pulse_N 1.118914503742769e-5 +pulse_V 2.2678822515534993e-5 +pulverization_N 3.729715012475897e-6 +pulverize_V 2.2678822515534993e-5 +pulverize_V2 3.219730508556434e-5 +puma_N 3.729715012475897e-6 +pumice_N 3.729715012475897e-6 +pumice_stone_N 3.729715012475897e-6 +pummel_V2 3.219730508556434e-5 +pump_N 2.6108005087331277e-5 +pump_V 2.9482469270195494e-4 +pump_V2 2.4147978814173252e-4 +pump_in_V 2.2678822515534993e-5 +pump_out_V 2.2678822515534993e-5 +pump_room_N 3.729715012475897e-6 +pump_up_V 2.2678822515534993e-5 +pumpernickel_N 3.729715012475897e-6 +pumpkin_N 3.729715012475897e-6 +pumpkinseed_N 3.729715012475897e-6 +pun_N 1.118914503742769e-5 +pun_V 2.2678822515534993e-5 +punch_N 1.118914503742769e-5 +punch_V2 1.1269056779947518e-4 +punch_drunk_A 1.0773191989054437e-5 +punch_up_N 3.729715012475897e-6 +punchball_N 3.729715012475897e-6 +punchboard_N 3.729715012475897e-6 +punchbowl_N 3.729715012475897e-6 +puncher_N 3.729715012475897e-6 +punching_ball_N 3.729715012475897e-6 +punctilio_N 3.729715012475897e-6 +punctilious_A 1.0773191989054437e-5 +punctiliousness_N 3.729715012475897e-6 +punctual_A 1.0773191989054437e-5 +punctuality_N 3.729715012475897e-6 +punctuate_V2 1.609865254278217e-5 +punctuation_N 3.729715012475897e-6 +punctum_N 3.729715012475897e-6 +puncturable_A 1.0773191989054437e-5 +puncture_N 3.729715012475897e-6 +puncture_V 2.2678822515534993e-5 +puncture_V2 1.609865254278217e-5 +punctureless_A 1.0773191989054437e-5 +pundit_N 7.459430024951794e-6 +pung_N 3.729715012475897e-6 +pungapung_N 3.729715012475897e-6 +pungency_N 3.729715012475897e-6 +pungent_A 2.1546383978108874e-5 +punic_A 1.0773191989054437e-5 +puniness_N 3.729715012475897e-6 +punish_V2 2.092824830561682e-4 +punishable_A 9.695872790148993e-5 +punishing_A 1.0773191989054437e-5 +punishment_N 4.848629516218666e-5 +punitive_A 1.2927830386865325e-4 +punk_N 1.118914503742769e-5 +punkah_N 3.729715012475897e-6 +punkie_N 3.729715012475897e-6 +punks_N 3.729715012475897e-6 +punnet_N 3.729715012475897e-6 +punster_N 3.729715012475897e-6 +punt_N 4.1026865137234865e-5 +punt_V 2.2678822515534993e-5 +punt_V2 1.609865254278217e-5 +punter_N 3.729715012475897e-6 +puny_A 4.309276795621775e-5 +pup_N 3.729715012475897e-6 +pupa_N 3.729715012475897e-6 +pupal_A 1.0773191989054437e-5 +pupil_N 1.118914503742769e-5 +pupillary_A 1.0773191989054437e-5 +puppet_N 1.118914503742769e-5 +puppeteer_N 3.729715012475897e-6 +puppetry_N 3.729715012475897e-6 +puppy_N 7.459430024951794e-6 +puppyish_A 1.0773191989054437e-5 +purblind_A 1.0773191989054437e-5 +purchasable_A 1.0773191989054437e-5 +purchase_N 1.0182121984059198e-3 +purchase_V2 2.865560152615226e-3 +purchaser_N 5.2216010174662554e-5 +purdah_N 3.729715012475897e-6 +pure_A 1.72371071824871e-4 +purebred_A 1.0773191989054437e-5 +puree_N 3.729715012475897e-6 +pureness_N 3.729715012475897e-6 +purgation_N 3.729715012475897e-6 +purgative_A 1.0773191989054437e-5 +purgative_N 3.729715012475897e-6 +purgatorial_A 1.0773191989054437e-5 +purgatory_N 3.729715012475897e-6 +purge_N 3.729715012475897e-6 +purge_V2 1.1269056779947518e-4 +purification_N 7.459430024951794e-6 +purifier_N 3.729715012475897e-6 +purify_V2 1.609865254278217e-5 +purifying_A 1.0773191989054437e-5 +purine_N 3.729715012475897e-6 +purism_N 3.729715012475897e-6 +purist_N 1.118914503742769e-5 +puritan_A 1.0773191989054437e-5 +puritan_N 3.729715012475897e-6 +puritanical_A 3.231957596716331e-5 +puritanism_N 3.729715012475897e-6 +purity_N 3.729715012475897e-6 +purl_N 3.729715012475897e-6 +purl_V 2.2678822515534993e-5 +purl_V2 1.609865254278217e-5 +purloin_V2 1.609865254278217e-5 +purloo_N 3.729715012475897e-6 +purple_A 2.1546383978108874e-5 +purple_N 3.729715012475897e-6 +purplish_A 1.0773191989054437e-5 +purport_N 3.729715012475897e-6 +purport_V2 4.8295957628346505e-5 +purport_V2V 4.675081813931744e-4 +purportedly_Adv 8.668966832532898e-6 +purpose_N 2.7972862593569225e-4 +purpose_V2 1.609865254278217e-5 +purpose_built_A 1.0773191989054437e-5 +purposeful_A 1.0773191989054437e-5 +purposefulness_N 3.729715012475897e-6 +purposeless_A 1.0773191989054437e-5 +purposelessness_N 3.729715012475897e-6 +purposely_Adv 2.6006900497598697e-5 +purposive_A 1.0773191989054437e-5 +purpura_N 3.729715012475897e-6 +purr_N 3.729715012475897e-6 +purr_V 4.5357645031069986e-5 +purr_V2 1.609865254278217e-5 +purr_VS 1.1552012938254491e-4 +purse_N 3.729715012475897e-5 +purse_V2 1.609865254278217e-5 +purse_proud_A 1.0773191989054437e-5 +purser_N 3.729715012475897e-6 +purslane_N 3.729715012475897e-6 +pursuance_N 3.729715012475897e-6 +pursuant_A 5.3865959945272184e-5 +pursuant_to_Prep 9.978546125829467e-6 +pursue_V 3.401823377330249e-4 +pursue_V2 1.2073989407086626e-3 +pursued_N 3.729715012475897e-6 +pursuer_N 7.459430024951794e-6 +pursuit_N 7.832401526199384e-5 +pursy_A 1.0773191989054437e-5 +purulence_N 3.729715012475897e-6 +purulent_A 1.0773191989054437e-5 +purvey_V 2.2678822515534993e-5 +purvey_V2 1.609865254278217e-5 +purveyance_N 3.729715012475897e-6 +purveyor_N 3.729715012475897e-6 +purview_N 3.729715012475897e-6 +pus_N 3.729715012475897e-6 +pusan_PN 1.865462821325971e-5 +push_N 7.832401526199384e-5 +push_V 1.8143058012427995e-3 +push_V2 9.498205000241479e-4 +push_V2V 2.3375409069658717e-3 +push_VS 2.8880032345636225e-4 +push_ahead_V 4.5357645031069986e-5 +push_around_V 2.2678822515534993e-5 +push_back_V 2.2678822515534993e-5 +push_bike_N 3.729715012475897e-6 +push_in_V2 1.609865254278217e-5 +push_through_V 2.2678822515534993e-5 +push_up_V2 4.8295957628346505e-5 +pushball_N 3.729715012475897e-6 +pushcart_N 3.729715012475897e-6 +pushchair_N 3.729715012475897e-6 +pusher_N 1.118914503742769e-5 +pushful_A 1.0773191989054437e-5 +pushover_N 7.459430024951794e-6 +pushup_N 3.729715012475897e-6 +pusillanimity_N 7.459430024951794e-6 +pusillanimous_A 1.0773191989054437e-5 +puss_N 3.729715012475897e-6 +pussy_N 7.459430024951794e-6 +pussycat_N 3.729715012475897e-6 +pussyfoot_V 2.2678822515534993e-5 +pustule_N 3.729715012475897e-6 +put_N 1.2308059541170458e-4 +put_V 4.014151585249694e-3 +put_V2 3.332421076355909e-3 +put_V2V 4.675081813931744e-4 +put_VS 2.8880032345636225e-4 +put_across_V 2.2678822515534993e-5 +put_across_V2 1.609865254278217e-5 +put_aside_V 2.2678822515534993e-5 +put_away_V 2.2678822515534993e-5 +put_away_V2 1.609865254278217e-5 +put_back_V2 1.609865254278217e-5 +put_by_V2 1.609865254278217e-5 +put_down_N 3.729715012475897e-6 +put_down_V 2.2678822515534993e-5 +put_down_V2 1.609865254278217e-5 +put_down_for_V3 1.5873015873015873e-3 +put_down_to_V3 1.5873015873015873e-3 +put_forth_V 2.2678822515534993e-5 +put_in_V 2.2678822515534993e-5 +put_in_V2 1.609865254278217e-5 +put_in_for_V2 1.609865254278217e-5 +put_off_V 2.2678822515534993e-5 +put_off_V2 1.609865254278217e-5 +put_on_N 3.729715012475897e-6 +put_on_V 2.2678822515534993e-5 +put_on_V2 1.609865254278217e-5 +put_out_V 2.2678822515534993e-5 +put_out_V2 1.609865254278217e-5 +put_over_V2 1.609865254278217e-5 +put_through_V2 1.609865254278217e-5 +put_together_V2 3.219730508556434e-5 +put_towards_V2 1.609865254278217e-5 +put_up_V 4.5357645031069986e-5 +put_up_V2 1.609865254278217e-5 +put_up_V2V 4.675081813931744e-4 +put_up_with_V2 3.219730508556434e-5 +put_upon_V 2.2678822515534993e-5 +putamen_N 3.729715012475897e-6 +putative_A 1.0773191989054437e-5 +putdownable_A 1.0773191989054437e-5 +putoff_N 3.729715012475897e-6 +putout_N 3.729715012475897e-6 +putrefaction_N 3.729715012475897e-6 +putrefactive_A 1.0773191989054437e-5 +putrefy_V 2.2678822515534993e-5 +putrefy_V2 1.609865254278217e-5 +putrescence_N 3.729715012475897e-6 +putrescent_A 1.0773191989054437e-5 +putrescine_N 3.729715012475897e-6 +putrid_A 1.0773191989054437e-5 +putridity_N 3.729715012475897e-6 +putsch_N 3.729715012475897e-6 +putt_N 3.729715012475897e-6 +putt_V 5.442917403728399e-4 +putt_V2 7.083407118824154e-4 +puttee_N 3.729715012475897e-6 +putter_N 3.729715012475897e-6 +putter_V 2.2678822515534993e-5 +putter_V2 1.609865254278217e-5 +putterer_N 3.729715012475897e-6 +putting_green_N 3.729715012475897e-6 +putting_iron_N 3.729715012475897e-6 +putty_N 7.459430024951794e-6 +putty_V2 1.609865254278217e-5 +puttyroot_N 3.729715012475897e-6 +putz_N 3.729715012475897e-6 +puzzle_N 1.8648575062379485e-5 +puzzle_V 4.5357645031069986e-5 +puzzle_V2 9.659191525669301e-5 +puzzlement_N 7.459430024951794e-6 +puzzler_N 3.729715012475897e-6 +pwllheli_PN 1.865462821325971e-5 +pya_N 3.729715012475897e-6 +pycnidium_N 3.729715012475897e-6 +pycnodysostosis_N 3.729715012475897e-6 +pycnosis_N 3.729715012475897e-6 +pyelitis_N 3.729715012475897e-6 +pyelogram_N 3.729715012475897e-6 +pyelography_N 3.729715012475897e-6 +pyelonephritis_N 3.729715012475897e-6 +pyemia_N 3.729715012475897e-6 +pyemic_A 1.0773191989054437e-5 +pygmy_N 3.729715012475897e-6 +pyinma_N 3.729715012475897e-6 +pyjama_A 1.0773191989054437e-5 +pyknotic_A 1.0773191989054437e-5 +pyle_PN 1.865462821325971e-5 +pylon_N 3.729715012475897e-6 +pyloric_A 1.0773191989054437e-5 +pylorus_N 3.729715012475897e-6 +pyocyanase_N 3.729715012475897e-6 +pyocyanin_N 3.729715012475897e-6 +pyogenic_A 1.0773191989054437e-5 +pyongyang_PN 1.865462821325971e-5 +pyorrhea_N 3.729715012475897e-6 +pyorrhoea_N 3.729715012475897e-6 +pyralid_N 3.729715012475897e-6 +pyramid_N 1.8648575062379485e-5 +pyramidal_A 1.0773191989054437e-5 +pyramidically_Adv 8.668966832532898e-6 +pyramiding_N 3.729715012475897e-6 +pyre_N 3.729715012475897e-6 +pyrectic_A 1.0773191989054437e-5 +pyrene_N 3.729715012475897e-6 +pyrethrum_N 3.729715012475897e-6 +pyretic_A 1.0773191989054437e-5 +pyridine_N 3.729715012475897e-6 +pyrilamine_N 3.729715012475897e-6 +pyrimidine_N 3.729715012475897e-6 +pyrite_N 3.729715012475897e-6 +pyrites_N 3.729715012475897e-6 +pyrocellulose_N 3.729715012475897e-6 +pyrochemical_A 1.0773191989054437e-5 +pyroelectric_A 1.0773191989054437e-5 +pyroelectricity_N 3.729715012475897e-6 +pyrogallic_A 1.0773191989054437e-5 +pyrogallol_N 3.729715012475897e-6 +pyrogen_N 3.729715012475897e-6 +pyrogenic_A 1.0773191989054437e-5 +pyrograph_N 3.729715012475897e-6 +pyrographer_N 3.729715012475897e-6 +pyrographic_A 1.0773191989054437e-5 +pyrography_N 3.729715012475897e-6 +pyrolatry_N 3.729715012475897e-6 +pyroligneous_A 1.0773191989054437e-5 +pyrolusite_N 3.729715012475897e-6 +pyrolysis_N 3.729715012475897e-6 +pyrolytic_A 1.0773191989054437e-5 +pyromancer_N 3.729715012475897e-6 +pyromancy_N 3.729715012475897e-6 +pyromania_N 3.729715012475897e-6 +pyromaniac_N 3.729715012475897e-6 +pyrometer_N 3.729715012475897e-6 +pyromorphite_N 3.729715012475897e-6 +pyrope_N 3.729715012475897e-6 +pyrophobia_N 3.729715012475897e-6 +pyrophosphate_N 3.729715012475897e-6 +pyrophyllite_N 3.729715012475897e-6 +pyrostat_N 3.729715012475897e-6 +pyrotechnic_A 2.1546383978108874e-5 +pyrotechnics_N 3.729715012475897e-6 +pyroxene_N 3.729715012475897e-6 +pyroxylin_N 3.729715012475897e-6 +pyrrhic_A 1.0773191989054437e-5 +pyrrhic_N 3.729715012475897e-6 +pyrrhotite_N 3.729715012475897e-6 +pyrrhuloxia_N 3.729715012475897e-6 +pythium_N 3.729715012475897e-6 +python_N 3.729715012475897e-6 +pythoness_N 3.729715012475897e-6 +pyuria_N 3.729715012475897e-6 +pyx_N 3.729715012475897e-6 +pyxidium_N 3.729715012475897e-6 +pyxie_N 3.729715012475897e-6 +pyxis_N 3.729715012475897e-6 +qadi_N 3.729715012475897e-6 +qatar_PN 1.865462821325971e-5 +qatari_A 1.0773191989054437e-5 +qatari_N 3.729715012475897e-6 +qc_N 3.729715012475897e-6 +qed_PN 1.865462821325971e-5 +qepiq_N 3.729715012475897e-6 +qi_N 3.729715012475897e-6 +qibla_N 3.729715012475897e-6 +qindarka_N 3.729715012475897e-6 +qoph_N 3.729715012475897e-6 +qt_N 3.729715012475897e-6 +qua_Prep 9.978546125829467e-6 +quack_Interj 4.580152671755725e-2 +quack_N 1.118914503742769e-5 +quack_V 4.5357645031069986e-5 +quack_quack_N 3.729715012475897e-6 +quackery_N 3.729715012475897e-6 +quad_N 3.729715012475897e-6 +quadrangle_N 3.729715012475897e-6 +quadrangular_A 1.0773191989054437e-5 +quadrant_N 3.729715012475897e-6 +quadrantanopia_N 3.729715012475897e-6 +quadraphonic_A 1.0773191989054437e-5 +quadraphony_N 3.729715012475897e-6 +quadrate_A 1.0773191989054437e-5 +quadrate_N 3.729715012475897e-6 +quadratic_A 1.0773191989054437e-5 +quadratic_N 3.729715012475897e-6 +quadratics_N 3.729715012475897e-6 +quadrature_N 3.729715012475897e-6 +quadrennium_N 3.729715012475897e-6 +quadric_N 3.729715012475897e-6 +quadriceps_N 3.729715012475897e-6 +quadrilateral_A 1.0773191989054437e-5 +quadrilateral_N 3.729715012475897e-6 +quadrille_N 3.729715012475897e-6 +quadrillion_N 3.729715012475897e-6 +quadrillionth_A 1.0773191989054437e-5 +quadripara_N 3.729715012475897e-6 +quadripartite_A 1.0773191989054437e-5 +quadriplegia_N 3.729715012475897e-6 +quadriplegic_N 3.729715012475897e-6 +quadrivium_N 3.729715012475897e-6 +quadroon_N 3.729715012475897e-6 +quadrophonic_A 1.0773191989054437e-5 +quadrophony_N 3.729715012475897e-6 +quadrumvirate_N 3.729715012475897e-6 +quadruped_N 7.459430024951794e-6 +quadrupedal_A 1.0773191989054437e-5 +quadruple_A 1.0773191989054437e-5 +quadruple_N 3.729715012475897e-6 +quadruple_V 1.1339411257767497e-4 +quadruple_V2 4.8295957628346505e-5 +quadruplet_N 3.729715012475897e-6 +quadruplicate_A 1.0773191989054437e-5 +quadruplicate_N 3.729715012475897e-6 +quadruplicate_V2 1.609865254278217e-5 +quadrupling_N 3.729715012475897e-6 +quaestor_N 3.729715012475897e-6 +quaff_N 3.729715012475897e-6 +quaff_V 2.2678822515534993e-5 +quaff_V2 1.609865254278217e-5 +quaffer_N 3.729715012475897e-6 +quagga_N 3.729715012475897e-6 +quagmire_N 3.729715012475897e-6 +quahaug_N 3.729715012475897e-6 +quahog_N 3.729715012475897e-6 +quai_d'orsay_N 3.729715012475897e-6 +quail_N 3.729715012475897e-6 +quail_V 2.2678822515534993e-5 +quaint_A 3.231957596716331e-5 +quaintness_N 3.729715012475897e-6 +quake_N 3.9534979132244504e-4 +quake_V 2.2678822515534993e-5 +quaker_N 3.729715012475897e-6 +qualification_N 1.4918860049903587e-5 +qualifier_N 3.729715012475897e-6 +qualify_V 6.803646754660498e-4 +qualify_V2 6.439461017112868e-5 +qualitative_A 1.0773191989054437e-5 +quality_A 1.0773191989054437e-5 +quality_N 4.1399836638482455e-4 +qualm_N 7.459430024951794e-6 +quandary_N 7.459430024951794e-6 +quandong_N 3.729715012475897e-6 +quango_N 3.729715012475897e-6 +quantal_A 1.0773191989054437e-5 +quantic_N 3.729715012475897e-6 +quantifiability_N 3.729715012475897e-6 +quantifiable_A 1.0773191989054437e-5 +quantification_N 3.729715012475897e-6 +quantifier_N 3.729715012475897e-6 +quantify_V2 8.049326271391085e-5 +quantitative_A 7.541234392338106e-5 +quantity_N 1.08161735361801e-4 +quantization_N 3.729715012475897e-6 +quantum_N 7.459430024951794e-6 +quarantine_N 3.729715012475897e-6 +quarantine_V2 1.609865254278217e-5 +quark_N 3.729715012475897e-6 +quarrel_N 3.729715012475897e-6 +quarrel_V 4.5357645031069986e-5 +quarrel_out_V 2.2678822515534993e-5 +quarrel_with_V2 1.609865254278217e-5 +quarreler_N 3.729715012475897e-6 +quarrelsome_A 1.0773191989054437e-5 +quarrelsomeness_N 3.729715012475897e-6 +quarry_N 1.118914503742769e-5 +quarry_V 2.2678822515534993e-5 +quarry_V2 1.609865254278217e-5 +quarrying_N 3.729715012475897e-6 +quarryman_N 3.729715012475897e-6 +quart_N 3.729715012475897e-6 +quartan_A 1.0773191989054437e-5 +quartan_N 3.729715012475897e-6 +quarter_N 3.789390452675511e-3 +quarter_V2 1.609865254278217e-5 +quarter_day_N 3.729715012475897e-6 +quarter_deck_N 3.729715012475897e-6 +quarter_plate_N 3.729715012475897e-6 +quarterback_N 3.729715012475897e-6 +quarterdeck_N 3.729715012475897e-6 +quarterfinal_N 3.729715012475897e-6 +quartering_N 3.729715012475897e-6 +quarterlight_N 3.729715012475897e-6 +quarterly_A 1.034226430949226e-3 +quarterly_Adv 3.4675867330131594e-5 +quarterly_N 2.9837720099807175e-5 +quartermaster_N 3.729715012475897e-6 +quartermaster_general_N 3.729715012475897e-6 +quarterstaff_N 3.729715012475897e-6 +quartet_N 1.4918860049903587e-5 +quartile_N 3.729715012475897e-6 +quarto_N 3.729715012475897e-6 +quartz_N 3.729715012475897e-6 +quartzite_N 3.729715012475897e-6 +quartzose_A 1.0773191989054437e-5 +quasar_N 3.729715012475897e-6 +quash_V2 9.659191525669301e-5 +quasiparticle_N 3.729715012475897e-6 +quassia_N 3.729715012475897e-6 +quatercentenary_N 3.729715012475897e-6 +quatercentennial_N 3.729715012475897e-6 +quaternate_A 1.0773191989054437e-5 +quatrain_N 3.729715012475897e-6 +quattrocento_N 3.729715012475897e-6 +quaver_N 3.729715012475897e-6 +quaver_V 2.2678822515534993e-5 +quaver_V2 1.609865254278217e-5 +quaveringly_Adv 8.668966832532898e-6 +quay_N 3.729715012475897e-6 +queasiness_N 3.729715012475897e-6 +queasy_A 2.1546383978108874e-5 +quebec_PN 1.865462821325971e-5 +queen_N 2.237829007485538e-5 +queen_V2 1.609865254278217e-5 +queenborough_in_sheppey_PN 1.865462821325971e-5 +queenly_A 1.0773191989054437e-5 +queensbury_PN 1.865462821325971e-5 +queensferry_PN 1.865462821325971e-5 +queensland_PN 1.865462821325971e-5 +queer_A 1.0773191989054437e-5 +queer_N 7.459430024951794e-6 +queer_V2 1.609865254278217e-5 +queer_up_V2 1.609865254278217e-5 +queerness_N 3.729715012475897e-6 +quell_V2 8.049326271391085e-5 +quellung_N 3.729715012475897e-6 +quench_V2 1.609865254278217e-5 +quenchless_A 1.0773191989054437e-5 +quentin_PN 1.865462821325971e-5 +quercitron_N 3.729715012475897e-6 +quern_N 3.729715012475897e-6 +querulous_A 1.0773191989054437e-5 +querulousness_N 3.729715012475897e-6 +query_N 1.118914503742769e-5 +query_V 4.5357645031069986e-5 +query_V2 3.219730508556434e-5 +quesadilla_N 3.729715012475897e-6 +quest_N 1.4918860049903587e-5 +quest_V 2.2678822515534993e-5 +question_N 9.175098930690706e-4 +question_V2 5.795514915401581e-4 +question_mark_N 3.729715012475897e-6 +question_master_N 3.729715012475897e-6 +questionable_A 1.4005149585770768e-4 +questioner_N 3.729715012475897e-6 +questioning_A 1.0773191989054437e-5 +questioning_N 3.729715012475897e-6 +questionnaire_N 2.237829007485538e-5 +quetzal_N 3.729715012475897e-6 +queue_N 1.118914503742769e-5 +queue_V 4.5357645031069986e-5 +qui_vive_N 3.729715012475897e-6 +quibble_N 3.729715012475897e-6 +quibble_V 4.5357645031069986e-5 +quibbler_N 3.729715012475897e-6 +quiche_N 3.729715012475897e-6 +quick_A 2.122318821843724e-3 +quick_Adv 2.6006900497598697e-5 +quick_N 3.729715012475897e-6 +quick_change_A 1.0773191989054437e-5 +quick_eared_A 1.0773191989054437e-5 +quick_eyed_A 1.0773191989054437e-5 +quick_freeze_V2 1.609865254278217e-5 +quick_sighted_A 1.0773191989054437e-5 +quick_tempered_A 1.0773191989054437e-5 +quick_witted_A 1.0773191989054437e-5 +quicken_V 2.2678822515534993e-5 +quicken_V2 3.219730508556434e-5 +quickener_N 3.729715012475897e-6 +quickening_N 3.729715012475897e-6 +quicker_Adv 8.668966832532898e-6 +quickest_Adv 8.668966832532898e-6 +quickie_N 3.729715012475897e-6 +quicklime_N 3.729715012475897e-6 +quickness_N 3.729715012475897e-6 +quicksand_N 7.459430024951794e-6 +quickset_A 1.0773191989054437e-5 +quickset_N 3.729715012475897e-6 +quicksilver_N 3.729715012475897e-6 +quickstep_N 3.729715012475897e-6 +quid_N 7.459430024951794e-6 +quid_pro_quo_N 3.729715012475897e-6 +quiddity_N 3.729715012475897e-6 +quiescence_N 3.729715012475897e-6 +quiescent_A 2.1546383978108874e-5 +quiet_A 6.140719433761029e-4 +quiet_N 1.118914503742769e-5 +quiet_V 1.5875175760874494e-4 +quiet_V2 4.8295957628346505e-5 +quiet_down_V2 1.609865254278217e-5 +quieten_V 2.2678822515534993e-5 +quieten_V2 1.609865254278217e-5 +quieten_down_V2 1.609865254278217e-5 +quietism_N 3.729715012475897e-6 +quietist_N 3.729715012475897e-6 +quietness_N 3.729715012475897e-6 +quietude_N 3.729715012475897e-6 +quietus_N 3.729715012475897e-6 +quiff_N 3.729715012475897e-6 +quill_N 3.729715012475897e-6 +quill_feather_N 3.729715012475897e-6 +quillwort_N 3.729715012475897e-6 +quilt_N 7.459430024951794e-6 +quilt_V2 1.609865254278217e-5 +quilting_N 3.729715012475897e-6 +quin_N 3.729715012475897e-6 +quinacrine_N 3.729715012475897e-6 +quince_N 3.729715012475897e-6 +quincentenary_A 1.0773191989054437e-5 +quincentenary_N 3.729715012475897e-6 +quincentennial_A 1.0773191989054437e-5 +quincentennial_N 3.729715012475897e-6 +quinidine_N 3.729715012475897e-6 +quinine_N 3.729715012475897e-6 +quinone_N 3.729715012475897e-6 +quinquagesima_N 3.729715012475897e-6 +quinquagesima_PN 1.865462821325971e-5 +quinquefoliate_A 1.0773191989054437e-5 +quinquennium_N 3.729715012475897e-6 +quinsy_N 3.729715012475897e-6 +quintal_N 3.729715012475897e-6 +quintessence_N 3.729715012475897e-6 +quintessential_A 1.0773191989054437e-5 +quintet_N 3.729715012475897e-6 +quintillion_N 3.729715012475897e-6 +quintillionth_A 1.0773191989054437e-5 +quintipara_N 3.729715012475897e-6 +quintuple_A 1.0773191989054437e-5 +quintuplet_N 3.729715012475897e-6 +quintupling_N 3.729715012475897e-6 +quip_N 7.459430024951794e-6 +quip_V 6.803646754660499e-5 +quip_VS 2.8880032345636225e-4 +quipu_N 3.729715012475897e-6 +quira_N 3.729715012475897e-6 +quire_N 3.729715012475897e-6 +quirk_N 7.459430024951794e-6 +quirt_N 3.729715012475897e-6 +quisling_N 7.459430024951794e-6 +quit_V 3.855399827640949e-4 +quit_V2 1.609865254278217e-5 +quit_on_V2 1.609865254278217e-5 +quitclaim_N 3.729715012475897e-6 +quite_AdA 2.079107505070994e-2 +quite_Adv 8.668966832532898e-6 +quite_Predet 4.0e-2 +quito_PN 1.865462821325971e-5 +quits_A 1.0773191989054437e-5 +quittance_N 3.729715012475897e-6 +quitter_N 3.729715012475897e-6 +quiver_N 7.459430024951794e-6 +quiver_V 2.2678822515534993e-5 +quiver_V2 1.609865254278217e-5 +quixotic_A 1.0773191989054437e-5 +quixotically_Adv 8.668966832532898e-6 +quiz_N 1.118914503742769e-5 +quiz_V2 3.219730508556434e-5 +quizmaster_N 3.729715012475897e-6 +quizzical_A 1.0773191989054437e-5 +quodlibet_N 3.729715012475897e-6 +quoin_N 3.729715012475897e-6 +quoit_N 3.729715012475897e-6 +quoits_N 3.729715012475897e-6 +quonset_N 3.729715012475897e-6 +quorum_N 3.729715012475897e-6 +quot_V 2.2678822515534993e-5 +quota_N 1.9394518064874664e-4 +quotability_N 3.729715012475897e-6 +quotable_A 2.1546383978108874e-5 +quotation_N 1.1562116538675279e-4 +quote_N 5.967544019961435e-5 +quote_V 1.1112623032612148e-3 +quote_V2 1.143004330537534e-3 +quoter_N 3.729715012475897e-6 +quotidian_A 1.0773191989054437e-5 +quotient_N 7.459430024951794e-6 +qurush_N 3.729715012475897e-6 +qv_PN 1.865462821325971e-5 +ra_N 3.729715012475897e-6 +rabato_N 3.729715012475897e-6 +rabbet_N 3.729715012475897e-6 +rabbi_N 3.729715012475897e-6 +rabbinate_N 3.729715012475897e-6 +rabbinical_A 2.1546383978108874e-5 +rabbit_N 7.459430024951794e-6 +rabbit_V 2.2678822515534993e-5 +rabbit_burrow_N 3.729715012475897e-6 +rabbit_hole_N 3.729715012475897e-6 +rabbit_hutch_N 3.729715012475897e-6 +rabbit_punch_N 3.729715012475897e-6 +rabbit_warren_N 3.729715012475897e-6 +rabbitfish_N 3.729715012475897e-6 +rabbitweed_N 3.729715012475897e-6 +rabbitwood_N 3.729715012475897e-6 +rabble_N 3.729715012475897e-6 +rabble_rousing_A 1.0773191989054437e-5 +rabelaisian_A 1.0773191989054437e-5 +rabid_A 2.1546383978108874e-5 +rabies_N 3.729715012475897e-6 +raccoon_N 3.729715012475897e-6 +race_N 1.9021546563627073e-4 +race_V 1.5875175760874494e-4 +race_V2 3.219730508556434e-5 +race_V2V 4.675081813931744e-4 +race_VV 3.843936190659235e-4 +race_meeting_N 3.729715012475897e-6 +race_off_V 2.2678822515534993e-5 +raceabout_N 3.729715012475897e-6 +racecard_N 3.729715012475897e-6 +racecourse_N 3.729715012475897e-6 +racehorse_N 2.9837720099807175e-5 +raceme_N 3.729715012475897e-6 +racemose_A 1.0773191989054437e-5 +racer_N 3.729715012475897e-6 +racerunner_N 3.729715012475897e-6 +racetrack_N 3.729715012475897e-6 +raceway_N 3.729715012475897e-6 +rachel_PN 1.865462821325971e-5 +rachis_N 3.729715012475897e-6 +rachitis_N 3.729715012475897e-6 +racial_A 3.1242256768257865e-4 +racialism_N 3.729715012475897e-6 +racialist_N 3.729715012475897e-6 +raciness_N 3.729715012475897e-6 +racing_N 1.4918860049903587e-5 +racism_N 2.237829007485538e-5 +racist_A 1.0773191989054437e-5 +racist_N 7.459430024951794e-6 +rack_N 1.118914503742769e-5 +rack_V2 1.609865254278217e-4 +rack_in_V 2.2678822515534993e-5 +rack_off_V 2.2678822515534993e-5 +rack_out_V 2.2678822515534993e-5 +rack_railway_N 3.729715012475897e-6 +rack_rent_N 3.729715012475897e-6 +rack_up_V2 1.609865254278217e-5 +racker_N 3.729715012475897e-6 +racket_N 1.4918860049903587e-5 +racket_V 2.2678822515534993e-5 +racketeer_N 3.729715012475897e-6 +racketeering_N 8.578344528694562e-5 +rackety_A 1.0773191989054437e-5 +raconteur_N 3.729715012475897e-6 +racoon_N 3.729715012475897e-6 +racquet_N 3.729715012475897e-6 +racquetball_N 3.729715012475897e-6 +racy_A 2.1546383978108874e-5 +rad_N 3.729715012475897e-6 +rada_PN 1.865462821325971e-5 +radar_N 5.2216010174662554e-5 +radcliffe_PN 1.865462821325971e-5 +radcliffe_on_trent_PN 1.865462821325971e-5 +raddled_A 1.0773191989054437e-5 +radial_A 1.0773191989054437e-5 +radial_N 3.729715012475897e-6 +radian_N 3.729715012475897e-6 +radiance_N 3.729715012475897e-6 +radiant_A 2.1546383978108874e-5 +radiate_A 1.0773191989054437e-5 +radiate_V 2.2678822515534993e-5 +radiate_V2 1.609865254278217e-5 +radiation_N 5.967544019961435e-5 +radiator_N 3.729715012475897e-6 +radical_A 2.2623703177014317e-4 +radical_N 1.4918860049903587e-5 +radicalism_N 3.729715012475897e-6 +radicchio_N 3.729715012475897e-6 +radicle_N 3.729715012475897e-6 +radiculitis_N 3.729715012475897e-6 +radio_A 1.0773191989054437e-5 +radio_N 2.275126157610297e-4 +radio_V2 3.219730508556434e-5 +radio_gramophone_N 3.729715012475897e-6 +radio_location_N 3.729715012475897e-6 +radio_set_N 3.729715012475897e-6 +radio_telescope_N 3.729715012475897e-6 +radioactive_A 1.0773191989054437e-5 +radioactivity_N 7.459430024951794e-6 +radiobiologist_N 3.729715012475897e-6 +radiobiology_N 3.729715012475897e-6 +radiocarbon_N 3.729715012475897e-6 +radiochemistry_N 3.729715012475897e-6 +radiochlorine_N 3.729715012475897e-6 +radiogram_N 3.729715012475897e-6 +radiograph_N 3.729715012475897e-6 +radiographer_N 3.729715012475897e-6 +radiographic_A 1.0773191989054437e-5 +radiography_N 3.729715012475897e-6 +radioimmunoassay_N 3.729715012475897e-6 +radioisotope_N 3.729715012475897e-6 +radiolarian_N 3.729715012475897e-6 +radiological_A 1.0773191989054437e-5 +radiologist_N 3.729715012475897e-6 +radiology_N 3.729715012475897e-6 +radiolucent_A 1.0773191989054437e-5 +radiolysis_N 3.729715012475897e-6 +radiometer_N 3.729715012475897e-6 +radiomicrometer_N 3.729715012475897e-6 +radiopacity_N 3.729715012475897e-6 +radiopaque_A 1.0773191989054437e-5 +radiopharmaceutical_N 3.729715012475897e-6 +radiophotograph_N 3.729715012475897e-6 +radiophotography_N 3.729715012475897e-6 +radioprotection_N 3.729715012475897e-6 +radioscopy_N 3.729715012475897e-6 +radiosensitive_A 1.0773191989054437e-5 +radiotelegraph_N 3.729715012475897e-6 +radiotelephone_N 3.729715012475897e-6 +radiotelephonic_A 1.0773191989054437e-5 +radiotherapist_N 3.729715012475897e-6 +radiotherapy_N 3.729715012475897e-6 +radish_N 3.729715012475897e-6 +radium_N 3.729715012475897e-6 +radius_N 3.729715012475897e-6 +radlett_PN 1.865462821325971e-5 +radome_N 3.729715012475897e-6 +radon_N 3.729715012475897e-6 +radstock_PN 1.865462821325971e-5 +raf_N 3.729715012475897e-6 +raffia_N 3.729715012475897e-6 +raffinose_N 3.729715012475897e-6 +raffish_A 1.0773191989054437e-5 +raffle_N 3.729715012475897e-6 +raffle_V2 1.609865254278217e-5 +raft_N 1.118914503742769e-5 +raft_V 2.2678822515534993e-5 +raft_V2 1.609865254278217e-5 +rafter_N 7.459430024951794e-6 +raftered_A 1.0773191989054437e-5 +raftsman_N 3.729715012475897e-6 +rag_N 1.118914503742769e-5 +rag_V2 8.049326271391085e-5 +rag_day_N 3.729715012475897e-6 +ragamuffin_N 3.729715012475897e-6 +ragbag_N 3.729715012475897e-6 +rage_N 4.1026865137234865e-5 +rage_V 1.3607293509320997e-4 +raggedly_Adv 8.668966832532898e-6 +raggedness_N 3.729715012475897e-6 +raglan_N 3.729715012475897e-6 +ragout_N 3.729715012475897e-6 +ragpicker_N 3.729715012475897e-6 +ragsorter_N 3.729715012475897e-6 +ragtag_N 3.729715012475897e-6 +ragtime_N 7.459430024951794e-6 +ragweed_N 3.729715012475897e-6 +ragwort_N 3.729715012475897e-6 +raid_N 1.4918860049903587e-5 +raid_V 6.803646754660499e-5 +raid_V2 4.8295957628346505e-5 +raider_N 1.0443202034932511e-4 +rail_N 7.086458523704203e-5 +rail_V 4.5357645031069986e-5 +rail_V2 1.609865254278217e-5 +railbird_N 3.729715012475897e-6 +railcar_N 2.237829007485538e-5 +railhead_N 3.729715012475897e-6 +railing_N 2.9837720099807175e-5 +raillery_N 3.729715012475897e-6 +railroad_N 1.0443202034932511e-4 +railroad_V2 1.609865254278217e-5 +railway_N 2.237829007485538e-5 +railwayman_N 3.729715012475897e-6 +raiment_N 3.729715012475897e-6 +rain_N 8.951316029942152e-5 +rain_V 9.071529006213997e-5 +rain_V2 3.219730508556434e-5 +rain_down_on_V2 1.609865254278217e-5 +rain_gauge_N 3.729715012475897e-6 +rain_off_V 2.2678822515534993e-5 +rain_out_V 2.2678822515534993e-5 +rainbow_N 7.459430024951794e-6 +raincoat_N 3.729715012475897e-6 +raindrop_N 3.729715012475897e-6 +rainfall_N 3.729715012475897e-6 +rainford_PN 1.865462821325971e-5 +rainless_A 1.0773191989054437e-5 +rainmaker_N 3.729715012475897e-6 +rainmaking_N 3.729715012475897e-6 +rainproof_A 1.0773191989054437e-5 +rainstorm_N 3.729715012475897e-6 +rainwater_N 3.729715012475897e-6 +rainy_A 2.1546383978108874e-5 +raisable_A 1.0773191989054437e-5 +raise_N 5.967544019961435e-5 +raise_V2 7.19609768662363e-3 +raise_V2V 1.402524544179523e-3 +raiser_N 3.356743511228307e-5 +raisin_N 3.729715012475897e-6 +raising_A 1.0773191989054437e-5 +raising_N 3.729715012475897e-6 +raison_d'etre_N 3.729715012475897e-6 +raita_N 3.729715012475897e-6 +raj_N 3.729715012475897e-6 +raja_N 3.729715012475897e-6 +rajah_N 3.729715012475897e-6 +rajanya_N 3.729715012475897e-6 +rake_N 3.729715012475897e-5 +rake_V 4.5357645031069986e-5 +rake_V2 4.8295957628346505e-5 +rake_in_V2 1.609865254278217e-5 +rake_it_in_V2 1.609865254278217e-5 +rake_off_N 3.729715012475897e-6 +rake_off_V2 1.609865254278217e-5 +rake_over_V2 1.609865254278217e-5 +rake_up_V2 1.609865254278217e-5 +rakish_A 1.0773191989054437e-5 +rakishness_N 3.729715012475897e-6 +rallentando_A 1.0773191989054437e-5 +rallentando_Adv 8.668966832532898e-6 +rally_N 4.512955165095835e-4 +rally_V 8.844740781058648e-4 +rally_V2 1.7708517797060386e-4 +rally_V2V 9.350163627863488e-4 +rallying_N 3.729715012475897e-6 +ralph_PN 1.865462821325971e-5 +ram_N 3.729715012475897e-6 +ram_V2 3.219730508556434e-5 +ramadan_N 3.729715012475897e-6 +ramadan_PN 1.865462821325971e-5 +ramble_N 3.729715012475897e-6 +ramble_V 4.5357645031069986e-5 +ramble_on_V 2.2678822515534993e-5 +rambler_N 3.729715012475897e-6 +rambunctious_A 2.1546383978108874e-5 +rambutan_N 3.729715012475897e-6 +ramekin_N 3.729715012475897e-6 +ramie_N 3.729715012475897e-6 +ramification_N 1.4918860049903587e-5 +ramify_V 2.2678822515534993e-5 +ramify_V2 1.609865254278217e-5 +ramipril_N 3.729715012475897e-6 +ramjet_N 3.729715012475897e-6 +rammer_N 3.729715012475897e-6 +ramp_N 2.237829007485538e-5 +ramp_V2 3.219730508556434e-5 +ramp_up_V2 1.609865254278217e-5 +rampage_N 7.459430024951794e-6 +rampage_V 2.2678822515534993e-5 +rampageous_A 1.0773191989054437e-5 +rampant_A 7.541234392338106e-5 +rampart_N 1.118914503742769e-5 +rampion_N 3.729715012475897e-6 +ramrod_N 3.729715012475897e-6 +ramsbottom_PN 1.865462821325971e-5 +ramsgate_PN 1.865462821325971e-5 +ramshackle_A 2.1546383978108874e-5 +ramus_N 3.729715012475897e-6 +ranch_N 4.1026865137234865e-5 +rancher_N 1.118914503742769e-5 +ranching_N 3.729715012475897e-6 +rancid_A 1.0773191989054437e-5 +rancidity_N 3.729715012475897e-6 +rancidness_N 3.729715012475897e-6 +rancorous_A 3.231957596716331e-5 +rancour_N 7.459430024951794e-6 +rand_N 1.118914503742769e-5 +randolph_PN 1.865462821325971e-5 +random_A 5.3865959945272184e-5 +random_N 3.729715012475897e-6 +randomization_N 3.729715012475897e-6 +randomized_A 1.0773191989054437e-5 +randomness_N 7.459430024951794e-6 +randy_A 1.0773191989054437e-5 +ranee_N 3.729715012475897e-6 +rang_up_V 2.2678822515534993e-5 +range_N 4.885926666343425e-4 +range_V 1.8143058012427995e-3 +range_V2 1.609865254278217e-5 +rangefinder_N 3.729715012475897e-6 +rangeland_N 3.729715012475897e-6 +ranger_N 1.8648575062379485e-5 +rangoon_PN 1.865462821325971e-5 +rangpur_N 3.729715012475897e-6 +rangy_A 1.0773191989054437e-5 +rani_N 3.729715012475897e-6 +ranitidine_N 3.729715012475897e-6 +rank_A 2.1546383978108874e-5 +rank_N 6.713487022456614e-5 +rank_V 4.308976277951649e-4 +rank_V2 8.049326271391085e-5 +rank_VS 2.3104025876508982e-4 +ranker_N 3.729715012475897e-6 +ranking_N 1.4918860049903587e-5 +rankle_V 2.2678822515534993e-5 +rankness_N 3.729715012475897e-6 +ransack_V2 1.609865254278217e-5 +ransacking_N 3.729715012475897e-6 +ransom_N 7.459430024951794e-6 +ransom_V2 1.609865254278217e-5 +rant_N 3.729715012475897e-6 +rant_V 2.2678822515534993e-5 +rant_V2 1.609865254278217e-5 +ranter_N 3.729715012475897e-6 +ranula_N 3.729715012475897e-6 +rap_N 1.118914503742769e-5 +rap_V 2.2678822515534993e-5 +rap_V2 1.609865254278217e-5 +rap_out_V2 1.609865254278217e-5 +rapacious_A 1.0773191989054437e-5 +rapacity_N 3.729715012475897e-6 +rape_N 1.2308059541170458e-4 +rape_V2 1.2878922034225736e-4 +raper_N 3.729715012475897e-6 +rapeseed_N 3.729715012475897e-6 +raphe_N 3.729715012475897e-6 +rapid_A 9.157213190696271e-4 +rapid_N 3.729715012475897e-6 +rapidity_N 7.459430024951794e-6 +rapier_N 7.459430024951794e-6 +rapier_thrust_N 3.729715012475897e-6 +rapine_N 3.729715012475897e-6 +rapist_N 1.118914503742769e-5 +rappee_N 3.729715012475897e-6 +rappel_N 3.729715012475897e-6 +rapper_N 3.729715012475897e-6 +rapport_N 1.118914503742769e-5 +rapporteur_N 3.729715012475897e-6 +rapprochement_N 7.459430024951794e-6 +rapscallion_N 3.729715012475897e-6 +rapt_A 1.0773191989054437e-5 +raptorial_A 1.0773191989054437e-5 +rapture_N 3.729715012475897e-6 +rapturous_A 1.0773191989054437e-5 +rare_A 5.494327914417762e-4 +rarebit_N 3.729715012475897e-6 +rarefaction_N 3.729715012475897e-6 +rarefy_V 2.2678822515534993e-5 +rarefy_V2 3.219730508556434e-5 +rareness_N 3.729715012475897e-6 +raring_A 2.1546383978108874e-5 +rariora_N 3.729715012475897e-6 +rarity_N 3.729715012475897e-6 +rascal_N 7.459430024951794e-6 +rascality_N 3.729715012475897e-6 +rascally_A 1.0773191989054437e-5 +rase_V2 1.609865254278217e-5 +rash_A 2.1546383978108874e-5 +rash_N 2.9837720099807175e-5 +rasher_N 3.729715012475897e-6 +rashness_N 3.729715012475897e-6 +rasp_N 3.729715012475897e-6 +rasp_V 2.2678822515534993e-5 +rasp_V2 1.609865254278217e-5 +raspberry_N 7.459430024951794e-6 +raspingly_Adv 8.668966832532898e-6 +raster_N 3.729715012475897e-6 +rat_N 2.6108005087331277e-5 +rat_V 4.5357645031069986e-5 +rat_V2 1.609865254278217e-5 +rat_a_tat_tat_N 3.729715012475897e-6 +rat_on_V2 1.609865254278217e-5 +rat_out_V2 1.609865254278217e-5 +rat_tat_N 3.729715012475897e-6 +rat_through_V2 1.609865254278217e-5 +ratability_N 3.729715012475897e-6 +ratable_A 1.0773191989054437e-5 +ratables_N 3.729715012475897e-6 +ratafia_N 3.729715012475897e-6 +ratan_N 3.729715012475897e-6 +ratatouille_N 3.729715012475897e-6 +ratch_N 3.729715012475897e-6 +ratchet_N 3.729715012475897e-6 +ratchet_up_V2 1.609865254278217e-5 +rate_N 4.647224905544967e-3 +rate_V 5.216129178573049e-4 +rate_V2 9.659191525669301e-5 +rate_VA 1.968503937007874e-3 +rate_VS 2.4836827817247154e-3 +rateability_N 3.729715012475897e-6 +rateable_A 1.0773191989054437e-5 +ratel_N 3.729715012475897e-6 +ratepayer_N 7.459430024951794e-6 +rates_N 3.729715012475897e-6 +rather_Adv 4.594552421242436e-4 +rather_than_Conj 4.3647138910022825e-3 +rather_than_Prep 4.590131217881555e-4 +rathole_N 3.729715012475897e-6 +rathskeller_N 3.729715012475897e-6 +ratification_N 1.8648575062379485e-5 +ratify_V2 1.609865254278217e-4 +rating_N 5.818355419462399e-4 +ratio_N 2.0140461067369843e-4 +ratiocination_N 3.729715012475897e-6 +ratiocinative_A 1.0773191989054437e-5 +ration_N 3.729715012475897e-6 +ration_V2 3.219730508556434e-5 +rational_A 1.6159787983581657e-4 +rationale_N 3.729715012475897e-5 +rationalism_N 3.729715012475897e-6 +rationalist_A 1.0773191989054437e-5 +rationalist_N 3.729715012475897e-6 +rationalistic_A 1.0773191989054437e-5 +rationality_N 7.459430024951794e-6 +rationalization_N 1.4918860049903587e-5 +rationalize_V2 8.049326271391085e-5 +rationing_N 3.729715012475897e-6 +ratite_N 3.729715012475897e-6 +ratlike_A 1.0773191989054437e-5 +ratlin_N 3.729715012475897e-6 +ratline_N 3.729715012475897e-6 +rattan_N 3.729715012475897e-6 +ratter_N 3.729715012475897e-6 +rattle_N 3.729715012475897e-6 +rattle_V 9.071529006213997e-5 +rattle_V2 1.4488787288503951e-4 +rattle_off_V2 1.609865254278217e-5 +rattlebrained_A 1.0773191989054437e-5 +rattlepated_A 1.0773191989054437e-5 +rattler_N 3.729715012475897e-6 +rattlesnake_N 3.729715012475897e-6 +rattling_Adv 8.668966832532898e-6 +rattrap_N 3.729715012475897e-6 +ratty_A 1.0773191989054437e-5 +raucous_A 2.1546383978108874e-5 +raunchy_A 1.0773191989054437e-5 +rauwolfia_N 3.729715012475897e-6 +ravage_N 1.4918860049903587e-5 +ravage_V 4.5357645031069986e-5 +ravage_V2 4.8295957628346505e-5 +ravaging_N 3.729715012475897e-6 +rave_N 3.729715012475897e-6 +rave_V 4.5357645031069986e-5 +rave_V2 3.219730508556434e-5 +rave_up_N 3.729715012475897e-6 +ravehook_N 3.729715012475897e-6 +ravel_V 2.2678822515534993e-5 +ravel_V2 1.609865254278217e-5 +raveling_N 3.729715012475897e-6 +raven_N 3.729715012475897e-6 +ravening_A 1.0773191989054437e-5 +ravenna_PN 1.865462821325971e-5 +ravenous_A 2.1546383978108874e-5 +raver_N 3.729715012475897e-6 +ravigote_N 3.729715012475897e-6 +ravine_N 3.729715012475897e-6 +raving_Adv 8.668966832532898e-6 +raving_N 3.729715012475897e-6 +ravioli_N 3.729715012475897e-6 +ravish_V2 1.609865254278217e-5 +ravishing_A 1.0773191989054437e-5 +ravishment_N 3.729715012475897e-6 +raw_A 3.3396895166068756e-4 +raw_N 1.8648575062379485e-5 +rawboned_A 1.0773191989054437e-5 +rawhide_A 1.0773191989054437e-5 +rawhide_N 3.729715012475897e-6 +rawness_N 3.729715012475897e-6 +rawtenstall_PN 1.865462821325971e-5 +ray_N 3.356743511228307e-5 +ray_PN 1.865462821325971e-5 +ray_V 2.2678822515534993e-5 +ray_V2 1.609865254278217e-5 +rayless_A 1.0773191989054437e-5 +raymond_PN 1.865462821325971e-5 +rayon_N 7.459430024951794e-6 +razbliuto_N 3.729715012475897e-6 +raze_V2 4.8295957628346505e-5 +razing_N 3.729715012475897e-6 +razor_N 1.118914503742769e-5 +razor_V2 1.609865254278217e-5 +razor_edge_N 3.729715012475897e-6 +razorback_A 1.0773191989054437e-5 +razorback_N 3.729715012475897e-6 +razorbacked_A 1.0773191989054437e-5 +razorbill_N 3.729715012475897e-6 +razorblade_N 3.729715012475897e-6 +razzle_N 3.729715012475897e-6 +razzle_dazzle_N 3.729715012475897e-6 +rc_PN 1.865462821325971e-5 +rd_PN 1.865462821325971e-5 +re_N 8.578344528694562e-5 +re_Prep 9.978546125829467e-6 +re_address_V2 1.609865254278217e-5 +re_afforest_V2 1.609865254278217e-5 +re_afforestation_N 3.729715012475897e-6 +re_count_N 3.729715012475897e-6 +re_count_V2 1.609865254278217e-5 +re_cover_V2 1.609865254278217e-5 +re_create_V2 3.219730508556434e-5 +re_echo_N 3.729715012475897e-6 +re_echo_V 2.2678822515534993e-5 +re_elect_V2 6.439461017112868e-5 +re_emerge_V 4.5357645031069986e-5 +re_emphasize_V2 3.219730508556434e-5 +re_enter_V 4.5357645031069986e-5 +re_enter_V2 3.219730508556434e-5 +re_entry_N 3.729715012475897e-6 +re_establish_V2 6.439461017112868e-5 +re_evaluate_V2 8.049326271391085e-5 +re_examine_V2 8.049326271391085e-5 +re_form_V 2.2678822515534993e-5 +re_form_V2 1.609865254278217e-5 +re_formation_N 3.729715012475897e-6 +re_join_V2 1.609865254278217e-5 +re_supply_V2 3.219730508556434e-5 +reach_N 4.475658014971076e-5 +reach_V 1.6782328661495895e-3 +reach_V2 3.734887389925463e-3 +reach_V2V 9.350163627863488e-4 +reach_VA 1.968503937007874e-3 +reach_out_V 2.2678822515534993e-5 +reach_out_for_V2 1.609865254278217e-5 +reach_out_to_V2 1.609865254278217e-5 +react_V 1.1339411257767498e-3 +reactance_N 3.729715012475897e-6 +reactant_N 3.729715012475897e-6 +reaction_N 2.7226919591074043e-4 +reactionary_A 1.0773191989054437e-5 +reactionary_N 3.729715012475897e-6 +reactionism_N 3.729715012475897e-6 +reactivate_V2 4.8295957628346505e-5 +reactive_A 1.0773191989054437e-5 +reactivity_N 3.729715012475897e-6 +reactor_N 3.356743511228307e-5 +read_N 7.459430024951794e-6 +read_V 8.164376105592598e-4 +read_V2 9.820178051097124e-4 +read_VA 1.968503937007874e-3 +read_VS 4.6208051753017965e-4 +read_off_V2 1.609865254278217e-5 +read_out_V2 1.609865254278217e-5 +read_up_on_V2 1.609865254278217e-5 +readability_N 3.729715012475897e-6 +readable_A 1.0773191989054437e-5 +reader_N 1.9021546563627073e-4 +readership_N 1.4918860049903587e-5 +readiness_N 1.4918860049903587e-5 +reading_N 1.1562116538675279e-4 +reading_PN 1.865462821325971e-5 +reading_lamp_N 3.729715012475897e-6 +reading_room_N 3.729715012475897e-6 +readjust_V2 1.609865254278217e-5 +readjustment_N 7.459430024951794e-6 +readmission_N 3.729715012475897e-6 +readmit_V2 3.219730508556434e-5 +readout_N 3.729715012475897e-6 +ready_A 7.756698232119194e-4 +ready_N 3.729715012475897e-6 +ready_V2 3.219730508556434e-5 +ready_made_A 1.0773191989054437e-5 +reaffiliation_N 3.729715012475897e-6 +reaffirm_V2 1.1269056779947518e-4 +reagent_N 3.729715012475897e-6 +reagin_N 3.729715012475897e-6 +real_A 5.677472178231688e-3 +real_N 3.655120712226379e-4 +realgar_N 3.729715012475897e-6 +realign_V2 8.049326271391085e-5 +realism_N 2.237829007485538e-5 +realist_N 1.4918860049903587e-5 +realistic_A 1.4005149585770768e-4 +realistically_Adv 1.7337933665065797e-5 +reality_N 1.268103104241805e-4 +realizable_A 1.0773191989054437e-5 +realization_N 2.237829007485538e-5 +realize_V2 7.727353220535441e-4 +realize_VS 2.1948824582683534e-3 +reallocation_N 3.729715012475897e-6 +reallotment_N 3.729715012475897e-6 +realm_N 1.8648575062379485e-5 +realpolitik_N 3.729715012475897e-6 +realtor_N 3.729715012475897e-6 +realty_N 2.237829007485538e-5 +ream_N 7.459430024951794e-6 +reamer_N 3.729715012475897e-6 +reanimate_V2 1.609865254278217e-5 +reap_V 1.1339411257767497e-4 +reap_V2 1.4488787288503951e-4 +reaper_N 3.729715012475897e-6 +reaping_hook_N 3.729715012475897e-6 +reappear_V 2.2678822515534993e-5 +reappearance_N 1.8648575062379485e-5 +reappoint_V 4.5357645031069986e-5 +reappoint_V2 3.219730508556434e-5 +reappraisal_N 1.118914503742769e-5 +reappraise_V2 6.439461017112868e-5 +rear_N 2.237829007485538e-5 +rear_V 6.803646754660499e-5 +rear_V2 3.219730508556434e-5 +rear_admiral_N 3.729715012475897e-6 +rearguard_N 3.729715012475897e-6 +rearm_V 2.2678822515534993e-5 +rearm_V2 3.219730508556434e-5 +rearmament_N 3.729715012475897e-6 +rearmost_A 1.0773191989054437e-5 +rearrange_V2 4.8295957628346505e-5 +rearrangement_N 7.459430024951794e-6 +rearward_A 1.0773191989054437e-5 +rearward_N 3.729715012475897e-6 +rearwards_Adv 8.668966832532898e-6 +reason_N 8.018887276823178e-4 +reason_V 1.1339411257767497e-4 +reason_V2 1.609865254278217e-5 +reason_VS 4.0432045283890716e-4 +reason_out_V2 1.609865254278217e-5 +reasonable_A 6.140719433761029e-4 +reasonableness_N 3.729715012475897e-6 +reasoner_N 3.729715012475897e-6 +reasoning_N 2.237829007485538e-5 +reasonless_A 1.0773191989054437e-5 +reassemble_V 2.2678822515534993e-5 +reassemble_V2 1.609865254278217e-5 +reassembly_N 3.729715012475897e-6 +reassert_V2 9.659191525669301e-5 +reassertion_N 3.729715012475897e-6 +reassess_V2 6.439461017112868e-5 +reassessment_N 2.237829007485538e-5 +reassign_V2 9.659191525669301e-5 +reassignment_N 3.729715012475897e-6 +reassume_V2 8.049326271391085e-5 +reassurance_N 1.4918860049903587e-5 +reassure_V2 1.4488787288503951e-4 +reassure_V2S 0.12 +reassuring_A 5.3865959945272184e-5 +reattribute_V2 1.609865254278217e-5 +rebarbative_A 1.0773191989054437e-5 +rebate_N 7.086458523704203e-5 +rebecca_PN 1.865462821325971e-5 +rebel_N 1.305400254366564e-4 +rebel_V 4.5357645031069986e-5 +rebellion_N 2.237829007485538e-5 +rebellious_A 3.231957596716331e-5 +rebelliousness_N 3.729715012475897e-6 +rebind_V2 1.609865254278217e-5 +rebirth_N 7.459430024951794e-6 +reborn_A 2.1546383978108874e-5 +rebound_N 1.305400254366564e-4 +rebound_V 9.071529006213998e-4 +rebound_V2 1.2878922034225736e-4 +rebound_V2V 4.675081813931744e-4 +reboxetine_N 3.729715012475897e-6 +rebozo_N 3.729715012475897e-6 +rebroadcast_N 3.729715012475897e-6 +rebuff_N 1.118914503742769e-5 +rebuff_V 4.5357645031069986e-5 +rebuff_V2 1.4488787288503951e-4 +rebuild_V2 3.3807170339842556e-4 +rebuilding_N 3.729715012475897e-6 +rebuke_N 3.729715012475897e-6 +rebuke_V2 3.219730508556434e-5 +rebukingly_Adv 8.668966832532898e-6 +reburying_N 3.729715012475897e-6 +rebus_N 3.729715012475897e-6 +rebut_V2 9.659191525669301e-5 +rebuttal_N 3.729715012475897e-6 +rebutter_N 3.729715012475897e-6 +rec_PN 1.865462821325971e-5 +recalcitrance_N 3.729715012475897e-6 +recalcitrancy_N 3.729715012475897e-6 +recalcitrant_A 1.0773191989054437e-5 +recalculate_V2 6.439461017112868e-5 +recalculation_N 3.729715012475897e-6 +recall_N 3.729715012475897e-5 +recall_V2 4.185649661123364e-4 +recall_VS 2.4836827817247154e-3 +recant_V 2.2678822515534993e-5 +recant_V2 4.8295957628346505e-5 +recantation_N 7.459430024951794e-6 +recap_N 3.729715012475897e-6 +recap_V 2.2678822515534993e-5 +recap_V2 1.609865254278217e-5 +recapitulate_V 2.2678822515534993e-5 +recapitulate_V2 1.609865254278217e-5 +recapitulation_N 7.459430024951794e-6 +recapture_N 3.729715012475897e-6 +recapture_V2 4.8295957628346505e-5 +recast_V2 1.609865254278217e-5 +recce_N 3.729715012475897e-6 +recd_PN 1.865462821325971e-5 +recede_V 6.803646754660499e-5 +receding_N 3.729715012475897e-6 +receipt_N 1.1562116538675279e-4 +receipt_V2 1.609865254278217e-5 +receivable_A 2.1546383978108874e-5 +receivable_N 6.340515521209024e-5 +receive_V 1.6328752211185195e-3 +receive_V2 5.537936474717066e-3 +receiver_N 4.1026865137234865e-5 +receivership_N 1.118914503742769e-5 +receiving_set_N 3.729715012475897e-6 +recency_N 3.729715012475897e-6 +recent_A 9.631233638214666e-3 +recentralize_V2 3.219730508556434e-5 +receptacle_N 3.729715012475897e-6 +reception_N 3.356743511228307e-5 +reception_desk_N 3.729715012475897e-6 +receptionist_N 1.4918860049903587e-5 +receptive_A 4.309276795621775e-5 +receptiveness_N 3.729715012475897e-6 +receptivity_N 7.459430024951794e-6 +receptor_N 7.459430024951794e-6 +recess_N 1.4918860049903587e-5 +recess_V2 3.219730508556434e-5 +recession_N 4.997818116717702e-4 +recessional_A 1.0773191989054437e-5 +recessional_N 3.729715012475897e-6 +recessionary_A 1.0773191989054437e-5 +recessive_A 1.0773191989054437e-5 +rechargeable_A 1.0773191989054437e-5 +rechauffe_N 3.729715012475897e-6 +recherche_A 1.0773191989054437e-5 +recidivism_N 3.729715012475897e-6 +recidivist_N 3.729715012475897e-6 +recife_PN 1.865462821325971e-5 +recipe_N 3.729715012475897e-5 +recipient_N 2.9837720099807175e-5 +reciprocal_A 1.0773191989054437e-5 +reciprocal_N 3.729715012475897e-6 +reciprocality_N 3.729715012475897e-6 +reciprocate_V 2.2678822515534993e-5 +reciprocate_V2 1.609865254278217e-5 +reciprocation_N 3.729715012475897e-6 +reciprocative_A 1.0773191989054437e-5 +reciprocity_N 7.459430024951794e-6 +recirculation_N 3.729715012475897e-6 +recission_N 3.729715012475897e-6 +recital_N 2.6108005087331277e-5 +recitalist_N 3.729715012475897e-6 +recitation_N 3.729715012475897e-6 +recitative_N 3.729715012475897e-6 +recite_V 4.5357645031069986e-5 +recite_V2 4.8295957628346505e-5 +reciter_N 3.729715012475897e-6 +reckless_A 1.72371071824871e-4 +recklessness_N 7.459430024951794e-6 +recklinghausen_PN 1.865462821325971e-5 +reckon_V 6.803646754660499e-5 +reckon_V2 4.8295957628346505e-5 +reckon_VS 4.6208051753017965e-4 +reckon_on_V2 1.609865254278217e-5 +reckoner_N 3.729715012475897e-6 +reckoning_N 1.118914503742769e-5 +reclaim_V2 1.609865254278217e-4 +reclaimable_A 1.0773191989054437e-5 +reclamation_N 3.729715012475897e-6 +reclassification_N 3.729715012475897e-6 +reclassify_V2 4.8295957628346505e-5 +recline_V 2.2678822515534993e-5 +recline_V2 1.609865254278217e-5 +recliner_N 3.729715012475897e-6 +reclining_N 3.729715012475897e-6 +recluse_A 1.0773191989054437e-5 +recluse_N 3.729715012475897e-6 +reclusiveness_N 3.729715012475897e-6 +recoding_N 3.729715012475897e-6 +recognition_N 8.205373027446973e-5 +recognizable_A 6.463915193432663e-5 +recognizance_N 3.729715012475897e-6 +recognize_1_V2 8.371299322246728e-4 +recognize_4_V2 1.609865254278217e-5 +recognize_VS 6.931207762952695e-4 +recoil_N 3.729715012475897e-6 +recoil_V 2.2678822515534993e-5 +recoilless_A 1.0773191989054437e-5 +recollect_V 2.2678822515534993e-5 +recollect_V2 1.609865254278217e-5 +recollection_N 7.459430024951794e-6 +recombinant_A 1.0773191989054437e-5 +recombinant_N 3.729715012475897e-6 +recombination_N 7.459430024951794e-6 +recommend_V2 8.693272373102371e-4 +recommend_V2V 9.350163627863487e-3 +recommendation_N 1.4545888548655997e-4 +recommit_V2 1.609865254278217e-5 +recompense_N 3.729715012475897e-6 +recompense_V2 1.609865254278217e-5 +reconcilable_A 1.0773191989054437e-5 +reconcile_V2 6.439461017112868e-5 +reconciliation_N 4.848629516218666e-5 +recondite_A 1.0773191989054437e-5 +reconditeness_N 3.729715012475897e-6 +recondition_V2 1.609865254278217e-5 +reconfiguration_N 3.729715012475897e-6 +reconnaissance_N 3.729715012475897e-6 +reconnoitre_V 2.2678822515534993e-5 +reconnoitre_V2 1.609865254278217e-5 +reconsecrate_V2 1.609865254278217e-5 +reconsider_V2 1.609865254278217e-4 +reconsider_VS 1.1552012938254491e-4 +reconsideration_N 3.729715012475897e-6 +reconstruct_V2 1.1269056779947518e-4 +reconstruction_N 7.459430024951794e-6 +reconstructive_A 1.0773191989054437e-5 +reconvict_V2 1.609865254278217e-5 +record_N 9.3615846813145e-4 +record_V2 9.981164576524945e-4 +record_breaking_A 2.1546383978108874e-5 +record_player_N 3.729715012475897e-6 +recorder_N 7.086458523704203e-5 +recording_N 7.086458523704203e-5 +recount_N 3.729715012475897e-6 +recount_V2 8.049326271391085e-5 +recount_VS 2.3104025876508982e-4 +recoup_V2 1.7708517797060386e-4 +recourse_N 1.4918860049903587e-5 +recover_V 1.1339411257767498e-3 +recover_V2 4.990582288262473e-4 +recover_V2V 4.675081813931744e-4 +recoverable_A 3.231957596716331e-5 +recovery_N 2.8718805596064407e-4 +recreant_A 1.0773191989054437e-5 +recreant_N 3.729715012475897e-6 +recreate_V2 3.219730508556434e-5 +recreation_N 2.9837720099807175e-5 +recreational_A 9.695872790148993e-5 +recriminate_V 2.2678822515534993e-5 +recrimination_N 3.729715012475897e-6 +recriminative_A 1.0773191989054437e-5 +recriminatory_A 1.0773191989054437e-5 +recrudescence_N 3.729715012475897e-6 +recrudescent_A 1.0773191989054437e-5 +recruit_N 1.4918860049903587e-5 +recruit_V 3.855399827640949e-4 +recruit_V2 1.1269056779947518e-4 +recruiter_N 3.729715012475897e-6 +recruitment_N 1.4918860049903587e-5 +rectal_A 1.0773191989054437e-5 +rectangle_N 1.118914503742769e-5 +rectangular_A 2.1546383978108874e-5 +rectangularity_N 3.729715012475897e-6 +rectification_N 7.459430024951794e-6 +rectifier_N 3.729715012475897e-6 +rectify_V2 4.8295957628346505e-5 +rectilinear_A 2.1546383978108874e-5 +rectitude_N 3.729715012475897e-6 +recto_N 3.729715012475897e-6 +rectocele_N 3.729715012475897e-6 +rector_N 3.729715012475897e-6 +rectorship_N 3.729715012475897e-6 +rectory_N 3.729715012475897e-6 +rectosigmoid_A 1.0773191989054437e-5 +rectum_N 3.729715012475897e-6 +rectus_N 3.729715012475897e-6 +recumbent_A 1.0773191989054437e-5 +recuperate_V 2.2678822515534993e-5 +recuperate_V2 1.609865254278217e-5 +recuperation_N 7.459430024951794e-6 +recuperative_A 1.0773191989054437e-5 +recur_V 1.5875175760874494e-4 +recurrence_N 1.118914503742769e-5 +recurrent_A 2.1546383978108874e-5 +recursion_N 3.729715012475897e-6 +recursive_A 1.0773191989054437e-5 +recurve_V 2.2678822515534993e-5 +recurve_V2 1.609865254278217e-5 +recusancy_N 3.729715012475897e-6 +recusant_A 1.0773191989054437e-5 +recusant_N 3.729715012475897e-6 +recusation_N 3.729715012475897e-6 +recycle_V2 2.575784406845147e-4 +recycling_N 3.729715012475897e-6 +red_A 6.140719433761029e-4 +red_N 5.967544019961435e-5 +red_hot_A 1.0773191989054437e-5 +red_rimmed_A 1.0773191989054437e-5 +redact_N 3.729715012475897e-6 +redact_V2 1.609865254278217e-5 +redaction_N 3.729715012475897e-6 +redberry_N 3.729715012475897e-6 +redbone_N 3.729715012475897e-6 +redbreast_N 3.729715012475897e-6 +redbrick_A 1.0773191989054437e-5 +redbridge_PN 1.865462821325971e-5 +redbud_N 3.729715012475897e-6 +redcap_N 3.729715012475897e-6 +redcoat_N 3.729715012475897e-6 +redden_V 2.2678822515534993e-5 +redden_V2 1.609865254278217e-5 +reddish_A 1.0773191989054437e-5 +redditch_PN 1.865462821325971e-5 +redecorate_V2 1.609865254278217e-5 +rededication_N 3.729715012475897e-6 +redeem_V2 5.795514915401581e-4 +redeemable_A 3.231957596716331e-5 +redeemer_N 3.729715012475897e-6 +redefine_V2 6.439461017112868e-5 +redefinition_N 3.729715012475897e-6 +redemption_N 1.4172917047408407e-4 +redemptive_A 1.0773191989054437e-5 +redeploy_V2 3.219730508556434e-5 +redeployment_N 7.459430024951794e-6 +redeposition_N 3.729715012475897e-6 +redesign_V2 1.2878922034225736e-4 +redetermination_N 3.729715012475897e-6 +redevelop_V2 3.219730508556434e-5 +redevelopment_N 1.118914503742769e-5 +redeye_N 3.729715012475897e-6 +redfish_N 3.729715012475897e-6 +redhead_N 3.729715012475897e-6 +redheaded_A 1.0773191989054437e-5 +redhorse_N 3.729715012475897e-6 +rediffusion_N 3.729715012475897e-6 +rediscover_V2 3.219730508556434e-5 +rediscovery_N 3.729715012475897e-6 +redisposition_N 3.729715012475897e-6 +redistribute_V2 4.8295957628346505e-5 +redistribution_N 1.118914503742769e-5 +redline_V2 3.219730508556434e-5 +redneck_N 3.729715012475897e-6 +redness_N 3.729715012475897e-6 +redo_V2 6.439461017112868e-5 +redolence_N 3.729715012475897e-6 +redolent_A 1.0773191989054437e-5 +redouble_V 2.2678822515534993e-5 +redouble_V2 3.219730508556434e-5 +redoubt_N 7.459430024951794e-6 +redoubtable_A 1.0773191989054437e-5 +redound_V 4.5357645031069986e-5 +redpoll_N 3.729715012475897e-6 +redraft_N 3.729715012475897e-6 +redraw_V2 4.8295957628346505e-5 +redress_N 3.729715012475897e-6 +redress_V2 3.219730508556434e-5 +redruth_PN 1.865462821325971e-5 +redshank_N 3.729715012475897e-6 +redskin_N 3.729715012475897e-6 +redstart_N 3.729715012475897e-6 +redtail_N 3.729715012475897e-6 +reduce_V 1.2926928833854945e-3 +reduce_V2 5.215963423861423e-3 +reducer_N 3.729715012475897e-6 +reducible_A 1.0773191989054437e-5 +reducing_N 3.729715012475897e-6 +reductase_N 3.729715012475897e-6 +reductio_ad_absurdum_N 3.729715012475897e-6 +reduction_N 5.333492467840533e-4 +reductionism_N 3.729715012475897e-6 +reductionist_A 1.0773191989054437e-5 +reductive_A 1.0773191989054437e-5 +redundance_N 3.729715012475897e-6 +redundancy_N 3.729715012475897e-6 +redundant_A 1.0773191989054437e-5 +reduplicate_V2 1.609865254278217e-5 +reduplication_N 3.729715012475897e-6 +redwing_N 3.729715012475897e-6 +redwood_N 3.729715012475897e-6 +reed_N 3.729715012475897e-6 +reedy_A 1.0773191989054437e-5 +reef_N 1.4918860049903587e-5 +reef_V2 1.609865254278217e-5 +reef_knot_N 3.729715012475897e-6 +reefer_N 3.729715012475897e-6 +reefy_A 1.0773191989054437e-5 +reek_N 3.729715012475897e-6 +reek_V 2.2678822515534993e-5 +reel_N 3.729715012475897e-6 +reel_V 2.2678822515534994e-4 +reel_V2 1.609865254278217e-5 +reel_in_V2 1.609865254278217e-5 +reel_off_V2 1.609865254278217e-5 +reel_out_V2 1.609865254278217e-5 +reelection_N 3.729715012475897e-6 +reeler_N 3.729715012475897e-6 +reenactment_N 3.729715012475897e-6 +reenactor_N 3.729715012475897e-6 +reenlistment_N 3.729715012475897e-6 +reentry_N 3.729715012475897e-6 +reevaluation_N 3.729715012475897e-6 +reeve_N 3.729715012475897e-6 +reexamine_V 4.5357645031069986e-5 +ref_N 3.729715012475897e-6 +reface_V2 1.609865254278217e-5 +refashion_N 3.729715012475897e-6 +refashion_V2 3.219730508556434e-5 +refection_N 3.729715012475897e-6 +refectory_N 3.729715012475897e-6 +refer_V 1.2700140608699595e-3 +refer_V2 1.609865254278217e-4 +referable_A 1.0773191989054437e-5 +referee_N 7.459430024951794e-6 +referee_V 2.2678822515534993e-5 +referee_V2 1.609865254278217e-5 +reference_N 6.713487022456614e-5 +referenced_A 1.0773191989054437e-5 +referendum_N 2.237829007485538e-5 +referent_A 1.0773191989054437e-5 +referent_N 3.729715012475897e-6 +referential_A 1.0773191989054437e-5 +referral_N 3.729715012475897e-6 +refile_V2 3.219730508556434e-5 +refill_N 3.729715012475897e-6 +refill_V2 1.609865254278217e-5 +refilling_N 3.729715012475897e-6 +refinance_V 4.989340953417699e-4 +refinance_V2 1.609865254278217e-4 +refine_V 4.762552728262349e-4 +refine_V2 1.1269056779947518e-4 +refinement_N 3.729715012475897e-6 +refiner_N 4.1026865137234865e-5 +refinery_N 1.3426974044913228e-4 +refining_N 3.729715012475897e-6 +refinisher_N 3.729715012475897e-6 +refit_N 3.729715012475897e-6 +refit_V 2.2678822515534993e-5 +refit_V2 3.219730508556434e-5 +reflate_V2 1.609865254278217e-5 +reflation_N 3.729715012475897e-6 +reflect_V 3.855399827640949e-4 +reflect_V2 4.217846966208928e-3 +reflection_N 3.729715012475897e-5 +reflective_A 2.1546383978108874e-5 +reflectiveness_N 3.729715012475897e-6 +reflectometer_N 3.729715012475897e-6 +reflector_N 3.729715012475897e-6 +reflex_A 2.1546383978108874e-5 +reflex_N 3.729715012475897e-6 +reflexed_A 1.0773191989054437e-5 +reflexion_N 3.729715012475897e-6 +reflexive_A 3.231957596716331e-5 +reflexive_N 3.729715012475897e-6 +reflexivity_N 3.729715012475897e-6 +reflexology_N 3.729715012475897e-6 +refloat_V 2.2678822515534993e-5 +refloat_V2 1.609865254278217e-5 +reflux_N 3.729715012475897e-6 +refocus_V 1.5875175760874494e-4 +refocus_V2 8.049326271391085e-5 +refocus_V2V 4.675081813931744e-4 +refocusing_N 3.729715012475897e-6 +reforest_V2 1.609865254278217e-5 +reforestation_N 7.459430024951794e-6 +reform_N 3.8416064628501735e-4 +reform_V 9.071529006213997e-5 +reform_V2 1.609865254278217e-4 +reformation_N 3.729715012475897e-6 +reformative_A 1.0773191989054437e-5 +reformatory_A 1.0773191989054437e-5 +reformatory_N 3.729715012475897e-6 +reformer_N 4.848629516218666e-5 +reformism_N 3.729715012475897e-6 +reformulate_V2 9.659191525669301e-5 +refract_V2 1.609865254278217e-5 +refraction_N 3.729715012475897e-6 +refractive_A 1.0773191989054437e-5 +refractivity_N 3.729715012475897e-6 +refractometer_N 3.729715012475897e-6 +refractoriness_N 3.729715012475897e-6 +refractory_A 3.231957596716331e-5 +refrain_N 7.459430024951794e-6 +refrain_V 1.1339411257767497e-4 +refresh_V2 3.219730508556434e-5 +refresher_N 3.729715012475897e-6 +refreshing_A 3.231957596716331e-5 +refreshment_N 3.729715012475897e-6 +refrigerant_A 1.0773191989054437e-5 +refrigerant_N 3.729715012475897e-6 +refrigerate_V2 1.609865254278217e-5 +refrigeration_N 2.237829007485538e-5 +refrigerator_N 4.1026865137234865e-5 +refuel_V 2.2678822515534993e-5 +refuel_V2 1.609865254278217e-5 +refuge_N 3.356743511228307e-5 +refugee_N 7.086458523704203e-5 +refulgence_N 3.729715012475897e-6 +refulgent_A 1.0773191989054437e-5 +refund_N 1.1562116538675279e-4 +refund_V2 1.7708517797060386e-4 +refurbish_V2 9.659191525669301e-5 +refurnish_V2 1.609865254278217e-5 +refusal_N 4.848629516218666e-5 +refuse_N 7.459430024951794e-6 +refuse_V 5.216129178573049e-4 +refuse_V2 9.659191525669301e-5 +refuse_VV 5.862002690755334e-3 +refuse_collector_N 3.729715012475897e-6 +refutable_A 1.0773191989054437e-5 +refutation_N 3.729715012475897e-6 +refute_V2 6.439461017112868e-5 +reg_PN 1.865462821325971e-5 +regain_V2 4.8295957628346505e-4 +regal_A 1.0773191989054437e-5 +regale_V2 1.609865254278217e-5 +regalia_N 3.729715012475897e-6 +regard_N 3.356743511228307e-5 +regard_V 4.762552728262349e-4 +regard_V2 8.371299322246728e-4 +regardful_A 1.0773191989054437e-5 +regardless_A 1.0773191989054437e-5 +regardless_Adv 8.668966832532898e-6 +regardless_of_Prep 1.0976400738412413e-4 +regatta_N 3.729715012475897e-6 +regency_N 3.729715012475897e-6 +regenerate_A 1.0773191989054437e-5 +regenerate_V 2.2678822515534993e-5 +regenerate_V2 4.8295957628346505e-5 +regeneration_N 3.729715012475897e-6 +regensburg_PN 1.865462821325971e-5 +regent_A 1.0773191989054437e-5 +regent_N 3.729715012475897e-6 +reggae_N 3.729715012475897e-6 +regicide_N 3.729715012475897e-6 +regime_1_N 1.305400254366564e-4 +regime_2_N 3.729715012475897e-6 +regimen_N 7.459430024951794e-6 +regiment_N 3.729715012475897e-6 +regiment_V2 3.219730508556434e-5 +regimental_A 1.0773191989054437e-5 +regimentals_N 3.729715012475897e-6 +regimentation_N 7.459430024951794e-6 +regina_PN 1.865462821325971e-5 +reginald_PN 1.865462821325971e-5 +region_N 3.431337811477825e-4 +regional_A 9.588140870258449e-4 +regionalism_N 3.729715012475897e-6 +register_N 1.118914503742769e-5 +register_V 2.0410940263981494e-4 +register_V2 5.473541864545937e-4 +registrant_N 3.729715012475897e-6 +registrar_N 3.729715012475897e-6 +registration_N 8.578344528694562e-5 +registry_N 3.729715012475897e-6 +regnant_A 1.0773191989054437e-5 +regnellidium_N 3.729715012475897e-6 +regosol_N 3.729715012475897e-6 +regress_N 3.729715012475897e-6 +regress_V 2.2678822515534993e-5 +regression_N 3.729715012475897e-6 +regressive_A 2.1546383978108874e-5 +regret_N 2.9837720099807175e-5 +regret_V2 1.4488787288503951e-4 +regret_VS 1.1552012938254491e-4 +regretful_A 1.0773191989054437e-5 +regrettable_A 5.3865959945272184e-5 +regroup_V 6.803646754660499e-5 +regroup_V2 3.219730508556434e-5 +regular_A 8.079893991790828e-4 +regular_N 3.729715012475897e-6 +regularity_N 7.459430024951794e-6 +regularization_N 3.729715012475897e-6 +regularize_V2 1.609865254278217e-5 +regulate_V2 5.795514915401581e-4 +regulation_A 1.0773191989054437e-5 +regulation_N 3.282149210978789e-4 +regulative_A 1.0773191989054437e-5 +regulator_N 6.004841170086194e-4 +regum_V2 3.219730508556434e-5 +regur_N 3.729715012475897e-6 +regurgitate_V 2.2678822515534993e-5 +regurgitate_V2 1.609865254278217e-5 +regurgitation_N 3.729715012475897e-6 +rehabilitate_V2 6.439461017112868e-5 +rehabilitation_N 2.237829007485538e-5 +rehabilitative_A 1.0773191989054437e-5 +reharmonization_N 3.729715012475897e-6 +rehash_N 7.459430024951794e-6 +rehash_V2 3.219730508556434e-5 +rehear_V2 1.609865254278217e-5 +rehearing_N 1.4918860049903587e-5 +rehearsal_N 3.729715012475897e-6 +rehearse_V 2.2678822515534993e-5 +rehearse_V2 1.609865254278217e-5 +rehouse_V2 1.609865254278217e-5 +reich_N 3.729715012475897e-6 +reigate_PN 1.865462821325971e-5 +reign_N 1.118914503742769e-5 +reign_V 1.3607293509320997e-4 +reignite_V2 9.659191525669301e-5 +reimburse_V2 1.9318383051338602e-4 +reimbursement_N 2.9837720099807175e-5 +reimpose_V2 3.219730508556434e-5 +reimposition_N 3.729715012475897e-6 +rein_N 2.9837720099807175e-5 +rein_V2 1.2878922034225736e-4 +rein_in_V2 1.609865254278217e-5 +reincarnate_A 1.0773191989054437e-5 +reincarnate_V2 1.609865254278217e-5 +reincarnation_N 3.729715012475897e-6 +reincarnationism_N 3.729715012475897e-6 +reindeer_N 3.729715012475897e-6 +reindict_V2 3.219730508556434e-5 +reinforce_V2 4.5076227119790073e-4 +reinforcement_N 4.475658014971076e-5 +reinstall_V2 3.219730508556434e-5 +reinstate_V2 1.609865254278217e-4 +reinstatement_N 2.237829007485538e-5 +reinstitute_V2 3.219730508556434e-5 +reinsurance_N 1.268103104241805e-4 +reinsure_V2 1.609865254278217e-5 +reintegrate_V2 3.219730508556434e-5 +reintegration_N 3.729715012475897e-6 +reinterpret_V2 1.609865254278217e-5 +reinterpretation_N 7.459430024951794e-6 +reintroduce_V2 3.219730508556434e-5 +reintroduction_N 3.729715012475897e-6 +reinvent_V2 6.439461017112868e-5 +reinvest_V2 2.4147978814173252e-4 +reinvigorate_V2 6.439461017112868e-5 +reissue_N 3.729715012475897e-6 +reissue_V2 1.609865254278217e-5 +reiterate_V2 1.7708517797060386e-4 +reiterate_VS 1.7328019407381737e-4 +reiteration_N 3.729715012475897e-6 +reject_N 3.729715012475897e-6 +reject_V2 1.9640356102194247e-3 +rejection_N 8.951316029942152e-5 +rejective_A 1.0773191989054437e-5 +rejig_V2 1.609865254278217e-5 +rejoice_V 2.2678822515534993e-5 +rejoice_V2 1.609865254278217e-5 +rejoicing_N 3.729715012475897e-6 +rejoin_V 4.5357645031069986e-5 +rejoin_V2 9.659191525669301e-5 +rejoinder_N 3.729715012475897e-6 +rejuvenate_V 2.2678822515534993e-5 +rejuvenate_V2 3.219730508556434e-5 +rejuvenation_N 1.118914503742769e-5 +rekindle_V 4.5357645031069986e-5 +rekindle_V2 9.659191525669301e-5 +relapse_N 3.729715012475897e-6 +relapse_V 2.2678822515534993e-5 +relate_V 1.4741234635097745e-3 +relate_V2 1.609865254278217e-3 +relatedness_N 3.729715012475897e-6 +relation_N 2.7599891092321637e-4 +relational_A 1.0773191989054437e-5 +relationship_N 2.9091777097311995e-4 +relative_A 1.3897417665880223e-3 +relative_N 5.2216010174662554e-5 +relativism_N 3.729715012475897e-6 +relativistic_A 1.0773191989054437e-5 +relativistically_Adv 8.668966832532898e-6 +relativity_N 3.729715012475897e-6 +relatum_N 3.729715012475897e-6 +relax_V 2.4946704767088494e-4 +relax_V2 1.1269056779947518e-4 +relaxant_A 1.0773191989054437e-5 +relaxant_N 3.729715012475897e-6 +relaxation_N 2.237829007485538e-5 +relaxer_N 3.729715012475897e-6 +relaxin_N 3.729715012475897e-6 +relay_N 3.729715012475897e-6 +relay_V2 1.609865254278217e-5 +release_N 2.275126157610297e-4 +release_V2 1.6581612119065635e-3 +relegate_V2 3.219730508556434e-5 +relegation_N 3.729715012475897e-6 +relent_V 9.071529006213997e-5 +relentless_A 7.541234392338106e-5 +relentlessness_N 3.729715012475897e-6 +relevance_N 1.118914503742769e-5 +relevancy_N 1.118914503742769e-5 +relevant_A 1.4005149585770768e-4 +reliability_N 3.729715012475897e-6 +reliable_A 8.61855359124355e-5 +reliance_N 4.1026865137234865e-5 +reliant_A 2.1546383978108874e-5 +relic_N 7.459430024951794e-6 +relict_N 3.729715012475897e-6 +relief_N 2.498909058358851e-4 +relieve_V2 3.702690084839899e-4 +reliever_N 3.729715012475897e-6 +religion_N 2.6108005087331277e-5 +religionism_N 3.729715012475897e-6 +religionist_N 3.729715012475897e-6 +religiosity_N 3.729715012475897e-6 +religious_A 5.3865959945272184e-5 +religious_N 3.729715012475897e-6 +religiousness_N 3.729715012475897e-6 +reline_V2 1.609865254278217e-5 +relinquish_V2 1.4488787288503951e-4 +relinquishment_N 3.729715012475897e-6 +reliquary_N 3.729715012475897e-6 +relish_N 1.118914503742769e-5 +relish_V2 4.8295957628346505e-5 +relistening_N 3.729715012475897e-6 +relive_V2 3.219730508556434e-5 +reliving_N 3.729715012475897e-6 +relocate_V 1.3607293509320997e-4 +relocate_V2 3.219730508556434e-5 +relocation_N 3.729715012475897e-5 +reluctance_N 5.967544019961435e-5 +reluctant_A 4.309276795621775e-4 +reluctivity_N 3.729715012475897e-6 +rely_V 1.1792987708078198e-3 +rely_on_V 2.2678822515534993e-5 +rely_on_V2V 1.402524544179523e-3 +remain_V 5.102735065995374e-3 +remain_V2 1.1913002881658804e-3 +remain_VA 0.16929133858267717 +remain_VS 4.6208051753017965e-4 +remain_VV 1.1531808571977706e-3 +remainder_N 7.459430024951794e-5 +remains_N 3.729715012475897e-6 +remake_N 3.729715012475897e-6 +remake_V2 3.219730508556434e-5 +remand_N 3.729715012475897e-6 +remand_V2 3.219730508556434e-5 +remark_N 1.4918860049903588e-4 +remark_V 1.3607293509320997e-4 +remark_V2 1.609865254278217e-5 +remark_VS 2.8880032345636225e-4 +remarkable_A 2.3701022375919762e-4 +remarriage_N 3.729715012475897e-6 +remarry_V 2.2678822515534993e-5 +remarry_V2 1.609865254278217e-5 +remediable_A 1.0773191989054437e-5 +remedial_A 1.0773191989054437e-5 +remedy_N 2.6108005087331277e-5 +remedy_V2 8.049326271391085e-5 +remember_V 3.401823377330249e-4 +remember_V2 4.3466361865511857e-4 +remember_VS 2.8880032345636225e-4 +remembrance_N 7.459430024951794e-6 +remilitarization_N 3.729715012475897e-6 +remilitarize_V2 1.609865254278217e-5 +remind_V2 2.4147978814173252e-4 +reminder_N 4.1026865137234865e-5 +reminisce_V 2.2678822515534993e-5 +reminiscence_N 3.729715012475897e-6 +reminiscent_A 4.309276795621775e-5 +remise_N 3.729715012475897e-6 +remiss_A 2.1546383978108874e-5 +remission_N 3.729715012475897e-6 +remissness_N 3.729715012475897e-6 +remit_N 3.729715012475897e-6 +remit_V 2.2678822515534993e-5 +remit_V2 1.609865254278217e-5 +remittance_N 7.459430024951794e-6 +remittent_A 1.0773191989054437e-5 +remnant_N 7.459430024951794e-6 +remodel_V 1.5875175760874494e-4 +remodel_V2 6.439461017112868e-5 +remonstrance_N 3.729715012475897e-6 +remonstrate_V 2.2678822515534993e-5 +remora_N 3.729715012475897e-6 +remorse_N 1.4918860049903587e-5 +remorseful_A 2.1546383978108874e-5 +remorseless_A 1.0773191989054437e-5 +remote_A 7.541234392338106e-5 +remoteness_N 3.729715012475897e-6 +remould_V2 1.609865254278217e-5 +remount_N 3.729715012475897e-6 +remount_V 2.2678822515534993e-5 +remount_V2 1.609865254278217e-5 +removable_A 2.1546383978108874e-5 +removal_N 4.475658014971076e-5 +remove_N 3.729715012475897e-6 +remove_V 1.5875175760874494e-4 +remove_V2 1.143004330537534e-3 +remover_N 3.729715012475897e-6 +remscheid_PN 1.865462821325971e-5 +remuda_N 3.729715012475897e-6 +remunerate_V2 3.219730508556434e-5 +remuneration_N 3.729715012475897e-6 +remunerative_A 1.0773191989054437e-5 +renaissance_N 1.4918860049903587e-5 +renal_A 3.231957596716331e-5 +rename_V2 3.219730508556434e-5 +rename_V3 1.2698412698412698e-2 +renascence_N 3.729715012475897e-6 +renascent_A 1.0773191989054437e-5 +rend_V2 1.609865254278217e-5 +render_N 3.729715012475897e-6 +render_V2 8.049326271391085e-5 +rendering_N 1.4918860049903587e-5 +rendezvous_N 7.459430024951794e-6 +rendezvous_V 2.2678822515534993e-5 +rendezvouse_V 4.5357645031069986e-5 +rending_A 1.0773191989054437e-5 +rendition_N 1.4918860049903587e-5 +renegade_N 7.459430024951794e-6 +renegade_V 2.2678822515534993e-5 +renege_V 6.803646754660499e-5 +renegotiate_V2 1.2878922034225736e-4 +renegue_V 2.2678822515534993e-5 +renew_V2 9.820178051097124e-4 +renewable_A 1.0773191989054437e-5 +renewal_N 3.356743511228307e-5 +renewing_A 1.0773191989054437e-5 +renfrew_PN 1.865462821325971e-5 +reniform_A 1.0773191989054437e-5 +renin_N 3.729715012475897e-6 +rennes_PN 1.865462821325971e-5 +rennet_N 3.729715012475897e-6 +rennin_N 3.729715012475897e-6 +renounce_V2 9.659191525669301e-5 +renovate_V2 1.2878922034225736e-4 +renovation_N 1.4918860049903587e-5 +renovator_N 3.729715012475897e-6 +renown_N 7.459430024951794e-6 +renowned_A 3.231957596716331e-5 +rensselaerite_N 3.729715012475897e-6 +rent_N 1.1562116538675279e-4 +rent_V 1.5875175760874494e-4 +rent_V2 6.439461017112868e-5 +rent_collector_N 3.729715012475897e-6 +rent_free_A 1.0773191989054437e-5 +rent_free_Adv 8.668966832532898e-6 +rent_out_V2 1.609865254278217e-5 +rent_rebate_N 3.729715012475897e-6 +rent_roll_N 3.729715012475897e-6 +rentable_A 1.0773191989054437e-5 +rental_A 1.0773191989054437e-5 +rental_N 2.9837720099807175e-5 +renter_N 3.729715012475897e-6 +rentier_N 3.729715012475897e-6 +renunciant_A 1.0773191989054437e-5 +renunciation_N 7.459430024951794e-6 +reoffer_V2 1.609865254278217e-5 +reopen_V 2.9482469270195494e-4 +reopen_V2 3.8636766102677204e-4 +reorder_N 3.729715012475897e-6 +reordering_N 3.729715012475897e-6 +reorganization_N 2.9837720099807176e-4 +reorganize_V 4.5357645031069986e-5 +reorganize_V2 1.4488787288503951e-4 +reorient_V 2.2678822515534993e-5 +reorient_V2 3.219730508556434e-5 +reorientate_V 2.2678822515534993e-5 +reorientate_V2 1.609865254278217e-5 +reorientation_N 3.729715012475897e-6 +reovirus_N 3.729715012475897e-6 +rep_N 1.4918860049903587e-5 +repackage_V2 4.8295957628346505e-5 +repaint_V2 4.8295957628346505e-5 +repair_N 1.4545888548655997e-4 +repair_V 1.5875175760874494e-4 +repair_V2 3.702690084839899e-4 +repairable_A 1.0773191989054437e-5 +repairer_N 3.729715012475897e-6 +repairman_N 3.729715012475897e-6 +repand_A 1.0773191989054437e-5 +reparable_A 1.0773191989054437e-5 +reparation_N 1.8648575062379485e-5 +repartee_N 3.729715012475897e-6 +repass_V2 4.8295957628346505e-5 +repast_N 3.729715012475897e-6 +repatriate_N 3.729715012475897e-6 +repatriate_V2 4.8295957628346505e-5 +repatriation_N 7.459430024951794e-6 +repay_V 1.1339411257767497e-4 +repay_V2 4.990582288262473e-4 +repayable_A 2.1546383978108874e-5 +repayment_N 5.967544019961435e-5 +repeal_N 5.2216010174662554e-5 +repeal_V2 1.609865254278217e-4 +repeat_N 4.475658014971076e-5 +repeat_V 1.8143058012427994e-4 +repeat_V2 4.5076227119790073e-4 +repeat_VS 1.1552012938254491e-4 +repeatable_A 1.0773191989054437e-5 +repeatedly_Adv 8.668966832532898e-6 +repeater_N 7.459430024951794e-6 +repechage_N 3.729715012475897e-6 +repel_V2 6.439461017112868e-5 +repellent_A 2.1546383978108874e-5 +repellent_N 3.729715012475897e-6 +repent_V 2.2678822515534993e-5 +repent_V2 1.609865254278217e-5 +repentance_N 3.729715012475897e-6 +repentant_A 1.0773191989054437e-5 +repercussion_N 1.8648575062379485e-5 +repertoire_N 1.118914503742769e-5 +repertory_N 3.729715012475897e-6 +repetition_N 7.459430024951794e-6 +repetitious_A 1.0773191989054437e-5 +repetitive_A 3.231957596716331e-5 +repetitiveness_N 3.729715012475897e-6 +repine_V 2.2678822515534993e-5 +replace_V2 1.8352463898771672e-3 +replace_VV 1.9219680953296174e-4 +replaceability_N 3.729715012475897e-6 +replaceable_A 1.0773191989054437e-5 +replacement_N 1.08161735361801e-4 +replant_V2 1.609865254278217e-5 +replaster_V2 3.219730508556434e-5 +replay_N 2.6108005087331277e-5 +replay_V2 1.609865254278217e-5 +replenish_V2 8.049326271391085e-5 +replenishment_N 3.729715012475897e-6 +replete_A 4.309276795621775e-5 +repletion_N 3.729715012475897e-6 +replica_N 7.459430024951794e-6 +replicate_V2 1.1269056779947518e-4 +replication_N 3.729715012475897e-6 +reply_N 1.8648575062379485e-5 +reply_V 3.401823377330249e-4 +reply_V2 1.609865254278217e-5 +reply_VS 5.776006469127245e-4 +reply_paid_A 1.0773191989054437e-5 +repoint_V2 1.609865254278217e-5 +repond_V 4.5357645031069986e-5 +report_N 1.6037774553646356e-3 +report_V 3.719326892547739e-3 +report_V2 6.391165059484521e-3 +report_V2V 9.350163627863488e-4 +report_VS 8.779529833073414e-3 +report_in_V 2.2678822515534993e-5 +reportable_A 1.0773191989054437e-5 +reportage_N 3.729715012475897e-6 +reportedly_Adv 2.3406210447838826e-4 +reporter_N 2.7599891092321637e-4 +repose_N 3.729715012475897e-6 +repose_V 2.2678822515534993e-5 +repose_V2 1.609865254278217e-5 +reposeful_A 1.0773191989054437e-5 +repositing_N 3.729715012475897e-6 +reposition_V2 4.8295957628346505e-5 +repositioning_N 3.729715012475897e-6 +repository_N 7.459430024951794e-6 +repossess_V2 8.049326271391085e-5 +repossession_N 3.729715012475897e-6 +repot_V2 1.609865254278217e-5 +repp_N 3.729715012475897e-6 +reprehend_V2 1.609865254278217e-5 +reprehensibility_N 3.729715012475897e-6 +reprehensible_A 1.0773191989054437e-5 +represent_V 3.855399827640949e-4 +represent_V2 3.41291433906982e-3 +representable_A 1.0773191989054437e-5 +representation_N 4.475658014971076e-5 +representational_A 1.0773191989054437e-5 +representativeFem_N 3.729715012475897e-6 +representativeMasc_N 2.7599891092321637e-4 +representative_A 7.541234392338106e-5 +repress_V2 4.8295957628346505e-5 +repression_N 3.356743511228307e-5 +repressive_A 2.1546383978108874e-5 +repressor_N 3.729715012475897e-6 +reprieve_N 1.118914503742769e-5 +reprieve_V2 1.609865254278217e-5 +reprimand_N 3.729715012475897e-6 +reprimand_V2 1.609865254278217e-5 +reprint_N 3.729715012475897e-6 +reprint_V2 8.049326271391085e-5 +reprisal_N 7.459430024951794e-6 +reproach_N 3.729715012475897e-6 +reproach_V2 1.609865254278217e-5 +reproachful_A 1.0773191989054437e-5 +reprobate_N 3.729715012475897e-6 +reprobate_V2 1.609865254278217e-5 +reprobation_N 3.729715012475897e-6 +reproduce_V 4.5357645031069986e-5 +reproduce_V2 4.8295957628346505e-5 +reproducer_N 3.729715012475897e-6 +reproducibility_N 3.729715012475897e-6 +reproducible_A 1.0773191989054437e-5 +reproduction_N 7.459430024951794e-6 +reproductive_A 3.231957596716331e-5 +reproof_N 3.729715012475897e-6 +reproof_V2 1.609865254278217e-5 +reprove_V2 3.219730508556434e-5 +reprovingly_Adv 8.668966832532898e-6 +reps_N 3.729715012475897e-6 +reptile_N 3.729715012475897e-6 +reptilian_A 2.1546383978108874e-5 +reptilian_N 3.729715012475897e-6 +republic_N 5.2216010174662554e-5 +republican_A 3.986081035950142e-4 +republican_N 6.713487022456614e-5 +republicanism_N 3.729715012475897e-6 +republication_N 3.729715012475897e-6 +repudiate_V2 4.8295957628346505e-5 +repudiation_N 7.459430024951794e-6 +repudiative_A 1.0773191989054437e-5 +repugnance_N 3.729715012475897e-6 +repugnant_A 1.0773191989054437e-5 +repulse_N 3.729715012475897e-6 +repulse_V2 1.609865254278217e-5 +repulsion_N 3.729715012475897e-6 +repulsive_A 1.0773191989054437e-5 +repurchase_V2 1.609865254278217e-4 +reputable_A 1.0773191989054437e-4 +reputation_N 1.6410746054893946e-4 +repute_N 3.729715012475897e-6 +repute_V2 3.219730508556434e-5 +repute_V2V 9.350163627863488e-4 +reputedly_Adv 8.668966832532898e-6 +request_N 3.394040661353066e-4 +request_V2 5.956501440829402e-4 +request_VS 2.3104025876508982e-4 +requiem_N 3.729715012475897e-6 +requiescat_N 3.729715012475897e-6 +require_V 1.2473352383544245e-3 +require_V2 2.173318093275593e-3 +require_V2V 4.581580177653109e-2 +require_VS 1.5017616819730838e-3 +require_VV 3.843936190659235e-4 +requirement_N 3.5805264119768607e-4 +requisite_A 3.231957596716331e-5 +requisite_N 3.729715012475897e-6 +requisiteness_N 3.729715012475897e-6 +requisition_N 7.459430024951794e-6 +requisition_V2 3.219730508556434e-5 +requital_N 3.729715012475897e-6 +requite_V2 1.609865254278217e-5 +reread_V2 1.609865254278217e-5 +rerebrace_N 3.729715012475897e-6 +reredos_N 3.729715012475897e-6 +reroute_V2 8.049326271391085e-5 +rerun_N 4.848629516218666e-5 +rerun_V2 1.609865254278217e-5 +res_N 3.729715012475897e-6 +resale_N 3.729715012475897e-6 +reschedule_V2 1.1269056779947518e-4 +rescind_V2 1.7708517797060386e-4 +rescindable_A 1.0773191989054437e-5 +rescript_N 3.729715012475897e-6 +rescue_N 8.578344528694562e-5 +rescue_V2 1.609865254278217e-4 +rescuer_N 1.118914503742769e-5 +research_N 1.0032933383560163e-3 +research_V 6.803646754660499e-5 +research_V2 8.049326271391085e-5 +researcherFem_N 3.729715012475897e-6 +researcherMasc_N 3.878903612974933e-4 +reseat_V2 1.609865254278217e-5 +reseau_N 3.729715012475897e-6 +resection_N 3.729715012475897e-6 +reseda_N 3.729715012475897e-6 +reseed_V2 1.609865254278217e-5 +resell_V2 1.609865254278217e-4 +resemblance_N 2.9837720099807175e-5 +resemble_V2 3.058743983128612e-4 +resent_V2 6.439461017112868e-5 +resent_VS 1.1552012938254491e-4 +resentful_A 3.231957596716331e-5 +resentment_N 2.6108005087331277e-5 +reserpine_N 3.729715012475897e-6 +reservation_N 5.594572518713845e-5 +reserve_N 7.347538574577516e-4 +reserve_V 1.1339411257767497e-4 +reserve_V2 1.7708517797060386e-4 +reservedly_Adv 8.668966832532898e-6 +reservist_N 3.729715012475897e-6 +reservoir_N 1.8648575062379485e-5 +reset_N 7.459430024951794e-6 +reset_V 1.3607293509320997e-4 +reset_V2 1.609865254278217e-4 +resettle_V 2.2678822515534993e-5 +resettle_V2 1.609865254278217e-5 +resettlement_N 3.729715012475897e-6 +resh_N 3.729715012475897e-6 +reshape_V2 1.609865254278217e-4 +reshipment_N 3.729715012475897e-6 +reshuffle_N 7.459430024951794e-6 +reshuffle_V2 6.439461017112868e-5 +reside_V 1.3607293509320997e-4 +residence_N 4.1026865137234865e-5 +residency_N 3.729715012475897e-6 +resident_A 2.1546383978108874e-5 +resident_N 2.4616119082340916e-4 +residential_A 3.1242256768257865e-4 +residual_A 4.309276795621775e-5 +residual_N 3.729715012475897e-6 +residuary_A 1.0773191989054437e-5 +residue_N 1.118914503742769e-5 +resign_V 2.0864516714292195e-3 +resign_V2 2.7367709322729687e-4 +resign_V2V 4.675081813931744e-4 +resign_VS 1.7328019407381737e-4 +resign_VV 1.1531808571977706e-3 +resignation_N 2.275126157610297e-4 +resignedly_Adv 8.668966832532898e-6 +resilience_N 2.6108005087331277e-5 +resiliency_N 2.237829007485538e-5 +resilient_A 7.541234392338106e-5 +resin_N 2.6108005087331277e-5 +resinated_A 1.0773191989054437e-5 +resinlike_A 1.0773191989054437e-5 +resinoid_N 3.729715012475897e-6 +resinous_A 1.0773191989054437e-5 +resist_V 1.5875175760874494e-4 +resist_V2 4.185649661123364e-4 +resist_VV 2.8829521429944266e-4 +resistance_N 1.6410746054893946e-4 +resistant_A 5.3865959945272184e-5 +resister_N 3.729715012475897e-6 +resistible_A 1.0773191989054437e-5 +resistive_A 1.0773191989054437e-5 +resistivity_N 3.729715012475897e-6 +resistless_A 1.0773191989054437e-5 +resistor_N 3.729715012475897e-6 +resold_V2 3.219730508556434e-5 +resole_V2 1.609865254278217e-5 +resolute_A 1.0773191989054437e-5 +resoluteness_N 3.729715012475897e-6 +resolution_N 1.4918860049903588e-4 +resolvable_A 1.0773191989054437e-5 +resolve_N 1.8648575062379485e-5 +resolve_V 1.8143058012427994e-4 +resolve_V2 8.210312796818907e-4 +resolve_VV 1.9219680953296174e-4 +resonance_N 1.4918860049903587e-5 +resonant_A 2.1546383978108874e-5 +resonate_V 9.071529006213997e-5 +resonate_V2 1.609865254278217e-5 +resonator_N 3.729715012475897e-6 +resorcinol_N 3.729715012475897e-6 +resorption_N 3.729715012475897e-6 +resort_N 1.6410746054893946e-4 +resort_V 1.3607293509320997e-4 +resound_V 2.2678822515534993e-5 +resound_V2 1.609865254278217e-5 +resoundingly_Adv 8.668966832532898e-6 +resource_N 2.4616119082340916e-4 +resourceful_A 2.1546383978108874e-5 +resourcefulness_N 3.729715012475897e-6 +resourceless_A 1.0773191989054437e-5 +respect_N 6.340515521209024e-5 +respect_V2 2.4147978814173252e-4 +respectability_N 2.6108005087331277e-5 +respectable_A 6.463915193432663e-5 +respecter_N 3.729715012475897e-6 +respectful_A 3.231957596716331e-5 +respective_A 3.986081035950142e-4 +respects_N 3.729715012475897e-6 +respiration_N 3.729715012475897e-6 +respirator_N 3.729715012475897e-6 +respiratory_A 2.1546383978108874e-5 +respire_V 2.2678822515534993e-5 +respite_N 7.459430024951794e-6 +respite_V2 1.609865254278217e-5 +resplendence_N 3.729715012475897e-6 +resplendency_N 3.729715012475897e-6 +resplendent_A 1.0773191989054437e-5 +respond_V 1.9276999138204745e-3 +respond_V2 3.219730508556434e-5 +respond_VS 5.198405822214521e-4 +respondent_N 9.697259032437332e-5 +response_N 4.587549465345353e-4 +responsibility_N 2.7226919591074043e-4 +responsible_A 7.541234392338106e-4 +responsive_A 1.0773191989054437e-4 +responsiveness_N 3.729715012475897e-6 +rest_N 4.1399836638482455e-4 +rest_V 1.8143058012427994e-4 +rest_V2 3.219730508556434e-5 +rest_VA 1.968503937007874e-3 +rest_cure_N 3.729715012475897e-6 +rest_day_N 3.729715012475897e-6 +rest_home_N 3.729715012475897e-6 +rest_house_N 3.729715012475897e-6 +restart_V 9.071529006213997e-5 +restart_V2 8.049326271391085e-5 +restate_V2 3.3807170339842556e-4 +restate_V2V 9.350163627863488e-4 +restatement_N 1.8648575062379485e-5 +restaurant_N 2.9837720099807176e-4 +restauranteur_N 3.729715012475897e-6 +restaurateur_N 3.729715012475897e-6 +rester_N 3.729715012475897e-6 +restful_A 1.0773191989054437e-5 +restfulness_N 3.729715012475897e-6 +restharrow_N 3.729715012475897e-6 +restitution_N 2.6108005087331277e-5 +restive_A 1.0773191989054437e-5 +restiveness_N 3.729715012475897e-6 +restless_A 2.1546383978108874e-5 +restlessness_N 3.729715012475897e-6 +restock_V2 1.609865254278217e-5 +restoration_N 3.356743511228307e-5 +restorative_A 1.0773191989054437e-5 +restorative_N 3.729715012475897e-6 +restore_V2 8.53228584767455e-4 +restorer_N 7.459430024951794e-6 +restrain_V2 2.575784406845147e-4 +restrainer_N 3.729715012475897e-6 +restraint_N 8.205373027446973e-5 +restrict_V 3.175035152174899e-4 +restrict_V2 8.210312796818907e-4 +restriction_N 3.431337811477825e-4 +restrictive_A 1.0773191989054437e-4 +restrictiveness_N 3.729715012475897e-6 +restructure_V 4.581122148138069e-3 +restructure_V2 4.0246631356955425e-4 +restructure_V2V 9.350163627863488e-4 +result_N 2.16323470723602e-3 +result_V 3.764684537578809e-3 +resultant_A 1.0773191989054437e-5 +resultant_N 3.729715012475897e-6 +resume_N 7.459430024951794e-6 +resume_V 5.896493854039099e-4 +resume_V2 7.083407118824154e-4 +resume_VS 2.3104025876508982e-4 +resumption_N 1.8648575062379485e-5 +resurface_V 9.071529006213997e-5 +resurface_V2 1.609865254278217e-5 +resurgence_N 1.8648575062379485e-5 +resurgent_A 5.3865959945272184e-5 +resurrect_V 6.803646754660499e-5 +resurrect_V2 1.1269056779947518e-4 +resurrection_N 7.459430024951794e-6 +resurvey_N 3.729715012475897e-6 +resuscitate_V 2.2678822515534993e-5 +resuscitate_V2 4.8295957628346505e-5 +resuscitation_N 3.729715012475897e-6 +resuscitator_N 3.729715012475897e-6 +resuspension_N 3.729715012475897e-6 +ret_PN 1.865462821325971e-5 +ret_V2 1.609865254278217e-5 +retail_Adv 8.668966832532898e-6 +retail_N 9.324287531189741e-5 +retail_V 1.2926928833854945e-3 +retail_V2 1.609865254278217e-5 +retailer_N 3.6924178623511377e-4 +retailing_N 3.729715012475897e-6 +retain_V2 1.4488787288503952e-3 +retain_V2V 9.350163627863488e-4 +retainer_N 1.118914503742769e-5 +retake_N 3.729715012475897e-6 +retake_V2 3.219730508556434e-5 +retaliate_V 4.5357645031069986e-5 +retaliation_N 2.6108005087331277e-5 +retaliative_A 1.0773191989054437e-5 +retaliatory_A 1.0773191989054437e-5 +retard_V2 8.049326271391085e-5 +retardant_N 3.729715012475897e-6 +retardation_N 7.459430024951794e-6 +retch_V 2.2678822515534993e-5 +retd_PN 1.865462821325971e-5 +retell_V2 1.609865254278217e-5 +retem_N 3.729715012475897e-6 +retention_N 1.118914503742769e-5 +retentive_A 2.1546383978108874e-5 +retentiveness_N 3.729715012475897e-6 +retford_PN 1.865462821325971e-5 +rethink_N 7.459430024951794e-6 +rethink_V 2.2678822515534993e-5 +rethink_V2 4.8295957628346505e-5 +reticence_N 7.459430024951794e-6 +reticent_A 2.1546383978108874e-5 +reticle_N 3.729715012475897e-6 +reticulate_A 1.0773191989054437e-5 +reticulate_V 2.2678822515534993e-5 +reticulate_V2 1.609865254278217e-5 +reticulation_N 3.729715012475897e-6 +reticule_N 3.729715012475897e-6 +reticulocyte_N 3.729715012475897e-6 +reticulum_N 3.729715012475897e-6 +retina_N 3.729715012475897e-6 +retinal_A 2.1546383978108874e-5 +retinene_N 3.729715012475897e-6 +retinitis_N 3.729715012475897e-6 +retinoblastoma_N 3.729715012475897e-6 +retinopathy_N 3.729715012475897e-6 +retinue_N 3.729715012475897e-6 +retire_N 3.729715012475897e-6 +retire_V 1.1566199482922848e-3 +retire_V2 5.312555339118116e-4 +retiree_N 3.729715012475897e-6 +retirement_N 2.7599891092321637e-4 +retool_V2 3.219730508556434e-5 +retort_N 7.459430024951794e-6 +retort_V2 1.609865254278217e-5 +retort_VS 1.1552012938254491e-4 +retouch_V2 1.609865254278217e-5 +retrace_V2 3.219730508556434e-5 +retract_V 2.2678822515534993e-5 +retract_V2 3.219730508556434e-5 +retractable_A 2.1546383978108874e-5 +retractile_A 1.0773191989054437e-5 +retraction_N 3.729715012475897e-6 +retractor_N 3.729715012475897e-6 +retraining_N 3.729715012475897e-6 +retral_A 1.0773191989054437e-5 +retransmit_V2 1.609865254278217e-5 +retread_N 3.729715012475897e-6 +retread_V2 1.609865254278217e-5 +retreat_N 4.848629516218666e-5 +retreat_V 4.535764503106999e-4 +retreat_V2 3.219730508556434e-5 +retreatant_N 3.729715012475897e-6 +retreated_N 3.729715012475897e-6 +retrench_V 4.5357645031069986e-5 +retrench_V2 1.609865254278217e-5 +retrenchment_N 1.4918860049903587e-5 +retrial_N 1.118914503742769e-5 +retribution_N 1.4918860049903587e-5 +retributive_A 1.0773191989054437e-5 +retrievable_A 1.0773191989054437e-5 +retrieval_N 1.118914503742769e-5 +retrieve_V 9.071529006213997e-5 +retrieve_V2 9.659191525669301e-5 +retriever_N 3.729715012475897e-6 +retro_N 3.729715012475897e-6 +retroactive_A 3.231957596716331e-5 +retrofit_N 3.729715012475897e-6 +retrofit_V2 9.659191525669301e-5 +retroflection_N 3.729715012475897e-6 +retroflex_A 1.0773191989054437e-5 +retrograde_A 1.0773191989054437e-5 +retrograde_V 2.2678822515534993e-5 +retrogress_V 2.2678822515534993e-5 +retrogression_N 3.729715012475897e-6 +retrogressive_A 1.0773191989054437e-5 +retronym_N 3.729715012475897e-6 +retrorocket_N 3.729715012475897e-6 +retrorse_A 1.0773191989054437e-5 +retrospect_N 7.459430024951794e-6 +retrospection_N 3.729715012475897e-6 +retrospective_A 2.1546383978108874e-5 +retrospective_N 3.729715012475897e-6 +retrousse_A 1.0773191989054437e-5 +retroversion_N 3.729715012475897e-6 +retrovirus_N 3.729715012475897e-6 +retrovision_N 3.729715012475897e-6 +retsina_N 3.729715012475897e-6 +return_N 1.0517796335182028e-3 +return_V 2.403955186646709e-3 +return_V2 7.566366695107619e-4 +return_V2V 9.350163627863488e-4 +returnable_A 1.0773191989054437e-5 +reunification_N 4.475658014971076e-5 +reunion_N 1.4918860049903587e-5 +reunite_V 2.2678822515534993e-5 +reunite_V2 4.8295957628346505e-5 +reuptake_N 3.729715012475897e-6 +rev_N 3.729715012475897e-6 +rev_PN 1.865462821325971e-5 +rev_V 4.5357645031069986e-5 +rev_V2 1.609865254278217e-5 +revaluation_N 3.729715012475897e-6 +revalue_V2 3.219730508556434e-5 +revamp_V2 3.058743983128612e-4 +revd_PN 1.865462821325971e-5 +reveal_V2 3.058743983128612e-4 +reveal_VS 8.664009703690869e-4 +revealing_A 1.0773191989054437e-5 +reveille_N 3.729715012475897e-6 +revel_N 7.459430024951794e-6 +revel_V 6.803646754660499e-5 +revelation_N 1.8648575062379485e-5 +reveler_N 3.729715012475897e-6 +reveller_N 3.729715012475897e-6 +revelry_N 3.729715012475897e-6 +revenant_A 1.0773191989054437e-5 +revenant_N 3.729715012475897e-6 +revenge_N 1.118914503742769e-5 +revenge_V2 1.609865254278217e-5 +revengeful_A 1.0773191989054437e-5 +revenue_N 2.1930724273358272e-3 +revenuer_N 3.729715012475897e-6 +reverberant_A 1.0773191989054437e-5 +reverberate_V 1.1339411257767497e-4 +reverberate_V2 1.609865254278217e-5 +reverberation_N 7.459430024951794e-6 +revere_V2 1.609865254278217e-5 +reverence_N 7.459430024951794e-6 +reverence_V2 1.609865254278217e-5 +reverend_A 1.0773191989054437e-5 +reverend_N 3.729715012475897e-6 +reverent_A 1.0773191989054437e-5 +reverential_A 2.1546383978108874e-5 +reverie_N 3.729715012475897e-6 +revers_N 3.729715012475897e-6 +reversal_N 5.967544019961435e-5 +reverse_A 4.309276795621775e-5 +reverse_N 2.237829007485538e-5 +reverse_V 2.0410940263981494e-4 +reverse_V2 4.668609237406829e-4 +reversibility_N 3.729715012475897e-6 +reversible_A 3.231957596716331e-5 +reversible_N 3.729715012475897e-6 +reversion_N 3.729715012475897e-6 +reversionary_A 1.0773191989054437e-5 +reversioner_N 3.729715012475897e-6 +revert_V 1.3607293509320997e-4 +revertible_A 1.0773191989054437e-5 +revetment_N 3.729715012475897e-6 +review_N 2.3124233077350558e-4 +review_V 4.762552728262349e-4 +review_V2 6.922420593396333e-4 +reviewer_N 3.729715012475897e-6 +revile_V 2.2678822515534993e-5 +revile_V2 1.609865254278217e-5 +revise_N 3.729715012475897e-6 +revise_V 5.216129178573049e-4 +revise_V2 1.046412415280841e-3 +reviser_N 3.729715012475897e-6 +revision_N 7.459430024951794e-5 +revisionism_N 3.729715012475897e-6 +revisionist_N 3.729715012475897e-6 +revisit_V2 8.049326271391085e-5 +revitalization_N 3.729715012475897e-6 +revitalize_V2 4.8295957628346505e-5 +revival_N 6.340515521209024e-5 +revivalism_N 3.729715012475897e-6 +revivalist_N 3.729715012475897e-6 +revivalistic_A 1.0773191989054437e-5 +revive_V 2.0410940263981494e-4 +revive_V2 7.083407118824154e-4 +revivify_V2 1.609865254278217e-5 +revocable_A 1.0773191989054437e-5 +revocation_N 3.729715012475897e-6 +revoke_N 3.729715012475897e-6 +revoke_V 1.3607293509320997e-4 +revoke_V2 1.4488787288503951e-4 +revolt_N 1.4918860049903587e-5 +revolt_V 4.5357645031069986e-5 +revolt_V2 1.609865254278217e-5 +revolution_N 7.832401526199384e-5 +revolutionary_A 7.541234392338106e-5 +revolutionary_N 1.118914503742769e-5 +revolutionism_N 3.729715012475897e-6 +revolutionist_N 3.729715012475897e-6 +revolutionize_V2 6.439461017112868e-5 +revolve_V 2.2678822515534994e-4 +revolve_V2 1.609865254278217e-5 +revolver_N 3.729715012475897e-6 +revue_N 3.729715012475897e-6 +revulsion_N 3.729715012475897e-6 +reward_N 7.459430024951794e-5 +reward_V2 2.7367709322729687e-4 +rewardful_A 1.0773191989054437e-5 +rewarding_A 1.0773191989054437e-5 +rewire_V2 1.609865254278217e-5 +reword_V2 1.609865254278217e-5 +rewording_N 3.729715012475897e-6 +rework_V2 3.219730508556434e-5 +rewrite_N 3.729715012475897e-6 +rewrite_V2 1.4488787288503951e-4 +rewriting_N 3.729715012475897e-6 +rex_PN 1.865462821325971e-5 +reykjavik_PN 1.865462821325971e-5 +rhabdomyoma_N 3.729715012475897e-6 +rhabdomyosarcoma_N 3.729715012475897e-6 +rhabdovirus_N 3.729715012475897e-6 +rhagades_N 3.729715012475897e-6 +rhapsodize_V 2.2678822515534993e-5 +rhapsody_N 7.459430024951794e-6 +rhea_N 3.729715012475897e-6 +rheims_PN 1.865462821325971e-5 +rhenish_A 1.0773191989054437e-5 +rhenium_N 3.729715012475897e-6 +rheologic_A 1.0773191989054437e-5 +rheology_N 3.729715012475897e-6 +rheometer_N 3.729715012475897e-6 +rheostat_N 3.729715012475897e-6 +rhesus_N 3.729715012475897e-6 +rhetoric_N 5.2216010174662554e-5 +rhetorical_A 2.1546383978108874e-5 +rhetorician_N 3.729715012475897e-6 +rheum_N 3.729715012475897e-6 +rheumatic_A 1.0773191989054437e-5 +rheumatic_N 3.729715012475897e-6 +rheumatism_N 3.729715012475897e-6 +rheumatoid_A 1.0773191989054437e-5 +rheumatologist_N 3.729715012475897e-6 +rheumatology_N 3.729715012475897e-6 +rheumy_A 1.0773191989054437e-5 +rheydt_PN 1.865462821325971e-5 +rhinal_A 1.0773191989054437e-5 +rhine_PN 1.865462821325971e-5 +rhinencephalon_N 3.729715012475897e-6 +rhinestone_N 3.729715012475897e-6 +rhinion_N 3.729715012475897e-6 +rhinitis_N 3.729715012475897e-6 +rhino_N 7.459430024951794e-6 +rhinoceros_N 3.729715012475897e-6 +rhinolaryngology_N 3.729715012475897e-6 +rhinopathy_N 3.729715012475897e-6 +rhinophyma_N 3.729715012475897e-6 +rhinorrhea_N 3.729715012475897e-6 +rhinoscope_N 3.729715012475897e-6 +rhinoscopy_N 3.729715012475897e-6 +rhinosporidiosis_N 3.729715012475897e-6 +rhinostenosis_N 3.729715012475897e-6 +rhinotomy_N 3.729715012475897e-6 +rhinotracheitis_N 3.729715012475897e-6 +rhinovirus_N 3.729715012475897e-6 +rhizoctinia_N 3.729715012475897e-6 +rhizoid_N 3.729715012475897e-6 +rhizoidal_A 1.0773191989054437e-5 +rhizomatous_A 1.0773191989054437e-5 +rhizome_N 3.729715012475897e-6 +rhizomorph_N 3.729715012475897e-6 +rhizopod_N 3.729715012475897e-6 +rhizopus_N 3.729715012475897e-6 +rhizotomy_N 3.729715012475897e-6 +rho_N 3.729715012475897e-6 +rhode_PN 1.865462821325971e-5 +rhodium_N 3.729715012475897e-6 +rhodochrosite_N 3.729715012475897e-6 +rhododendron_N 7.459430024951794e-6 +rhodolite_N 3.729715012475897e-6 +rhodonite_N 3.729715012475897e-6 +rhomb_N 3.729715012475897e-6 +rhombic_A 1.0773191989054437e-5 +rhombohedral_A 1.0773191989054437e-5 +rhombohedron_N 3.729715012475897e-6 +rhomboid_A 1.0773191989054437e-5 +rhomboid_N 3.729715012475897e-6 +rhombus_N 3.729715012475897e-6 +rhonchus_N 3.729715012475897e-6 +rhondda_PN 1.865462821325971e-5 +rhosllanerchrugog_PN 1.865462821325971e-5 +rhubarb_N 3.729715012475897e-6 +rhyl_PN 1.865462821325971e-5 +rhyme_N 3.729715012475897e-6 +rhyme_V 6.803646754660499e-5 +rhyme_V2 3.219730508556434e-5 +rhymer_N 3.729715012475897e-6 +rhymester_N 3.729715012475897e-6 +rhymney_PN 1.865462821325971e-5 +rhyolite_N 3.729715012475897e-6 +rhythm_N 2.237829007485538e-5 +rhythmic_A 5.3865959945272184e-5 +rhythmical_A 2.1546383978108874e-5 +rhythmicity_N 3.729715012475897e-6 +rib_N 1.4918860049903587e-5 +rib_V2 1.609865254278217e-5 +ribald_A 1.0773191989054437e-5 +ribald_N 3.729715012475897e-6 +ribaldry_N 3.729715012475897e-6 +riband_N 3.729715012475897e-6 +ribavirin_N 3.729715012475897e-6 +ribbing_N 3.729715012475897e-6 +ribbon_N 2.237829007485538e-5 +ribbonfish_N 3.729715012475897e-6 +ribbonlike_A 1.0773191989054437e-5 +ribier_N 3.729715012475897e-6 +ribless_A 1.0773191989054437e-5 +riblike_A 1.0773191989054437e-5 +riboflavin_N 3.729715012475897e-6 +ribonuclease_N 3.729715012475897e-6 +ribose_N 3.729715012475897e-6 +ribosome_N 3.729715012475897e-6 +rice_N 5.594572518713845e-5 +rice_paper_N 3.729715012475897e-6 +ricegrass_N 3.729715012475897e-6 +ricer_N 3.729715012475897e-6 +rich_A 5.386595994527219e-4 +richard_PN 1.865462821325971e-5 +richmond_PN 1.865462821325971e-5 +richmond_upon_thames_PN 1.865462821325971e-5 +richness_N 7.459430024951794e-6 +richweed_N 3.729715012475897e-6 +ricin_N 3.729715012475897e-6 +rick_N 3.729715012475897e-6 +rick_PN 1.865462821325971e-5 +rick_V2 1.609865254278217e-5 +rickets_N 3.729715012475897e-6 +rickettsia_N 3.729715012475897e-6 +rickettsial_A 1.0773191989054437e-5 +rickettsialpox_N 3.729715012475897e-6 +rickety_A 2.1546383978108874e-5 +rickey_N 3.729715012475897e-6 +rickmansworth_PN 1.865462821325971e-5 +rickrack_N 3.729715012475897e-6 +rickshaw_N 3.729715012475897e-6 +ricky_PN 1.865462821325971e-5 +ricochet_N 3.729715012475897e-6 +ricochet_V 2.2678822515534993e-5 +ricochet_V2 1.609865254278217e-5 +ricotta_N 3.729715012475897e-6 +rictus_N 3.729715012475897e-6 +rid_V 6.803646754660499e-5 +rid_V2 2.4147978814173252e-4 +riddance_N 3.729715012475897e-6 +riddle_N 3.729715012475897e-6 +riddle_V2 1.609865254278217e-5 +ride_N 7.832401526199384e-5 +ride_V 4.535764503106999e-4 +ride_V2 2.7367709322729687e-4 +ride_off_V 2.2678822515534993e-5 +ride_on_V2 1.609865254278217e-5 +ride_out_V2 1.609865254278217e-5 +ride_up_V 2.2678822515534993e-5 +rider_N 7.086458523704203e-5 +riderless_A 1.0773191989054437e-5 +ridge_N 7.459430024951794e-6 +ridge_V2 1.609865254278217e-5 +ridge_tile_N 3.729715012475897e-6 +ridgeling_N 3.729715012475897e-6 +ridgepole_N 3.729715012475897e-6 +ridicule_N 1.118914503742769e-5 +ridicule_V2 4.8295957628346505e-5 +ridiculous_A 1.2927830386865325e-4 +riding_N 1.118914503742769e-5 +riding_habit_N 3.729715012475897e-6 +riding_lamp_N 3.729715012475897e-6 +riding_light_N 3.729715012475897e-6 +riding_master_N 3.729715012475897e-6 +riding_school_N 3.729715012475897e-6 +ridley_N 3.729715012475897e-6 +riel_N 3.729715012475897e-6 +riesling_N 3.729715012475897e-6 +rifampin_N 3.729715012475897e-6 +rife_A 3.231957596716331e-5 +riff_N 7.459430024951794e-6 +riff_raff_N 3.729715012475897e-6 +riffle_N 3.729715012475897e-6 +riffle_V 2.2678822515534993e-5 +riffle_V2 1.609865254278217e-5 +rifle_N 1.4918860049903587e-5 +rifle_V2 1.609865254278217e-5 +rifle_range_N 3.729715012475897e-6 +rifle_shot_N 3.729715012475897e-6 +riflebird_N 3.729715012475897e-6 +rifleman_N 3.729715012475897e-6 +rift_N 2.6108005087331277e-5 +rift_valley_N 3.729715012475897e-6 +rig_N 4.848629516218666e-5 +rig_V 4.5357645031069986e-5 +rig_V2 3.219730508556434e-5 +riga_PN 1.865462821325971e-5 +rigatoni_N 3.729715012475897e-6 +rigg_up_V 2.2678822515534993e-5 +rigger_N 3.729715012475897e-6 +rigging_N 3.729715012475897e-6 +right_A 1.0019068549820627e-3 +right_Adv 8.842346169183557e-4 +right_N 1.338967689478847e-3 +right_V2 3.219730508556434e-5 +right_angled_A 1.0773191989054437e-5 +right_down_A 1.0773191989054437e-5 +right_down_Adv 8.668966832532898e-6 +right_hand_A 2.1546383978108874e-5 +right_handed_A 1.0773191989054437e-5 +right_hander_N 3.729715012475897e-6 +right_minded_A 1.0773191989054437e-5 +right_of_Prep 9.978546125829467e-6 +right_turn_N 3.729715012475897e-6 +right_wing_N 3.729715012475897e-6 +right_winger_N 3.729715012475897e-6 +righteous_A 1.0773191989054437e-5 +righteousness_N 7.459430024951794e-6 +rightful_A 1.0773191989054437e-5 +rightfulness_N 3.729715012475897e-6 +rightish_A 1.0773191989054437e-5 +rightism_N 3.729715012475897e-6 +rightist_A 1.0773191989054437e-5 +rightist_N 3.729715012475897e-6 +rightmost_A 1.0773191989054437e-5 +rightness_N 3.729715012475897e-6 +rigid_A 1.6159787983581657e-4 +rigidity_N 1.118914503742769e-5 +rigmarole_N 3.729715012475897e-6 +rigor_mortis_N 1.8648575062379485e-5 +rigorous_A 4.309276795621775e-5 +rigour_N 3.729715012475897e-6 +rigout_N 3.729715012475897e-6 +rijeka_PN 1.865462821325971e-5 +rijsttaffel_N 3.729715012475897e-6 +rile_V2 4.8295957628346505e-5 +rill_N 7.459430024951794e-6 +rim_N 1.118914503742769e-5 +rim_V2 3.219730508556434e-5 +rima_N 3.729715012475897e-6 +rime_N 3.729715012475897e-6 +rime_V2 1.609865254278217e-5 +rimini_PN 1.865462821325971e-5 +rimless_A 1.0773191989054437e-5 +rimose_A 1.0773191989054437e-5 +rimu_N 3.729715012475897e-6 +rind_N 3.729715012475897e-6 +rinderpest_N 3.729715012475897e-6 +ring_N 4.1026865137234865e-5 +ring_V 2.9482469270195494e-4 +ring_V2 9.659191525669301e-5 +ring_armour_N 3.729715012475897e-6 +ring_back_V2 1.609865254278217e-5 +ring_finger_N 3.729715012475897e-6 +ring_in_V 2.2678822515534993e-5 +ring_mail_N 3.729715012475897e-6 +ring_off_V 2.2678822515534993e-5 +ring_out_V 2.2678822515534993e-5 +ring_road_N 3.729715012475897e-6 +ring_round_V 2.2678822515534993e-5 +ring_up_V 2.2678822515534993e-5 +ring_up_V2 1.609865254278217e-5 +ring_with_V2 1.609865254278217e-5 +ringdove_N 3.729715012475897e-6 +ringer_N 1.118914503742769e-4 +ringgit_N 3.729715012475897e-6 +ringhals_N 3.729715012475897e-6 +ringing_N 3.729715012475897e-6 +ringleader_N 3.729715012475897e-6 +ringlet_N 3.729715012475897e-6 +ringleted_A 1.0773191989054437e-5 +ringlike_A 1.0773191989054437e-5 +ringmaster_N 3.729715012475897e-6 +rings_N 3.729715012475897e-6 +ringside_N 3.729715012475897e-6 +ringtail_N 3.729715012475897e-6 +ringwood_PN 1.865462821325971e-5 +ringworm_N 3.729715012475897e-6 +rink_N 3.729715012475897e-6 +rinse_N 3.729715012475897e-6 +rinse_V2 1.609865254278217e-5 +rio_de_janeiro_PN 1.865462821325971e-5 +riot_N 1.8648575062379485e-5 +riot_V 9.071529006213997e-5 +rioter_N 3.729715012475897e-6 +rioting_N 3.729715012475897e-6 +riotous_A 1.0773191989054437e-5 +rip_N 3.729715012475897e-6 +rip_PN 1.865462821325971e-5 +rip_V 1.1339411257767497e-4 +rip_V2 4.8295957628346505e-5 +rip_off_N 3.729715012475897e-6 +rip_off_V2 1.609865254278217e-5 +rip_out_V 2.2678822515534993e-5 +rip_roaring_A 2.1546383978108874e-5 +riparian_A 1.0773191989054437e-5 +ripcord_N 3.729715012475897e-6 +ripe_A 6.463915193432663e-5 +ripen_V 6.803646754660499e-5 +ripen_V2 1.609865254278217e-5 +ripeness_N 3.729715012475897e-6 +ripening_N 3.729715012475897e-6 +ripley_PN 1.865462821325971e-5 +ripon_PN 1.865462821325971e-5 +riposte_N 3.729715012475897e-6 +riposte_V 2.2678822515534993e-5 +ripper_N 3.729715012475897e-6 +ripple_N 1.118914503742769e-5 +ripple_V 6.803646754660499e-5 +ripple_V2 1.609865254278217e-5 +ripsaw_N 3.729715012475897e-6 +riptide_N 3.729715012475897e-6 +risborough_PN 1.865462821325971e-5 +risca_PN 1.865462821325971e-5 +rise_N 5.892949719711917e-4 +rise_V 1.3561935864289927e-2 +rise_V2 7.5985640001931835e-3 +rise_VA 1.968503937007874e-3 +riser_N 3.729715012475897e-6 +rishton_PN 1.865462821325971e-5 +risibility_N 3.729715012475897e-6 +risible_A 2.1546383978108874e-5 +rising_N 3.729715012475897e-6 +risk_N 8.802127429443117e-4 +risk_V2 2.4147978814173252e-4 +risk_VV 6.726888333653661e-4 +riskiness_N 1.118914503742769e-5 +risklessness_N 3.729715012475897e-6 +risky_A 3.986081035950142e-4 +risotto_N 3.729715012475897e-6 +risque_A 1.0773191989054437e-5 +rissole_N 3.729715012475897e-6 +rita_PN 1.865462821325971e-5 +rite_N 1.118914503742769e-5 +ritonavir_N 3.729715012475897e-6 +ritual_A 1.0773191989054437e-5 +ritual_N 1.118914503742769e-5 +ritualism_N 3.729715012475897e-6 +ritualist_N 3.729715012475897e-6 +ritualistic_A 1.0773191989054437e-5 +ritz_N 3.729715012475897e-6 +ritzy_A 3.231957596716331e-5 +rival_N 2.237829007485538e-4 +rival_V2 8.049326271391085e-5 +rivalry_N 1.8648575062379485e-5 +rive_V 2.2678822515534993e-5 +rive_V2 1.609865254278217e-5 +river_N 6.340515521209024e-5 +river_basin_N 3.729715012475897e-6 +river_bed_N 3.729715012475897e-6 +riverbank_N 3.729715012475897e-6 +riverbed_N 3.729715012475897e-6 +riverside_N 7.459430024951794e-6 +rivet_N 7.459430024951794e-6 +rivet_V 4.5357645031069986e-5 +rivet_V2 4.8295957628346505e-5 +riveter_N 3.729715012475897e-6 +riviera_PN 1.865462821325971e-5 +rivulet_N 3.729715012475897e-6 +rivulus_N 3.729715012475897e-6 +rly_N 3.729715012475897e-6 +rm_N 3.729715012475897e-6 +rn_N 3.729715012475897e-6 +roach_N 3.729715012475897e-6 +road_N 2.610800508733128e-4 +road_book_N 3.729715012475897e-6 +road_hog_N 3.729715012475897e-6 +road_metal_N 3.729715012475897e-6 +road_sense_N 3.729715012475897e-6 +roadbed_N 1.118914503742769e-5 +roadblock_N 2.237829007485538e-5 +roadbook_N 3.729715012475897e-6 +roadhouse_N 3.729715012475897e-6 +roadkill_N 3.729715012475897e-6 +roadless_A 1.0773191989054437e-5 +roadman_N 3.729715012475897e-6 +roadmender_N 3.729715012475897e-6 +roadrunner_N 3.729715012475897e-6 +roads_N 3.729715012475897e-6 +roadside_N 3.729715012475897e-6 +roadstead_N 3.729715012475897e-6 +roadster_N 3.729715012475897e-6 +roadway_N 5.594572518713845e-5 +roadworthiness_N 3.729715012475897e-6 +roadworthy_A 1.0773191989054437e-5 +roam_V 4.5357645031069986e-5 +roam_V2 4.8295957628346505e-5 +roan_A 1.0773191989054437e-5 +roan_N 3.729715012475897e-6 +roar_N 1.118914503742769e-5 +roar_V 9.071529006213997e-5 +roar_V2 1.609865254278217e-5 +roarer_N 3.729715012475897e-6 +roaring_Adv 8.668966832532898e-6 +roast_A 1.0773191989054437e-5 +roast_N 1.118914503742769e-5 +roast_V 2.2678822515534993e-5 +roast_V2 1.609865254278217e-5 +roaster_N 3.729715012475897e-6 +roasting_N 3.729715012475897e-6 +rob_PN 1.865462821325971e-5 +rob_V2 1.2878922034225736e-4 +robalo_N 3.729715012475897e-6 +robber_N 2.237829007485538e-5 +robbery_N 3.729715012475897e-5 +robe_N 1.4918860049903587e-5 +robe_V 2.2678822515534993e-5 +robe_V2 1.609865254278217e-5 +robert_PN 1.865462821325971e-5 +robin_N 3.729715012475897e-6 +robin_PN 1.865462821325971e-5 +roble_N 3.729715012475897e-6 +robot_N 5.2216010174662554e-5 +robotic_A 1.0773191989054437e-5 +robotics_N 3.729715012475897e-6 +robust_A 3.6628852762785085e-4 +robustness_N 3.729715012475897e-6 +roc_N 3.729715012475897e-6 +roccella_N 3.729715012475897e-6 +rochdale_PN 1.865462821325971e-5 +rochester_PN 1.865462821325971e-5 +rock_'n_roll_N 3.729715012475897e-6 +rock_N 8.205373027446973e-5 +rock_V 1.5875175760874494e-4 +rock_V2 8.049326271391085e-5 +rock_bottom_N 3.729715012475897e-6 +rock_cake_N 3.729715012475897e-6 +rock_climbing_N 3.729715012475897e-6 +rock_crystal_N 3.729715012475897e-6 +rock_garden_N 3.729715012475897e-6 +rock_plant_N 3.729715012475897e-6 +rock_salmon_N 3.729715012475897e-6 +rock_salt_N 3.729715012475897e-6 +rockabilly_N 3.729715012475897e-6 +rocker_N 7.459430024951794e-6 +rockers_N 3.729715012475897e-6 +rockery_N 3.729715012475897e-6 +rocket_N 3.729715012475897e-5 +rocket_V 9.071529006213997e-5 +rocket_base_N 3.729715012475897e-6 +rocket_range_N 3.729715012475897e-6 +rocketry_N 3.729715012475897e-6 +rockfish_N 3.729715012475897e-6 +rockiness_N 3.729715012475897e-6 +rocking_chair_N 3.729715012475897e-6 +rocking_horse_N 3.729715012475897e-6 +rockrose_N 3.729715012475897e-6 +rockslide_N 3.729715012475897e-6 +rockweed_N 3.729715012475897e-6 +rocky_A 6.463915193432663e-5 +rococo_A 1.0773191989054437e-5 +rococo_N 3.729715012475897e-6 +rod_N 4.1026865137234865e-5 +rod_PN 1.865462821325971e-5 +rodent_N 7.459430024951794e-6 +rodeo_N 7.459430024951794e-6 +rodney_PN 1.865462821325971e-5 +rodomontade_N 3.729715012475897e-6 +roe_N 3.729715012475897e-6 +roebuck_N 3.729715012475897e-6 +roentgen_N 3.729715012475897e-6 +roentgenium_N 3.729715012475897e-6 +roentgenogram_N 3.729715012475897e-6 +roentgenographic_A 1.0773191989054437e-5 +roentgenography_N 3.729715012475897e-6 +rofecoxib_N 3.729715012475897e-6 +rogation_N 3.729715012475897e-6 +roger_PN 1.865462821325971e-5 +rogue_N 7.459430024951794e-6 +rogue_elephant_N 3.729715012475897e-6 +roguery_N 3.729715012475897e-6 +roguish_A 1.0773191989054437e-5 +roguishness_N 3.729715012475897e-6 +roil_V2 9.659191525669301e-5 +roisterer_N 3.729715012475897e-6 +role_1_N 6.079435470335711e-4 +role_2_N 3.729715012475897e-6 +role_N 3.729715012475897e-6 +roleplaying_N 3.729715012475897e-6 +roll_N 1.268103104241805e-4 +roll_V 9.978681906835398e-4 +roll_V2 1.2878922034225736e-4 +roll_back_V 2.2678822515534993e-5 +roll_back_V2 1.609865254278217e-5 +roll_by_V 2.2678822515534993e-5 +roll_call_N 3.729715012475897e-6 +roll_down_V 2.2678822515534993e-5 +roll_in_V 2.2678822515534993e-5 +roll_on_N 3.729715012475897e-6 +roll_on_V 2.2678822515534993e-5 +roll_on_V2 1.609865254278217e-5 +roll_out_V2 9.659191525669301e-5 +roll_over_V 2.2678822515534993e-5 +roll_up_V 2.2678822515534993e-5 +rollback_N 3.729715012475897e-6 +roller_N 7.832401526199384e-5 +roller_skate_N 3.729715012475897e-6 +rollerblader_N 3.729715012475897e-6 +rollerblading_N 3.729715012475897e-6 +rollicking_A 1.0773191989054437e-5 +rolling_N 1.4918860049903587e-5 +rolling_mill_N 3.729715012475897e-6 +rolling_pin_N 3.729715012475897e-6 +rolling_stock_N 3.729715012475897e-6 +rollmops_N 3.729715012475897e-6 +rollover_N 3.729715012475897e-6 +roly_poly_N 3.729715012475897e-6 +romaic_A 1.0773191989054437e-5 +romaic_N 3.729715012475897e-6 +roman_A 2.1546383978108874e-5 +roman_N 3.729715012475897e-6 +romance_A 1.0773191989054437e-5 +romance_N 2.6108005087331277e-5 +romance_V 2.2678822515534993e-5 +romance_V2 3.219730508556434e-5 +romanesque_N 3.729715012475897e-6 +romania_PN 3.730925642651942e-5 +romanian_A 1.0773191989054437e-5 +romanian_N 3.729715012475897e-6 +romantic_A 9.695872790148993e-5 +romantic_N 3.729715012475897e-6 +romantically_Adv 8.668966832532898e-6 +romanticism_N 3.729715012475897e-6 +romanticist_N 3.729715012475897e-6 +romanticize_V 6.803646754660499e-5 +romanticize_V2 1.609865254278217e-5 +romany_A 1.0773191989054437e-5 +romany_N 3.729715012475897e-6 +rome_PN 1.3058239749281798e-4 +romish_A 1.0773191989054437e-5 +romp_N 7.459430024951794e-6 +romp_V 4.5357645031069986e-5 +romp_in_V 2.2678822515534993e-5 +romp_through_V2 1.609865254278217e-5 +romper_N 3.729715012475897e-6 +romsey_PN 1.865462821325971e-5 +ron_PN 1.865462821325971e-5 +ronald_PN 1.865462821325971e-5 +rondeau_N 3.729715012475897e-6 +rondel_N 3.729715012475897e-6 +rondelet_N 3.729715012475897e-6 +rondo_N 3.729715012475897e-6 +roneo_N 3.729715012475897e-6 +roneo_V2 1.609865254278217e-5 +ronnie_PN 1.865462821325971e-5 +rontgen_N 3.729715012475897e-6 +rood_N 3.729715012475897e-6 +rood_tree_N 3.729715012475897e-6 +roof_N 3.729715012475897e-5 +roof_V2 1.609865254278217e-5 +roof_garden_N 3.729715012475897e-6 +roof_tree_N 3.729715012475897e-6 +roofer_N 3.729715012475897e-6 +roofing_N 1.4918860049903587e-5 +roofless_A 1.0773191989054437e-5 +rooftop_N 7.459430024951794e-6 +rooibos_N 3.729715012475897e-6 +rook_N 7.459430024951794e-6 +rook_V2 1.609865254278217e-5 +rookery_N 3.729715012475897e-6 +rookie_N 1.8648575062379485e-5 +room_N 5.147006717216737e-4 +room_V 2.2678822515534993e-5 +room_in_V2 1.609865254278217e-5 +room_mate_N 3.729715012475897e-6 +roomer_N 3.729715012475897e-6 +roomette_N 3.729715012475897e-6 +roomful_N 7.459430024951794e-6 +roommate_N 3.729715012475897e-6 +roomy_A 1.0773191989054437e-5 +roost_N 3.729715012475897e-6 +roost_V 4.5357645031069986e-5 +rooster_N 7.459430024951794e-6 +root_N 5.967544019961435e-5 +root_V 1.5875175760874494e-4 +root_V2 8.049326271391085e-5 +root_about_V 2.2678822515534993e-5 +root_around_V2 1.609865254278217e-5 +root_for_V2 1.609865254278217e-5 +root_out_V2 1.609865254278217e-5 +root_up_V2 1.609865254278217e-5 +rootage_N 3.729715012475897e-6 +rootbound_A 1.0773191989054437e-5 +rooting_N 3.729715012475897e-6 +rootle_V 2.2678822515534993e-5 +rootless_A 1.0773191989054437e-5 +rootlet_N 3.729715012475897e-6 +roots_N 3.729715012475897e-6 +rootstock_N 3.729715012475897e-6 +rope_N 3.729715012475897e-5 +rope_V2 1.609865254278217e-5 +rope_dancer_N 3.729715012475897e-6 +rope_in_V2 1.609865254278217e-5 +rope_into_V2 1.609865254278217e-5 +rope_ladder_N 3.729715012475897e-6 +rope_off_V2 1.609865254278217e-5 +rope_yard_N 3.729715012475897e-6 +rope_yarn_N 3.729715012475897e-6 +ropemaker_N 3.729715012475897e-6 +roper_N 3.729715012475897e-6 +ropewalk_N 3.729715012475897e-6 +ropewalker_N 3.729715012475897e-6 +ropeway_N 3.729715012475897e-6 +ropey_A 1.0773191989054437e-5 +roping_N 3.729715012475897e-6 +ropy_A 1.0773191989054437e-5 +roquefort_N 3.729715012475897e-6 +roridula_N 3.729715012475897e-6 +rorqual_N 3.729715012475897e-6 +rosaceous_A 1.0773191989054437e-5 +rosalie_PN 1.865462821325971e-5 +rosalind_PN 1.865462821325971e-5 +rosamund_PN 1.865462821325971e-5 +rosario_PN 1.865462821325971e-5 +rosary_N 3.729715012475897e-6 +roscommon_PN 1.865462821325971e-5 +rose_A 1.0773191989054437e-5 +rose_N 1.8648575062379485e-5 +rose_PN 1.865462821325971e-5 +rose_V 4.5357645031069986e-5 +rose_V2 1.609865254278217e-5 +rose_bed_N 3.729715012475897e-6 +rose_leaf_N 3.729715012475897e-6 +rose_red_A 1.0773191989054437e-5 +rose_water_N 3.729715012475897e-6 +roseate_A 1.0773191989054437e-5 +rosebay_N 3.729715012475897e-6 +rosebud_N 3.729715012475897e-6 +rosefish_N 3.729715012475897e-6 +roselle_N 3.729715012475897e-6 +rosemaling_N 3.729715012475897e-6 +rosemary_N 3.729715012475897e-6 +rosemary_PN 1.865462821325971e-5 +rosette_N 3.729715012475897e-6 +rosewood_N 3.729715012475897e-6 +rosie_PN 1.865462821325971e-5 +rosilla_N 3.729715012475897e-6 +rosin_N 3.729715012475897e-6 +rosin_V2 1.609865254278217e-5 +rosinweed_N 3.729715012475897e-6 +rosita_N 3.729715012475897e-6 +roslyn_PN 1.865462821325971e-5 +ross_on_wye_PN 1.865462821325971e-5 +rossington_PN 1.865462821325971e-5 +rosslare_PN 1.865462821325971e-5 +roster_N 1.118914503742769e-5 +rostock_PN 1.865462821325971e-5 +rostov_na_donu_PN 1.865462821325971e-5 +rostrate_A 1.0773191989054437e-5 +rostrum_N 3.729715012475897e-6 +rosy_A 6.463915193432663e-5 +rot_N 7.459430024951794e-6 +rot_V 1.1339411257767497e-4 +rot_V2 1.609865254278217e-5 +rota_N 3.729715012475897e-6 +rotarian_N 3.729715012475897e-6 +rotary_A 2.1546383978108874e-5 +rotary_N 3.729715012475897e-6 +rotatable_A 1.0773191989054437e-5 +rotate_V 4.5357645031069986e-5 +rotate_V2 4.8295957628346505e-5 +rotation_N 1.118914503742769e-5 +rotational_A 1.0773191989054437e-5 +rotatory_A 1.0773191989054437e-5 +rotavirus_N 3.729715012475897e-6 +rote_N 3.729715012475897e-6 +rotenone_N 3.729715012475897e-6 +rotgut_N 3.729715012475897e-6 +rotherham_PN 1.865462821325971e-5 +rothesay_PN 1.865462821325971e-5 +rothwell_PN 1.865462821325971e-5 +rotifer_N 3.729715012475897e-6 +rotisserie_N 3.729715012475897e-6 +rotl_N 3.729715012475897e-6 +rotogravure_N 3.729715012475897e-6 +rotor_N 3.729715012475897e-6 +rotten_A 2.1546383978108874e-5 +rottenness_N 3.729715012475897e-6 +rottenstone_N 3.729715012475897e-6 +rotter_N 3.729715012475897e-6 +rotterdam_PN 1.865462821325971e-5 +rotund_A 1.0773191989054437e-5 +rotunda_N 3.729715012475897e-6 +rotundity_N 3.729715012475897e-6 +roubaix_PN 1.865462821325971e-5 +rouble_N 3.729715012475897e-6 +roue_N 3.729715012475897e-6 +rouen_PN 1.865462821325971e-5 +rouge_N 3.729715012475897e-6 +rouge_V 2.2678822515534993e-5 +rouge_V2 1.609865254278217e-5 +rough_A 1.034226430949226e-3 +rough_Adv 8.668966832532898e-6 +rough_N 3.729715012475897e-6 +rough_V2 3.219730508556434e-5 +rough_and_tumble_A 2.1546383978108874e-5 +rough_and_tumble_N 3.729715012475897e-6 +rough_dry_V2 1.609865254278217e-5 +rough_hewn_A 1.0773191989054437e-5 +rough_house_V 2.2678822515534993e-5 +rough_house_V2 1.609865254278217e-5 +rough_spoken_A 1.0773191989054437e-5 +rough_up_V2 1.609865254278217e-5 +roughage_N 3.729715012475897e-6 +roughcast_N 3.729715012475897e-6 +roughcast_V2 1.609865254278217e-5 +roughdried_A 1.0773191989054437e-5 +roughen_V 2.2678822515534993e-5 +roughen_V2 1.609865254278217e-5 +roughhewn_A 2.1546383978108874e-5 +roughish_A 1.0773191989054437e-5 +roughneck_N 1.118914503742769e-5 +roughness_N 3.729715012475897e-6 +roughrider_N 3.729715012475897e-6 +roughshod_A 1.0773191989054437e-5 +roulade_N 3.729715012475897e-6 +rouleau_N 3.729715012475897e-6 +roulette_N 7.459430024951794e-6 +round_A 3.231957596716331e-5 +round_Adv 8.668966832532898e-6 +round_N 1.3426974044913228e-4 +round_Prep 9.978546125829467e-6 +round_V 1.5875175760874494e-4 +round_V2 1.609865254278217e-5 +round_arm_A 1.0773191989054437e-5 +round_arm_Adv 8.668966832532898e-6 +round_backed_A 1.0773191989054437e-5 +round_eyed_A 1.0773191989054437e-5 +round_hand_N 3.729715012475897e-6 +round_off_V2 1.609865254278217e-5 +round_out_V 2.2678822515534993e-5 +round_shot_N 3.729715012475897e-6 +round_shouldered_A 1.0773191989054437e-5 +round_the_clock_A 2.1546383978108874e-5 +round_the_clock_Adv 8.668966832532898e-6 +round_up_V 2.2678822515534993e-5 +roundabout_A 1.0773191989054437e-5 +roundabout_N 3.729715012475897e-6 +roundedness_N 3.729715012475897e-6 +roundel_N 3.729715012475897e-6 +roundelay_N 3.729715012475897e-6 +rounder_N 3.729715012475897e-6 +rounders_N 3.729715012475897e-6 +roundhead_N 3.729715012475897e-6 +roundhouse_N 3.729715012475897e-6 +rounding_N 3.729715012475897e-6 +roundish_A 1.0773191989054437e-5 +roundness_N 3.729715012475897e-6 +roundsman_N 3.729715012475897e-6 +roundup_N 3.729715012475897e-6 +rouse_V 2.2678822515534993e-5 +rouse_V2 1.609865254278217e-5 +rout_N 7.086458523704203e-5 +rout_V2 1.609865254278217e-5 +route_N 1.305400254366564e-4 +route_V2 1.1269056779947518e-4 +routemarch_N 3.729715012475897e-6 +router_N 3.729715012475897e-6 +routine_A 3.44742143649742e-4 +routine_N 1.8648575062379485e-5 +roux_N 3.729715012475897e-6 +rove_V 2.2678822515534993e-5 +rove_V2 1.609865254278217e-5 +rover_N 3.729715012475897e-6 +row_N 1.1562116538675279e-4 +row_V 6.803646754660499e-5 +row_V2 1.609865254278217e-5 +row_back_V 2.2678822515534993e-5 +rowan_N 3.729715012475897e-6 +rowan_berry_N 3.729715012475897e-6 +rowan_tree_N 3.729715012475897e-6 +rowanberry_N 3.729715012475897e-6 +rowboat_N 3.729715012475897e-6 +rowdiness_N 3.729715012475897e-6 +rowdy_A 2.1546383978108874e-5 +rowdy_N 3.729715012475897e-6 +rowdyism_N 3.729715012475897e-6 +rowel_N 3.729715012475897e-6 +rower_N 3.729715012475897e-6 +rowing_N 1.118914503742769e-5 +rowing_boat_N 3.729715012475897e-6 +rowing_club_N 3.729715012475897e-6 +rowlands_gill_PN 1.865462821325971e-5 +rowlock_N 3.729715012475897e-6 +roy_PN 1.865462821325971e-5 +royal_A 2.1546383978108874e-5 +royal_N 3.729715012475897e-6 +royalism_N 3.729715012475897e-6 +royalist_N 3.729715012475897e-6 +royalty_N 7.086458523704203e-5 +royston_PN 1.865462821325971e-5 +rpm_N 3.729715012475897e-6 +rspca_N 3.729715012475897e-6 +rsvp_PN 1.865462821325971e-5 +rt_hon_PN 1.865462821325971e-5 +rub_N 1.4918860049903587e-5 +rub_V 6.803646754660499e-5 +rub_V2 4.8295957628346505e-5 +rub_a_dub_N 3.729715012475897e-6 +rub_along_V 2.2678822515534993e-5 +rub_down_N 3.729715012475897e-6 +rub_down_V2 1.609865254278217e-5 +rub_in_V2 1.609865254278217e-5 +rub_it_in_V2 1.609865254278217e-5 +rub_off_on_V2 1.609865254278217e-5 +rub_out_V2 1.609865254278217e-5 +rub_up_N 3.729715012475897e-6 +rub_up_against_V2 1.609865254278217e-5 +rub_up_on_V2 1.609865254278217e-5 +rubato_N 3.729715012475897e-6 +rubber_A 1.0773191989054437e-5 +rubber_N 3.356743511228307e-5 +rubber_V2 1.609865254278217e-5 +rubber_necking_V 2.2678822515534993e-5 +rubber_stamp_V2 3.219730508556434e-5 +rubberize_V2 1.609865254278217e-5 +rubberneck_N 3.729715012475897e-6 +rubberneck_V 2.2678822515534993e-5 +rubbery_A 1.0773191989054437e-5 +rubbing_N 3.729715012475897e-6 +rubbish_N 7.459430024951794e-6 +rubbish_V2 1.609865254278217e-5 +rubbishing_N 3.729715012475897e-6 +rubbishy_A 1.0773191989054437e-5 +rubble_N 4.475658014971076e-5 +rubdown_N 3.729715012475897e-6 +rubefacient_N 3.729715012475897e-6 +rubel_N 3.729715012475897e-6 +rubicelle_N 3.729715012475897e-6 +rubicon_N 3.729715012475897e-6 +rubicund_A 1.0773191989054437e-5 +rubidium_N 3.729715012475897e-6 +ruble_N 7.459430024951794e-6 +rubric_N 7.459430024951794e-6 +ruby_A 1.0773191989054437e-5 +ruby_N 3.729715012475897e-6 +ruck_N 3.729715012475897e-6 +ruck_V 2.2678822515534993e-5 +ruck_V2 1.609865254278217e-5 +rucksack_N 3.729715012475897e-6 +ruckus_N 3.729715012475897e-6 +rudapithecus_N 3.729715012475897e-6 +rudd_N 3.729715012475897e-6 +rudder_N 7.459430024951794e-6 +rudderfish_N 3.729715012475897e-6 +rudderless_A 1.0773191989054437e-5 +rudderpost_N 3.729715012475897e-6 +ruddiness_N 3.729715012475897e-6 +ruddington_PN 1.865462821325971e-5 +ruddle_N 3.729715012475897e-6 +ruddle_V2 1.609865254278217e-5 +ruddy_A 1.0773191989054437e-5 +rude_A 3.231957596716331e-5 +rudeness_N 3.729715012475897e-6 +rudiment_N 3.729715012475897e-6 +rudimentary_A 2.1546383978108874e-5 +rudolf_PN 1.865462821325971e-5 +rudy_PN 1.865462821325971e-5 +rue_N 3.729715012475897e-6 +rue_V2 1.609865254278217e-5 +rueful_A 3.231957596716331e-5 +ruff_N 3.729715012475897e-6 +ruff_V 2.2678822515534993e-5 +ruff_V2 1.609865254278217e-5 +ruffian_N 3.729715012475897e-6 +ruffianism_N 3.729715012475897e-6 +ruffianly_A 1.0773191989054437e-5 +ruffle_N 3.729715012475897e-6 +ruffle_V 2.2678822515534993e-5 +ruffle_V2 4.8295957628346505e-5 +rug_N 1.118914503742769e-5 +ruga_N 3.729715012475897e-6 +rugby_N 3.729715012475897e-6 +rugby_PN 1.865462821325971e-5 +rugeley_PN 1.865462821325971e-5 +rugged_A 3.231957596716331e-5 +ruggedization_N 3.729715012475897e-6 +ruggedness_N 3.729715012475897e-6 +rugger_N 3.729715012475897e-6 +rugose_A 1.0773191989054437e-5 +rugulah_N 3.729715012475897e-6 +ruin_N 7.459430024951794e-6 +ruin_V2 1.7708517797060386e-4 +ruination_N 3.729715012475897e-6 +ruinous_A 2.1546383978108874e-5 +rule_N 8.65293882894408e-4 +rule_V 1.2473352383544245e-3 +rule_V2 9.659191525669301e-5 +rule_VS 2.2526425229596257e-3 +rule_out_V2 1.609865254278217e-5 +ruler_N 1.8648575062379485e-5 +rulership_N 3.729715012475897e-6 +ruling_N 3.431337811477825e-4 +ruly_A 1.0773191989054437e-5 +rum_N 1.4918860049903587e-5 +rum_runner_N 3.729715012475897e-6 +rumba_N 3.729715012475897e-6 +rumble_N 3.729715012475897e-6 +rumble_V 1.3607293509320997e-4 +rumble_V2 1.609865254278217e-5 +rumbling_N 1.118914503742769e-5 +rumbustious_A 1.0773191989054437e-5 +rumen_N 3.729715012475897e-6 +ruminant_A 1.0773191989054437e-5 +ruminant_N 3.729715012475897e-6 +ruminate_V 6.803646754660499e-5 +rumination_N 3.729715012475897e-6 +ruminative_A 1.0773191989054437e-5 +rummage_N 3.729715012475897e-6 +rummage_V 2.2678822515534993e-5 +rummage_V2 1.609865254278217e-5 +rummer_N 3.729715012475897e-6 +rummy_A 1.0773191989054437e-5 +rummy_N 3.729715012475897e-6 +rumour_N 2.9837720099807175e-5 +rumour_V2 2.7367709322729687e-4 +rumour_V3 3.1746031746031746e-3 +rumour_monger_N 3.729715012475897e-6 +rump_N 3.729715012475897e-6 +rump_steak_N 3.729715012475897e-6 +rumple_V2 3.219730508556434e-5 +rumpus_N 3.729715012475897e-6 +rumrunner_N 3.729715012475897e-6 +run_N 2.0140461067369843e-4 +run_V 4.739873905746814e-3 +run_V2 2.688474974644622e-3 +run_VS 4.6208051753017965e-4 +run_across_V2 1.609865254278217e-5 +run_after_V2 1.609865254278217e-5 +run_against_V2 1.609865254278217e-5 +run_along_V 2.2678822515534993e-5 +run_around_V 2.2678822515534993e-5 +run_away_V 2.2678822515534993e-5 +run_away_from_V2 1.609865254278217e-5 +run_down_V 2.2678822515534993e-5 +run_down_V2 1.609865254278217e-5 +run_for_V2 1.609865254278217e-5 +run_in_V 2.2678822515534993e-5 +run_in_V2 1.609865254278217e-5 +run_into_V2 1.609865254278217e-5 +run_of_the_mill_A 1.0773191989054437e-5 +run_off_N 3.729715012475897e-6 +run_off_V 2.2678822515534993e-5 +run_off_V2 1.609865254278217e-5 +run_on_V2 1.609865254278217e-5 +run_out_V 4.5357645031069986e-5 +run_out_of_V2 1.609865254278217e-5 +run_over_V 2.2678822515534993e-5 +run_over_V2 1.609865254278217e-5 +run_through_N 3.729715012475897e-6 +run_through_V2 1.609865254278217e-5 +run_to_V2 1.609865254278217e-5 +run_up_N 7.459430024951794e-6 +run_up_V 2.2678822515534993e-5 +run_up_V2 1.609865254278217e-5 +run_up_against_V2 1.609865254278217e-5 +run_up_on_V2 1.609865254278217e-5 +run_with_V2 1.609865254278217e-5 +runaway_A 1.0773191989054437e-4 +runaway_N 3.729715012475897e-6 +runcinate_A 1.0773191989054437e-5 +runcorn_PN 1.865462821325971e-5 +rundle_N 3.729715012475897e-6 +rundown_A 1.0773191989054437e-5 +rundown_N 7.459430024951794e-6 +rune_N 3.729715012475897e-6 +rung_N 3.729715012475897e-6 +rung_V2V 4.675081813931744e-4 +runic_A 1.0773191989054437e-5 +runnel_N 3.729715012475897e-6 +runner_N 2.6108005087331277e-5 +runner_up_N 3.729715012475897e-6 +running_N 2.237829007485538e-5 +running_board_N 3.729715012475897e-6 +runny_A 2.1546383978108874e-5 +runoff_N 3.729715012475897e-6 +runproof_A 1.0773191989054437e-5 +runt_N 3.729715012475897e-6 +runup_N 3.729715012475897e-6 +runway_N 2.9837720099807175e-5 +rupee_N 3.729715012475897e-6 +rupert_PN 1.865462821325971e-5 +rupestral_A 1.0773191989054437e-5 +rupiah_N 3.729715012475897e-6 +rupture_N 7.459430024951794e-6 +rupture_V 1.1339411257767497e-4 +rupture_V2 4.8295957628346505e-5 +rupturewort_N 3.729715012475897e-6 +rural_A 2.8010299171541536e-4 +ruralism_N 3.729715012475897e-6 +ruralist_N 3.729715012475897e-6 +rurality_N 3.729715012475897e-6 +ruritanian_A 1.0773191989054437e-5 +ruse_N 3.729715012475897e-6 +rush_N 5.594572518713845e-5 +rush_V 5.216129178573049e-4 +rush_V2 1.609865254278217e-5 +rush_V2V 4.675081813931744e-4 +rush_VV 1.9219680953296174e-4 +rush_away_V 2.2678822515534993e-5 +rush_into_V2 1.609865254278217e-5 +rush_off_V 2.2678822515534993e-5 +rush_out_V2 1.609865254278217e-5 +rusher_N 3.729715012475897e-6 +rushlight_N 3.729715012475897e-6 +rushlike_A 1.0773191989054437e-5 +rushy_A 1.0773191989054437e-5 +rusk_N 3.729715012475897e-6 +russet_A 1.0773191989054437e-5 +russet_N 3.729715012475897e-6 +russia_PN 1.3058239749281798e-4 +russian_A 1.72371071824871e-4 +russian_N 1.4918860049903587e-5 +rust_A 1.0773191989054437e-5 +rust_N 3.729715012475897e-6 +rust_V 4.5357645031069986e-5 +rust_V2 3.219730508556434e-5 +rustic_A 1.0773191989054437e-5 +rustic_N 3.729715012475897e-6 +rusticate_V 2.2678822515534993e-5 +rusticate_V2 3.219730508556434e-5 +rustication_N 3.729715012475897e-6 +rusticity_N 3.729715012475897e-6 +rustiness_N 3.729715012475897e-6 +rustle_N 3.729715012475897e-6 +rustle_V 2.2678822515534993e-5 +rustle_V2 1.609865254278217e-5 +rustle_up_V2 1.609865254278217e-5 +rustler_N 7.459430024951794e-6 +rustless_A 1.0773191989054437e-5 +rustling_N 1.118914503742769e-5 +rustproof_A 1.0773191989054437e-5 +rusty_A 3.231957596716331e-5 +rut_N 3.729715012475897e-6 +rut_V2 1.609865254278217e-5 +rutabaga_N 3.729715012475897e-6 +ruth_PN 1.865462821325971e-5 +ruthenium_N 3.729715012475897e-6 +rutherford_N 3.729715012475897e-6 +rutherfordium_N 3.729715012475897e-6 +rutherglen_PN 1.865462821325971e-5 +ruthless_A 4.309276795621775e-5 +ruthlessness_N 3.729715012475897e-6 +rutile_N 3.729715012475897e-6 +rutland_PN 1.865462821325971e-5 +rwanda_PN 1.865462821325971e-5 +rwandan_A 1.0773191989054437e-5 +rwandan_N 3.729715012475897e-6 +rya_N 3.729715012475897e-6 +rydberg_N 3.729715012475897e-6 +ryde_PN 1.865462821325971e-5 +rye_N 1.4918860049903587e-5 +rye_bread_N 3.729715012475897e-6 +ryehill_PN 1.865462821325971e-5 +saarbrucken_PN 1.865462821325971e-5 +sabadeli_PN 1.865462821325971e-5 +sabah_PN 1.865462821325971e-5 +sabahan_A 1.0773191989054437e-5 +sabahan_N 3.729715012475897e-6 +sabbat_N 3.729715012475897e-6 +sabbatarian_A 1.0773191989054437e-5 +sabbatarian_N 3.729715012475897e-6 +sabbath_N 3.729715012475897e-6 +sabbatia_N 3.729715012475897e-6 +sabbatical_A 1.0773191989054437e-5 +sabbatical_N 3.729715012475897e-6 +saber_N 3.729715012475897e-6 +sabicu_N 3.729715012475897e-6 +sabin_N 3.729715012475897e-6 +sable_A 1.0773191989054437e-5 +sable_N 3.729715012475897e-6 +sabot_N 3.729715012475897e-6 +sabotage_N 2.237829007485538e-5 +sabotage_V2 6.439461017112868e-5 +saboteur_N 3.729715012475897e-6 +sabra_N 3.729715012475897e-6 +sabre_N 3.729715012475897e-6 +sabre_V2 1.609865254278217e-5 +sabre_rattling_N 3.729715012475897e-6 +sabre_toothed_A 1.0773191989054437e-5 +sac_N 7.459430024951794e-6 +saccade_N 3.729715012475897e-6 +saccadic_A 1.0773191989054437e-5 +saccharin_N 3.729715012475897e-6 +saccharine_A 1.0773191989054437e-5 +saccharinity_N 3.729715012475897e-6 +sacculated_A 1.0773191989054437e-5 +saccule_N 3.729715012475897e-6 +sacerdotal_A 1.0773191989054437e-5 +sacerdotalism_N 3.729715012475897e-6 +sachem_N 3.729715012475897e-6 +sachet_N 3.729715012475897e-6 +sack_N 2.6108005087331277e-5 +sack_V2 8.049326271391085e-5 +sack_race_N 3.729715012475897e-6 +sackbut_N 3.729715012475897e-6 +sackcloth_N 3.729715012475897e-6 +sacking_N 7.459430024951794e-6 +sacral_A 1.0773191989054437e-5 +sacrament_N 3.729715012475897e-6 +sacramental_A 1.0773191989054437e-5 +sacramento_PN 1.865462821325971e-5 +sacred_A 4.309276795621775e-5 +sacredness_N 3.729715012475897e-6 +sacrifice_N 2.237829007485538e-5 +sacrifice_V 2.0410940263981494e-4 +sacrifice_V2 9.659191525669301e-5 +sacrificeable_A 1.0773191989054437e-5 +sacrificer_N 3.729715012475897e-6 +sacrificial_A 1.0773191989054437e-5 +sacrilege_N 3.729715012475897e-6 +sacrilegious_A 1.0773191989054437e-5 +sacrilegiousness_N 3.729715012475897e-6 +sacristan_N 3.729715012475897e-6 +sacristy_N 3.729715012475897e-6 +sacrosanct_A 1.0773191989054437e-5 +sacrum_N 3.729715012475897e-6 +sad_A 1.72371071824871e-4 +sadden_V 2.2678822515534993e-5 +sadden_V2 1.609865254278217e-5 +saddle_N 3.729715012475897e-6 +saddle_V 6.803646754660499e-5 +saddle_V2 4.8295957628346505e-5 +saddle_sore_A 1.0773191989054437e-5 +saddle_up_V2 1.609865254278217e-5 +saddle_with_V3 1.5873015873015873e-3 +saddleback_N 3.729715012475897e-6 +saddlebag_N 3.729715012475897e-6 +saddlebill_N 3.729715012475897e-6 +saddler_N 3.729715012475897e-6 +saddlery_N 3.729715012475897e-6 +sadhe_N 3.729715012475897e-6 +sadhu_N 3.729715012475897e-6 +sadism_N 3.729715012475897e-6 +sadist_N 3.729715012475897e-6 +sadistic_A 2.1546383978108874e-5 +sadness_N 3.729715012475897e-6 +sadomasochism_N 3.729715012475897e-6 +sadomasochist_N 3.729715012475897e-6 +sadomasochistic_A 1.0773191989054437e-5 +sae_N 3.729715012475897e-6 +safari_N 3.729715012475897e-6 +safe_A 7.64896631222865e-4 +safe_N 7.459430024951794e-6 +safe_conduct_N 3.729715012475897e-6 +safe_deposit_A 2.1546383978108874e-5 +safe_deposit_N 3.729715012475897e-6 +safebreaker_N 3.729715012475897e-6 +safecracker_N 3.729715012475897e-6 +safeguard_N 2.6108005087331277e-5 +safeguard_V2 1.1269056779947518e-4 +safehold_N 3.729715012475897e-6 +safekeeping_N 7.459430024951794e-6 +safeness_N 3.729715012475897e-6 +safety_N 2.9464748598559583e-4 +safety_belt_N 3.729715012475897e-6 +safety_bolt_N 3.729715012475897e-6 +safety_catch_N 3.729715012475897e-6 +safety_curtain_N 3.729715012475897e-6 +safety_factor_N 3.729715012475897e-6 +safety_lamp_N 3.729715012475897e-6 +safety_lock_N 3.729715012475897e-6 +safety_match_N 3.729715012475897e-6 +safety_pin_N 3.729715012475897e-6 +safety_razor_N 3.729715012475897e-6 +safety_valve_N 3.729715012475897e-6 +safflower_N 3.729715012475897e-6 +saffron_N 3.729715012475897e-6 +saffron_walden_PN 1.865462821325971e-5 +safranine_N 3.729715012475897e-6 +sag_N 3.729715012475897e-6 +sag_V 4.308976277951649e-4 +sag_off_V2 1.609865254278217e-5 +saga_N 1.4918860049903587e-5 +sagacious_A 1.0773191989054437e-5 +sagacity_N 3.729715012475897e-6 +sage_A 1.0773191989054437e-5 +sage_N 1.118914503742769e-5 +sage_green_A 1.0773191989054437e-5 +sage_green_N 3.729715012475897e-6 +sagebrush_N 3.729715012475897e-6 +sagitta_N 3.729715012475897e-6 +sagittal_A 1.0773191989054437e-5 +sagittarius_PN 1.865462821325971e-5 +sagittate_A 1.0773191989054437e-5 +sago_N 3.729715012475897e-6 +saguaro_N 3.729715012475897e-6 +sahib_N 3.729715012475897e-6 +said_Quant 6.058366300943288e-6 +saiga_N 3.729715012475897e-6 +saigon_PN 1.865462821325971e-5 +sail_N 1.118914503742769e-5 +sail_V 6.803646754660499e-5 +sail_V2 3.219730508556434e-5 +sail_into_V2 1.609865254278217e-5 +sail_through_V2 1.609865254278217e-5 +sailboat_N 3.729715012475897e-6 +sailcloth_N 3.729715012475897e-6 +sailfish_N 3.729715012475897e-6 +sailing_N 1.8648575062379485e-5 +sailing_boat_N 3.729715012475897e-6 +sailing_master_N 3.729715012475897e-6 +sailing_ship_N 3.729715012475897e-6 +sailing_vessel_N 3.729715012475897e-6 +sailmaker_N 3.729715012475897e-6 +sailor_N 1.4918860049903587e-5 +sainfoin_N 3.729715012475897e-6 +saint's_day_N 3.729715012475897e-6 +saint_N 7.459430024951794e-6 +sainted_A 1.0773191989054437e-5 +sainthood_N 7.459430024951794e-6 +saintlike_A 1.0773191989054437e-5 +saintliness_N 3.729715012475897e-6 +saintly_A 2.1546383978108874e-5 +sake_1_N 3.729715012475897e-6 +sake_2_N 3.729715012475897e-6 +sake_N 3.729715012475897e-6 +saki_N 3.729715012475897e-6 +sal_volatile_N 3.729715012475897e-6 +salaam_N 3.729715012475897e-6 +salaam_V 2.2678822515534993e-5 +salability_N 3.729715012475897e-6 +salable_A 2.1546383978108874e-5 +salacious_A 1.0773191989054437e-5 +salaciousness_N 3.729715012475897e-6 +salacity_N 3.729715012475897e-6 +salad_N 1.118914503742769e-5 +salad_dressing_N 3.729715012475897e-6 +salad_oil_N 3.729715012475897e-6 +salai_N 3.729715012475897e-6 +salal_N 3.729715012475897e-6 +salamanca_PN 1.865462821325971e-5 +salamander_N 3.729715012475897e-6 +salamandriform_A 1.0773191989054437e-5 +salami_N 3.729715012475897e-6 +salaried_A 4.309276795621775e-5 +salary_N 1.6037774553646355e-4 +salat_N 3.729715012475897e-6 +sale_N 6.71721673746909e-3 +sale_PN 1.865462821325971e-5 +saleable_A 1.0773191989054437e-5 +salerno_PN 1.865462821325971e-5 +saleroom_N 3.729715012475897e-6 +salesclerk_N 3.729715012475897e-6 +salesgirl_N 3.729715012475897e-6 +salesman_N 1.193508803992287e-4 +salesmanship_N 3.729715012475897e-6 +salesperson_N 3.729715012475897e-6 +saleswoman_N 3.729715012475897e-6 +salford_PN 1.865462821325971e-5 +salicylate_N 3.729715012475897e-6 +salience_N 3.729715012475897e-6 +salient_A 1.0773191989054437e-5 +salient_N 3.729715012475897e-6 +saliferous_A 1.0773191989054437e-5 +saline_A 1.0773191989054437e-5 +saline_N 3.729715012475897e-6 +salinity_N 3.729715012475897e-6 +salinometer_N 3.729715012475897e-6 +salisbury_PN 3.730925642651942e-5 +saliva_N 3.729715012475897e-6 +salivary_A 1.0773191989054437e-5 +salivate_V 2.2678822515534993e-5 +salivation_N 3.729715012475897e-6 +sallet_N 3.729715012475897e-6 +sallow_A 1.0773191989054437e-5 +sallow_N 3.729715012475897e-6 +sallow_V 2.2678822515534993e-5 +sallow_V2 1.609865254278217e-5 +sallowness_N 3.729715012475897e-6 +sally_N 3.729715012475897e-6 +sally_PN 1.865462821325971e-5 +sally_V 2.2678822515534993e-5 +sally_forth_V 2.2678822515534993e-5 +sally_out_V 2.2678822515534993e-5 +salmagundi_N 3.729715012475897e-6 +salmi_N 3.729715012475897e-6 +salmon_N 2.237829007485538e-5 +salmonberry_N 3.729715012475897e-6 +salmonella_N 3.729715012475897e-6 +salmonellosis_N 3.729715012475897e-6 +salmonid_N 3.729715012475897e-6 +salol_N 3.729715012475897e-6 +salon_N 1.4918860049903587e-5 +saloon_N 3.729715012475897e-6 +salp_N 3.729715012475897e-6 +salpiglossis_N 3.729715012475897e-6 +salpingectomy_N 3.729715012475897e-6 +salpingitis_N 3.729715012475897e-6 +salpinx_N 3.729715012475897e-6 +salsa_N 3.729715012475897e-6 +salsify_N 3.729715012475897e-6 +salsilla_N 3.729715012475897e-6 +salt_A 1.0773191989054437e-5 +salt_N 2.237829007485538e-5 +salt_PN 1.865462821325971e-5 +salt_V2 3.219730508556434e-5 +salt_away_V2 1.609865254278217e-5 +salt_cellar_N 3.729715012475897e-6 +salt_lick_N 3.729715012475897e-6 +saltash_PN 1.865462821325971e-5 +saltation_N 3.729715012475897e-6 +saltbox_N 3.729715012475897e-6 +saltburn_PN 1.865462821325971e-5 +saltbush_N 3.729715012475897e-6 +saltcellar_N 3.729715012475897e-6 +saltcoats_PN 1.865462821325971e-5 +salter_N 3.729715012475897e-6 +saltine_N 3.729715012475897e-6 +saltiness_N 3.729715012475897e-6 +salting_N 3.729715012475897e-6 +saltish_A 1.0773191989054437e-5 +saltlike_A 1.0773191989054437e-5 +saltpan_N 3.729715012475897e-6 +saltpetre_N 3.729715012475897e-6 +saltshaker_N 3.729715012475897e-6 +saltwater_N 7.459430024951794e-6 +saltworks_N 3.729715012475897e-6 +saltwort_N 3.729715012475897e-6 +salty_A 1.0773191989054437e-5 +salubrious_A 2.1546383978108874e-5 +salubrity_N 3.729715012475897e-6 +salutary_A 2.1546383978108874e-5 +salutation_N 3.729715012475897e-6 +salutatorian_N 3.729715012475897e-6 +salute_N 3.729715012475897e-6 +salute_V 4.5357645031069986e-5 +salute_V2 3.219730508556434e-5 +salvador_PN 1.865462821325971e-5 +salvadorean_A 1.0773191989054437e-5 +salvadorean_N 3.729715012475897e-6 +salvage_N 1.4918860049903587e-5 +salvage_V2 1.4488787288503951e-4 +salvageable_A 1.0773191989054437e-5 +salvager_N 3.729715012475897e-6 +salvation_N 7.459430024951794e-6 +salve_N 3.729715012475897e-6 +salve_V2 3.219730508556434e-5 +salver_N 3.729715012475897e-6 +salverform_A 1.0773191989054437e-5 +salvia_N 3.729715012475897e-6 +salvific_A 1.0773191989054437e-5 +salvinorin_N 3.729715012475897e-6 +salvo_N 1.118914503742769e-5 +salwar_N 3.729715012475897e-6 +salzburg_PN 1.865462821325971e-5 +sam_PN 1.865462821325971e-5 +samantha_PN 1.865462821325971e-5 +samara_N 3.729715012475897e-6 +samaritan_N 7.459430024951794e-6 +samarium_N 3.729715012475897e-6 +samarskite_N 3.729715012475897e-6 +samba_N 3.729715012475897e-6 +sambar_N 3.729715012475897e-6 +sambuca_N 3.729715012475897e-6 +same_A 4.1153593398187945e-3 +same_Adv 8.668966832532898e-6 +samekh_N 3.729715012475897e-6 +sameness_N 3.729715012475897e-6 +samisen_N 3.729715012475897e-6 +samite_N 3.729715012475897e-6 +samizdat_N 3.729715012475897e-6 +sammy_PN 1.865462821325971e-5 +samoa_PN 1.865462821325971e-5 +samoan_A 1.0773191989054437e-5 +samoan_N 3.729715012475897e-6 +samosa_N 3.729715012475897e-6 +samovar_N 7.459430024951794e-6 +sampan_N 3.729715012475897e-6 +sample_N 7.832401526199384e-5 +sample_V2 4.8295957628346505e-5 +sampler_N 3.729715012475897e-6 +sampling_N 3.729715012475897e-6 +samsara_N 3.729715012475897e-6 +samuel_PN 1.865462821325971e-5 +samurai_N 7.459430024951794e-6 +san_antonio_PN 2.052009103458568e-4 +san_bernardino_PN 1.865462821325971e-5 +san_diego_PN 1.865462821325971e-5 +san_francisco_PN 2.6303025780696192e-3 +san_jose_PN 1.865462821325971e-5 +san_juan_PN 1.865462821325971e-5 +san_marinese_A 2.1546383978108874e-5 +san_marinese_N 7.459430024951794e-6 +san_marino_PN 1.865462821325971e-5 +san_sebastian_PN 1.865462821325971e-5 +sanatorium_N 3.729715012475897e-6 +sanctification_N 3.729715012475897e-6 +sanctify_V2 1.609865254278217e-5 +sanctimonious_A 1.0773191989054437e-5 +sanctimoniousness_N 3.729715012475897e-6 +sanction_N 1.0070230533684921e-4 +sanction_V2 9.659191525669301e-5 +sanctionative_A 1.0773191989054437e-5 +sanctity_N 7.459430024951794e-6 +sanctuary_N 7.459430024951794e-6 +sanctum_N 3.729715012475897e-6 +sand_N 9.697259032437332e-5 +sand_V2 1.609865254278217e-5 +sand_bar_N 3.729715012475897e-6 +sandal_N 3.729715012475897e-6 +sandaled_A 1.0773191989054437e-5 +sandalled_A 1.0773191989054437e-5 +sandalwood_N 3.729715012475897e-6 +sandarac_N 3.729715012475897e-6 +sandbach_PN 1.865462821325971e-5 +sandbag_N 3.729715012475897e-6 +sandbagger_N 3.729715012475897e-6 +sandbank_N 3.729715012475897e-6 +sandbar_N 3.729715012475897e-6 +sandblast_N 3.729715012475897e-6 +sandblast_V2 1.609865254278217e-5 +sandblaster_N 3.729715012475897e-6 +sandbox_N 3.729715012475897e-6 +sandboy_N 3.729715012475897e-6 +sandbur_N 3.729715012475897e-6 +sanderling_N 3.729715012475897e-6 +sandfish_N 3.729715012475897e-6 +sandfly_N 3.729715012475897e-6 +sandglass_N 3.729715012475897e-6 +sandgrouse_N 3.729715012475897e-6 +sandhi_N 3.729715012475897e-6 +sandiness_N 3.729715012475897e-6 +sandlot_N 3.729715012475897e-6 +sandman_N 3.729715012475897e-6 +sandown_PN 1.865462821325971e-5 +sandpaper_N 7.459430024951794e-6 +sandpaper_V2 1.609865254278217e-5 +sandpapery_A 1.0773191989054437e-5 +sandpiper_N 3.729715012475897e-6 +sandpit_N 3.729715012475897e-6 +sandra_PN 1.865462821325971e-5 +sandstone_N 3.729715012475897e-6 +sandstorm_N 3.729715012475897e-6 +sandwich_N 4.475658014971076e-5 +sandwich_V 4.5357645031069986e-5 +sandwich_V2 4.8295957628346505e-5 +sandwich_board_N 3.729715012475897e-6 +sandwichman_N 3.729715012475897e-6 +sandwort_N 3.729715012475897e-6 +sandy_A 2.1546383978108874e-5 +sandy_PN 1.865462821325971e-5 +sane_A 1.0773191989054437e-5 +sang_froid_N 3.729715012475897e-6 +sangapenum_N 3.729715012475897e-6 +sangaree_N 3.729715012475897e-6 +sango_N 3.729715012475897e-6 +sangoma_N 3.729715012475897e-6 +sanguinary_A 1.0773191989054437e-5 +sanguine_A 5.3865959945272184e-5 +sanguine_N 3.729715012475897e-6 +sanguinity_N 3.729715012475897e-6 +sanicle_N 3.729715012475897e-6 +sanitariness_N 3.729715012475897e-6 +sanitary_A 3.231957596716331e-5 +sanitation_N 1.4918860049903587e-5 +sanitize_V2 4.8295957628346505e-5 +sanity_N 3.729715012475897e-6 +sannup_N 3.729715012475897e-6 +sannyasi_N 3.729715012475897e-6 +sans_Prep 9.978546125829467e-6 +sansevieria_N 3.729715012475897e-6 +sanskrit_N 3.729715012475897e-6 +santa_claus_N 1.4918860049903587e-5 +santa_claus_PN 1.865462821325971e-5 +santander_PN 1.865462821325971e-5 +santiago_PN 1.865462821325971e-5 +santims_N 3.729715012475897e-6 +santo_domingo_PN 1.865462821325971e-5 +santos_PN 1.865462821325971e-5 +sao_paolo_PN 1.865462821325971e-5 +sap_N 3.729715012475897e-6 +sap_V 4.5357645031069986e-5 +sap_V2 4.8295957628346505e-5 +saphead_N 3.729715012475897e-6 +sapidity_N 3.729715012475897e-6 +sapience_N 3.729715012475897e-6 +sapiens_A 1.0773191989054437e-5 +sapient_A 1.0773191989054437e-5 +sapiential_A 1.0773191989054437e-5 +sapless_A 1.0773191989054437e-5 +sapling_N 3.729715012475897e-6 +sapodilla_N 3.729715012475897e-6 +saponaceous_A 1.0773191989054437e-5 +saponification_N 3.729715012475897e-6 +saponified_A 1.0773191989054437e-5 +saponin_N 3.729715012475897e-6 +sapote_N 3.729715012475897e-6 +sapper_N 3.729715012475897e-6 +sapphic_A 1.0773191989054437e-5 +sapphire_A 1.0773191989054437e-5 +sapphire_N 3.729715012475897e-6 +sapphirine_A 1.0773191989054437e-5 +sapphirine_N 3.729715012475897e-6 +sapporo_PN 1.865462821325971e-5 +sappy_A 1.0773191989054437e-5 +sapremia_N 3.729715012475897e-6 +saprobe_N 3.729715012475897e-6 +saprobic_A 1.0773191989054437e-5 +saprolite_N 3.729715012475897e-6 +sapropel_N 3.729715012475897e-6 +saprophagous_A 1.0773191989054437e-5 +saprophyte_N 3.729715012475897e-6 +saprophytic_A 1.0773191989054437e-5 +sapsago_N 3.729715012475897e-6 +sapsucker_N 3.729715012475897e-6 +sapwood_N 3.729715012475897e-6 +saquinavir_N 3.729715012475897e-6 +sara_PN 1.865462821325971e-5 +saraband_N 3.729715012475897e-6 +saracen_N 3.729715012475897e-6 +sarah_PN 1.865462821325971e-5 +sarajevo_PN 1.865462821325971e-5 +saran_N 3.729715012475897e-6 +saratov_PN 1.865462821325971e-5 +sarawak_PN 1.865462821325971e-5 +sarawakian_A 1.0773191989054437e-5 +sarawakian_N 3.729715012475897e-6 +sarcasm_N 3.729715012475897e-6 +sarcastic_A 1.0773191989054437e-5 +sarcastically_Adv 8.668966832532898e-6 +sarcenet_N 3.729715012475897e-6 +sarcodinian_N 3.729715012475897e-6 +sarcoidosis_N 3.729715012475897e-6 +sarcolemma_N 3.729715012475897e-6 +sarcolemmal_A 1.0773191989054437e-5 +sarcolemmic_A 1.0773191989054437e-5 +sarcoma_N 3.729715012475897e-6 +sarcomere_N 3.729715012475897e-6 +sarcophagus_N 3.729715012475897e-6 +sarcoplasm_N 3.729715012475897e-6 +sarcosine_N 3.729715012475897e-6 +sarcosomal_A 1.0773191989054437e-5 +sarcosome_N 3.729715012475897e-6 +sarcosporidian_N 3.729715012475897e-6 +sard_N 3.729715012475897e-6 +sardine_N 3.729715012475897e-6 +sardonic_A 2.1546383978108874e-5 +sardonically_Adv 1.7337933665065797e-5 +sardonyx_N 3.729715012475897e-6 +sari_N 3.729715012475897e-6 +sarin_N 3.729715012475897e-6 +sarisbury_PN 1.865462821325971e-5 +sarong_N 3.729715012475897e-6 +sarsaparilla_N 7.459430024951794e-6 +sartorial_A 1.0773191989054437e-5 +sartorius_N 3.729715012475897e-6 +sash_N 3.729715012475897e-6 +sash_cord_N 3.729715012475897e-6 +sash_line_N 3.729715012475897e-6 +sashay_N 3.729715012475897e-6 +sashimi_N 3.729715012475897e-6 +saskatchewan_PN 1.865462821325971e-5 +saskatoon_N 3.729715012475897e-6 +sass_N 3.729715012475897e-6 +sassaby_N 3.729715012475897e-6 +sassafras_N 3.729715012475897e-6 +sassari_PN 1.865462821325971e-5 +sassenach_N 3.729715012475897e-6 +sat_PN 1.865462821325971e-5 +sat_down_V 2.2678822515534993e-5 +sat_in_V 2.2678822515534993e-5 +satan_N 3.729715012475897e-6 +satang_N 3.729715012475897e-6 +satanic_A 1.0773191989054437e-5 +satanophobia_N 3.729715012475897e-6 +satchel_N 3.729715012475897e-6 +sate_V2 1.609865254278217e-5 +sateen_N 3.729715012475897e-6 +satellite_A 1.0773191989054437e-5 +satellite_N 6.340515521209024e-5 +satiable_A 1.0773191989054437e-5 +satiate_A 1.0773191989054437e-5 +satiate_V2 1.609865254278217e-5 +satiation_N 3.729715012475897e-6 +satiety_N 3.729715012475897e-6 +satin_A 1.0773191989054437e-5 +satin_N 3.729715012475897e-6 +satinet_N 3.729715012475897e-6 +satinleaf_N 3.729715012475897e-6 +satinwood_N 3.729715012475897e-6 +satiny_A 1.0773191989054437e-5 +satire_N 2.237829007485538e-5 +satirical_A 4.309276795621775e-5 +satirist_N 3.729715012475897e-6 +satirize_V2 1.609865254278217e-5 +satisfaction_N 7.459430024951794e-5 +satisfactoriness_N 3.729715012475897e-6 +satisfactory_A 1.2927830386865325e-4 +satisfier_N 3.729715012475897e-6 +satisfy_V 2.7214587018641994e-4 +satisfy_V2 4.3466361865511857e-4 +satori_N 3.729715012475897e-6 +satrap_N 3.729715012475897e-6 +satsuma_N 3.729715012475897e-6 +saturate_V2 6.439461017112868e-5 +saturation_N 3.729715012475897e-6 +saturday_N 3.729715012475897e-6 +saturday_PN 5.409842181845316e-4 +saturn_PN 1.865462821325971e-5 +saturnalia_N 3.729715012475897e-6 +saturniid_N 3.729715012475897e-6 +saturnine_A 1.0773191989054437e-5 +satyr_N 3.729715012475897e-6 +satyriasis_N 3.729715012475897e-6 +satyric_A 1.0773191989054437e-5 +sauce_N 1.8648575062379485e-5 +sauce_V2 1.609865254278217e-5 +sauce_boat_N 3.729715012475897e-6 +saucepan_N 3.729715012475897e-6 +saucepot_N 3.729715012475897e-6 +saucer_N 7.459430024951794e-6 +saucer_eyed_A 1.0773191989054437e-5 +sauchie_PN 1.865462821325971e-5 +sauciness_N 3.729715012475897e-6 +saucy_A 2.1546383978108874e-5 +saudi_arabia_PN 2.9847405141215536e-4 +saudi_arabian_A 9.695872790148993e-5 +saudi_arabian_N 3.729715012475897e-6 +sauerbraten_N 3.729715012475897e-6 +sauerkraut_N 7.459430024951794e-6 +sauna_N 1.118914503742769e-5 +saunter_N 3.729715012475897e-6 +saunter_V 2.2678822515534993e-5 +saunterer_N 3.729715012475897e-6 +saurian_A 1.0773191989054437e-5 +saurian_N 3.729715012475897e-6 +saurischian_N 3.729715012475897e-6 +sauropod_N 3.729715012475897e-6 +saury_N 3.729715012475897e-6 +sausage_N 7.459430024951794e-6 +sausage_dog_N 3.729715012475897e-6 +sausage_meat_N 3.729715012475897e-6 +sausage_roll_N 3.729715012475897e-6 +saute_A 1.0773191989054437e-5 +saute_N 3.729715012475897e-6 +saute_V2 1.609865254278217e-5 +savage_A 2.1546383978108874e-5 +savage_N 3.729715012475897e-6 +savage_V2 1.609865254278217e-5 +savageness_N 3.729715012475897e-6 +savagery_N 3.729715012475897e-6 +savanna_N 3.729715012475897e-6 +savannah_N 3.729715012475897e-6 +savant_N 3.729715012475897e-6 +savarin_N 3.729715012475897e-6 +save_N 3.729715012475897e-6 +save_V 7.030434979815848e-4 +save_V2 8.854258898530193e-4 +save_on_V2 1.609865254278217e-5 +save_up_V2 1.609865254278217e-5 +saveloy_N 3.729715012475897e-6 +saver_N 7.459430024951794e-6 +saving_N 2.9837720099807176e-4 +savings_N 3.729715012475897e-6 +savings_bank_N 3.729715012475897e-6 +savior_N 3.729715012475897e-6 +saviour_N 3.729715012475897e-6 +savoir_faire_N 3.729715012475897e-6 +savore_V2 4.8295957628346505e-5 +savory_A 1.0773191989054437e-5 +savory_N 3.729715012475897e-6 +savour_N 3.729715012475897e-6 +savour_V 2.2678822515534993e-5 +savour_V2 1.609865254278217e-5 +savoury_A 1.0773191989054437e-5 +savoury_N 3.729715012475897e-6 +savoy_N 3.729715012475897e-6 +savvy_N 7.459430024951794e-6 +savvy_V 2.2678822515534993e-5 +saw_N 1.8648575062379485e-5 +saw_V 2.2678822515534993e-5 +saw_V2 1.609865254278217e-5 +saw_off_V2 1.609865254278217e-5 +saw_pit_N 3.729715012475897e-6 +saw_up_V2 1.609865254278217e-5 +sawbridgeworth_PN 1.865462821325971e-5 +sawdust_N 3.729715012475897e-6 +sawfish_N 3.729715012475897e-6 +sawfly_N 3.729715012475897e-6 +sawhorse_N 3.729715012475897e-6 +sawm_N 3.729715012475897e-6 +sawmill_N 3.729715012475897e-6 +sawpit_N 3.729715012475897e-6 +sawtooth_N 3.729715012475897e-6 +sawwort_N 3.729715012475897e-6 +sawyer_N 3.729715012475897e-6 +sax_N 3.729715012475897e-6 +saxhorn_N 3.729715012475897e-6 +saxicolous_A 1.0773191989054437e-5 +saxifrage_N 3.729715012475897e-6 +saxitoxin_N 3.729715012475897e-6 +saxon_A 1.0773191989054437e-5 +saxon_N 3.729715012475897e-6 +saxophone_N 3.729715012475897e-6 +saxophonist_N 3.729715012475897e-6 +say_N 1.4918860049903587e-5 +say_V 1.712251099922892e-2 +say_V2 1.4166814237648309e-3 +say_VA 2.952755905511811e-3 +say_VS 0.5643158320337319 +say_VV 2.7868537382279455e-3 +saying_N 1.4918860049903587e-5 +scab_N 7.459430024951794e-6 +scabbard_N 3.729715012475897e-6 +scabby_A 1.0773191989054437e-5 +scabicide_N 3.729715012475897e-6 +scabies_N 3.729715012475897e-6 +scabious_N 3.729715012475897e-6 +scablands_N 3.729715012475897e-6 +scabrous_A 1.0773191989054437e-5 +scad_N 3.729715012475897e-6 +scaffold_N 3.729715012475897e-6 +scaffolding_N 3.729715012475897e-6 +scalability_N 3.729715012475897e-6 +scalable_A 1.0773191989054437e-5 +scalage_N 3.729715012475897e-6 +scalar_A 1.0773191989054437e-5 +scalar_N 3.729715012475897e-6 +scalawag_N 7.459430024951794e-6 +scald_N 3.729715012475897e-6 +scald_V2 1.609865254278217e-5 +scale_N 1.268103104241805e-4 +scale_V 2.9482469270195494e-4 +scale_V2 4.8295957628346505e-5 +scale_back_V2 1.609865254278217e-5 +scale_down_V2 1.609865254278217e-5 +scale_up_V2 1.609865254278217e-5 +scaleless_A 1.0773191989054437e-5 +scalelike_A 1.0773191989054437e-5 +scalene_A 1.0773191989054437e-5 +scalenus_N 3.729715012475897e-6 +scaler_N 3.729715012475897e-6 +scalic_A 1.0773191989054437e-5 +scaliness_N 3.729715012475897e-6 +scaling_N 3.729715012475897e-6 +scaling_ladder_N 3.729715012475897e-6 +scallop_N 3.729715012475897e-6 +scallop_V2 1.609865254278217e-5 +scallop_shell_N 3.729715012475897e-6 +scallopine_N 3.729715012475897e-6 +scallywag_N 3.729715012475897e-6 +scalp_N 1.118914503742769e-5 +scalp_V2 1.609865254278217e-5 +scalpel_N 3.729715012475897e-6 +scalper_N 3.729715012475897e-6 +scaly_A 1.0773191989054437e-5 +scam_N 1.118914503742769e-5 +scam_V2 3.219730508556434e-5 +scammony_N 3.729715012475897e-6 +scamp_N 3.729715012475897e-6 +scamp_V2 1.609865254278217e-5 +scamper_N 3.729715012475897e-6 +scamper_V 4.5357645031069986e-5 +scampi_N 3.729715012475897e-6 +scan_N 7.459430024951794e-6 +scan_V 1.1339411257767497e-4 +scan_V2 3.219730508556434e-5 +scandal_N 2.6853948089826455e-4 +scandalization_N 3.729715012475897e-6 +scandalize_V2 3.219730508556434e-5 +scandalmonger_N 3.729715012475897e-6 +scandalmongering_A 1.0773191989054437e-5 +scandalmongering_N 3.729715012475897e-6 +scandalous_A 1.0773191989054437e-5 +scandalousness_N 3.729715012475897e-6 +scandent_A 1.0773191989054437e-5 +scandinavian_A 2.1546383978108874e-5 +scandinavian_N 3.729715012475897e-6 +scandium_N 3.729715012475897e-6 +scanner_N 1.4918860049903587e-5 +scanning_N 3.729715012475897e-6 +scansion_N 3.729715012475897e-6 +scant_A 6.463915193432663e-5 +scant_V2 1.609865254278217e-5 +scantiness_N 3.729715012475897e-6 +scantling_N 3.729715012475897e-6 +scanty_A 1.0773191989054437e-5 +scape_N 3.729715012475897e-6 +scapegoat_N 1.118914503742769e-5 +scapegrace_N 3.729715012475897e-6 +scaphocephaly_N 3.729715012475897e-6 +scaphopod_N 3.729715012475897e-6 +scapose_A 1.0773191989054437e-5 +scapula_N 3.729715012475897e-6 +scapular_A 1.0773191989054437e-5 +scapular_N 3.729715012475897e-6 +scapulohumeral_A 1.0773191989054437e-5 +scar_N 1.118914503742769e-5 +scar_V 4.5357645031069986e-5 +scar_V2 1.609865254278217e-5 +scarab_N 3.729715012475897e-6 +scarborough_PN 1.865462821325971e-5 +scarce_A 1.8314426381392542e-4 +scarcity_N 7.459430024951794e-6 +scare_N 1.8648575062379485e-5 +scare_V 2.9482469270195494e-4 +scare_V2 2.092824830561682e-4 +scare_away_V2 1.609865254278217e-5 +scare_off_V2 3.219730508556434e-5 +scarecrow_N 3.729715012475897e-6 +scarecrowish_A 1.0773191989054437e-5 +scaremonger_N 3.729715012475897e-6 +scarf_N 3.729715012475897e-6 +scarf_pin_N 3.729715012475897e-6 +scarf_up_V 2.2678822515534993e-5 +scarify_V2 1.609865254278217e-5 +scarlet_A 2.1546383978108874e-5 +scarlet_N 3.729715012475897e-6 +scarp_N 3.729715012475897e-6 +scarper_V 2.2678822515534993e-5 +scary_A 9.695872790148993e-5 +scat_N 3.729715012475897e-6 +scathing_A 3.231957596716331e-5 +scatological_A 1.0773191989054437e-5 +scatology_N 3.729715012475897e-6 +scatophagy_N 3.729715012475897e-6 +scatter_N 3.729715012475897e-6 +scatter_V 6.803646754660499e-5 +scatter_V2 1.1269056779947518e-4 +scatterbrain_N 3.729715012475897e-6 +scatterbrained_A 1.0773191989054437e-5 +scattering_N 3.729715012475897e-6 +scattershot_A 1.0773191989054437e-5 +scatty_A 1.0773191989054437e-5 +scaup_N 3.729715012475897e-6 +scauper_N 3.729715012475897e-6 +scavenge_V 2.2678822515534993e-5 +scavenger_N 1.4918860049903587e-5 +scenario_N 1.4918860049903588e-4 +scenarist_N 3.729715012475897e-6 +scene_N 1.4918860049903588e-4 +scene_painter_N 3.729715012475897e-6 +scene_shifter_N 3.729715012475897e-6 +scenery_N 1.118914503742769e-5 +sceneshifter_N 3.729715012475897e-6 +scenic_A 3.231957596716331e-5 +scenically_Adv 8.668966832532898e-6 +scent_N 7.459430024951794e-6 +scent_V2 3.219730508556434e-5 +scentless_A 1.0773191989054437e-5 +scepter_N 3.729715012475897e-6 +sceptered_A 1.0773191989054437e-5 +sceptic_N 3.729715012475897e-6 +sceptical_A 1.0773191989054437e-5 +scepticism_N 3.729715012475897e-6 +sceptre_N 3.729715012475897e-6 +sceptred_A 1.0773191989054437e-5 +schedule_N 1.7529660558636716e-4 +schedule_V 7.030434979815848e-4 +schedule_V2 9.820178051097124e-4 +schedule_V2V 3.0855539971949508e-2 +scheduler_N 3.729715012475897e-6 +scheduling_N 3.729715012475897e-6 +scheelite_N 3.729715012475897e-6 +schema_N 3.729715012475897e-6 +schematic_A 1.0773191989054437e-5 +schematic_N 3.729715012475897e-6 +schematically_Adv 8.668966832532898e-6 +schematization_N 3.729715012475897e-6 +scheme_N 1.3426974044913228e-4 +scheme_V 4.5357645031069986e-5 +scheme_V2 1.609865254278217e-5 +schemer_N 7.459430024951794e-6 +schemozzle_N 3.729715012475897e-6 +scherzo_N 3.729715012475897e-6 +schilling_N 3.729715012475897e-6 +schipperke_N 3.729715012475897e-6 +schism_N 3.729715012475897e-6 +schismatic_A 1.0773191989054437e-5 +schismatically_Adv 8.668966832532898e-6 +schist_N 3.729715012475897e-6 +schistosome_N 3.729715012475897e-6 +schistosomiasis_N 3.729715012475897e-6 +schizocarp_N 3.729715012475897e-6 +schizogony_N 3.729715012475897e-6 +schizoid_A 2.1546383978108874e-5 +schizopetalon_N 3.729715012475897e-6 +schizophrenia_N 1.118914503742769e-5 +schizophrenic_A 3.231957596716331e-5 +schizophrenic_N 3.729715012475897e-6 +schizothymia_N 3.729715012475897e-6 +schlemiel_N 3.729715012475897e-6 +schlep_N 3.729715012475897e-6 +schlepper_N 3.729715012475897e-6 +schlimazel_N 3.729715012475897e-6 +schlock_N 3.729715012475897e-6 +schlockmeister_N 3.729715012475897e-6 +schmaltz_N 3.729715012475897e-6 +schmaltzy_A 1.0773191989054437e-5 +schmalz_N 3.729715012475897e-6 +schmalzy_A 1.0773191989054437e-5 +schmeer_N 3.729715012475897e-6 +schmuck_N 3.729715012475897e-6 +schnapps_N 3.729715012475897e-6 +schnauzer_N 3.729715012475897e-6 +schnitzel_N 3.729715012475897e-6 +schnook_N 3.729715012475897e-6 +schnorkel_N 3.729715012475897e-6 +schnorrer_N 3.729715012475897e-6 +scholar_N 7.459430024951794e-5 +scholarly_A 3.231957596716331e-5 +scholarship_N 2.9837720099807175e-5 +scholastic_A 1.0773191989054437e-5 +scholastically_Adv 8.668966832532898e-6 +scholasticism_N 3.729715012475897e-6 +scholiast_N 3.729715012475897e-6 +scholium_N 3.729715012475897e-6 +school_N 6.86267562295565e-4 +school_V2 3.219730508556434e-5 +school_board_N 3.729715012475897e-6 +schoolbag_N 3.729715012475897e-6 +schoolbook_N 3.729715012475897e-6 +schoolboy_N 7.459430024951794e-6 +schoolchild_N 7.459430024951794e-6 +schooldays_N 3.729715012475897e-6 +schoolfellow_N 3.729715012475897e-6 +schoolfriend_N 3.729715012475897e-6 +schoolgirl_N 3.729715012475897e-6 +schoolhouse_N 3.729715012475897e-6 +schooling_N 1.118914503742769e-5 +schoolman_N 3.729715012475897e-6 +schoolmarm_N 3.729715012475897e-6 +schoolmaster_N 3.729715012475897e-6 +schoolmate_N 7.459430024951794e-6 +schoolmistress_N 3.729715012475897e-6 +schoolroom_N 3.729715012475897e-6 +schoolteacher_N 2.237829007485538e-5 +schooltime_N 3.729715012475897e-6 +schoolwide_A 1.0773191989054437e-5 +schoolyard_N 3.729715012475897e-6 +schooner_N 3.729715012475897e-6 +schorl_N 3.729715012475897e-6 +schottische_N 3.729715012475897e-6 +schrod_N 3.729715012475897e-6 +schwa_N 3.729715012475897e-6 +schwerin_PN 1.865462821325971e-5 +sci_fi_N 3.729715012475897e-6 +sciatic_A 1.0773191989054437e-5 +sciatica_N 3.729715012475897e-6 +science_N 1.1562116538675279e-4 +scienter_Adv 8.668966832532898e-6 +scientific_A 4.417008715512319e-4 +scientifically_Adv 1.7337933665065797e-5 +scientist_N 3.319446361103548e-4 +scilla_N 3.729715012475897e-6 +scimitar_N 3.729715012475897e-6 +scintilla_N 3.729715012475897e-6 +scintillate_V 2.2678822515534993e-5 +scintillation_N 3.729715012475897e-6 +sciolism_N 3.729715012475897e-6 +scion_N 3.729715012475897e-6 +scission_N 3.729715012475897e-6 +scissors_N 3.729715012475897e-6 +scissortail_N 3.729715012475897e-6 +sclaff_N 3.729715012475897e-6 +sclera_N 3.729715012475897e-6 +scleredema_N 3.729715012475897e-6 +sclerite_N 3.729715012475897e-6 +scleritis_N 3.729715012475897e-6 +scleroderma_N 3.729715012475897e-6 +sclerometer_N 3.729715012475897e-6 +scleroprotein_N 3.729715012475897e-6 +sclerosis_N 7.459430024951794e-6 +sclerotic_A 1.0773191989054437e-5 +sclerotinia_N 3.729715012475897e-6 +sclerotium_N 3.729715012475897e-6 +sclerotomy_N 3.729715012475897e-6 +scoff_N 3.729715012475897e-6 +scoff_V 1.3607293509320997e-4 +scoff_V2 1.609865254278217e-5 +scoffer_N 3.729715012475897e-6 +scoffingly_Adv 8.668966832532898e-6 +scofflaw_N 3.729715012475897e-6 +scold_N 3.729715012475897e-6 +scold_V 2.2678822515534993e-5 +scold_V2 4.8295957628346505e-5 +scolding_N 3.729715012475897e-6 +scolion_N 3.729715012475897e-6 +scoliosis_N 3.729715012475897e-6 +scollop_N 3.729715012475897e-6 +scollop_V2 1.609865254278217e-5 +scolopendrium_N 3.729715012475897e-6 +scombroid_N 3.729715012475897e-6 +sconce_N 3.729715012475897e-6 +scone_N 3.729715012475897e-6 +scoop_N 1.118914503742769e-5 +scoop_V 1.5875175760874494e-4 +scoop_V2 1.609865254278217e-5 +scoop_up_V 2.2678822515534993e-5 +scoopful_N 3.729715012475897e-6 +scoot_V 2.2678822515534993e-5 +scoot_V2 3.219730508556434e-5 +scooter_N 7.459430024951794e-6 +scopal_A 1.0773191989054437e-5 +scope_N 4.1026865137234865e-5 +scopolamine_N 3.729715012475897e-6 +scorbutic_A 1.0773191989054437e-5 +scorch_N 3.729715012475897e-6 +scorch_V 2.2678822515534993e-5 +scorch_V2 1.609865254278217e-5 +scorcher_N 3.729715012475897e-6 +scorching_Adv 8.668966832532898e-6 +score_N 1.6410746054893946e-4 +score_V 1.1339411257767497e-4 +score_V2 1.1269056779947518e-4 +scoreboard_N 3.729715012475897e-6 +scorebook_N 3.729715012475897e-6 +scorecard_N 1.4918860049903587e-5 +scorekeeper_N 3.729715012475897e-6 +scoreless_A 1.0773191989054437e-5 +scorer_N 3.729715012475897e-6 +scorn_N 1.118914503742769e-5 +scorn_V2 4.8295957628346505e-5 +scornful_A 2.1546383978108874e-5 +scorpaenid_N 3.729715012475897e-6 +scorpaenoid_N 3.729715012475897e-6 +scorpio_PN 1.865462821325971e-5 +scorpion_N 3.729715012475897e-6 +scorpionfish_N 3.729715012475897e-6 +scorpionweed_N 3.729715012475897e-6 +scorzonera_N 3.729715012475897e-6 +scot_N 3.729715012475897e-6 +scot_free_Adv 8.668966832532898e-6 +scotch_A 1.0773191989054437e-5 +scotch_N 2.237829007485538e-5 +scotch_V2 3.219730508556434e-5 +scotchman_N 3.729715012475897e-6 +scotchwoman_N 3.729715012475897e-6 +scoter_N 3.729715012475897e-6 +scotland_PN 1.865462821325971e-5 +scotland_yard_PN 1.865462821325971e-5 +scotoma_N 3.729715012475897e-6 +scotomatous_A 1.0773191989054437e-5 +scots_A 1.0773191989054437e-5 +scotsman_N 3.729715012475897e-6 +scotswoman_N 3.729715012475897e-6 +scottish_A 4.309276795621775e-5 +scoundrel_N 3.729715012475897e-6 +scoundrelly_A 1.0773191989054437e-5 +scour_N 3.729715012475897e-6 +scour_V 4.5357645031069986e-5 +scour_V2 4.8295957628346505e-5 +scourer_N 3.729715012475897e-6 +scourge_N 1.4918860049903587e-5 +scourge_V2 1.609865254278217e-5 +scouring_N 3.729715012475897e-6 +scours_N 3.729715012475897e-6 +scout_N 7.459430024951794e-6 +scout_V 6.803646754660499e-5 +scout_V2 3.219730508556434e-5 +scout_about_V 2.2678822515534993e-5 +scout_around_V 2.2678822515534993e-5 +scout_out_V2 1.609865254278217e-5 +scout_round_V 2.2678822515534993e-5 +scout_up_V2 1.609865254278217e-5 +scouting_N 3.729715012475897e-6 +scoutmaster_N 3.729715012475897e-6 +scow_N 3.729715012475897e-6 +scowl_N 3.729715012475897e-6 +scowl_V 6.803646754660499e-5 +scrabble_N 3.729715012475897e-6 +scrabble_V 2.2678822515534993e-5 +scrabbly_A 1.0773191989054437e-5 +scrag_N 3.729715012475897e-6 +scrag_V2 1.609865254278217e-5 +scrag_end_N 3.729715012475897e-6 +scraggly_A 1.0773191989054437e-5 +scraggy_A 1.0773191989054437e-5 +scram_V 2.2678822515534993e-5 +scramble_N 2.237829007485538e-5 +scramble_V 1.5875175760874494e-4 +scramble_V2 1.609865254278217e-5 +scramble_V2V 4.675081813931744e-4 +scramble_VV 2.4024601191620218e-3 +scrambler_N 3.729715012475897e-6 +scrap_N 2.6108005087331277e-5 +scrap_V 1.3607293509320997e-4 +scrap_V2 2.4147978814173252e-4 +scrap_iron_N 3.729715012475897e-6 +scrapbook_N 3.729715012475897e-6 +scrape_N 7.459430024951794e-6 +scrape_V 4.5357645031069986e-5 +scrape_V2 1.609865254278217e-5 +scrape_along_V 2.2678822515534993e-5 +scrape_by_V 2.2678822515534993e-5 +scrape_in_V 2.2678822515534993e-5 +scrape_into_V2 1.609865254278217e-5 +scrape_through_V2 1.609865254278217e-5 +scrape_together_V2 1.609865254278217e-5 +scrape_up_V2 1.609865254278217e-5 +scraper_N 3.729715012475897e-6 +scrapheap_N 3.729715012475897e-6 +scrapie_N 3.729715012475897e-6 +scraping_N 3.729715012475897e-6 +scrappiness_N 3.729715012475897e-6 +scrapple_N 3.729715012475897e-6 +scrappy_A 2.1546383978108874e-5 +scratch_N 1.8648575062379485e-5 +scratch_V 6.803646754660499e-5 +scratch_V2 4.8295957628346505e-5 +scratch_out_V 2.2678822515534993e-5 +scratch_pad_N 3.729715012475897e-6 +scratch_race_N 3.729715012475897e-6 +scratcher_N 3.729715012475897e-6 +scratchpad_N 3.729715012475897e-6 +scratchy_A 1.0773191989054437e-5 +scrawl_N 3.729715012475897e-6 +scrawl_V 2.2678822515534993e-5 +scrawl_V2 1.609865254278217e-5 +scrawler_N 3.729715012475897e-6 +scrawniness_N 3.729715012475897e-6 +scrawny_A 1.0773191989054437e-5 +screaky_A 1.0773191989054437e-5 +scream_N 1.118914503742769e-5 +scream_V 1.8143058012427994e-4 +scream_V2 4.8295957628346505e-5 +scream_VS 1.1552012938254491e-4 +screamer_N 3.729715012475897e-6 +screamingly_Adv 8.668966832532898e-6 +scree_N 3.729715012475897e-6 +screech_N 3.729715012475897e-6 +screech_V 9.071529006213997e-5 +screech_V2 3.219730508556434e-5 +screech_owl_N 3.729715012475897e-6 +screed_N 7.459430024951794e-6 +screen_N 1.9767489566122252e-4 +screen_V 1.8143058012427994e-4 +screen_V2 8.049326271391085e-5 +screen_off_V2 1.609865254278217e-5 +screen_out_V2 1.609865254278217e-5 +screener_N 3.729715012475897e-6 +screening_N 3.729715012475897e-6 +screenplay_N 3.729715012475897e-6 +screenwriter_N 3.729715012475897e-6 +screw_N 1.118914503742769e-5 +screw_V 9.071529006213997e-5 +screw_V2 1.609865254278217e-5 +screw_around_V 2.2678822515534993e-5 +screw_over_V2 1.609865254278217e-5 +screw_topped_A 1.0773191989054437e-5 +screw_up_V2 1.609865254278217e-5 +screwball_A 2.1546383978108874e-5 +screwball_N 7.459430024951794e-6 +screwballer_N 3.729715012475897e-6 +screwdriver_N 3.729715012475897e-6 +screwtop_N 3.729715012475897e-6 +screwup_N 3.729715012475897e-6 +screwy_A 1.0773191989054437e-5 +scribble_N 3.729715012475897e-6 +scribble_V 2.2678822515534993e-5 +scribble_V2 4.8295957628346505e-5 +scribbler_N 7.459430024951794e-6 +scribbling_block_N 3.729715012475897e-6 +scribe_N 1.118914503742769e-5 +scriber_N 3.729715012475897e-6 +scrim_N 3.729715012475897e-6 +scrimmage_N 7.459430024951794e-6 +scrimmage_V 2.2678822515534993e-5 +scrimmage_V2 1.609865254278217e-5 +scrimp_V 9.071529006213997e-5 +scrimp_V2 1.609865254278217e-5 +scrimshank_V 2.2678822515534993e-5 +scrimshanker_N 3.729715012475897e-6 +scrimshaw_N 3.729715012475897e-6 +scrimy_A 1.0773191989054437e-5 +scrip_N 3.729715012475897e-6 +script_N 7.459430024951794e-5 +scripted_A 1.0773191989054437e-5 +scriptorium_N 3.729715012475897e-6 +scriptural_A 1.0773191989054437e-5 +scripture_N 3.729715012475897e-6 +scriptwriter_N 1.118914503742769e-5 +scrivened_A 1.0773191989054437e-5 +scrivener_N 3.729715012475897e-6 +scrod_N 3.729715012475897e-6 +scrofula_N 3.729715012475897e-6 +scrofulous_A 1.0773191989054437e-5 +scroll_N 3.729715012475897e-6 +scrooge_N 3.729715012475897e-6 +scrotal_A 1.0773191989054437e-5 +scrotum_N 3.729715012475897e-6 +scrounge_V 4.5357645031069986e-5 +scrounge_V2 1.609865254278217e-5 +scrounger_N 3.729715012475897e-6 +scrub_A 1.0773191989054437e-5 +scrub_N 7.459430024951794e-6 +scrub_V 2.2678822515534993e-5 +scrub_V2 1.609865254278217e-5 +scrubber_N 3.729715012475897e-6 +scrubbing_brush_N 3.729715012475897e-6 +scrubbird_N 3.729715012475897e-6 +scrubby_A 1.0773191989054437e-5 +scrubland_N 3.729715012475897e-6 +scruff_N 7.459430024951794e-6 +scruffy_A 1.0773191989054437e-5 +scrum_N 3.729715012475897e-6 +scrummage_N 3.729715012475897e-6 +scrumptious_A 1.0773191989054437e-5 +scrumpy_N 3.729715012475897e-6 +scrunch_N 3.729715012475897e-6 +scrunch_V2 1.609865254278217e-5 +scruple_N 3.729715012475897e-6 +scruple_V 2.2678822515534993e-5 +scrupulous_A 4.309276795621775e-5 +scrupulousness_N 3.729715012475897e-6 +scrutineer_N 3.729715012475897e-6 +scrutinize_V2 1.1269056779947518e-4 +scrutinizer_N 3.729715012475897e-6 +scrutiny_N 5.967544019961435e-5 +scud_N 3.729715012475897e-6 +scud_V 2.2678822515534993e-5 +scuff_N 3.729715012475897e-6 +scuff_V 2.2678822515534993e-5 +scuff_V2 1.609865254278217e-5 +scuffer_N 3.729715012475897e-6 +scuffle_N 3.729715012475897e-6 +scuffle_V 2.2678822515534993e-5 +scull_N 3.729715012475897e-6 +scull_V 2.2678822515534993e-5 +scull_V2 1.609865254278217e-5 +sculler_N 3.729715012475897e-6 +scullery_N 3.729715012475897e-6 +sculling_N 3.729715012475897e-6 +scullion_N 3.729715012475897e-6 +sculpin_N 3.729715012475897e-6 +sculpt_V 2.2678822515534993e-5 +sculpt_V2 1.609865254278217e-5 +sculptor_N 3.729715012475897e-6 +sculptress_N 3.729715012475897e-6 +sculptural_A 1.0773191989054437e-5 +sculpture_N 1.8648575062379485e-5 +sculpture_V 2.2678822515534993e-5 +sculpture_V2 1.609865254278217e-5 +scum_N 3.729715012475897e-6 +scumble_N 3.729715012475897e-6 +scummy_A 1.0773191989054437e-5 +scunner_N 3.729715012475897e-6 +scunthorpe_PN 1.865462821325971e-5 +scup_N 3.729715012475897e-6 +scupper_N 3.729715012475897e-6 +scupper_V2 1.609865254278217e-5 +scuppernong_N 3.729715012475897e-6 +scurf_N 3.729715012475897e-6 +scurfy_A 1.0773191989054437e-5 +scurrility_N 3.729715012475897e-6 +scurrilous_A 1.0773191989054437e-5 +scurry_N 7.459430024951794e-6 +scurry_V 6.803646754660499e-5 +scurvy_A 1.0773191989054437e-5 +scurvy_N 3.729715012475897e-6 +scut_N 3.729715012475897e-6 +scutcheon_N 3.729715012475897e-6 +scute_N 3.729715012475897e-6 +scuttle_N 3.729715012475897e-6 +scuttle_V 1.3607293509320997e-4 +scuttle_V2 1.9318383051338602e-4 +scylla_N 3.729715012475897e-6 +scyphozoan_N 3.729715012475897e-6 +scyphus_N 3.729715012475897e-6 +scythe_N 3.729715012475897e-6 +scythe_V2 1.609865254278217e-5 +sea_N 6.713487022456614e-5 +sea_anemone_N 3.729715012475897e-6 +sea_animal_N 3.729715012475897e-6 +sea_bathing_N 3.729715012475897e-6 +sea_boat_N 3.729715012475897e-6 +sea_bream_N 3.729715012475897e-6 +sea_breeze_N 3.729715012475897e-6 +sea_coal_N 3.729715012475897e-6 +sea_cow_N 3.729715012475897e-6 +sea_dog_N 3.729715012475897e-6 +sea_fish_N 3.729715012475897e-6 +sea_girt_A 1.0773191989054437e-5 +sea_god_N 3.729715012475897e-6 +sea_green_A 1.0773191989054437e-5 +sea_green_N 3.729715012475897e-6 +sea_horse_N 3.729715012475897e-6 +sea_level_N 3.729715012475897e-6 +sea_lion_N 3.729715012475897e-6 +sea_power_N 3.729715012475897e-6 +sea_rover_N 3.729715012475897e-6 +sea_snake_N 3.729715012475897e-6 +sea_urchin_N 3.729715012475897e-6 +sea_wall_N 3.729715012475897e-6 +sea_water_N 3.729715012475897e-6 +seabag_N 3.729715012475897e-6 +seabed_N 3.729715012475897e-6 +seabird_N 3.729715012475897e-6 +seaboard_N 7.459430024951794e-6 +seaborgium_N 3.729715012475897e-6 +seaborne_A 3.231957596716331e-5 +seafarer_N 3.729715012475897e-6 +seafaring_A 1.0773191989054437e-5 +seafaring_N 3.729715012475897e-6 +seafood_N 1.4918860049903587e-5 +seaford_PN 1.865462821325971e-5 +seafront_N 3.729715012475897e-6 +seagirt_A 1.0773191989054437e-5 +seagoing_A 1.0773191989054437e-5 +seagrass_N 3.729715012475897e-6 +seagull_N 3.729715012475897e-6 +seaham_PN 1.865462821325971e-5 +seahorse_N 3.729715012475897e-6 +seakale_N 3.729715012475897e-6 +seal_N 2.237829007485538e-5 +seal_V 4.5357645031069986e-5 +seal_V2 1.1269056779947518e-4 +seal_V2A 1.0e-2 +seal_ring_N 3.729715012475897e-6 +sealant_N 3.729715012475897e-6 +sealer_N 3.729715012475897e-6 +sealing_wax_N 3.729715012475897e-6 +sealskin_N 3.729715012475897e-6 +sealyham_N 3.729715012475897e-6 +seam_N 3.729715012475897e-6 +seam_V2 1.609865254278217e-5 +seaman_N 3.729715012475897e-6 +seamanlike_A 1.0773191989054437e-5 +seamanship_N 3.729715012475897e-6 +seamless_A 1.0773191989054437e-5 +seamount_N 3.729715012475897e-6 +seamstress_N 3.729715012475897e-6 +seamus_PN 1.865462821325971e-5 +seamy_A 3.231957596716331e-5 +sean_PN 1.865462821325971e-5 +seance_N 3.729715012475897e-6 +seaplane_N 3.729715012475897e-6 +seaport_N 7.459430024951794e-6 +seaquake_N 3.729715012475897e-6 +sear_A 1.0773191989054437e-5 +sear_V2 1.609865254278217e-5 +search_N 1.3426974044913228e-4 +search_V 4.308976277951649e-4 +search_V2 6.439461017112868e-5 +search_party_N 3.729715012475897e-6 +search_warrant_N 3.729715012475897e-6 +searcher_N 3.729715012475897e-6 +searchingly_Adv 8.668966832532898e-6 +searchlight_N 3.729715012475897e-6 +searing_A 1.0773191989054437e-5 +searing_iron_N 3.729715012475897e-6 +seascape_N 3.729715012475897e-6 +seashell_N 3.729715012475897e-6 +seashore_N 7.459430024951794e-6 +seasick_A 1.0773191989054437e-5 +seasickness_N 3.729715012475897e-6 +seaside_N 3.729715012475897e-6 +seasnail_N 3.729715012475897e-6 +season_N 3.2448520608540304e-4 +season_V 2.2678822515534993e-5 +season_V2 6.439461017112868e-5 +season_ticket_N 3.729715012475897e-6 +seasonable_A 1.0773191989054437e-5 +seasonableness_N 3.729715012475897e-6 +seasonal_A 5.817523674089396e-4 +seasoner_N 3.729715012475897e-6 +seasoning_N 7.459430024951794e-6 +seat_N 3.8416064628501735e-4 +seat_V2 1.2878922034225736e-4 +seat_belt_N 3.729715012475897e-6 +seating_N 3.729715012475897e-6 +seating_room_N 3.729715012475897e-6 +seaton_burn_PN 1.865462821325971e-5 +seaton_delaval_PN 1.865462821325971e-5 +seattle_PN 1.865462821325971e-5 +seaward_A 1.0773191989054437e-5 +seaward_Adv 8.668966832532898e-6 +seaward_N 3.729715012475897e-6 +seawards_Adv 8.668966832532898e-6 +seawater_N 3.729715012475897e-6 +seaway_N 3.729715012475897e-6 +seaweed_N 3.729715012475897e-6 +seaworthiness_N 3.729715012475897e-6 +seaworthy_A 1.0773191989054437e-5 +seborrhea_N 3.729715012475897e-6 +sebum_N 3.729715012475897e-6 +sec_A 1.0773191989054437e-5 +sec_N 3.729715012475897e-6 +secant_N 3.729715012475897e-6 +secateurs_N 3.729715012475897e-6 +secede_V 4.5357645031069986e-5 +secession_N 3.729715012475897e-6 +secessionism_N 3.729715012475897e-6 +secessionist_N 3.729715012475897e-6 +seckel_N 3.729715012475897e-6 +seclude_V2 1.609865254278217e-5 +seclusion_N 7.459430024951794e-6 +second_N 1.4918860049903588e-4 +second_V2 1.609865254278217e-5 +second_best_A 1.0773191989054437e-5 +second_best_Adv 8.668966832532898e-6 +second_best_N 3.729715012475897e-6 +second_class_A 1.0773191989054437e-5 +second_class_Adv 8.668966832532898e-6 +second_class_N 3.729715012475897e-6 +second_guess_V2 3.219730508556434e-5 +second_hand_A 1.0773191989054437e-5 +second_hand_N 3.729715012475897e-6 +second_rate_A 2.1546383978108874e-5 +second_rater_N 3.729715012475897e-6 +second_sighted_A 1.0773191989054437e-5 +secondary_A 4.632472555293408e-4 +secondary_N 3.729715012475897e-6 +seconder_N 3.729715012475897e-6 +secondhand_A 1.0773191989054437e-5 +secondhand_Adv 8.668966832532898e-6 +secondment_N 3.729715012475897e-6 +secondo_N 3.729715012475897e-6 +secrecy_N 1.8648575062379485e-5 +secret_A 2.585566077373065e-4 +secret_N 7.086458523704203e-5 +secretarial_A 2.1546383978108874e-5 +secretariat_N 3.729715012475897e-6 +secretary_N 3.5805264119768607e-4 +secretary_general_N 3.729715012475897e-6 +secretaryship_N 3.729715012475897e-6 +secretase_N 3.729715012475897e-6 +secrete_V2 1.609865254278217e-5 +secretin_N 3.729715012475897e-6 +secretion_N 3.729715012475897e-6 +secretive_A 3.231957596716331e-5 +secretiveness_N 3.729715012475897e-6 +secretory_A 1.0773191989054437e-5 +sect_N 3.729715012475897e-6 +sectarian_A 1.0773191989054437e-5 +sectarian_N 3.729715012475897e-6 +sectarianism_N 3.729715012475897e-6 +section_N 3.61782356210162e-4 +sectional_A 1.0773191989054437e-5 +sectional_N 3.729715012475897e-6 +sectionalism_N 3.729715012475897e-6 +sector_N 5.370789617965291e-4 +sectorial_A 1.0773191989054437e-5 +secular_A 1.0773191989054437e-5 +secularism_N 3.729715012475897e-6 +secularist_N 3.729715012475897e-6 +secularization_N 3.729715012475897e-6 +secularize_V2 1.609865254278217e-5 +secundigravida_N 3.729715012475897e-6 +secure_A 1.4005149585770768e-4 +secure_V2 8.049326271391085e-4 +secureness_N 3.729715012475897e-6 +securicor_PN 1.865462821325971e-5 +security_N 2.413125613071905e-3 +sedan_N 5.594572518713845e-5 +sedan_chair_N 3.729715012475897e-6 +sedate_A 2.1546383978108874e-5 +sedate_V2 1.609865254278217e-5 +sedateness_N 3.729715012475897e-6 +sedation_N 3.729715012475897e-6 +sedative_A 1.0773191989054437e-5 +sedative_N 7.459430024951794e-6 +sedentary_A 1.0773191989054437e-5 +sedge_N 3.729715012475897e-6 +sedgy_A 1.0773191989054437e-5 +sediment_N 3.729715012475897e-6 +sedimentary_A 1.0773191989054437e-5 +sedition_N 3.729715012475897e-6 +seditious_A 1.0773191989054437e-5 +seduce_V2 6.439461017112868e-5 +seducer_N 3.729715012475897e-6 +seduction_N 3.729715012475897e-6 +seductive_A 2.1546383978108874e-5 +seductress_N 3.729715012475897e-6 +sedulity_N 3.729715012475897e-6 +sedulous_A 1.0773191989054437e-5 +sedum_N 3.729715012475897e-6 +see_N 3.729715012475897e-6 +see_V 2.403955186646709e-3 +see_V2 5.8277122204871456e-3 +see_V2V 1.82328190743338e-2 +see_VA 1.968503937007874e-3 +see_VQ 3.333333333333333e-2 +see_VS 8.664009703690868e-3 +see_about_V2 1.609865254278217e-5 +see_into_V3 1.5873015873015873e-3 +see_off_V2 1.609865254278217e-5 +see_out_V2 1.609865254278217e-5 +see_through_A 2.1546383978108874e-5 +see_through_V2 1.609865254278217e-5 +see_to_V2 1.609865254278217e-5 +seed_N 9.697259032437332e-5 +seed_V 2.2678822515534993e-5 +seed_V2 3.219730508556434e-5 +seed_corn_N 3.729715012475897e-6 +seedbed_N 3.729715012475897e-6 +seedcake_N 3.729715012475897e-6 +seeder_N 3.729715012475897e-6 +seediness_N 3.729715012475897e-6 +seedless_A 1.0773191989054437e-5 +seedling_N 3.729715012475897e-6 +seedsman_N 3.729715012475897e-6 +seedtime_N 3.729715012475897e-6 +seedy_A 5.3865959945272184e-5 +seek_N 3.729715012475897e-6 +seek_V2 4.893990373005779e-3 +seek_VV 9.225446857582165e-3 +seek_out_V2 3.219730508556434e-5 +seeker_N 7.459430024951794e-6 +seeking_N 3.729715012475897e-6 +seem_V 1.5648387535719145e-3 +seem_V2 2.2538113559895037e-4 +seem_VA 8.169291338582677e-2 +seem_VS 1.6172818113556287e-3 +seem_VV 1.4991351143571016e-2 +seeming_A 1.9391745580297985e-4 +seemliness_N 3.729715012475897e-6 +seemly_A 1.0773191989054437e-5 +seep_V 4.5357645031069986e-5 +seepage_N 3.729715012475897e-6 +seer_N 7.459430024951794e-6 +seersucker_N 3.729715012475897e-6 +seesaw_N 7.459430024951794e-6 +seesaw_V 2.2678822515534993e-5 +seethe_V 9.071529006213997e-5 +seethe_V2 1.609865254278217e-5 +segment_N 3.7297150124758965e-4 +segment_V 2.2678822515534993e-5 +segment_V2 4.8295957628346505e-5 +segmental_A 1.0773191989054437e-5 +segmentation_N 1.118914503742769e-5 +segno_N 3.729715012475897e-6 +segregate_N 3.729715012475897e-6 +segregate_V2 6.439461017112868e-5 +segregation_N 1.4918860049903587e-5 +segregationism_N 3.729715012475897e-6 +segregator_N 3.729715012475897e-6 +segue_N 3.729715012475897e-6 +seiche_N 3.729715012475897e-6 +seidel_N 3.729715012475897e-6 +seigneury_N 3.729715012475897e-6 +seignior_N 3.729715012475897e-6 +seigniorage_N 3.729715012475897e-6 +seigniory_N 3.729715012475897e-6 +seine_N 3.729715012475897e-6 +seine_V 2.2678822515534993e-5 +seine_V2 1.609865254278217e-5 +seismic_A 7.541234392338106e-5 +seismogram_N 3.729715012475897e-6 +seismograph_N 3.729715012475897e-6 +seismography_N 3.729715012475897e-6 +seismological_A 1.0773191989054437e-5 +seismologist_N 3.729715012475897e-6 +seismology_N 3.729715012475897e-6 +seize_V 4.535764503106999e-4 +seize_V2 3.8636766102677204e-4 +seize_up_V 2.2678822515534993e-5 +seizing_N 3.729715012475897e-6 +seizure_N 4.848629516218666e-5 +selby_PN 1.865462821325971e-5 +seldom_Adv 6.935173466026319e-5 +select_A 7.541234392338106e-5 +select_V 2.4946704767088494e-4 +select_V2 5.795514915401581e-4 +select_V2V 1.402524544179523e-3 +select_VV 2.8829521429944266e-4 +selection_N 7.086458523704203e-5 +selective_A 1.2927830386865325e-4 +selectivity_N 3.729715012475897e-6 +selectman_N 3.729715012475897e-6 +selector_N 3.729715012475897e-6 +selectwoman_N 3.729715012475897e-6 +selenium_N 3.729715012475897e-6 +selenology_N 3.729715012475897e-6 +self_A 1.0773191989054437e-5 +self_N 8.205373027446973e-5 +self_abasement_N 3.729715012475897e-6 +self_abnegation_N 3.729715012475897e-6 +self_absorbed_A 1.0773191989054437e-5 +self_acting_A 1.0773191989054437e-5 +self_activating_A 1.0773191989054437e-5 +self_addressed_A 1.0773191989054437e-5 +self_appointed_A 1.0773191989054437e-5 +self_assertion_N 3.729715012475897e-6 +self_assertive_A 1.0773191989054437e-5 +self_assurance_N 3.729715012475897e-6 +self_assured_A 1.0773191989054437e-5 +self_centred_A 1.0773191989054437e-5 +self_collected_A 1.0773191989054437e-5 +self_coloured_A 1.0773191989054437e-5 +self_command_N 3.729715012475897e-6 +self_communion_N 3.729715012475897e-6 +self_complacency_N 3.729715012475897e-6 +self_confessed_A 2.1546383978108874e-5 +self_confidence_N 3.729715012475897e-6 +self_confident_A 1.0773191989054437e-5 +self_conscious_A 3.231957596716331e-5 +self_consciousness_N 3.729715012475897e-6 +self_contained_A 1.0773191989054437e-5 +self_control_N 3.729715012475897e-6 +self_defence_N 3.729715012475897e-6 +self_denial_N 3.729715012475897e-6 +self_denying_A 1.0773191989054437e-5 +self_destruct_V 4.5357645031069986e-5 +self_determination_N 3.729715012475897e-6 +self_educated_A 1.0773191989054437e-5 +self_effacing_A 1.0773191989054437e-5 +self_employed_A 7.541234392338106e-5 +self_esteem_N 3.729715012475897e-6 +self_evident_A 1.0773191989054437e-5 +self_examination_N 3.729715012475897e-6 +self_explanatory_A 2.1546383978108874e-5 +self_help_N 3.729715012475897e-6 +self_importance_N 3.729715012475897e-6 +self_important_A 2.1546383978108874e-5 +self_imposed_A 3.231957596716331e-5 +self_indulgence_N 3.729715012475897e-6 +self_indulgent_A 2.1546383978108874e-5 +self_insure_V 4.5357645031069986e-5 +self_interest_N 3.729715012475897e-6 +self_locking_A 1.0773191989054437e-5 +self_made_A 1.0773191989054437e-5 +self_opinionated_A 1.0773191989054437e-5 +self_pity_N 3.729715012475897e-6 +self_possessed_A 1.0773191989054437e-5 +self_possession_N 3.729715012475897e-6 +self_preservation_N 3.729715012475897e-6 +self_raising_A 1.0773191989054437e-5 +self_reliance_N 3.729715012475897e-6 +self_reliant_A 1.0773191989054437e-5 +self_respect_N 3.729715012475897e-6 +self_respecting_A 1.0773191989054437e-5 +self_righteous_A 2.1546383978108874e-5 +self_rule_N 3.729715012475897e-6 +self_sacrifice_N 3.729715012475897e-6 +self_sacrificing_A 1.0773191989054437e-5 +self_same_A 1.0773191989054437e-5 +self_sealing_A 1.0773191989054437e-5 +self_seeker_N 3.729715012475897e-6 +self_seeking_A 1.0773191989054437e-5 +self_seeking_N 3.729715012475897e-6 +self_service_N 3.729715012475897e-6 +self_sown_A 1.0773191989054437e-5 +self_starter_N 7.459430024951794e-6 +self_styled_A 3.231957596716331e-5 +self_sufficiency_N 3.729715012475897e-6 +self_sufficient_A 3.231957596716331e-5 +self_sufficing_A 1.0773191989054437e-5 +self_supporting_A 1.0773191989054437e-5 +self_will_N 3.729715012475897e-6 +self_willed_A 1.0773191989054437e-5 +self_winding_A 1.0773191989054437e-5 +selfconsciously_Adv 8.668966832532898e-6 +selfish_A 2.1546383978108874e-5 +selfishness_N 3.729715012475897e-6 +selflessness_N 3.729715012475897e-6 +selfsameness_N 3.729715012475897e-6 +selkirk_PN 1.865462821325971e-5 +sell_N 1.6037774553646355e-4 +sell_V 1.1271374790220891e-2 +sell_V2 1.3039908559653557e-2 +sell_VA 1.968503937007874e-3 +sell_VS 4.0432045283890716e-4 +sell_back_V 2.2678822515534993e-5 +sell_off_V2 3.219730508556434e-5 +sell_on_V2 1.609865254278217e-5 +sell_out_V 2.2678822515534993e-5 +sell_out_V2 1.609865254278217e-5 +sell_up_V2 1.609865254278217e-5 +seller_N 2.498909058358851e-4 +selling_N 4.923223816468183e-4 +selloff_N 3.729715012475897e-6 +sellout_N 3.729715012475897e-6 +selsey_PN 1.865462821325971e-5 +selston_PN 1.865462821325971e-5 +selsyn_N 3.729715012475897e-6 +seltzer_N 3.729715012475897e-6 +selvage_N 3.729715012475897e-6 +selvedge_N 3.729715012475897e-6 +semantic_A 1.0773191989054437e-5 +semantically_Adv 8.668966832532898e-6 +semanticist_N 3.729715012475897e-6 +semantics_N 7.459430024951794e-6 +semaphore_N 3.729715012475897e-6 +semaphore_V 2.2678822515534993e-5 +semaphore_V2 1.609865254278217e-5 +semarang_PN 1.865462821325971e-5 +semblance_N 1.4918860049903587e-5 +semen_N 3.729715012475897e-6 +semester_N 1.118914503742769e-5 +semestral_A 1.0773191989054437e-5 +semiabstract_A 1.0773191989054437e-5 +semiannual_A 1.0773191989054437e-5 +semiaquatic_A 1.0773191989054437e-5 +semiarid_A 1.0773191989054437e-5 +semiautobiographical_A 1.0773191989054437e-5 +semiautomatic_A 1.0773191989054437e-5 +semibreve_N 3.729715012475897e-6 +semicentennial_A 1.0773191989054437e-5 +semicentennial_N 3.729715012475897e-6 +semicircle_N 3.729715012475897e-6 +semicircular_A 2.1546383978108874e-5 +semicolon_N 3.729715012475897e-6 +semicoma_N 3.729715012475897e-6 +semicomatose_A 1.0773191989054437e-5 +semiconducting_A 1.0773191989054437e-5 +semiconductor_N 1.6410746054893946e-4 +semiconscious_A 1.0773191989054437e-5 +semidark_A 1.0773191989054437e-5 +semidarkness_N 3.729715012475897e-6 +semidesert_N 3.729715012475897e-6 +semidetached_A 1.0773191989054437e-5 +semidiameter_N 3.729715012475897e-6 +semiempirical_A 1.0773191989054437e-5 +semifinal_N 3.729715012475897e-6 +semifinalist_N 3.729715012475897e-6 +semifluidity_N 3.729715012475897e-6 +semiformal_A 1.0773191989054437e-5 +semigloss_N 3.729715012475897e-6 +semihard_A 1.0773191989054437e-5 +semiliquid_A 1.0773191989054437e-5 +semiliterate_A 1.0773191989054437e-5 +semimonthly_A 1.0773191989054437e-5 +semimonthly_Adv 8.668966832532898e-6 +semimonthly_N 3.729715012475897e-6 +seminal_A 1.0773191989054437e-5 +seminar_N 3.356743511228307e-5 +seminarian_N 3.729715012475897e-6 +seminarist_N 3.729715012475897e-6 +seminary_N 3.729715012475897e-6 +seminiferous_A 1.0773191989054437e-5 +seminoma_N 3.729715012475897e-6 +seminude_A 1.0773191989054437e-5 +semiofficial_A 1.0773191989054437e-5 +semiopaque_A 1.0773191989054437e-5 +semiotic_A 1.0773191989054437e-5 +semiotics_N 3.729715012475897e-6 +semiparasitic_A 1.0773191989054437e-5 +semipermeable_A 1.0773191989054437e-5 +semipolitical_A 1.0773191989054437e-5 +semiprecious_A 1.0773191989054437e-5 +semiprivate_A 1.0773191989054437e-5 +semiprofessional_N 3.729715012475897e-6 +semipublic_A 1.0773191989054437e-5 +semiquaver_N 3.729715012475897e-6 +semirigid_A 1.0773191989054437e-5 +semisolid_A 1.0773191989054437e-5 +semite_A 1.0773191989054437e-5 +semite_N 3.729715012475897e-6 +semiterrestrial_A 1.0773191989054437e-5 +semitic_A 1.0773191989054437e-5 +semitone_N 3.729715012475897e-6 +semitrailer_N 3.729715012475897e-6 +semitrance_N 3.729715012475897e-6 +semitropical_A 1.0773191989054437e-5 +semivowel_N 3.729715012475897e-6 +semiweekly_A 1.0773191989054437e-5 +semiweekly_Adv 8.668966832532898e-6 +semiweekly_N 3.729715012475897e-6 +semolina_N 3.729715012475897e-6 +sempstress_N 3.729715012475897e-6 +sen_N 3.729715012475897e-6 +senate_N 1.4918860049903587e-5 +senator_N 2.5735033586083686e-4 +senatorial_A 2.1546383978108874e-5 +senatorship_N 3.729715012475897e-6 +send_V 1.8823422687894045e-3 +send_V2 1.4649773813931774e-3 +send_V2V 9.350163627863488e-4 +send_VS 9.819210997516316e-4 +send_back_V2 1.609865254278217e-5 +send_for_V2 1.609865254278217e-5 +send_in_V 2.2678822515534993e-5 +send_in_V2 1.609865254278217e-5 +send_off_V2 1.609865254278217e-5 +send_off_for_V2 1.609865254278217e-5 +send_out_V2 3.219730508556434e-5 +send_out_for_V2 1.609865254278217e-5 +send_up_N 3.729715012475897e-6 +send_up_V2 1.609865254278217e-5 +sendee_N 3.729715012475897e-6 +sender_N 1.118914503742769e-5 +sending_N 3.729715012475897e-6 +sendoff_N 3.729715012475897e-6 +sene_N 3.729715012475897e-6 +senega_N 3.729715012475897e-6 +senegal_PN 1.865462821325971e-5 +senegalese_A 1.0773191989054437e-5 +senegalese_N 3.729715012475897e-6 +senescence_N 3.729715012475897e-6 +senescent_A 1.0773191989054437e-5 +seneschal_N 3.729715012475897e-6 +senile_A 1.0773191989054437e-5 +senility_N 3.729715012475897e-6 +senior_A 3.0919061008586233e-3 +senior_N 2.9837720099807175e-5 +seniority_N 3.729715012475897e-5 +seniti_N 3.729715012475897e-6 +senna_N 3.729715012475897e-6 +sennit_N 3.729715012475897e-6 +senor_N 3.729715012475897e-6 +senora_N 3.729715012475897e-6 +senorita_N 3.729715012475897e-6 +sensate_A 1.0773191989054437e-5 +sensation_N 1.4918860049903587e-5 +sensational_A 6.463915193432663e-5 +sensationalism_N 1.118914503742769e-5 +sensationalist_N 3.729715012475897e-6 +sense_N 3.9534979132244504e-4 +sense_V2 1.2878922034225736e-4 +sense_VS 2.3104025876508982e-4 +sense_organ_N 3.729715012475897e-6 +senseless_A 1.0773191989054437e-5 +senselessness_N 3.729715012475897e-6 +sensibility_N 1.4918860049903587e-5 +sensible_A 6.463915193432663e-5 +sensibleness_N 3.729715012475897e-6 +sensing_N 3.729715012475897e-6 +sensitive_A 4.2015448757312305e-4 +sensitivity_N 1.8648575062379485e-5 +sensitization_N 3.729715012475897e-6 +sensitize_V2 3.219730508556434e-5 +sensitizer_N 3.729715012475897e-6 +sensitizing_A 1.0773191989054437e-5 +sensitizing_N 3.729715012475897e-6 +sensitometer_N 3.729715012475897e-6 +sensorimotor_A 1.0773191989054437e-5 +sensorineural_A 1.0773191989054437e-5 +sensorium_N 3.729715012475897e-6 +sensory_A 3.231957596716331e-5 +sensual_A 2.1546383978108874e-5 +sensualism_N 3.729715012475897e-6 +sensualist_N 3.729715012475897e-6 +sensuality_N 7.459430024951794e-6 +sensuous_A 1.0773191989054437e-5 +sensuousness_N 3.729715012475897e-6 +sent_N 3.729715012475897e-6 +sente_N 3.729715012475897e-6 +sentence_N 1.1562116538675279e-4 +sentence_V 2.7214587018641994e-4 +sentence_V2 2.4147978814173252e-4 +sentential_A 1.0773191989054437e-5 +sententious_A 1.0773191989054437e-5 +sentience_N 3.729715012475897e-6 +sentient_A 1.0773191989054437e-5 +sentiment_N 1.118914503742769e-4 +sentimental_A 4.309276795621775e-5 +sentimentalism_N 3.729715012475897e-6 +sentimentalist_N 3.729715012475897e-6 +sentimentality_N 7.459430024951794e-6 +sentimentalization_N 3.729715012475897e-6 +sentimentalize_V 2.2678822515534993e-5 +sentimentalize_V2 1.609865254278217e-5 +sentinel_N 3.729715012475897e-6 +sentry_N 3.729715012475897e-6 +sentry_box_N 3.729715012475897e-6 +sentry_go_N 3.729715012475897e-6 +seoul_PN 4.8502033354475243e-4 +sepal_N 3.729715012475897e-6 +sepaloid_A 1.0773191989054437e-5 +separability_N 3.729715012475897e-6 +separable_A 1.0773191989054437e-5 +separate_A 1.982267325986016e-3 +separate_N 3.729715012475897e-6 +separate_V 1.8143058012427994e-4 +separate_V2 1.2878922034225736e-4 +separateness_N 3.729715012475897e-6 +separation_N 5.2216010174662554e-5 +separationism_N 3.729715012475897e-6 +separatism_N 3.729715012475897e-6 +separatist_N 3.729715012475897e-6 +separative_A 1.0773191989054437e-5 +separator_N 3.729715012475897e-6 +sepia_N 3.729715012475897e-6 +sepsis_N 7.459430024951794e-6 +sept_PN 1.865462821325971e-5 +septal_A 1.0773191989054437e-5 +septation_N 3.729715012475897e-6 +septectomy_N 3.729715012475897e-6 +september_N 3.729715012475897e-6 +september_PN 5.14867738685968e-3 +septet_N 3.729715012475897e-6 +septic_A 1.0773191989054437e-5 +septicaemia_N 3.729715012475897e-6 +septicemia_N 3.729715012475897e-6 +septicemic_A 1.0773191989054437e-5 +septillion_N 3.729715012475897e-6 +septrional_A 1.0773191989054437e-5 +septuagenarian_N 7.459430024951794e-6 +septuagint_N 3.729715012475897e-6 +septum_N 3.729715012475897e-6 +septuple_A 1.0773191989054437e-5 +sepulchral_A 1.0773191989054437e-5 +sepulchre_N 3.729715012475897e-6 +sepulture_N 3.729715012475897e-6 +sequel_N 2.6108005087331277e-5 +sequela_N 3.729715012475897e-6 +sequella_N 3.729715012475897e-6 +sequence_N 1.118914503742769e-5 +sequencer_N 3.729715012475897e-6 +sequent_A 1.0773191989054437e-5 +sequential_A 1.0773191989054437e-5 +sequester_V2 4.8295957628346505e-5 +sequestrate_V2 1.609865254278217e-5 +sequestration_N 7.459430024951794e-6 +sequin_N 3.729715012475897e-6 +sequoia_N 3.729715012475897e-6 +seraglio_N 3.729715012475897e-6 +serape_N 3.729715012475897e-6 +seraph_N 3.729715012475897e-6 +seraphic_A 1.0773191989054437e-5 +serbo_croat_N 3.729715012475897e-6 +sere_A 1.0773191989054437e-5 +serenade_N 7.459430024951794e-6 +serenade_V2 1.609865254278217e-5 +serendipitous_A 1.0773191989054437e-5 +serendipity_N 3.729715012475897e-6 +serene_A 4.309276795621775e-5 +sereness_N 3.729715012475897e-6 +serenity_N 3.729715012475897e-6 +serf_N 3.729715012475897e-6 +serfdom_N 3.729715012475897e-6 +serflike_A 1.0773191989054437e-5 +serge_N 3.729715012475897e-6 +sergeant_N 1.4918860049903587e-5 +sergeant_major_N 3.729715012475897e-6 +serger_N 3.729715012475897e-6 +serial_A 1.508246878467621e-4 +serial_N 1.8648575062379485e-5 +serialism_N 3.729715012475897e-6 +serialization_N 3.729715012475897e-6 +serialize_V2 1.609865254278217e-5 +seriatim_Adv 8.668966832532898e-6 +sericultural_A 1.0773191989054437e-5 +sericulture_N 3.729715012475897e-6 +sericulturist_N 3.729715012475897e-6 +series_N 6.303218371084265e-4 +serif_N 3.729715012475897e-6 +serigraphy_N 3.729715012475897e-6 +serin_N 3.729715012475897e-6 +serine_N 3.729715012475897e-6 +seriocomedy_N 3.729715012475897e-6 +seriocomic_A 1.0773191989054437e-5 +serious_A 1.43283453454424e-3 +seriousness_N 1.4918860049903587e-5 +serjeant_N 3.729715012475897e-6 +serjeant_at_arms_N 3.729715012475897e-6 +sermon_N 3.729715012475897e-6 +sermonize_V 2.2678822515534993e-5 +sermonize_V2 1.609865254278217e-5 +serologic_A 1.0773191989054437e-5 +serologist_N 3.729715012475897e-6 +serology_N 3.729715012475897e-6 +serotine_N 3.729715012475897e-6 +serotonin_N 3.729715012475897e-6 +serous_A 1.0773191989054437e-5 +serow_N 3.729715012475897e-6 +serpent_N 7.459430024951794e-6 +serpentine_A 2.1546383978108874e-5 +serrate_A 1.0773191989054437e-5 +serrated_A 1.0773191989054437e-5 +serration_N 3.729715012475897e-6 +serratus_N 3.729715012475897e-6 +serried_A 1.0773191989054437e-5 +serrulate_A 1.0773191989054437e-5 +sertraline_N 3.729715012475897e-6 +sertularian_N 3.729715012475897e-6 +serum_N 3.729715012475897e-6 +serval_N 3.729715012475897e-6 +servant_N 2.9837720099807175e-5 +serve_N 3.729715012475897e-6 +serve_V 1.8823422687894045e-3 +serve_V2 1.0142151101952767e-3 +serve_VS 1.7328019407381737e-4 +serve_VV 6.726888333653661e-4 +server_N 1.118914503742769e-5 +service_N 2.129667272123737e-3 +service_V2 2.092824830561682e-4 +serviceability_N 3.729715012475897e-6 +serviceable_A 1.0773191989054437e-5 +serviceman_N 3.729715012475897e-6 +servicing_N 3.729715012475897e-6 +serviette_N 3.729715012475897e-6 +servile_A 2.1546383978108874e-5 +servility_N 3.729715012475897e-6 +serving_N 3.729715012475897e-6 +servitor_N 3.729715012475897e-6 +servitude_N 3.729715012475897e-6 +servo_N 3.729715012475897e-6 +servomechanical_A 1.0773191989054437e-5 +sesame_N 3.729715012475897e-6 +sesbania_N 3.729715012475897e-6 +sesotho_N 3.729715012475897e-6 +sesquicentennial_N 3.729715012475897e-6 +sesquipedalian_A 1.0773191989054437e-5 +sesquipedalian_N 3.729715012475897e-6 +sesquipedality_N 3.729715012475897e-6 +sessile_A 1.0773191989054437e-5 +session_N 5.147006717216737e-4 +sestet_N 3.729715012475897e-6 +set_N 2.7226919591074043e-4 +set_V 3.651290425001134e-3 +set_V2 2.7045736271874045e-3 +set_VS 3.4656038814763474e-4 +set_VV 1.537574476263694e-3 +set_about_V2 1.609865254278217e-5 +set_apart_V2 1.609865254278217e-5 +set_aside_V2 3.219730508556434e-5 +set_back_V 2.2678822515534993e-5 +set_back_V2 1.609865254278217e-5 +set_forth_V 2.2678822515534993e-5 +set_forth_V2 1.609865254278217e-5 +set_in_V 2.2678822515534993e-5 +set_off_V 2.2678822515534993e-5 +set_off_V2 1.609865254278217e-5 +set_on_V2 1.609865254278217e-5 +set_out_V 2.2678822515534993e-5 +set_out_V2 1.609865254278217e-5 +set_square_N 3.729715012475897e-6 +set_to_N 3.729715012475897e-6 +set_to_V 2.2678822515534993e-5 +set_up_N 3.729715012475897e-6 +set_up_V 4.5357645031069986e-5 +set_up_V2 4.8295957628346505e-5 +set_upon_V2 1.609865254278217e-5 +seta_N 3.729715012475897e-6 +setback_N 1.3426974044913228e-4 +setscrew_N 3.729715012475897e-6 +setswana_N 3.729715012475897e-6 +sett_N 3.729715012475897e-6 +settee_N 3.729715012475897e-6 +setter_N 1.4918860049903587e-5 +setting_N 4.848629516218666e-5 +settle_N 3.729715012475897e-6 +settle_V 2.0410940263981495e-3 +settle_V2 9.659191525669301e-4 +settle_VA 2.952755905511811e-3 +settle_back_V 2.2678822515534993e-5 +settle_down_V 2.2678822515534993e-5 +settle_for_V2 1.609865254278217e-5 +settle_in_V 2.2678822515534993e-5 +settle_on_V2 1.609865254278217e-5 +settle_up_V 2.2678822515534993e-5 +settlement_N 5.445383918214809e-4 +settler_N 3.729715012475897e-6 +settling_N 3.729715012475897e-6 +settlor_N 3.729715012475897e-6 +setup_N 7.459430024951794e-6 +seven_sisters_PN 1.865462821325971e-5 +sevenfold_A 1.0773191989054437e-5 +sevenfold_Adv 8.668966832532898e-6 +sevenoaks_PN 1.865462821325971e-5 +sever_V 4.5357645031069986e-5 +sever_V2 1.1269056779947518e-4 +several_Num 2.7966206035306604e-3 +severally_Adv 8.668966832532898e-6 +severalty_N 3.729715012475897e-6 +severance_N 2.9837720099807175e-5 +severe_A 6.89484287299484e-4 +severity_N 2.237829007485538e-5 +sevilla_PN 1.865462821325971e-5 +seville_PN 1.865462821325971e-5 +sew_V 4.5357645031069986e-5 +sew_V2 1.609865254278217e-5 +sewage_N 1.118914503742769e-5 +sewage_farm_N 3.729715012475897e-6 +sewage_works_N 3.729715012475897e-6 +sewer_N 1.8648575062379485e-5 +sewer_gas_N 3.729715012475897e-6 +sewer_rat_N 3.729715012475897e-6 +sewerage_N 3.729715012475897e-6 +sewing_N 7.459430024951794e-6 +sewing_machine_N 3.729715012475897e-6 +sex_N 1.305400254366564e-4 +sex_V2 1.609865254278217e-5 +sex_starved_A 1.0773191989054437e-5 +sex_up_V2 1.609865254278217e-5 +sexagenarian_A 1.0773191989054437e-5 +sexagenarian_N 3.729715012475897e-6 +sexagesimal_A 1.0773191989054437e-5 +sexcapade_N 3.729715012475897e-6 +sexism_N 3.729715012475897e-6 +sexist_A 2.1546383978108874e-5 +sexist_N 3.729715012475897e-6 +sexless_A 1.0773191989054437e-5 +sexploitation_N 3.729715012475897e-6 +sext_N 3.729715012475897e-6 +sextant_N 3.729715012475897e-6 +sextet_N 3.729715012475897e-6 +sextette_N 3.729715012475897e-6 +sextillion_N 3.729715012475897e-6 +sexton_N 3.729715012475897e-6 +sextuple_A 1.0773191989054437e-5 +sexual_A 1.0773191989054437e-4 +sexuality_N 3.729715012475897e-6 +sexy_A 5.3865959945272184e-5 +seychelles_PN 1.865462821325971e-5 +seychellois_A 1.0773191989054437e-5 +seychellois_N 3.729715012475897e-6 +sforzando_N 3.729715012475897e-6 +sgd_PN 1.865462821325971e-5 +sgraffito_N 3.729715012475897e-6 +sgt_PN 1.865462821325971e-5 +shabbiness_N 3.729715012475897e-6 +shabby_A 2.1546383978108874e-5 +shabby_genteel_A 1.0773191989054437e-5 +shack_N 7.459430024951794e-6 +shack_V 2.2678822515534993e-5 +shack_up_V 2.2678822515534993e-5 +shackle_N 3.729715012475897e-6 +shackle_V2 1.609865254278217e-5 +shad_N 3.729715012475897e-6 +shaddock_N 3.729715012475897e-6 +shade_N 1.118914503742769e-5 +shade_V 2.2678822515534993e-5 +shade_V2 3.219730508556434e-5 +shade_in_V2 1.609865254278217e-5 +shade_tree_N 3.729715012475897e-6 +shadiness_N 3.729715012475897e-6 +shading_N 3.729715012475897e-6 +shadow_N 5.967544019961435e-5 +shadow_V2 6.439461017112868e-5 +shadow_boxing_N 3.729715012475897e-6 +shadowboxing_N 3.729715012475897e-6 +shadowing_N 3.729715012475897e-6 +shadowy_A 3.231957596716331e-5 +shady_A 6.463915193432663e-5 +shaft_N 3.729715012475897e-6 +shag_N 3.729715012475897e-6 +shag_V 2.2678822515534993e-5 +shag_V2 3.219730508556434e-5 +shagbark_N 3.729715012475897e-6 +shagginess_N 3.729715012475897e-6 +shagging_N 3.729715012475897e-6 +shaggy_A 2.1546383978108874e-5 +shaggymane_N 3.729715012475897e-6 +shah_N 4.1026865137234865e-5 +shahadah_N 3.729715012475897e-6 +shaheed_N 3.729715012475897e-6 +shaitan_N 3.729715012475897e-6 +shakable_A 1.0773191989054437e-5 +shake_N 1.4918860049903587e-5 +shake_V 6.123282079194448e-4 +shake_V2 4.3466361865511857e-4 +shake_down_V2 1.609865254278217e-5 +shake_off_V2 1.609865254278217e-5 +shake_out_V2 1.609865254278217e-5 +shake_up_N 3.729715012475897e-6 +shake_up_V2 3.219730508556434e-5 +shakedown_A 1.0773191989054437e-5 +shakedown_N 3.729715012475897e-6 +shakeout_N 2.237829007485538e-5 +shaker_N 3.729715012475897e-6 +shakespearian_A 1.0773191989054437e-5 +shakiness_N 3.729715012475897e-6 +shaking_N 3.729715012475897e-6 +shaky_A 1.4005149585770768e-4 +shale_N 3.729715012475897e-6 +shale_oil_N 3.729715012475897e-6 +shallot_N 3.729715012475897e-6 +shallow_A 3.231957596716331e-5 +shallow_N 3.729715012475897e-6 +shallow_V 2.2678822515534993e-5 +shallowness_N 3.729715012475897e-6 +shallu_N 3.729715012475897e-6 +sham_A 1.0773191989054437e-5 +sham_N 3.729715012475897e-6 +sham_V 2.2678822515534993e-5 +sham_V2 1.609865254278217e-5 +shaman_N 3.729715012475897e-6 +shamanism_N 3.729715012475897e-6 +shamanist_A 1.0773191989054437e-5 +shamble_N 3.729715012475897e-6 +shamble_V 2.2678822515534993e-5 +shambles_N 7.459430024951794e-6 +shambolic_A 1.0773191989054437e-5 +shambolically_Adv 8.668966832532898e-6 +shame_N 2.9837720099807175e-5 +shame_V2 1.609865254278217e-5 +shame_making_A 1.0773191989054437e-5 +shamefaced_A 1.0773191989054437e-5 +shamefacedness_N 3.729715012475897e-6 +shameful_A 1.0773191989054437e-5 +shamefulness_N 3.729715012475897e-6 +shameless_A 1.0773191989054437e-5 +shamelessness_N 3.729715012475897e-6 +shammy_N 3.729715012475897e-6 +shampoo_N 1.4918860049903587e-5 +shampoo_V2 1.609865254278217e-5 +shamrock_N 3.729715012475897e-6 +shandy_N 3.729715012475897e-6 +shandygaff_N 3.729715012475897e-6 +shanghai_PN 1.865462821325971e-5 +shanghai_V2 1.609865254278217e-5 +shanghaier_N 3.729715012475897e-6 +shank_N 3.729715012475897e-6 +shanklin_PN 1.865462821325971e-5 +shanny_N 3.729715012475897e-6 +shantung_N 3.729715012475897e-6 +shanty_N 3.729715012475897e-6 +shantytown_N 7.459430024951794e-6 +shape_N 9.697259032437332e-5 +shape_V 2.4946704767088494e-4 +shape_V2 1.7708517797060386e-4 +shape_VV 1.9219680953296174e-4 +shape_up_V 2.2678822515534993e-5 +shapeless_A 1.0773191989054437e-5 +shapelessness_N 3.729715012475897e-6 +shapely_A 1.0773191989054437e-5 +shaper_N 3.729715012475897e-6 +shaping_N 3.729715012475897e-6 +shard_N 7.459430024951794e-6 +share_N 1.1923898894885442e-2 +share_V 4.535764503106999e-4 +share_V2 8.049326271391085e-4 +share_out_N 3.729715012475897e-6 +share_out_V 2.2678822515534993e-5 +sharecropper_N 1.118914503742769e-5 +shareholder_N 1.2121573790546665e-3 +shareholding_N 2.9837720099807175e-5 +shareware_N 3.729715012475897e-6 +shariah_N 3.729715012475897e-6 +sharing_N 3.729715012475897e-6 +shark_N 1.4918860049903587e-5 +sharkskin_N 3.729715012475897e-6 +sharksucker_N 3.729715012475897e-6 +sharon_PN 1.865462821325971e-5 +sharp_A 2.639432037318337e-3 +sharp_Adv 8.668966832532898e-6 +sharp_N 3.729715012475897e-6 +sharp_eyed_A 1.0773191989054437e-5 +sharp_set_A 1.0773191989054437e-5 +sharp_sighted_A 1.0773191989054437e-5 +sharp_witted_A 2.1546383978108874e-5 +sharpen_V 4.5357645031069986e-5 +sharpen_V2 6.439461017112868e-5 +sharpener_N 3.729715012475897e-6 +sharper_N 3.729715012475897e-6 +sharpie_N 3.729715012475897e-6 +sharpness_N 7.459430024951794e-6 +sharpshooter_N 3.729715012475897e-6 +shatter_V 2.2678822515534993e-5 +shatter_V2 1.4488787288503951e-4 +shatterproof_A 1.0773191989054437e-5 +shave_N 3.729715012475897e-6 +shave_V 9.071529006213997e-5 +shave_V2 6.439461017112868e-5 +shave_away_V 2.2678822515534993e-5 +shave_off_V2 1.609865254278217e-5 +shaven_A 1.0773191989054437e-5 +shaver_N 3.729715012475897e-6 +shavian_A 1.0773191989054437e-5 +shavian_N 3.729715012475897e-6 +shaving_brush_N 3.729715012475897e-6 +shawl_N 3.729715012475897e-6 +shawm_N 3.729715012475897e-6 +she_Pron 3.697484418897536e-2 +she_goat_N 3.729715012475897e-6 +sheaf_N 7.459430024951794e-6 +shear_N 3.729715012475897e-6 +shear_V2 3.219730508556434e-5 +shearer_N 3.729715012475897e-6 +shearing_N 3.729715012475897e-6 +shears_N 3.729715012475897e-6 +shearwater_N 3.729715012475897e-6 +sheath_N 7.459430024951794e-6 +sheath_knife_N 3.729715012475897e-6 +sheathe_V2 1.609865254278217e-5 +sheathing_N 3.729715012475897e-6 +shebang_N 3.729715012475897e-6 +shebeen_N 3.729715012475897e-6 +shed_N 3.729715012475897e-6 +shed_V2 4.0246631356955425e-4 +shedder_N 3.729715012475897e-6 +shedding_N 3.729715012475897e-6 +sheen_N 3.729715012475897e-6 +sheep_N 1.4918860049903587e-5 +sheepdog_N 3.729715012475897e-6 +sheepfold_N 3.729715012475897e-6 +sheepherder_N 3.729715012475897e-6 +sheepish_A 1.0773191989054437e-5 +sheepishness_N 3.729715012475897e-6 +sheeplike_A 1.0773191989054437e-5 +sheepman_N 3.729715012475897e-6 +sheeprun_N 3.729715012475897e-6 +sheepshank_N 3.729715012475897e-6 +sheepshead_N 3.729715012475897e-6 +sheepshearing_N 3.729715012475897e-6 +sheepskin_N 1.118914503742769e-5 +sheepwalk_N 3.729715012475897e-6 +sheer_A 7.541234392338106e-5 +sheer_Adv 8.668966832532898e-6 +sheer_V 2.2678822515534993e-5 +sheerness_PN 1.865462821325971e-5 +sheet_N 1.9394518064874664e-4 +sheet_anchor_N 3.729715012475897e-6 +sheet_lightning_N 3.729715012475897e-6 +sheeting_N 3.729715012475897e-6 +sheetlike_A 1.0773191989054437e-5 +sheffield_PN 3.730925642651942e-5 +shegetz_N 3.729715012475897e-6 +sheik_N 7.459430024951794e-6 +sheika_N 3.729715012475897e-6 +sheikdom_N 3.729715012475897e-6 +sheikh_N 3.729715012475897e-6 +sheikhdom_N 3.729715012475897e-6 +sheila_PN 1.865462821325971e-5 +shekel_N 3.729715012475897e-6 +sheldrake_N 3.729715012475897e-6 +shelduck_N 3.729715012475897e-6 +shelf_N 1.268103104241805e-4 +shelfful_N 3.729715012475897e-6 +shelflike_A 1.0773191989054437e-5 +shelford_PN 1.865462821325971e-5 +shell_N 4.1026865137234865e-5 +shell_V 1.1339411257767497e-4 +shell_V2 3.219730508556434e-5 +shell_out_V2 1.609865254278217e-5 +shell_shock_N 3.729715012475897e-6 +shellac_N 3.729715012475897e-6 +shellac_V2 1.609865254278217e-5 +sheller_N 3.729715012475897e-6 +shellfire_N 3.729715012475897e-6 +shellfish_N 3.729715012475897e-6 +shellflower_N 3.729715012475897e-6 +shellproof_A 1.0773191989054437e-5 +shelter_N 6.713487022456614e-5 +shelter_V 4.5357645031069986e-5 +shelter_V2 4.8295957628346505e-5 +shelve_V 2.2678822515534993e-5 +shelve_V2 6.439461017112868e-5 +shelver_N 3.729715012475897e-6 +shepherd_N 3.729715012475897e-6 +shepherd_V2 3.219730508556434e-5 +shepherdess_N 3.729715012475897e-6 +shepshed_PN 1.865462821325971e-5 +shepton_mallet_PN 1.865462821325971e-5 +sheraton_N 3.729715012475897e-6 +sherbert_N 3.729715012475897e-6 +sherbet_N 7.459430024951794e-6 +sherbourne_PN 1.865462821325971e-5 +sheriff_N 7.459430024951794e-6 +sheringham_PN 1.865462821325971e-5 +sherry_N 3.729715012475897e-6 +shetland_PN 1.865462821325971e-5 +shevington_PN 1.865462821325971e-5 +shew_V 2.2678822515534993e-5 +shew_V2 1.609865254278217e-5 +shibboleth_N 3.729715012475897e-6 +shield_N 3.729715012475897e-5 +shield_V2 1.2878922034225736e-4 +shielding_N 3.729715012475897e-6 +shift_N 1.7529660558636716e-4 +shift_V 5.442917403728399e-4 +shift_V2 4.5076227119790073e-4 +shiftiness_N 3.729715012475897e-6 +shiftless_A 1.0773191989054437e-5 +shiftlessness_N 3.729715012475897e-6 +shifty_A 1.0773191989054437e-5 +shigella_N 3.729715012475897e-6 +shigellosis_N 3.729715012475897e-6 +shihkiachwang_PN 1.865462821325971e-5 +shiitake_N 3.729715012475897e-6 +shiksa_N 3.729715012475897e-6 +shildon_PN 1.865462821325971e-5 +shill_N 3.729715012475897e-6 +shillelagh_N 3.729715012475897e-6 +shilling_N 7.459430024951794e-6 +shillyshally_N 3.729715012475897e-6 +shillyshally_V 2.2678822515534993e-5 +shim_N 3.729715012475897e-6 +shimmer_N 3.729715012475897e-6 +shimmer_V 6.803646754660499e-5 +shimmery_A 1.0773191989054437e-5 +shimmy_N 3.729715012475897e-6 +shin_N 7.459430024951794e-6 +shin_V 2.2678822515534993e-5 +shinbone_N 3.729715012475897e-6 +shindig_N 3.729715012475897e-6 +shindy_N 3.729715012475897e-6 +shine_N 7.459430024951794e-6 +shine_V 1.3607293509320997e-4 +shine_V2 1.609865254278217e-5 +shiner_N 3.729715012475897e-6 +shingle_N 7.459430024951794e-6 +shingle_V2 1.609865254278217e-5 +shingler_N 3.729715012475897e-6 +shingles_N 3.729715012475897e-6 +shingling_N 3.729715012475897e-6 +shingly_A 1.0773191989054437e-5 +shinguard_N 3.729715012475897e-6 +shininess_N 3.729715012475897e-6 +shining_N 3.729715012475897e-6 +shinny_N 3.729715012475897e-6 +shinplaster_N 3.729715012475897e-6 +shiny_A 4.309276795621775e-5 +ship's_chandler_N 3.729715012475897e-6 +ship_N 2.1259375571112613e-4 +ship_V 4.989340953417699e-4 +ship_V2 7.405380169679798e-4 +ship_breaker_N 3.729715012475897e-6 +ship_canal_N 3.729715012475897e-6 +ship_in_V 2.2678822515534993e-5 +ship_off_V2 1.609865254278217e-5 +ship_out_V 2.2678822515534993e-5 +ship_out_V2 1.609865254278217e-5 +shipboard_A 1.0773191989054437e-5 +shipbroker_N 3.729715012475897e-6 +shipbuilder_N 1.8648575062379485e-5 +shipbuilding_N 3.356743511228307e-5 +shipload_N 3.729715012475897e-6 +shipmate_N 3.729715012475897e-6 +shipment_N 2.16323470723602e-4 +shipowner_N 3.729715012475897e-6 +shipper_N 5.594572518713845e-5 +shipping_N 8.205373027446973e-5 +shipping_agent_N 3.729715012475897e-6 +shipping_office_N 3.729715012475897e-6 +shipshape_A 1.0773191989054437e-5 +shipshape_Adv 8.668966832532898e-6 +shipside_N 3.729715012475897e-6 +shipway_N 3.729715012475897e-6 +shipworm_N 3.729715012475897e-6 +shipwreck_N 3.729715012475897e-6 +shipwreck_V 2.2678822515534993e-5 +shipwright_N 3.729715012475897e-6 +shipyard_N 8.578344528694562e-5 +shire_N 3.729715012475897e-6 +shirebrook_PN 1.865462821325971e-5 +shiremoor_PN 1.865462821325971e-5 +shirk_V 4.5357645031069986e-5 +shirk_V2 3.219730508556434e-5 +shirker_N 3.729715012475897e-6 +shirking_N 3.729715012475897e-6 +shirley_PN 1.865462821325971e-5 +shirring_N 3.729715012475897e-6 +shirt_N 5.594572518713845e-5 +shirt_front_N 3.729715012475897e-6 +shirtdress_N 3.729715012475897e-6 +shirtfront_N 3.729715012475897e-6 +shirting_N 3.729715012475897e-6 +shirtmaker_N 3.729715012475897e-6 +shirtsleeve_N 3.729715012475897e-6 +shirtsleeves_N 3.729715012475897e-6 +shirttail_N 3.729715012475897e-6 +shirtwaist_N 3.729715012475897e-6 +shirtwaister_N 3.729715012475897e-6 +shirty_A 1.0773191989054437e-5 +shish_kebab_N 3.729715012475897e-6 +shit_N 3.729715012475897e-6 +shit_V 2.2678822515534993e-5 +shitless_A 1.0773191989054437e-5 +shittah_N 3.729715012475897e-6 +shittimwood_N 3.729715012475897e-6 +shiv_N 3.729715012475897e-6 +shiva_N 3.729715012475897e-6 +shivaree_N 3.729715012475897e-6 +shiver_N 1.8648575062379485e-5 +shiver_V 4.5357645031069986e-5 +shiver_V2 1.609865254278217e-5 +shivery_A 1.0773191989054437e-5 +shmegegge_N 3.729715012475897e-6 +shmooze_N 3.729715012475897e-6 +shoal_N 3.729715012475897e-6 +shoal_V 2.2678822515534993e-5 +shock_Adv 8.668966832532898e-6 +shock_N 1.0443202034932511e-4 +shock_V2 1.4488787288503951e-4 +shock_brigade_N 3.729715012475897e-6 +shock_headed_A 1.0773191989054437e-5 +shock_worker_N 3.729715012475897e-6 +shockable_A 1.0773191989054437e-5 +shocker_N 7.459430024951794e-6 +shocking_A 4.309276795621775e-5 +shod_A 1.0773191989054437e-5 +shoddiness_N 3.729715012475897e-6 +shoddy_A 3.231957596716331e-5 +shoddy_N 3.729715012475897e-6 +shoe_N 7.832401526199384e-5 +shoe_V2 1.609865254278217e-5 +shoe_leather_N 3.729715012475897e-6 +shoebill_N 3.729715012475897e-6 +shoeblack_N 3.729715012475897e-6 +shoebox_N 3.729715012475897e-6 +shoeful_N 3.729715012475897e-6 +shoehorn_N 3.729715012475897e-6 +shoehorn_V2 3.219730508556434e-5 +shoelace_N 7.459430024951794e-6 +shoemaker_N 7.459430024951794e-6 +shoemaking_N 3.729715012475897e-6 +shoeshine_N 3.729715012475897e-6 +shoestring_N 1.4918860049903587e-5 +shoetree_N 3.729715012475897e-6 +shofar_N 3.729715012475897e-6 +shogi_N 3.729715012475897e-6 +shogun_N 3.729715012475897e-6 +shoji_N 3.729715012475897e-6 +shoo_V 2.2678822515534993e-5 +shoo_V2 1.609865254278217e-5 +shoofly_N 3.729715012475897e-6 +shook_N 3.729715012475897e-6 +shoot_N 1.118914503742769e-5 +shoot_V 5.669705628883749e-4 +shoot_V2 1.609865254278217e-4 +shoot_away_V 2.2678822515534993e-5 +shoot_back_V 2.2678822515534993e-5 +shoot_for_V2 1.609865254278217e-5 +shoot_off_V 2.2678822515534993e-5 +shoot_out_V 2.2678822515534993e-5 +shoot_up_V 2.2678822515534993e-5 +shoot_up_V2 3.219730508556434e-5 +shooter_N 3.729715012475897e-6 +shooting_N 1.118914503742769e-5 +shooting_box_N 3.729715012475897e-6 +shooting_brake_N 3.729715012475897e-6 +shooting_gallery_N 3.729715012475897e-6 +shooting_range_N 3.729715012475897e-6 +shooting_stick_N 3.729715012475897e-6 +shop_N 2.387017607984574e-4 +shop_V 2.0410940263981494e-4 +shop_around_V 2.2678822515534993e-5 +shop_assistant_N 3.729715012475897e-6 +shop_bell_N 3.729715012475897e-6 +shop_boy_N 3.729715012475897e-6 +shop_front_N 3.729715012475897e-6 +shop_girl_N 3.729715012475897e-6 +shop_steward_N 3.729715012475897e-6 +shopaholic_N 3.729715012475897e-6 +shopfront_N 3.729715012475897e-6 +shopkeeper_N 1.4918860049903587e-5 +shoplift_V 2.2678822515534993e-5 +shoplift_V2 1.609865254278217e-5 +shoplifter_N 3.729715012475897e-6 +shoplifting_N 7.459430024951794e-6 +shopper_N 4.848629516218666e-5 +shopping_N 1.6037774553646355e-4 +shopsoiled_A 1.0773191989054437e-5 +shopwalker_N 3.729715012475897e-6 +shopwindow_N 3.729715012475897e-6 +shopworn_A 1.0773191989054437e-5 +shore_N 2.237829007485538e-5 +shore_V2 1.7708517797060386e-4 +shore_up_V2 3.219730508556434e-5 +shorebird_N 3.729715012475897e-6 +shoreline_N 3.729715012475897e-6 +shoring_N 3.729715012475897e-6 +shorn_V2 3.219730508556434e-5 +short_A 2.20850435775616e-3 +short_Adv 1.5604140298559218e-4 +short_N 4.1026865137234865e-5 +short_V 4.5357645031069986e-5 +short_V2 4.8295957628346505e-5 +short_change_V2 1.609865254278217e-5 +short_circuit_N 3.729715012475897e-6 +short_circuit_V 4.5357645031069986e-5 +short_circuit_V2 1.609865254278217e-5 +short_dated_A 2.1546383978108874e-5 +short_handed_A 1.0773191989054437e-5 +short_lived_A 8.61855359124355e-5 +short_out_V 2.2678822515534993e-5 +short_range_A 3.231957596716331e-5 +short_sighted_A 1.0773191989054437e-5 +short_tempered_A 1.0773191989054437e-5 +short_term_A 1.3466489986318046e-3 +short_winded_A 1.0773191989054437e-5 +shortage_N 1.3799945546160818e-4 +shortbread_N 3.729715012475897e-6 +shortcake_N 3.729715012475897e-6 +shortcoming_N 2.237829007485538e-5 +shortcut_N 3.729715012475897e-6 +shorten_V 6.803646754660499e-5 +shorten_V2 4.8295957628346505e-5 +shortener_N 3.729715012475897e-6 +shortening_N 7.459430024951794e-6 +shortfall_N 2.9837720099807175e-5 +shortgrass_N 3.729715012475897e-6 +shorthand_A 1.0773191989054437e-5 +shorthand_N 7.459430024951794e-6 +shorthorn_N 3.729715012475897e-6 +shortia_N 3.729715012475897e-6 +shortish_A 1.0773191989054437e-5 +shortlist_N 3.729715012475897e-6 +shortlist_V2 1.609865254278217e-5 +shortness_N 3.729715012475897e-6 +shortstop_N 3.729715012475897e-6 +shot_N 1.2308059541170458e-4 +shot_down_V 2.2678822515534993e-5 +shot_put_N 3.729715012475897e-6 +shot_tower_N 3.729715012475897e-6 +shotgun_N 3.729715012475897e-6 +shotton_PN 1.865462821325971e-5 +shotts_PN 1.865462821325971e-5 +should_VV 5.150874495483375e-2 +shoulder_N 5.2216010174662554e-5 +shoulder_V2 6.439461017112868e-5 +shoulder_blade_N 3.729715012475897e-6 +shoulder_flash_N 3.729715012475897e-6 +shoulder_strap_N 3.729715012475897e-6 +shout_N 7.459430024951794e-6 +shout_V 3.175035152174899e-4 +shout_V2 9.659191525669301e-5 +shout_down_V2 1.609865254278217e-5 +shout_out_V2 1.609865254278217e-5 +shouting_N 7.459430024951794e-6 +shove_N 3.729715012475897e-6 +shove_V 6.803646754660499e-5 +shove_V2 8.049326271391085e-5 +shove_ha'penny_N 3.729715012475897e-6 +shove_through_V 2.2678822515534993e-5 +shovel_N 2.237829007485538e-5 +shovel_V2 1.609865254278217e-5 +shovel_board_N 3.729715012475897e-6 +shoveler_N 3.729715012475897e-6 +shovelful_N 3.729715012475897e-6 +shovelhead_N 3.729715012475897e-6 +show_N 6.899972773080409e-4 +show_V 2.1091304939447543e-3 +show_V2 3.41291433906982e-3 +show_V2V 3.2725572697522207e-3 +show_VQ 6.666666666666667e-2 +show_VS 8.837289897764685e-3 +show_around_V2 1.609865254278217e-5 +show_business_N 3.729715012475897e-6 +show_in_V2 1.609865254278217e-5 +show_off_N 3.729715012475897e-6 +show_off_V 2.2678822515534993e-5 +show_off_V2 1.609865254278217e-5 +show_out_V2 1.609865254278217e-5 +show_over_V3 1.5873015873015873e-3 +show_round_V2 1.609865254278217e-5 +show_through_V 2.2678822515534993e-5 +show_up_V 4.5357645031069986e-5 +show_up_V2 1.609865254278217e-5 +show_window_N 3.729715012475897e-6 +showbiz_N 3.729715012475897e-6 +showboat_N 3.729715012475897e-6 +showcase_N 1.4918860049903587e-5 +showdown_N 7.459430024951794e-6 +shower_N 1.8648575062379485e-5 +shower_V 2.2678822515534993e-5 +shower_V2 3.219730508556434e-5 +shower_bath_N 3.729715012475897e-6 +showerhead_N 3.729715012475897e-6 +showery_A 1.0773191989054437e-5 +showgirl_N 7.459430024951794e-6 +showiness_N 3.729715012475897e-6 +showing_N 4.1026865137234865e-5 +showjumping_N 3.729715012475897e-6 +showman_N 3.729715012475897e-6 +showmanship_N 3.729715012475897e-6 +showplace_N 3.729715012475897e-6 +showroom_N 4.475658014971076e-5 +showy_A 1.0773191989054437e-5 +shrapnel_N 3.729715012475897e-6 +shred_N 7.459430024951794e-6 +shred_V2 6.439461017112868e-5 +shredder_N 3.729715012475897e-6 +shrew_N 3.729715012475897e-6 +shrew_mouse_N 3.729715012475897e-6 +shrewd_A 7.541234392338106e-5 +shrewdness_N 3.729715012475897e-6 +shrewish_A 1.0773191989054437e-5 +shrewishness_N 3.729715012475897e-6 +shrewsbury_PN 1.865462821325971e-5 +shriek_N 3.729715012475897e-6 +shriek_V 2.2678822515534993e-5 +shriek_V2 1.609865254278217e-5 +shrift_N 1.4918860049903587e-5 +shrike_N 3.729715012475897e-6 +shrill_A 1.0773191989054437e-5 +shrill_V 2.2678822515534993e-5 +shrill_V2 1.609865254278217e-5 +shrilling_N 3.729715012475897e-6 +shrillness_N 3.729715012475897e-6 +shrimp_N 3.729715012475897e-6 +shrimp_V 2.2678822515534993e-5 +shrimper_N 3.729715012475897e-6 +shrimpfish_N 3.729715012475897e-6 +shrine_N 7.459430024951794e-6 +shrine_V2 1.609865254278217e-5 +shrink_N 3.729715012475897e-6 +shrink_V 7.030434979815848e-4 +shrink_V2 6.439461017112868e-5 +shrinkable_A 1.0773191989054437e-5 +shrinkage_N 2.237829007485538e-5 +shrinking_N 3.729715012475897e-6 +shrive_V2 1.609865254278217e-5 +shrivel_V 2.2678822515534993e-5 +shrivel_V2 1.609865254278217e-5 +shriveled_A 1.0773191989054437e-5 +shropshire_PN 1.865462821325971e-5 +shroud_N 3.729715012475897e-6 +shroud_V2 3.219730508556434e-5 +shrove_tuesday_N 3.729715012475897e-6 +shrove_tuesday_PN 1.865462821325971e-5 +shrub_N 1.8648575062379485e-5 +shrubbery_N 3.729715012475897e-6 +shrubby_A 1.0773191989054437e-5 +shrublet_N 3.729715012475897e-6 +shrug_N 7.459430024951794e-6 +shrug_V2 4.8295957628346505e-5 +shrug_VS 1.1552012938254491e-4 +shrug_off_V2 3.219730508556434e-5 +shtik_N 3.729715012475897e-6 +shtikl_N 3.729715012475897e-6 +shuck_N 3.729715012475897e-6 +shuck_V2 1.609865254278217e-5 +shucks_N 3.729715012475897e-6 +shudder_N 1.118914503742769e-5 +shudder_V 2.2678822515534993e-5 +shudderingly_Adv 8.668966832532898e-6 +shuffle_N 1.118914503742769e-5 +shuffle_V 4.5357645031069986e-5 +shuffle_V2 1.609865254278217e-5 +shuffleboard_N 3.729715012475897e-6 +shuffler_N 3.729715012475897e-6 +shufti_N 3.729715012475897e-6 +shun_V2 1.609865254278217e-4 +shunt_N 3.729715012475897e-6 +shunt_V 2.2678822515534993e-5 +shunt_V2 1.609865254278217e-5 +shunter_N 3.729715012475897e-6 +shush_V 2.2678822515534993e-5 +shush_V2 1.609865254278217e-5 +shut_V 7.484011430126548e-4 +shut_V2 1.2878922034225736e-4 +shut_away_V2 1.609865254278217e-5 +shut_down_V2 4.8295957628346505e-5 +shut_in_V2 1.609865254278217e-5 +shut_off_V 2.2678822515534993e-5 +shut_off_V2 1.609865254278217e-5 +shut_out_V2 1.609865254278217e-5 +shut_out_of_V2 1.609865254278217e-5 +shut_up_V2 1.609865254278217e-5 +shut_yourself_away_V 2.2678822515534993e-5 +shutdown_N 7.086458523704203e-5 +shuteye_N 3.729715012475897e-6 +shutout_N 3.729715012475897e-6 +shutter_N 3.729715012475897e-6 +shutter_V2 8.049326271391085e-5 +shutterbug_N 3.729715012475897e-6 +shutting_N 3.729715012475897e-6 +shuttle_N 8.951316029942152e-5 +shuttle_V 4.5357645031069986e-5 +shuttle_V2 4.8295957628346505e-5 +shuttlecock_N 3.729715012475897e-6 +shy_A 5.3865959945272184e-5 +shy_N 3.729715012475897e-6 +shy_V 2.2678822515534994e-4 +shy_V2 1.609865254278217e-5 +shy_away_V 2.2678822515534993e-5 +shy_away_from_V2 1.609865254278217e-5 +shyly_Adv 8.668966832532898e-6 +shyness_N 3.729715012475897e-6 +shyster_N 3.729715012475897e-6 +sial_N 3.729715012475897e-6 +sialadenitis_N 3.729715012475897e-6 +sialolith_N 3.729715012475897e-6 +siam_PN 1.865462821325971e-5 +siamang_N 3.729715012475897e-6 +siamese_A 1.0773191989054437e-5 +siamese_N 3.729715012475897e-6 +sian_PN 1.865462821325971e-5 +siberian_A 1.0773191989054437e-5 +sibilant_A 1.0773191989054437e-5 +sibilant_N 3.729715012475897e-6 +sibilation_N 3.729715012475897e-6 +sibling_N 7.459430024951794e-6 +sibyl_N 3.729715012475897e-6 +sibylline_A 1.0773191989054437e-5 +sic_Adv 8.668966832532898e-6 +sicilian_A 1.0773191989054437e-5 +sicilian_N 3.729715012475897e-6 +sick_A 2.2623703177014317e-4 +sick_N 3.729715012475897e-6 +sick_V2 1.609865254278217e-5 +sick_benefit_N 3.729715012475897e-6 +sick_berth_N 3.729715012475897e-6 +sick_headache_N 3.729715012475897e-6 +sick_leave_N 3.729715012475897e-6 +sick_list_N 3.729715012475897e-6 +sick_parade_N 3.729715012475897e-6 +sick_pay_N 3.729715012475897e-6 +sick_room_N 3.729715012475897e-6 +sickbay_N 3.729715012475897e-6 +sickbed_N 3.729715012475897e-6 +sicken_V 4.5357645031069986e-5 +sicken_V2 1.609865254278217e-5 +sickish_A 1.0773191989054437e-5 +sickle_N 3.729715012475897e-6 +sicklepod_N 3.729715012475897e-6 +sickly_A 1.0773191989054437e-5 +sickness_N 7.459430024951794e-6 +sickroom_N 3.729715012475897e-6 +sid_PN 1.865462821325971e-5 +side_N 6.937269923205168e-4 +side_V 1.1339411257767497e-4 +side_chapel_N 3.729715012475897e-6 +side_dish_N 3.729715012475897e-6 +side_drum_N 3.729715012475897e-6 +side_face_Adv 8.668966832532898e-6 +side_glance_N 3.729715012475897e-6 +side_road_N 3.729715012475897e-6 +side_saddle_Adv 8.668966832532898e-6 +side_saddle_N 3.729715012475897e-6 +side_slip_N 3.729715012475897e-6 +side_slip_V 2.2678822515534993e-5 +side_splitting_A 1.0773191989054437e-5 +side_stroke_N 3.729715012475897e-6 +side_view_N 3.729715012475897e-6 +side_with_V2 1.609865254278217e-5 +sidearm_A 1.0773191989054437e-5 +sidearm_Adv 8.668966832532898e-6 +sidebar_N 3.729715012475897e-6 +sideboard_N 3.729715012475897e-6 +sideburn_N 3.729715012475897e-6 +sidecar_N 7.459430024951794e-6 +sidelight_N 3.729715012475897e-6 +sideline_N 9.324287531189741e-5 +sideline_V 9.071529006213997e-5 +sideline_V2 3.219730508556434e-5 +sidelong_A 1.0773191989054437e-5 +sidelong_Adv 8.668966832532898e-6 +sidereal_A 1.0773191989054437e-5 +siderite_N 3.729715012475897e-6 +sideroblast_N 3.729715012475897e-6 +siderocyte_N 3.729715012475897e-6 +sideropenia_N 3.729715012475897e-6 +siderosis_N 3.729715012475897e-6 +sidesaddle_Adv 8.668966832532898e-6 +sidesaddle_N 3.729715012475897e-6 +sideshow_N 7.459430024951794e-6 +sidesman_N 3.729715012475897e-6 +sidestep_N 3.729715012475897e-6 +sidestep_V 6.803646754660499e-5 +sidestep_V2 6.439461017112868e-5 +sidestroke_N 3.729715012475897e-6 +sideswipe_N 3.729715012475897e-6 +sidetrack_N 3.729715012475897e-6 +sidetrack_V2 3.219730508556434e-5 +sidewalk_N 2.6108005087331277e-5 +sidewall_N 3.729715012475897e-6 +sideward_Adv 8.668966832532898e-6 +sidewards_Adv 8.668966832532898e-6 +sideway_Adv 8.668966832532898e-6 +sideways_Adv 2.6006900497598697e-5 +sidewinder_N 3.729715012475897e-6 +siding_N 1.118914503742769e-5 +sidle_V 2.2678822515534993e-5 +sidle_up_to_V2 1.609865254278217e-5 +sidmouth_PN 1.865462821325971e-5 +sidney_PN 3.1712867962541504e-4 +siege_N 7.459430024951794e-6 +sienna_N 3.729715012475897e-6 +sierra_N 3.729715012475897e-6 +sierra_leone_PN 1.865462821325971e-5 +sierra_leonian_A 1.0773191989054437e-5 +sierra_leonian_N 3.729715012475897e-6 +siesta_N 3.729715012475897e-6 +sieve_N 3.729715012475897e-6 +sieve_V2 1.609865254278217e-5 +sift_V 1.1339411257767497e-4 +sift_V2 1.609865254278217e-5 +sift_through_V2 1.609865254278217e-5 +sifter_N 3.729715012475897e-6 +sigeh_N 3.729715012475897e-6 +sigh_N 2.9837720099807175e-5 +sigh_V 6.803646754660499e-5 +sigh_V2 1.609865254278217e-5 +sigh_VS 1.1552012938254491e-4 +sight_N 6.340515521209024e-5 +sight_V2 1.609865254278217e-5 +sighting_N 1.4918860049903587e-5 +sightless_A 1.0773191989054437e-5 +sightreader_N 3.729715012475897e-6 +sights_N 3.729715012475897e-6 +sightseeing_N 7.459430024951794e-6 +sightseer_N 3.729715012475897e-6 +sigma_N 3.729715012475897e-6 +sigmoid_A 1.0773191989054437e-5 +sigmoidectomy_N 3.729715012475897e-6 +sigmoidoscope_N 3.729715012475897e-6 +sigmoidoscopy_N 3.729715012475897e-6 +sign_N 5.78105826933764e-4 +sign_V 6.803646754660499e-5 +sign_V2 1.5132733390215238e-3 +sign_V2V 1.402524544179523e-3 +sign_away_V2 1.609865254278217e-5 +sign_for_V3 1.5873015873015873e-3 +sign_in_V 2.2678822515534993e-5 +sign_in_V2 1.609865254278217e-5 +sign_into_V2 1.609865254278217e-5 +sign_off_V 2.2678822515534993e-5 +sign_off_V2 1.609865254278217e-5 +sign_off_on_V2 1.609865254278217e-5 +sign_on_V 2.2678822515534993e-5 +sign_on_V2 1.609865254278217e-5 +sign_on_with_V2 1.609865254278217e-5 +sign_out_V 2.2678822515534993e-5 +sign_out_V2 1.609865254278217e-5 +sign_out_of_V2 1.609865254278217e-5 +sign_painter_N 3.729715012475897e-6 +sign_up_V 1.0659046582301448e-3 +sign_with_V2 1.609865254278217e-5 +signage_N 3.729715012475897e-6 +signal_A 1.0773191989054437e-5 +signal_N 1.4545888548655997e-4 +signal_V 6.803646754660499e-5 +signal_V2 3.541703559412077e-4 +signal_VS 2.8880032345636225e-4 +signal_box_N 3.729715012475897e-6 +signale_V2 2.575784406845147e-4 +signale_VS 9.241610350603593e-4 +signaler_N 3.729715012475897e-6 +signalization_N 3.729715012475897e-6 +signalize_V2 1.609865254278217e-5 +signaller_N 3.729715012475897e-6 +signalman_N 3.729715012475897e-6 +signatory_N 7.459430024951794e-6 +signature_N 3.729715012475897e-5 +signboard_N 3.729715012475897e-6 +signer_N 3.729715012475897e-6 +signet_N 3.729715012475897e-6 +signet_ring_N 3.729715012475897e-6 +significance_N 4.475658014971076e-5 +significant_A 2.197731165767105e-3 +signification_N 3.729715012475897e-6 +significative_A 1.0773191989054437e-5 +signify_V 2.2678822515534993e-5 +signify_V2 3.219730508556434e-5 +signor_N 3.729715012475897e-6 +signora_N 3.729715012475897e-6 +signore_N 3.729715012475897e-6 +signorina_N 3.729715012475897e-6 +signpost_N 3.729715012475897e-6 +signpost_V2 1.609865254278217e-5 +sikh_N 3.729715012475897e-6 +silage_N 3.729715012475897e-6 +sild_N 3.729715012475897e-6 +sildenafil_N 3.729715012475897e-6 +sileby_PN 1.865462821325971e-5 +silence_N 2.237829007485538e-5 +silence_V2 4.8295957628346505e-5 +silencer_N 3.729715012475897e-6 +silene_N 3.729715012475897e-6 +silent_A 8.61855359124355e-5 +silenus_N 3.729715012475897e-6 +silesia_N 3.729715012475897e-6 +silex_N 3.729715012475897e-6 +silhouette_N 3.729715012475897e-6 +silhouette_V2 1.609865254278217e-5 +silica_N 3.729715012475897e-6 +silicate_N 3.729715012475897e-6 +siliceous_A 1.0773191989054437e-5 +silicide_N 3.729715012475897e-6 +silicle_N 3.729715012475897e-6 +silicon_N 1.8648575062379485e-5 +silicone_N 7.459430024951794e-6 +silicosis_N 3.729715012475897e-6 +silique_N 3.729715012475897e-6 +silk_N 3.729715012475897e-6 +silken_A 1.0773191989054437e-5 +silkiness_N 3.729715012475897e-6 +silks_N 3.729715012475897e-6 +silkscreen_N 3.729715012475897e-6 +silkworm_N 3.729715012475897e-6 +silky_A 2.1546383978108874e-5 +sill_N 3.729715012475897e-6 +sillabub_N 3.729715012475897e-6 +silliness_N 3.729715012475897e-6 +silly_A 9.695872790148993e-5 +silly_N 7.459430024951794e-6 +silo_N 3.729715012475897e-6 +siloxane_N 3.729715012475897e-6 +silsden_PN 1.865462821325971e-5 +silt_N 3.729715012475897e-6 +silt_V 4.5357645031069986e-5 +silt_V2 1.609865254278217e-5 +silt_up_V 2.2678822515534993e-5 +siltstone_N 3.729715012475897e-6 +silty_A 1.0773191989054437e-5 +silurid_N 3.729715012475897e-6 +silva_N 3.729715012475897e-6 +silvan_A 1.0773191989054437e-5 +silver_A 1.0773191989054437e-5 +silver_N 1.6410746054893946e-4 +silver_V 2.2678822515534993e-5 +silver_V2 1.609865254278217e-5 +silver_fish_N 3.729715012475897e-6 +silverback_N 3.729715012475897e-6 +silverberry_N 3.729715012475897e-6 +silverfish_N 3.729715012475897e-6 +silvern_A 1.0773191989054437e-5 +silverpoint_N 3.729715012475897e-6 +silverrod_N 3.729715012475897e-6 +silverside_N 3.729715012475897e-6 +silversides_N 3.729715012475897e-6 +silversmith_N 3.729715012475897e-6 +silverspot_N 3.729715012475897e-6 +silversword_N 3.729715012475897e-6 +silvervine_N 3.729715012475897e-6 +silverware_N 3.729715012475897e-6 +silverweed_N 3.729715012475897e-6 +silverwork_N 3.729715012475897e-6 +silvery_A 2.1546383978108874e-5 +silvex_N 3.729715012475897e-6 +silvia_PN 1.865462821325971e-5 +silviculture_N 3.729715012475897e-6 +sima_N 3.729715012475897e-6 +simazine_N 3.729715012475897e-6 +simian_A 1.0773191989054437e-5 +simian_N 3.729715012475897e-6 +similar_A 2.2946898936685952e-3 +similarity_N 3.356743511228307e-5 +simile_N 3.729715012475897e-6 +similitude_N 3.729715012475897e-6 +simmer_N 3.729715012475897e-6 +simmer_V 1.8143058012427994e-4 +simmer_V2 1.609865254278217e-5 +simmer_down_V 2.2678822515534993e-5 +simnel_N 3.729715012475897e-6 +simon_PN 1.865462821325971e-5 +simony_N 3.729715012475897e-6 +simoom_N 3.729715012475897e-6 +simoon_N 3.729715012475897e-6 +simper_N 3.729715012475897e-6 +simper_V 2.2678822515534993e-5 +simperer_N 3.729715012475897e-6 +simperingly_Adv 8.668966832532898e-6 +simple_A 1.9176281740516897e-3 +simple_N 2.237829007485538e-5 +simple_hearted_A 1.0773191989054437e-5 +simple_minded_A 2.1546383978108874e-5 +simpleton_N 3.729715012475897e-6 +simplex_A 1.0773191989054437e-5 +simplicity_N 1.4918860049903587e-5 +simplification_N 1.118914503742769e-5 +simplify_V 4.5357645031069986e-5 +simplify_V2 1.2878922034225736e-4 +simplistic_A 1.0773191989054437e-5 +simulacrum_N 3.729715012475897e-6 +simulate_V2 1.1269056779947518e-4 +simulation_N 1.118914503742769e-5 +simulator_N 1.8648575062379485e-5 +simulcast_N 3.729715012475897e-6 +simultaneity_N 3.729715012475897e-6 +simultaneous_A 2.3701022375919762e-4 +simultaneousness_N 3.729715012475897e-6 +simvastatin_N 3.729715012475897e-6 +sin_N 2.9837720099807175e-5 +sin_V 2.2678822515534993e-5 +since_Adv 9.535863515786188e-5 +since_Prep 6.625754627550766e-3 +since_Subj 8.032128514056224e-3 +since_then_Adv 2.5140003814345404e-4 +sincere_A 3.231957596716331e-5 +sincerity_N 7.459430024951794e-6 +sinciput_N 3.729715012475897e-6 +sine_N 3.729715012475897e-6 +sine_die_Adv 8.668966832532898e-6 +sine_qua_non_N 2.9837720099807175e-5 +sinecure_N 3.729715012475897e-6 +sinew_N 3.729715012475897e-6 +sinewy_A 1.0773191989054437e-5 +sinful_A 2.1546383978108874e-5 +sinfulness_N 3.729715012475897e-6 +sing_V 2.9482469270195494e-4 +sing_V2 1.2878922034225736e-4 +sing_along_V 2.2678822515534993e-5 +sing_out_V 2.2678822515534993e-5 +sing_up_V 2.2678822515534993e-5 +singable_A 1.0773191989054437e-5 +singalong_N 3.729715012475897e-6 +singapore_PN 7.275305003171287e-4 +singaporean_A 1.0773191989054437e-5 +singaporean_N 3.729715012475897e-6 +singe_N 3.729715012475897e-6 +singe_V 2.2678822515534993e-5 +singe_V2 1.609865254278217e-5 +singer_N 5.2216010174662554e-5 +singhalese_A 1.0773191989054437e-5 +singing_N 7.459430024951794e-6 +single_A 1.109638774872607e-3 +single_N 1.8648575062379485e-5 +single_V2 2.092824830561682e-4 +single_breasted_A 1.0773191989054437e-5 +single_handed_A 6.463915193432663e-5 +single_handed_Adv 8.668966832532898e-6 +single_minded_A 1.0773191989054437e-5 +single_out_V2 1.609865254278217e-5 +single_spacing_N 3.729715012475897e-6 +singleness_N 3.729715012475897e-6 +singles_N 3.729715012475897e-6 +singlestick_N 3.729715012475897e-6 +singlet_N 3.729715012475897e-6 +singleton_N 3.729715012475897e-6 +singly_Adv 1.7337933665065797e-5 +singsong_N 3.729715012475897e-6 +singular_A 1.0773191989054437e-5 +singular_N 3.729715012475897e-6 +singularity_N 3.729715012475897e-6 +singularize_V2 1.609865254278217e-5 +sinhala_N 3.729715012475897e-6 +sinhalese_A 1.0773191989054437e-5 +sinhalese_N 3.729715012475897e-6 +sining_PN 1.865462821325971e-5 +sinister_A 3.231957596716331e-5 +sinistral_A 1.0773191989054437e-5 +sinistrorse_A 1.0773191989054437e-5 +sink_N 7.459430024951794e-6 +sink_V 4.535764503106999e-4 +sink_V2 3.219730508556434e-4 +sink_in_V 2.2678822515534993e-5 +sinkable_A 1.0773191989054437e-5 +sinker_N 3.729715012475897e-6 +sinkhole_N 3.729715012475897e-6 +sinking_N 1.8648575062379485e-5 +sinking_fund_N 3.729715012475897e-6 +sinless_A 1.0773191989054437e-5 +sinlessness_N 3.729715012475897e-6 +sinn_fein_PN 1.865462821325971e-5 +sinner_N 3.729715012475897e-6 +sinologist_N 3.729715012475897e-6 +sinology_N 3.729715012475897e-6 +sinopis_N 3.729715012475897e-6 +sintered_A 1.0773191989054437e-5 +sinuate_A 1.0773191989054437e-5 +sinuosity_N 3.729715012475897e-6 +sinuous_A 1.0773191989054437e-5 +sinus_N 3.729715012475897e-6 +sinusitis_N 3.729715012475897e-6 +sinusoid_N 3.729715012475897e-6 +sinusoidal_A 1.0773191989054437e-5 +sioux_N 3.729715012475897e-6 +sip_N 3.729715012475897e-6 +sip_V 2.2678822515534993e-5 +sip_V2 6.439461017112868e-5 +siphon_N 3.729715012475897e-6 +siphon_V 9.071529006213997e-5 +siphon_V2 6.439461017112868e-5 +siphone_off_V 2.2678822515534993e-5 +siphonophore_N 3.729715012475897e-6 +sipper_N 3.729715012475897e-6 +sir_N 3.729715012475897e-6 +sir_roger_de_coverley_N 3.729715012475897e-6 +siracusa_PN 1.865462821325971e-5 +sirdar_N 3.729715012475897e-6 +sire_N 3.729715012475897e-6 +sire_V2 1.609865254278217e-5 +siren_N 7.459430024951794e-6 +siris_N 3.729715012475897e-6 +sirloin_N 3.729715012475897e-6 +sirocco_N 3.729715012475897e-6 +sirrah_N 3.729715012475897e-6 +sirup_N 3.729715012475897e-6 +sisal_N 3.729715012475897e-6 +siskin_N 3.729715012475897e-6 +sissified_A 1.0773191989054437e-5 +sissoo_N 3.729715012475897e-6 +sissy_N 3.729715012475897e-6 +sister_N 6.713487022456614e-5 +sister_in_law_N 3.729715012475897e-6 +sisterhood_N 3.729715012475897e-6 +sisterly_A 1.0773191989054437e-5 +siswati_N 3.729715012475897e-6 +sit_V 2.0410940263981495e-3 +sit_V2 1.609865254278217e-5 +sit_VA 2.952755905511811e-3 +sit_about_V 2.2678822515534993e-5 +sit_around_V 2.2678822515534993e-5 +sit_back_V 2.2678822515534993e-5 +sit_by_V 2.2678822515534993e-5 +sit_down_V2 1.609865254278217e-5 +sit_for_V2 1.609865254278217e-5 +sit_in_N 3.729715012475897e-6 +sit_in_V2 1.609865254278217e-5 +sit_in_for_V2 1.609865254278217e-5 +sit_in_on_V2 1.609865254278217e-5 +sit_on_V2 1.609865254278217e-5 +sit_out_V2 1.609865254278217e-5 +sit_over_V2 1.609865254278217e-5 +sit_through_V2 1.609865254278217e-5 +sit_up_V 2.2678822515534993e-5 +sit_with_V2 1.609865254278217e-5 +sitar_N 3.729715012475897e-6 +site_N 2.387017607984574e-4 +site_V 2.2678822515534993e-5 +sitter_N 7.459430024951794e-6 +sitting_N 3.729715012475897e-6 +sitting_room_N 3.729715012475897e-6 +sittingbourne_PN 1.865462821325971e-5 +situate_V2 4.8295957628346505e-5 +situation_N 5.296195317715773e-4 +six_footer_N 3.729715012475897e-6 +six_shooter_N 3.729715012475897e-6 +sixfold_A 2.1546383978108874e-5 +sixfold_Adv 1.7337933665065797e-5 +sixpence_N 3.729715012475897e-6 +sixpenny_A 1.0773191989054437e-5 +sixth_former_N 3.729715012475897e-6 +sizable_A 2.47783415748252e-4 +size_A 1.0773191989054437e-5 +size_N 4.363766564596799e-4 +size_V2 6.439461017112868e-5 +size_up_V2 1.609865254278217e-5 +sizeable_A 1.0773191989054437e-5 +sizzle_N 3.729715012475897e-6 +sizzle_V 9.071529006213997e-5 +skank_N 3.729715012475897e-6 +skate_N 3.729715012475897e-6 +skate_V 2.2678822515534993e-5 +skateboard_N 7.459430024951794e-6 +skateboarder_N 3.729715012475897e-6 +skateboarding_N 3.729715012475897e-6 +skater_N 3.729715012475897e-6 +skating_N 3.729715012475897e-6 +skating_rink_N 3.729715012475897e-6 +skedaddle_N 3.729715012475897e-6 +skedaddle_V 2.2678822515534993e-5 +skeet_N 3.729715012475897e-6 +skeg_N 3.729715012475897e-6 +skegness_PN 1.865462821325971e-5 +skein_N 3.729715012475897e-6 +skeletal_A 1.0773191989054437e-5 +skeleton_N 3.729715012475897e-6 +skelmanthorpe_PN 1.865462821325971e-5 +skelmersdale_PN 1.865462821325971e-5 +skep_N 3.729715012475897e-6 +skepful_N 3.729715012475897e-6 +skeptic_N 3.729715012475897e-6 +skeptical_A 2.585566077373065e-4 +skepticism_N 4.1026865137234865e-5 +sketch_N 2.237829007485538e-5 +sketch_V 2.2678822515534993e-5 +sketch_V2 4.8295957628346505e-5 +sketch_block_N 3.729715012475897e-6 +sketch_book_N 3.729715012475897e-6 +sketch_map_N 3.729715012475897e-6 +sketchbook_N 3.729715012475897e-6 +sketcher_N 3.729715012475897e-6 +sketchiness_N 3.729715012475897e-6 +sketchy_A 7.541234392338106e-5 +skew_A 1.0773191989054437e-5 +skew_V2 6.439461017112868e-5 +skew_eyed_A 1.0773191989054437e-5 +skewen_PN 1.865462821325971e-5 +skewer_N 3.729715012475897e-6 +skewer_V2 1.609865254278217e-5 +ski_N 6.713487022456614e-5 +ski_V 6.803646754660499e-5 +ski_bob_N 3.729715012475897e-6 +ski_jump_N 3.729715012475897e-6 +ski_lift_N 3.729715012475897e-6 +ski_plane_N 3.729715012475897e-6 +skibob_N 3.729715012475897e-6 +skid_N 1.4918860049903587e-5 +skid_V 1.8143058012427994e-4 +skid_V2 1.2878922034225736e-4 +skidder_N 3.729715012475897e-6 +skidpan_N 3.729715012475897e-6 +skier_N 4.1026865137234865e-5 +skiff_N 3.729715012475897e-6 +skiffle_N 3.729715012475897e-6 +skiffle_group_N 3.729715012475897e-6 +skiing_N 7.459430024951794e-6 +skilful_A 1.0773191989054437e-5 +skill_N 1.118914503742769e-4 +skilled_A 8.61855359124355e-5 +skillet_N 3.729715012475897e-6 +skillfully_Adv 8.668966832532898e-6 +skillfulness_N 3.729715012475897e-6 +skilly_N 3.729715012475897e-6 +skim_A 1.0773191989054437e-5 +skim_N 3.729715012475897e-6 +skim_V 6.803646754660499e-5 +skim_V2 1.609865254278217e-5 +skimmed_milk_N 3.729715012475897e-6 +skimmer_N 7.459430024951794e-6 +skimming_N 3.729715012475897e-6 +skimp_V 4.5357645031069986e-5 +skimp_V2 1.609865254278217e-5 +skimpy_A 2.1546383978108874e-5 +skin_N 7.832401526199384e-5 +skin_V 2.2678822515534993e-5 +skin_V2 1.609865254278217e-5 +skin_deep_A 1.0773191989054437e-5 +skin_diving_N 3.729715012475897e-6 +skin_graft_N 3.729715012475897e-6 +skin_tight_A 1.0773191989054437e-5 +skin_up_V 2.2678822515534993e-5 +skin_up_V2 1.609865254278217e-5 +skinflint_N 3.729715012475897e-6 +skinful_N 3.729715012475897e-6 +skinhead_N 3.729715012475897e-6 +skinheads_N 3.729715012475897e-6 +skink_N 3.729715012475897e-6 +skinless_A 1.0773191989054437e-5 +skinner_N 3.729715012475897e-6 +skinniness_N 3.729715012475897e-6 +skinny_A 1.0773191989054437e-5 +skinny_N 3.729715012475897e-6 +skint_A 1.0773191989054437e-5 +skintight_A 1.0773191989054437e-5 +skip_N 3.729715012475897e-6 +skip_V 1.1339411257767497e-4 +skip_V2 8.049326271391085e-5 +skip_off_V 2.2678822515534993e-5 +skipjack_N 3.729715012475897e-6 +skipper_N 7.459430024951794e-6 +skipper_V2 3.219730508556434e-5 +skipping_rope_N 3.729715012475897e-6 +skipton_PN 1.865462821325971e-5 +skirl_N 3.729715012475897e-6 +skirmish_N 1.118914503742769e-5 +skirmish_V 4.5357645031069986e-5 +skirmisher_N 3.729715012475897e-6 +skirret_N 3.729715012475897e-6 +skirt_N 1.4918860049903587e-5 +skirt_V 2.2678822515534993e-5 +skirt_V2 8.049326271391085e-5 +skirting_board_N 3.729715012475897e-6 +skit_N 3.729715012475897e-6 +skitter_V 2.2678822515534993e-5 +skittish_A 6.463915193432663e-5 +skittishness_N 2.237829007485538e-5 +skittle_N 3.729715012475897e-6 +skittle_V2 1.609865254278217e-5 +skittle_pin_N 3.729715012475897e-6 +skittles_N 3.729715012475897e-6 +skive_off_V 2.2678822515534993e-5 +skivvy_N 3.729715012475897e-6 +skopje_PN 1.865462821325971e-5 +skua_N 3.729715012475897e-6 +skulk_V 2.2678822515534993e-5 +skulker_N 3.729715012475897e-6 +skull_N 7.459430024951794e-6 +skullcap_N 3.729715012475897e-6 +skullduggery_N 3.729715012475897e-6 +skulled_A 1.0773191989054437e-5 +skunk_N 3.729715012475897e-6 +skunkweed_N 3.729715012475897e-6 +sky_N 3.356743511228307e-5 +sky_V2 1.609865254278217e-5 +sky_blue_A 1.0773191989054437e-5 +sky_blue_N 3.729715012475897e-6 +sky_high_Adv 8.668966832532898e-6 +skybox_N 3.729715012475897e-6 +skycap_N 3.729715012475897e-6 +skydiver_N 3.729715012475897e-6 +skydiving_N 3.729715012475897e-6 +skyhook_N 3.729715012475897e-6 +skylark_N 3.729715012475897e-6 +skylark_V 2.2678822515534993e-5 +skylight_N 3.729715012475897e-6 +skyline_N 7.459430024951794e-6 +skyrocket_N 3.729715012475897e-6 +skyrocket_V 2.2678822515534994e-4 +skyrocket_V2 3.219730508556434e-5 +skysail_N 3.729715012475897e-6 +skyscraper_N 1.118914503742769e-5 +skywalk_N 3.729715012475897e-6 +skyward_A 1.0773191989054437e-5 +skyward_Adv 2.6006900497598697e-5 +skywards_A 1.0773191989054437e-5 +skywards_Adv 8.668966832532898e-6 +skywriting_N 3.729715012475897e-6 +slab_N 2.237829007485538e-5 +slack_A 4.309276795621775e-5 +slack_N 2.9837720099807175e-5 +slack_V 4.5357645031069986e-5 +slack_off_V 2.2678822515534993e-5 +slacken_V 9.071529006213997e-5 +slacken_V2 6.439461017112868e-5 +slacken_off_V 2.2678822515534993e-5 +slacker_N 3.729715012475897e-6 +slackness_N 3.729715012475897e-6 +slacks_N 3.729715012475897e-6 +slag_N 3.729715012475897e-6 +slag_heap_N 3.729715012475897e-6 +slag_off_V2 1.609865254278217e-5 +slagheap_N 3.729715012475897e-6 +slain_N 3.729715012475897e-6 +slake_V2 1.609865254278217e-5 +slalom_N 3.729715012475897e-6 +slam_N 3.729715012475897e-6 +slam_V 6.803646754660499e-5 +slam_V2 4.8295957628346505e-5 +slam_dunk_V2 3.219730508556434e-5 +slammer_N 3.729715012475897e-6 +slander_N 3.729715012475897e-6 +slander_V2 1.609865254278217e-5 +slanderer_N 3.729715012475897e-6 +slanderous_A 1.0773191989054437e-5 +slang_N 3.729715012475897e-6 +slang_V2 1.609865254278217e-5 +slanginess_N 3.729715012475897e-6 +slanguage_N 3.729715012475897e-6 +slangy_A 1.0773191989054437e-5 +slant_N 3.729715012475897e-6 +slant_V 2.2678822515534993e-5 +slant_V2 3.219730508556434e-5 +slant_toward_V2 1.609865254278217e-5 +slantingly_Adv 8.668966832532898e-6 +slantwise_Adv 8.668966832532898e-6 +slap_Adv 8.668966832532898e-6 +slap_N 1.118914503742769e-5 +slap_V2 1.1269056779947518e-4 +slap_bang_Adv 8.668966832532898e-6 +slap_happy_A 1.0773191989054437e-5 +slap_up_A 1.0773191989054437e-5 +slapdash_A 1.0773191989054437e-5 +slapdash_Adv 8.668966832532898e-6 +slapper_N 3.729715012475897e-6 +slapshot_N 3.729715012475897e-6 +slapstick_A 1.0773191989054437e-5 +slapstick_N 3.729715012475897e-6 +slash_N 1.118914503742769e-5 +slash_V 3.628611602485599e-4 +slash_V2 4.0246631356955425e-4 +slasher_N 3.729715012475897e-6 +slat_N 1.118914503742769e-5 +slate_N 5.594572518713845e-5 +slate_V2 1.1269056779947518e-4 +slate_V2V 4.675081813931744e-4 +slate_club_N 3.729715012475897e-6 +slate_pencil_N 3.729715012475897e-6 +slating_N 3.729715012475897e-6 +slatted_A 1.0773191989054437e-5 +slattern_N 3.729715012475897e-6 +slatternliness_N 3.729715012475897e-6 +slatternly_A 1.0773191989054437e-5 +slaty_A 1.0773191989054437e-5 +slaughter_N 1.4918860049903587e-5 +slaughter_V2 6.439461017112868e-5 +slaughterer_N 3.729715012475897e-6 +slaughterhouse_N 3.729715012475897e-6 +slav_A 1.0773191989054437e-5 +slav_N 3.729715012475897e-6 +slave_N 7.459430024951794e-6 +slave_V 2.2678822515534993e-5 +slave_driver_N 3.729715012475897e-6 +slave_trade_N 3.729715012475897e-6 +slave_traffic_N 3.729715012475897e-6 +slaveholder_N 3.729715012475897e-6 +slaveholding_A 1.0773191989054437e-5 +slavelike_A 1.0773191989054437e-5 +slaver_N 3.729715012475897e-6 +slaver_V 2.2678822515534993e-5 +slavery_N 7.459430024951794e-6 +slavey_N 3.729715012475897e-6 +slavish_A 2.1546383978108874e-5 +slavonic_A 1.0773191989054437e-5 +slaw_N 3.729715012475897e-6 +slay_V2 6.439461017112868e-5 +slayer_N 3.729715012475897e-6 +sleaford_PN 1.865462821325971e-5 +sleaziness_N 3.729715012475897e-6 +sleazy_A 4.309276795621775e-5 +sled_N 3.729715012475897e-6 +sledder_N 3.729715012475897e-6 +sledding_N 3.729715012475897e-6 +sledge_N 3.729715012475897e-6 +sledge_V 2.2678822515534993e-5 +sledge_V2 1.609865254278217e-5 +sledgehammer_N 3.729715012475897e-6 +sleek_A 6.463915193432663e-5 +sleek_V2 1.609865254278217e-5 +sleekness_N 3.729715012475897e-6 +sleep_N 1.8648575062379485e-5 +sleep_V 4.082188052796299e-4 +sleep_V2 1.609865254278217e-5 +sleep_in_V 2.2678822515534993e-5 +sleep_off_V2 1.609865254278217e-5 +sleep_on_V2 1.609865254278217e-5 +sleep_over_V 2.2678822515534993e-5 +sleep_through_V2 1.609865254278217e-5 +sleeper_N 7.459430024951794e-6 +sleepiness_N 3.729715012475897e-6 +sleeping_N 1.8648575062379485e-5 +sleeping_bag_N 3.729715012475897e-6 +sleeping_car_N 3.729715012475897e-6 +sleeping_draught_N 3.729715012475897e-6 +sleeping_pill_N 3.729715012475897e-6 +sleeping_sickness_N 3.729715012475897e-6 +sleepless_A 1.0773191989054437e-5 +sleeplessness_N 3.729715012475897e-6 +sleepover_N 3.729715012475897e-6 +sleepwalker_N 3.729715012475897e-6 +sleepwalking_N 3.729715012475897e-6 +sleepy_A 3.231957596716331e-5 +sleepy_head_N 3.729715012475897e-6 +sleepyhead_N 3.729715012475897e-6 +sleet_N 3.729715012475897e-6 +sleet_V 2.2678822515534993e-5 +sleety_A 1.0773191989054437e-5 +sleeve_N 1.118914503742769e-5 +sleeved_A 1.0773191989054437e-5 +sleeveless_A 1.0773191989054437e-5 +sleigh_N 3.729715012475897e-6 +sleigh_V 2.2678822515534993e-5 +sleigh_V2 1.609865254278217e-5 +sleigh_bell_N 3.729715012475897e-6 +sleight_N 7.459430024951794e-6 +slender_A 1.0773191989054437e-5 +slenderize_V 2.2678822515534993e-5 +slenderize_V2 1.609865254278217e-5 +slenderness_N 3.729715012475897e-6 +sleuth_N 3.729715012475897e-6 +sleuth_hound_N 3.729715012475897e-6 +slew_V 2.2678822515534993e-5 +slew_V2 1.609865254278217e-5 +slice_N 1.8648575062379485e-5 +slice_V 6.803646754660499e-5 +slice_V2 3.219730508556434e-5 +slice_off_V2 1.609865254278217e-5 +slice_up_V2 1.609865254278217e-5 +slicer_N 3.729715012475897e-6 +slicing_N 3.729715012475897e-6 +slick_A 6.463915193432663e-5 +slick_Adv 8.668966832532898e-6 +slick_N 7.459430024951794e-6 +slicker_N 3.729715012475897e-6 +slickness_N 3.729715012475897e-6 +slide_N 2.275126157610297e-4 +slide_V 7.257223204971198e-4 +slide_V2 4.185649661123364e-4 +slide_rule_N 3.729715012475897e-6 +slider_N 3.729715012475897e-6 +slight_A 2.100772437865615e-3 +slight_N 3.729715012475897e-6 +slight_V2 1.609865254278217e-5 +slightingly_Adv 8.668966832532898e-6 +slightness_N 3.729715012475897e-6 +sligo_PN 1.865462821325971e-5 +slim_A 9.695872790148993e-5 +slim_V 4.5357645031069986e-5 +slim_V2 3.219730508556434e-5 +slime_N 1.118914503742769e-5 +slimed_A 1.0773191989054437e-5 +sliminess_N 3.729715012475897e-6 +slimness_N 3.729715012475897e-6 +slimy_A 2.1546383978108874e-5 +sling_N 7.459430024951794e-6 +sling_V 2.2678822515534993e-5 +sling_V2 1.609865254278217e-5 +slingback_N 3.729715012475897e-6 +slinger_N 7.459430024951794e-6 +slinging_N 3.729715012475897e-6 +slingshot_N 3.729715012475897e-6 +slink_V 2.2678822515534993e-5 +slip_N 2.6108005087331277e-5 +slip_V 1.2019775933233545e-3 +slip_V2 5.151568813690294e-4 +slip_away_V 2.2678822515534993e-5 +slip_by_V 2.2678822515534993e-5 +slip_carriage_N 3.729715012475897e-6 +slip_coach_N 3.729715012475897e-6 +slip_down_V 2.2678822515534993e-5 +slip_in_V2 1.609865254278217e-5 +slip_into_V2 1.609865254278217e-5 +slip_off_V 2.2678822515534993e-5 +slip_off_V2 1.609865254278217e-5 +slip_off_to_V2 1.609865254278217e-5 +slip_on_V2 1.609865254278217e-5 +slip_out_V 2.2678822515534993e-5 +slip_road_N 3.729715012475897e-6 +slip_up_N 3.729715012475897e-6 +slip_up_V 2.2678822515534993e-5 +slipcover_N 3.729715012475897e-6 +slipknot_N 3.729715012475897e-6 +slipon_N 3.729715012475897e-6 +slipover_N 3.729715012475897e-6 +slippage_N 3.729715012475897e-6 +slipper_N 3.729715012475897e-6 +slippered_A 1.0773191989054437e-5 +slipperiness_N 3.729715012475897e-6 +slippery_A 2.1546383978108874e-5 +slippy_A 1.0773191989054437e-5 +slipshod_A 2.1546383978108874e-5 +slipstream_N 3.729715012475897e-6 +slipway_N 3.729715012475897e-6 +slit_N 7.459430024951794e-6 +slit_V2 1.609865254278217e-5 +slither_V 6.803646754660499e-5 +slithery_A 1.0773191989054437e-5 +sliver_N 7.459430024951794e-6 +sliver_V 2.2678822515534993e-5 +sliver_V2 3.219730508556434e-5 +slivovitz_N 3.729715012475897e-6 +slob_N 3.729715012475897e-6 +slob_about_V 2.2678822515534993e-5 +slob_around_V 2.2678822515534993e-5 +slobber_N 3.729715012475897e-6 +slobber_V 2.2678822515534993e-5 +slobber_V2 1.609865254278217e-5 +sloe_N 3.729715012475897e-6 +sloe_gin_N 3.729715012475897e-6 +slog_V 6.803646754660499e-5 +slog_V2 1.609865254278217e-5 +slogan_N 2.9837720099807175e-5 +sloganeer_N 3.729715012475897e-6 +sloganeering_N 3.729715012475897e-6 +slogger_N 3.729715012475897e-6 +sloop_N 3.729715012475897e-6 +slop_N 7.459430024951794e-6 +slop_V 2.2678822515534993e-5 +slop_V2 1.609865254278217e-5 +slop_basin_N 3.729715012475897e-6 +slop_pail_N 3.729715012475897e-6 +slop_shop_N 3.729715012475897e-6 +slope_N 3.356743511228307e-5 +slope_V 4.5357645031069986e-5 +slope_V2 1.609865254278217e-5 +slope_off_V 2.2678822515534993e-5 +slopingly_Adv 8.668966832532898e-6 +sloppiness_N 3.729715012475897e-6 +sloppy_A 7.541234392338106e-5 +slops_N 3.729715012475897e-6 +slopseller_N 3.729715012475897e-6 +slopshop_N 3.729715012475897e-6 +slosh_V 4.5357645031069986e-5 +slosh_V2 1.609865254278217e-5 +slot_N 3.356743511228307e-5 +slot_V2 1.609865254278217e-5 +slot_machine_N 3.729715012475897e-6 +sloth_N 3.729715012475897e-6 +slothful_A 1.0773191989054437e-5 +slouch_N 7.459430024951794e-6 +slouch_V 2.2678822515534993e-5 +slouch_hat_N 3.729715012475897e-6 +sloucher_N 3.729715012475897e-6 +slouchingly_Adv 8.668966832532898e-6 +slouchy_A 1.0773191989054437e-5 +slough_N 3.729715012475897e-6 +slough_PN 1.865462821325971e-5 +slough_V 2.2678822515534993e-5 +slough_V2 1.609865254278217e-5 +slough_off_V2 1.609865254278217e-5 +slovak_N 3.729715012475897e-6 +sloven_N 3.729715012475897e-6 +slovenian_A 2.1546383978108874e-5 +slovenian_N 3.729715012475897e-6 +slovenliness_N 3.729715012475897e-6 +slovenly_A 1.0773191989054437e-5 +slow_A 1.2496902707303146e-3 +slow_Adv 1.7337933665065797e-5 +slow_V 2.7441375243797343e-3 +slow_V2 4.0246631356955425e-4 +slow_down_V 4.5357645031069986e-5 +slow_down_V2 1.609865254278217e-5 +slow_up_V2 1.609865254278217e-5 +slow_worm_N 3.729715012475897e-6 +slowcoach_N 3.729715012475897e-6 +slowdown_N 2.53620620848361e-4 +slower_Adv 8.668966832532898e-6 +slowest_Adv 8.668966832532898e-6 +slowgoing_A 1.0773191989054437e-5 +slowness_N 3.729715012475897e-6 +slub_N 3.729715012475897e-6 +sludge_N 1.118914503742769e-5 +slug_N 3.729715012475897e-6 +slug_V 2.2678822515534993e-5 +slug_V2 1.609865254278217e-5 +slug_it_out_V2 1.609865254278217e-5 +sluggard_N 3.729715012475897e-6 +slugger_N 3.729715012475897e-6 +sluggish_A 4.2015448757312305e-4 +sluggishness_N 2.237829007485538e-5 +sluice_N 3.729715012475897e-6 +sluice_V 2.2678822515534993e-5 +sluice_V2 1.609865254278217e-5 +sluice_valve_N 3.729715012475897e-6 +sluicegate_N 3.729715012475897e-6 +slum_N 1.8648575062379485e-5 +slum_V 2.2678822515534993e-5 +slumber_N 3.729715012475897e-6 +slumber_V 2.2678822515534993e-5 +slumber_V2 1.609865254278217e-5 +slumberer_N 3.729715012475897e-6 +slumberous_A 1.0773191989054437e-5 +slumgullion_N 3.729715012475897e-6 +slummy_A 1.0773191989054437e-5 +slump_N 1.305400254366564e-4 +slump_V 3.855399827640949e-4 +slump_V2 3.219730508556434e-5 +slur_N 7.459430024951794e-6 +slur_V 2.2678822515534993e-5 +slur_V2 1.609865254278217e-5 +slurry_N 7.459430024951794e-6 +slush_N 7.459430024951794e-6 +slushy_A 1.0773191989054437e-5 +slut_N 3.729715012475897e-6 +sluttish_A 1.0773191989054437e-5 +sly_A 2.1546383978108874e-5 +slyness_N 3.729715012475897e-6 +smack_Adv 2.6006900497598697e-5 +smack_N 3.729715012475897e-6 +smack_V 6.803646754660499e-5 +smack_V2 1.609865254278217e-5 +smack_of_V2 1.609865254278217e-5 +smacker_N 3.729715012475897e-6 +smacking_N 3.729715012475897e-6 +small_A 5.73133813817696e-3 +small_Adv 8.668966832532898e-6 +small_N 1.0443202034932511e-4 +small_minded_A 1.0773191989054437e-5 +smaller_A 1.0773191989054437e-5 +smallholder_N 3.729715012475897e-6 +smallholding_N 3.729715012475897e-6 +smallish_A 1.0773191989054437e-5 +smallmouth_N 3.729715012475897e-6 +smallness_N 3.729715012475897e-6 +smallpox_N 7.459430024951794e-6 +smalltime_A 1.0773191989054437e-5 +smaltite_N 3.729715012475897e-6 +smarmy_A 1.0773191989054437e-5 +smart_A 1.72371071824871e-4 +smart_N 3.729715012475897e-6 +smart_V 4.5357645031069986e-5 +smarta_N 3.729715012475897e-6 +smarten_V 2.2678822515534993e-5 +smarten_V2 1.609865254278217e-5 +smartness_N 3.729715012475897e-6 +smash_Adv 8.668966832532898e-6 +smash_N 1.118914503742769e-5 +smash_V 1.1339411257767497e-4 +smash_V2 3.219730508556434e-5 +smash_down_V2 1.609865254278217e-5 +smash_in_V2 1.609865254278217e-5 +smash_up_N 3.729715012475897e-6 +smash_up_V2 1.609865254278217e-5 +smasher_N 3.729715012475897e-6 +smashing_N 3.729715012475897e-6 +smattering_N 1.4918860049903587e-5 +smear_N 3.729715012475897e-6 +smear_V 2.2678822515534993e-5 +smear_V2 1.609865254278217e-5 +smear_word_N 3.729715012475897e-6 +smegma_N 3.729715012475897e-6 +smell_N 1.8648575062379485e-5 +smell_V 1.1339411257767497e-4 +smell_V2 4.8295957628346505e-5 +smell_VA 1.968503937007874e-3 +smelling_bottle_N 3.729715012475897e-6 +smelly_A 2.1546383978108874e-5 +smelt_N 3.729715012475897e-6 +smelt_V2 1.609865254278217e-5 +smelter_N 3.729715012475897e-6 +smew_N 3.729715012475897e-6 +smilax_N 3.729715012475897e-6 +smile_N 1.4918860049903587e-5 +smile_V 2.4946704767088494e-4 +smile_V2 3.219730508556434e-5 +smiler_N 3.729715012475897e-6 +smiley_N 3.729715012475897e-6 +smilingly_Adv 8.668966832532898e-6 +smilo_N 3.729715012475897e-6 +smirch_N 3.729715012475897e-6 +smirch_V2 1.609865254278217e-5 +smirk_N 3.729715012475897e-6 +smirk_V 2.2678822515534993e-5 +smirker_N 3.729715012475897e-6 +smite_V 2.2678822515534993e-5 +smite_V2 1.609865254278217e-5 +smith_N 3.729715012475897e-6 +smithereens_N 3.729715012475897e-6 +smithy_N 3.729715012475897e-6 +smock_N 3.729715012475897e-6 +smocking_N 3.729715012475897e-6 +smog_N 3.729715012475897e-6 +smoggy_A 1.0773191989054437e-5 +smoke_N 4.1026865137234865e-5 +smoke_V 1.8143058012427994e-4 +smoke_V2 8.049326271391085e-5 +smoke_bomb_N 3.729715012475897e-6 +smoke_cured_A 1.0773191989054437e-5 +smoke_dried_A 1.0773191989054437e-5 +smoke_out_V2 1.609865254278217e-5 +smoke_screen_N 3.729715012475897e-6 +smokehouse_N 3.729715012475897e-6 +smokeless_A 1.0773191989054437e-5 +smoker_N 2.9837720099807175e-5 +smokestack_N 1.118914503742769e-5 +smoking_N 1.08161735361801e-4 +smoking_car_N 3.729715012475897e-6 +smoking_carriage_N 3.729715012475897e-6 +smoking_compartment_N 3.729715012475897e-6 +smoking_mixture_N 3.729715012475897e-6 +smoking_room_N 3.729715012475897e-6 +smoky_A 1.0773191989054437e-5 +smoldering_A 1.0773191989054437e-5 +smooth_A 2.6932979972636094e-4 +smooth_N 3.729715012475897e-6 +smooth_V 6.803646754660499e-5 +smooth_V2 4.8295957628346505e-5 +smooth_bore_A 1.0773191989054437e-5 +smooth_faced_A 1.0773191989054437e-5 +smooth_out_V 2.2678822515534993e-5 +smooth_spoken_A 1.0773191989054437e-5 +smooth_tongued_A 1.0773191989054437e-5 +smoothbark_N 3.729715012475897e-6 +smoothbore_N 3.729715012475897e-6 +smoothhound_N 3.729715012475897e-6 +smoothie_N 3.729715012475897e-6 +smoothing_iron_N 3.729715012475897e-6 +smoothing_plane_N 3.729715012475897e-6 +smoothness_N 3.729715012475897e-6 +smorgasbord_N 3.729715012475897e-6 +smother_N 3.729715012475897e-6 +smother_V2 6.439461017112868e-5 +smothering_A 1.0773191989054437e-5 +smoulder_N 3.729715012475897e-6 +smoulder_V 2.2678822515534993e-5 +smudge_N 3.729715012475897e-6 +smudge_V 2.2678822515534993e-5 +smudge_V2 1.609865254278217e-5 +smudgy_A 1.0773191989054437e-5 +smug_A 2.1546383978108874e-5 +smuggle_V2 3.219730508556434e-5 +smuggle_out_V 2.2678822515534993e-5 +smuggler_N 3.729715012475897e-6 +smuggling_N 3.729715012475897e-6 +smugness_N 3.729715012475897e-6 +smut_N 3.729715012475897e-6 +smut_V2 1.609865254278217e-5 +smuttiness_N 3.729715012475897e-6 +smutty_A 1.0773191989054437e-5 +snack_N 3.729715012475897e-5 +snack_bar_N 3.729715012475897e-6 +snack_counter_N 3.729715012475897e-6 +snaffle_N 3.729715012475897e-6 +snaffle_V2 1.609865254278217e-5 +snaffle_bit_N 3.729715012475897e-6 +snaffle_up_V2 1.609865254278217e-5 +snafu_N 3.729715012475897e-6 +snag_N 3.356743511228307e-5 +snag_V 4.5357645031069986e-5 +snag_V2 4.8295957628346505e-5 +snail_N 1.4918860049903587e-5 +snailfish_N 3.729715012475897e-6 +snailflower_N 3.729715012475897e-6 +snake_N 1.4918860049903587e-5 +snake_V 6.803646754660499e-5 +snake_charmer_N 3.729715012475897e-6 +snakebird_N 3.729715012475897e-6 +snakebite_N 3.729715012475897e-6 +snakeblenny_N 3.729715012475897e-6 +snakefly_N 3.729715012475897e-6 +snakewood_N 3.729715012475897e-6 +snaky_A 1.0773191989054437e-5 +snap_N 1.118914503742769e-5 +snap_V 3.855399827640949e-4 +snap_V2 6.439461017112868e-5 +snap_VS 1.1552012938254491e-4 +snap_back_V 2.2678822515534993e-5 +snap_fastener_N 3.729715012475897e-6 +snap_off_V2 1.609865254278217e-5 +snap_out_of_V2 1.609865254278217e-5 +snap_to_it_V2 1.609865254278217e-5 +snap_up_V2 3.219730508556434e-5 +snapdragon_N 3.729715012475897e-6 +snapper_N 3.729715012475897e-6 +snappish_A 1.0773191989054437e-5 +snappishness_N 3.729715012475897e-6 +snappy_A 2.1546383978108874e-5 +snapshot_N 2.237829007485538e-5 +snare_N 3.729715012475897e-6 +snare_V2 3.219730508556434e-5 +snare_drum_N 3.729715012475897e-6 +snarer_N 3.729715012475897e-6 +snarl_N 7.459430024951794e-6 +snarl_V 2.2678822515534993e-5 +snarl_V2 1.609865254278217e-5 +snarl_up_N 3.729715012475897e-6 +snarl_up_V2 1.609865254278217e-5 +snatch_N 3.729715012475897e-6 +snatch_V 4.5357645031069986e-5 +snatch_V2 3.219730508556434e-5 +snatcher_N 3.729715012475897e-6 +snazzy_A 2.1546383978108874e-5 +sneak_N 3.729715012475897e-6 +sneak_V 1.1339411257767497e-4 +sneak_V2 3.219730508556434e-5 +sneak_out_V 2.2678822515534993e-5 +sneak_thief_N 3.729715012475897e-6 +sneak_up_on_V2 1.609865254278217e-5 +sneakingly_Adv 8.668966832532898e-6 +sneaky_A 2.1546383978108874e-5 +sneer_N 3.729715012475897e-6 +sneer_V 2.2678822515534993e-5 +sneerer_N 3.729715012475897e-6 +sneeringly_Adv 8.668966832532898e-6 +sneeze_N 3.729715012475897e-6 +sneeze_V 2.2678822515534993e-5 +sneezer_N 3.729715012475897e-6 +sneezeweed_N 3.729715012475897e-6 +sneezy_A 1.0773191989054437e-5 +snick_N 3.729715012475897e-6 +snick_V 2.2678822515534993e-5 +snick_V2 1.609865254278217e-5 +snicker_N 3.729715012475897e-6 +snicker_V 2.2678822515534993e-5 +snide_A 2.1546383978108874e-5 +sniff_N 3.729715012475897e-6 +sniff_V 9.071529006213997e-5 +sniff_V2 1.609865254278217e-5 +sniff_VS 2.8880032345636225e-4 +sniff_around_V2 1.609865254278217e-5 +sniff_at_V2 1.609865254278217e-5 +sniff_out_V2 1.609865254278217e-5 +sniffer_N 3.729715012475897e-6 +sniffle_V 2.2678822515534993e-5 +sniffler_N 3.729715012475897e-6 +sniffly_A 1.0773191989054437e-5 +sniffy_A 1.0773191989054437e-5 +snifter_N 3.729715012475897e-6 +snigger_N 3.729715012475897e-6 +snigger_V 2.2678822515534993e-5 +snip_N 3.729715012475897e-6 +snip_V 2.2678822515534993e-5 +snip_V2 1.609865254278217e-5 +snipe_N 3.729715012475897e-6 +snipe_V 9.071529006213997e-5 +snipe_V2 1.609865254278217e-5 +snipefish_N 3.729715012475897e-6 +sniper_N 3.729715012475897e-6 +snippet_N 7.459430024951794e-6 +snipping_N 3.729715012475897e-6 +snips_N 3.729715012475897e-6 +snit_N 3.729715012475897e-6 +snitch_V 2.2678822515534993e-5 +snitch_V2 1.609865254278217e-5 +snitch_on_V2 1.609865254278217e-5 +snivel_N 3.729715012475897e-6 +snivel_V 2.2678822515534993e-5 +sniveller_N 3.729715012475897e-6 +snob_N 3.729715012475897e-6 +snobbery_N 7.459430024951794e-6 +snobbish_A 2.1546383978108874e-5 +snobbishness_N 3.729715012475897e-6 +snog_V 2.2678822515534993e-5 +snogging_N 3.729715012475897e-6 +snood_N 3.729715012475897e-6 +snook_N 3.729715012475897e-6 +snooker_N 7.459430024951794e-6 +snoop_N 3.729715012475897e-6 +snoop_V 6.803646754660499e-5 +snooper_N 3.729715012475897e-6 +snootiness_N 3.729715012475897e-6 +snooty_A 2.1546383978108874e-5 +snooze_N 3.729715012475897e-6 +snooze_V 2.2678822515534993e-5 +snore_N 3.729715012475897e-6 +snore_V 4.5357645031069986e-5 +snorer_N 3.729715012475897e-6 +snorkel_N 3.729715012475897e-6 +snorkeling_N 3.729715012475897e-6 +snort_N 3.729715012475897e-6 +snort_V 2.2678822515534993e-5 +snort_V2 3.219730508556434e-5 +snort_VS 1.1552012938254491e-4 +snorter_N 3.729715012475897e-6 +snorty_A 1.0773191989054437e-5 +snot_N 3.729715012475897e-6 +snot_nosed_A 1.0773191989054437e-5 +snotty_A 2.1546383978108874e-5 +snout_N 3.729715012475897e-6 +snow_N 2.237829007485538e-5 +snow_V 2.2678822515534993e-5 +snow_V2 1.609865254278217e-5 +snow_clad_A 1.0773191989054437e-5 +snow_covered_A 1.0773191989054437e-5 +snow_line_N 3.729715012475897e-6 +snow_white_A 1.0773191989054437e-5 +snowball_N 7.459430024951794e-6 +snowball_V 1.1339411257767497e-4 +snowball_V2 1.609865254278217e-5 +snowbank_N 3.729715012475897e-6 +snowbell_N 3.729715012475897e-6 +snowberry_N 3.729715012475897e-6 +snowblind_A 1.0773191989054437e-5 +snowblindness_N 3.729715012475897e-6 +snowboard_N 3.729715012475897e-6 +snowboarder_N 3.729715012475897e-6 +snowboarding_N 3.729715012475897e-6 +snowbound_A 1.0773191989054437e-5 +snowcap_N 3.729715012475897e-6 +snowcapped_A 1.0773191989054437e-5 +snowdrift_N 3.729715012475897e-6 +snowdrop_N 3.729715012475897e-6 +snowfall_N 3.729715012475897e-6 +snowfield_N 3.729715012475897e-6 +snowflake_N 3.729715012475897e-6 +snowman_N 3.729715012475897e-6 +snowmobile_N 3.729715012475897e-6 +snowplough_N 3.729715012475897e-6 +snowplow_N 3.729715012475897e-6 +snowshoe_N 3.729715012475897e-6 +snowstorm_N 7.459430024951794e-6 +snowsuit_N 3.729715012475897e-6 +snowy_A 1.0773191989054437e-5 +snr_PN 1.865462821325971e-5 +snub_A 1.0773191989054437e-5 +snub_N 3.729715012475897e-6 +snub_V2 4.8295957628346505e-5 +snub_nosed_A 1.0773191989054437e-5 +snuff_A 1.0773191989054437e-5 +snuff_N 3.729715012475897e-6 +snuff_V 2.2678822515534993e-5 +snuff_V2 1.609865254278217e-5 +snuff_colour_A 1.0773191989054437e-5 +snuff_colour_N 3.729715012475897e-6 +snuff_coloured_A 1.0773191989054437e-5 +snuff_out_V2 1.609865254278217e-5 +snuffbox_N 3.729715012475897e-6 +snuffer_N 3.729715012475897e-6 +snuffers_N 3.729715012475897e-6 +snuffle_N 3.729715012475897e-6 +snuffle_V 2.2678822515534993e-5 +snuffler_N 3.729715012475897e-6 +snug_A 1.0773191989054437e-5 +snug_N 3.729715012475897e-6 +snuggery_N 3.729715012475897e-6 +snuggle_V 2.2678822515534993e-5 +snuggle_V2 1.609865254278217e-5 +snugness_N 3.729715012475897e-6 +so_AdA 8.519269776876268e-2 +so_Adv 1.7337933665065797e-5 +so_N 3.729715012475897e-6 +so_PConj 3.0480370641307e-4 +so_Subj 4.016064257028112e-3 +so_and_so_N 3.729715012475897e-6 +so_called_A 9.157213190696271e-4 +so_so_A 5.3865959945272184e-5 +so_so_Adv 8.668966832532898e-6 +soak_N 3.729715012475897e-6 +soak_V 6.803646754660499e-5 +soak_V2 3.219730508556434e-5 +soak_off_V 2.2678822515534993e-5 +soak_up_V 2.2678822515534993e-5 +soaker_N 3.729715012475897e-6 +soaking_Adv 8.668966832532898e-6 +soap_N 3.729715012475897e-5 +soap_V2 1.609865254278217e-5 +soap_bubble_N 3.729715012475897e-6 +soap_opera_N 3.729715012475897e-6 +soapberry_N 3.729715012475897e-6 +soapbox_N 7.459430024951794e-6 +soapfish_N 3.729715012475897e-6 +soapiness_N 3.729715012475897e-6 +soapstone_N 3.729715012475897e-6 +soapsuds_N 3.729715012475897e-6 +soapweed_N 3.729715012475897e-6 +soapwort_N 3.729715012475897e-6 +soapy_A 1.0773191989054437e-5 +soar_N 3.729715012475897e-6 +soar_V 1.6328752211185195e-3 +soar_V2 3.3807170339842556e-4 +sob_N 3.729715012475897e-6 +sob_V 4.5357645031069986e-5 +sob_V2 1.609865254278217e-5 +sob_stuff_N 3.729715012475897e-6 +sobbingly_Adv 8.668966832532898e-6 +sober_A 2.1546383978108874e-5 +sober_V 9.071529006213997e-5 +sober_V2 1.609865254278217e-5 +sober_sides_N 3.729715012475897e-6 +sober_up_V2 1.609865254278217e-5 +soberness_N 3.729715012475897e-6 +sobersided_A 1.0773191989054437e-5 +sobersides_N 3.729715012475897e-6 +sobralia_N 3.729715012475897e-6 +sobriety_N 3.729715012475897e-6 +sobriquet_N 3.729715012475897e-6 +soc_N 3.729715012475897e-6 +socage_N 3.729715012475897e-6 +soccer_N 1.4918860049903587e-5 +sociability_N 3.729715012475897e-6 +sociable_A 1.0773191989054437e-5 +sociable_N 3.729715012475897e-6 +social_A 6.787110953104295e-4 +social_N 7.459430024951794e-6 +social_work_N 3.729715012475897e-6 +socialism_N 5.967544019961435e-5 +socialist_A 1.72371071824871e-4 +socialist_N 1.4918860049903587e-5 +socialistic_A 1.0773191989054437e-5 +socialite_N 3.729715012475897e-6 +sociality_N 3.729715012475897e-6 +socialization_N 3.729715012475897e-6 +socialize_V2 3.219730508556434e-5 +socializer_N 3.729715012475897e-6 +society_N 2.0140461067369843e-4 +sociobiologic_A 1.0773191989054437e-5 +sociobiologically_Adv 8.668966832532898e-6 +sociobiologist_N 3.729715012475897e-6 +sociobiology_N 3.729715012475897e-6 +sociocultural_A 1.0773191989054437e-5 +socioeconomic_A 1.0773191989054437e-5 +socioeconomically_Adv 8.668966832532898e-6 +sociolinguist_N 3.729715012475897e-6 +sociolinguistic_A 1.0773191989054437e-5 +sociolinguistically_Adv 8.668966832532898e-6 +sociolinguistics_N 3.729715012475897e-6 +sociological_A 2.1546383978108874e-5 +sociologist_N 3.356743511228307e-5 +sociology_N 1.4918860049903587e-5 +sociometry_N 3.729715012475897e-6 +sociopath_N 3.729715012475897e-6 +sociopathic_A 1.0773191989054437e-5 +sock_Adv 8.668966832532898e-6 +sock_N 1.118914503742769e-5 +sock_V2 3.219730508556434e-5 +socket_N 7.459430024951794e-6 +sockeye_N 3.729715012475897e-6 +socle_N 3.729715012475897e-6 +socratic_A 1.0773191989054437e-5 +sod_N 3.729715012475897e-6 +sod_V 2.2678822515534993e-5 +soda_N 2.9837720099807175e-5 +soda_biscuit_N 3.729715012475897e-6 +soda_cracker_N 3.729715012475897e-6 +soda_fountain_N 3.729715012475897e-6 +soda_water_N 3.729715012475897e-6 +sodalist_N 3.729715012475897e-6 +sodalite_N 3.729715012475897e-6 +sodden_A 1.0773191989054437e-5 +sodium_N 7.459430024951794e-6 +sodoku_N 3.729715012475897e-6 +sodom_N 3.729715012475897e-6 +sodomite_N 3.729715012475897e-6 +sodomy_N 3.729715012475897e-6 +sofa_N 1.118914503742769e-5 +soffit_N 3.729715012475897e-6 +sofia_PN 3.730925642651942e-5 +soft_A 6.679379033213751e-4 +soft_boiled_A 1.0773191989054437e-5 +soft_footed_A 1.0773191989054437e-5 +soft_headed_A 1.0773191989054437e-5 +soft_hearted_A 1.0773191989054437e-5 +soft_pedal_V 2.2678822515534993e-5 +soft_pedal_V2 1.609865254278217e-5 +soft_soap_V2 1.609865254278217e-5 +soft_solder_N 3.729715012475897e-6 +soft_solder_V2 1.609865254278217e-5 +soft_spoken_A 3.231957596716331e-5 +soft_witted_A 1.0773191989054437e-5 +softball_N 3.729715012475897e-6 +soften_V 5.216129178573049e-4 +soften_V2 8.049326271391085e-5 +soften_up_V2 1.609865254278217e-5 +softener_N 7.459430024951794e-6 +softening_N 3.729715012475897e-6 +softhearted_A 1.0773191989054437e-5 +softheartedness_N 3.729715012475897e-6 +softie_N 3.729715012475897e-6 +softish_A 1.0773191989054437e-5 +softland_V 2.2678822515534993e-5 +softness_N 4.475658014971076e-5 +software_N 4.587549465345353e-4 +softwood_N 3.729715012475897e-6 +softy_N 1.118914503742769e-5 +sogginess_N 3.729715012475897e-6 +soggy_A 4.309276795621775e-5 +soh_N 3.729715012475897e-6 +soho_PN 1.865462821325971e-5 +soigne_A 1.0773191989054437e-5 +soignee_A 1.0773191989054437e-5 +soil_N 5.594572518713845e-5 +soil_V 2.2678822515534993e-5 +soil_V2 3.219730508556434e-5 +soil_pipe_N 3.729715012475897e-6 +soiling_N 3.729715012475897e-6 +soiree_N 3.729715012475897e-6 +sojourn_N 3.729715012475897e-6 +sojourn_V 2.2678822515534993e-5 +sojourner_N 3.729715012475897e-6 +sol_N 3.729715012475897e-6 +sol_PN 1.865462821325971e-5 +sol_fa_N 3.729715012475897e-6 +solace_N 1.118914503742769e-5 +solace_V2 1.609865254278217e-5 +solan_N 3.729715012475897e-6 +solanaceous_A 1.0773191989054437e-5 +solar_A 8.61855359124355e-5 +solar_plexus_N 3.729715012475897e-6 +solarium_N 3.729715012475897e-6 +solarization_N 3.729715012475897e-6 +solder_N 3.729715012475897e-6 +solder_V2 1.609865254278217e-5 +solderer_N 3.729715012475897e-6 +soldering_iron_N 3.729715012475897e-6 +soldier_N 5.594572518713845e-5 +soldier_V 2.2678822515534993e-5 +soldier_on_V 2.2678822515534993e-5 +soldierfish_N 3.729715012475897e-6 +soldiering_N 3.729715012475897e-6 +soldierly_A 1.0773191989054437e-5 +soldiery_N 3.729715012475897e-6 +sole_A 4.093812955840686e-4 +sole_N 1.118914503742769e-5 +sole_V2 1.609865254278217e-5 +solecism_N 3.729715012475897e-6 +soleless_A 1.0773191989054437e-5 +solemn_A 3.231957596716331e-5 +solemnity_N 3.729715012475897e-6 +solemnization_N 3.729715012475897e-6 +solemnize_V2 1.609865254278217e-5 +solemnness_N 3.729715012475897e-6 +solenogaster_N 3.729715012475897e-6 +solenoid_N 3.729715012475897e-6 +soleus_N 3.729715012475897e-6 +solfege_N 3.729715012475897e-6 +solferino_N 3.729715012475897e-6 +solicit_V 1.5875175760874494e-4 +solicit_V2 2.2538113559895037e-4 +solicitation_N 6.340515521209024e-5 +solicitor_N 1.4918860049903587e-5 +solicitor_general_N 3.729715012475897e-6 +solicitorship_N 3.729715012475897e-6 +solicitous_A 3.231957596716331e-5 +solicitude_N 3.729715012475897e-6 +solid_A 3.878349116059597e-4 +solid_N 1.118914503742769e-5 +solid_state_A 2.1546383978108874e-5 +solidarity_N 1.118914503742769e-5 +solidification_N 3.729715012475897e-6 +solidify_V 4.5357645031069986e-5 +solidify_V2 9.659191525669301e-5 +solidity_N 3.729715012475897e-6 +solidness_N 3.729715012475897e-6 +solidus_N 3.729715012475897e-6 +solihull_PN 1.865462821325971e-5 +soliloquize_V 2.2678822515534993e-5 +soliloquy_N 3.729715012475897e-6 +solingen_PN 1.865462821325971e-5 +solipsism_N 3.729715012475897e-6 +solitaire_N 3.729715012475897e-6 +solitary_A 3.231957596716331e-5 +soliton_N 3.729715012475897e-6 +solitude_N 3.729715012475897e-6 +solleret_N 3.729715012475897e-6 +solmization_N 3.729715012475897e-6 +solo_A 3.231957596716331e-5 +solo_N 2.9837720099807175e-5 +soloist_N 1.118914503742769e-5 +solon_PN 1.865462821325971e-5 +solstice_N 3.729715012475897e-6 +solubility_N 3.729715012475897e-6 +soluble_A 5.3865959945272184e-5 +solute_N 3.729715012475897e-6 +solution_N 1.8275603561131894e-4 +solvability_N 3.729715012475897e-6 +solvable_A 1.0773191989054437e-5 +solvate_N 3.729715012475897e-6 +solvation_N 3.729715012475897e-6 +solve_V2 6.117487966257224e-4 +solvency_N 1.118914503742769e-5 +solvent_A 5.3865959945272184e-5 +solvent_N 1.8648575062379485e-5 +som_N 3.729715012475897e-6 +soma_N 3.729715012475897e-6 +somali_A 3.231957596716331e-5 +somali_N 3.729715012475897e-6 +somalia_PN 1.865462821325971e-5 +somalian_A 1.0773191989054437e-5 +somalian_N 3.729715012475897e-6 +soman_N 3.729715012475897e-6 +somatic_A 1.0773191989054437e-5 +somatogenic_A 1.0773191989054437e-5 +somatosense_N 3.729715012475897e-6 +somatosensory_A 1.0773191989054437e-5 +somatotropin_N 3.729715012475897e-6 +somber_A 1.0773191989054437e-5 +sombre_A 1.0773191989054437e-5 +sombreness_N 3.729715012475897e-6 +sombrero_N 3.729715012475897e-6 +some_A 1.0773191989054437e-5 +some_Quant 9.275358806744174e-3 +somebody_NP 7.098937343686861e-5 +someday_Adv 8.6689668325329e-5 +somehow_AdV 1.5591502631066068e-3 +somehow_Adv 8.668966832532898e-6 +someone_NP 2.0204667824339525e-4 +someplace_Adv 8.668966832532898e-6 +somercotes_PN 1.865462821325971e-5 +somersault_N 3.729715012475897e-6 +somersault_V 4.5357645031069986e-5 +somerset_PN 1.865462821325971e-5 +somesthesia_N 3.729715012475897e-6 +something_NP 4.1228443803719843e-4 +sometime_Adv 1.4737243615305928e-4 +sometimes_Adv 7.802070149279609e-4 +someway_Adv 8.668966832532898e-6 +somewhat_Adv 3.8143454063144754e-4 +somewhere_Adv 8.668966832532898e-6 +somewhere_N 3.729715012475897e-6 +sommelier_N 3.729715012475897e-6 +somnambulism_N 3.729715012475897e-6 +somnambulist_N 3.729715012475897e-6 +somniloquist_N 3.729715012475897e-6 +somnolence_N 3.729715012475897e-6 +somnolent_A 1.0773191989054437e-5 +son_N 1.5664803052398767e-4 +son_in_law_N 3.729715012475897e-6 +sonant_N 3.729715012475897e-6 +sonar_N 7.459430024951794e-6 +sonata_N 7.459430024951794e-6 +sonatina_N 3.729715012475897e-6 +sone_N 3.729715012475897e-6 +song_N 8.951316029942152e-5 +songbird_N 3.729715012475897e-6 +songbook_N 3.729715012475897e-6 +songster_N 7.459430024951794e-6 +songstress_N 3.729715012475897e-6 +songwriter_N 3.729715012475897e-6 +sonia_PN 1.865462821325971e-5 +sonic_A 1.0773191989054437e-5 +sonnet_N 3.729715012475897e-6 +sonneteer_N 3.729715012475897e-6 +sonny_N 3.729715012475897e-6 +sonogram_N 3.729715012475897e-6 +sonograph_N 3.729715012475897e-6 +sonography_N 3.729715012475897e-6 +sonority_N 3.729715012475897e-6 +sonorous_A 1.0773191989054437e-5 +sonsy_A 1.0773191989054437e-5 +soochow_PN 1.865462821325971e-5 +soon_AdV 4.287663223543169e-3 +soon_Adv 1.387034693205264e-3 +sooner_Adv 6.068276782773029e-5 +soonest_Adv 8.668966832532898e-6 +soot_N 1.118914503742769e-5 +soot_V2 1.609865254278217e-5 +sooth_N 3.729715012475897e-6 +soothe_V2 8.049326271391085e-5 +soothing_A 1.0773191989054437e-5 +soothsayer_N 3.729715012475897e-6 +sooty_A 1.0773191989054437e-5 +sop_N 7.459430024951794e-6 +sop_V2 1.609865254278217e-5 +sophia_PN 1.865462821325971e-5 +sophie_PN 1.865462821325971e-5 +sophism_N 3.729715012475897e-6 +sophist_N 3.729715012475897e-6 +sophistic_A 1.0773191989054437e-5 +sophisticate_N 3.729715012475897e-6 +sophisticated_A 4.8479363950744967e-4 +sophistication_N 1.8648575062379485e-5 +sophistry_N 3.729715012475897e-6 +sophomore_N 1.118914503742769e-5 +soporific_A 2.1546383978108874e-5 +soporific_N 3.729715012475897e-6 +sopping_A 1.0773191989054437e-5 +sopping_Adv 8.668966832532898e-6 +soppy_A 1.0773191989054437e-5 +sopranino_A 1.0773191989054437e-5 +soprano_A 1.0773191989054437e-5 +soprano_N 7.459430024951794e-6 +sorb_N 3.729715012475897e-6 +sorbate_N 3.729715012475897e-6 +sorbent_N 3.729715012475897e-6 +sorbet_N 3.729715012475897e-6 +sorcerer_N 3.729715012475897e-6 +sorceress_N 3.729715012475897e-6 +sorcery_N 3.729715012475897e-6 +sordid_A 1.0773191989054437e-5 +sordidness_N 3.729715012475897e-6 +sore_A 6.463915193432663e-5 +sore_N 3.729715012475897e-6 +sorehead_N 3.729715012475897e-6 +soreness_N 7.459430024951794e-6 +sorghum_N 1.4918860049903587e-5 +sorgo_N 3.729715012475897e-6 +sorority_N 3.729715012475897e-6 +sorption_N 3.729715012475897e-6 +sorrel_A 1.0773191989054437e-5 +sorrel_N 3.729715012475897e-6 +sorrow_N 7.459430024951794e-6 +sorrow_V 2.2678822515534993e-5 +sorrowful_A 1.0773191989054437e-5 +sorry_A 8.61855359124355e-5 +sorry_Interj 7.633587786259542e-3 +sort_N 2.7972862593569225e-4 +sort_V 2.4946704767088494e-4 +sort_V2 6.439461017112868e-5 +sort_out_V2 1.609865254278217e-5 +sorter_N 3.729715012475897e-6 +sortie_N 3.729715012475897e-6 +sorting_N 3.729715012475897e-6 +sorus_N 3.729715012475897e-6 +sos_N 3.729715012475897e-6 +sot_N 3.729715012475897e-6 +soteriological_A 1.0773191989054437e-5 +soteriology_N 3.729715012475897e-6 +sotho_A 1.0773191989054437e-5 +sotho_N 3.729715012475897e-6 +sottish_A 1.0773191989054437e-5 +sottishness_N 3.729715012475897e-6 +sotto_voce_Adv 8.668966832532898e-6 +sou'_east_Adv 8.668966832532898e-6 +sou'_east_N 3.729715012475897e-6 +sou'_sou'_east_Adv 8.668966832532898e-6 +sou'_sou'_east_N 3.729715012475897e-6 +sou'_sou'_west_Adv 8.668966832532898e-6 +sou'_sou'_west_N 3.729715012475897e-6 +sou'_west_Adv 8.668966832532898e-6 +sou'_west_N 3.729715012475897e-6 +sou'_wester_N 3.729715012475897e-6 +sou_N 3.729715012475897e-6 +souari_N 3.729715012475897e-6 +soubrette_N 3.729715012475897e-6 +soubriquet_N 3.729715012475897e-6 +souchong_N 3.729715012475897e-6 +souffle_N 3.729715012475897e-6 +sough_V 2.2678822515534993e-5 +soughingly_Adv 8.668966832532898e-6 +souk_N 3.729715012475897e-6 +soul_N 3.729715012475897e-5 +soul_destroying_A 1.0773191989054437e-5 +soul_stirring_A 1.0773191989054437e-5 +soulful_A 2.1546383978108874e-5 +soulless_A 2.1546383978108874e-5 +sound_A 1.9391745580297985e-4 +sound_Adv 8.668966832532898e-6 +sound_N 1.0443202034932511e-4 +sound_V 5.669705628883749e-4 +sound_V2 1.609865254278217e-5 +sound_VA 1.673228346456693e-2 +sound_VS 1.7328019407381737e-4 +sound_film_N 3.729715012475897e-6 +sound_off_V 2.2678822515534993e-5 +sound_out_V2 1.609865254278217e-5 +sound_recording_N 3.729715012475897e-6 +sound_wave_N 3.729715012475897e-6 +soundbox_N 3.729715012475897e-6 +sounder_N 3.729715012475897e-6 +sounding_N 3.729715012475897e-6 +sounding_board_N 3.729715012475897e-6 +soundless_A 1.0773191989054437e-5 +soundman_N 3.729715012475897e-6 +soundness_N 1.118914503742769e-5 +soundproof_A 1.0773191989054437e-5 +soundproof_V2 1.609865254278217e-5 +soundtrack_N 1.4918860049903587e-5 +soup_N 2.6108005087331277e-5 +soup_V2 1.609865254278217e-5 +soup_kitchen_N 3.729715012475897e-6 +soupcon_N 3.729715012475897e-6 +soupspoon_N 3.729715012475897e-6 +soupy_A 1.0773191989054437e-5 +sour_A 1.4005149585770768e-4 +sour_N 3.729715012475897e-6 +sour_V 9.071529006213997e-5 +sour_V2 4.8295957628346505e-5 +sourball_N 3.729715012475897e-6 +source_N 7.23564712420324e-4 +sourdine_N 3.729715012475897e-6 +sourdough_N 3.729715012475897e-6 +souring_N 3.729715012475897e-6 +sourness_N 3.729715012475897e-6 +sourpuss_N 3.729715012475897e-6 +soursop_N 3.729715012475897e-6 +souse_N 3.729715012475897e-6 +souse_V2 1.609865254278217e-5 +soutache_N 3.729715012475897e-6 +soutane_N 3.729715012475897e-6 +south_A 4.5247406354028633e-4 +south_Adv 1.3870346932052637e-4 +south_N 2.6108005087331277e-5 +south_kirkby_PN 1.865462821325971e-5 +south_normantown_PN 1.865462821325971e-5 +south_ockendon_PN 1.865462821325971e-5 +south_shields_PN 1.865462821325971e-5 +south_southeast_Adv 8.668966832532898e-6 +south_southeast_N 3.729715012475897e-6 +south_southwest_Adv 8.668966832532898e-6 +south_southwest_N 3.729715012475897e-6 +southampton_PN 1.865462821325971e-5 +southbound_A 1.0773191989054437e-5 +southeast_A 1.0773191989054437e-5 +southeast_Adv 8.668966832532898e-6 +southeast_N 7.459430024951794e-6 +southeaster_N 3.729715012475897e-6 +southeasterly_A 1.0773191989054437e-5 +southeastern_A 3.231957596716331e-5 +southeastward_A 1.0773191989054437e-5 +southeastward_Adv 8.668966832532898e-6 +southend_on_sea_PN 1.865462821325971e-5 +southerly_A 1.0773191989054437e-5 +southerly_Adv 8.668966832532898e-6 +southern_A 4.2015448757312305e-4 +southerner_N 3.729715012475897e-6 +southernism_N 3.729715012475897e-6 +southernmost_A 1.0773191989054437e-5 +southernness_N 3.729715012475897e-6 +southernwood_N 3.729715012475897e-6 +southland_N 3.729715012475897e-6 +southpaw_N 3.729715012475897e-6 +southport_PN 1.865462821325971e-5 +southward_Adv 8.668966832532898e-6 +southwards_Adv 8.668966832532898e-6 +southwark_PN 1.865462821325971e-5 +southwest_A 1.0773191989054437e-5 +southwest_Adv 8.668966832532898e-6 +southwest_N 1.4918860049903587e-5 +southwester_N 3.729715012475897e-6 +southwesterly_A 1.0773191989054437e-5 +southwestern_A 2.1546383978108874e-5 +southwestward_A 1.0773191989054437e-5 +southwestward_Adv 8.668966832532898e-6 +souvenir_N 1.4918860049903587e-5 +souvlaki_N 3.729715012475897e-6 +souwester_N 3.729715012475897e-6 +sovereign_A 3.231957596716331e-5 +sovereign_N 3.729715012475897e-6 +sovereignty_N 3.356743511228307e-5 +soviet_A 1.777576678193982e-3 +soviet_N 8.951316029942152e-5 +sovietize_V2 3.219730508556434e-5 +sow_N 7.459430024951794e-6 +sow_V 9.071529006213997e-5 +sow_V2 4.8295957628346505e-5 +sowbane_N 3.729715012475897e-6 +sowbelly_N 3.729715012475897e-6 +sowbread_N 3.729715012475897e-6 +sower_N 3.729715012475897e-6 +soy_N 7.459430024951794e-6 +soya_N 3.729715012475897e-6 +sozzled_A 1.0773191989054437e-5 +spa_N 2.237829007485538e-5 +space_N 4.512955165095835e-4 +space_V2 1.609865254278217e-5 +space_bar_N 3.729715012475897e-6 +space_capsule_N 3.729715012475897e-6 +space_heater_N 3.729715012475897e-6 +space_helmet_N 3.729715012475897e-6 +space_rocket_N 3.729715012475897e-6 +space_time_N 3.729715012475897e-6 +space_vehicle_N 3.729715012475897e-6 +spacecraft_N 4.1026865137234865e-5 +spaceflight_N 3.729715012475897e-6 +spaceship_N 7.459430024951794e-6 +spacesuit_N 3.729715012475897e-6 +spacewalker_N 3.729715012475897e-6 +spaceward_Adv 8.668966832532898e-6 +spacing_N 3.729715012475897e-6 +spacious_A 2.1546383978108874e-5 +spaciousness_N 3.729715012475897e-6 +spackle_N 3.729715012475897e-6 +spade_N 3.729715012475897e-6 +spade_V2 1.609865254278217e-5 +spadefish_N 3.729715012475897e-6 +spadefoot_N 3.729715012475897e-6 +spadeful_N 3.729715012475897e-6 +spadework_N 3.729715012475897e-6 +spadix_N 3.729715012475897e-6 +spaff_away_V2 1.609865254278217e-5 +spaghetti_N 3.729715012475897e-6 +spaghettini_N 3.729715012475897e-6 +spain_PN 7.834943849569079e-4 +spalding_PN 1.865462821325971e-5 +spall_N 3.729715012475897e-6 +spallation_N 3.729715012475897e-6 +spam_N 3.729715012475897e-6 +spammer_N 3.729715012475897e-6 +span_N 3.356743511228307e-5 +span_V2 8.049326271391085e-5 +spandex_N 3.729715012475897e-6 +spandrel_N 3.729715012475897e-6 +spangle_N 3.729715012475897e-6 +spangle_V2 1.609865254278217e-5 +spaniard_N 3.729715012475897e-6 +spaniel_N 3.729715012475897e-6 +spanish_A 3.231957596716331e-5 +spanish_N 3.729715012475897e-6 +spank_N 3.729715012475897e-6 +spank_V 4.5357645031069986e-5 +spank_V2 1.609865254278217e-5 +spanker_N 3.729715012475897e-6 +spanking_A 2.1546383978108874e-5 +spanking_N 7.459430024951794e-6 +spanner_N 3.729715012475897e-6 +spar_N 3.729715012475897e-6 +spar_V 4.5357645031069986e-5 +spare_A 9.695872790148993e-5 +spare_N 7.459430024951794e-6 +spare_V 9.071529006213997e-5 +spare_V2 9.659191525669301e-5 +spare_rib_N 3.729715012475897e-6 +spareness_N 3.729715012475897e-6 +sparer_N 3.729715012475897e-6 +sparerib_N 3.729715012475897e-6 +spareribs_N 3.729715012475897e-6 +sparid_N 3.729715012475897e-6 +sparing_A 3.231957596716331e-5 +spark_N 7.459430024951794e-6 +spark_V 1.5875175760874494e-4 +spark_V2 5.312555339118116e-4 +spark_off_V2 1.609865254278217e-5 +spark_plug_N 3.729715012475897e-6 +spark_up_V2 1.609865254278217e-5 +sparking_plug_N 3.729715012475897e-6 +sparkle_N 7.459430024951794e-6 +sparkle_V 6.803646754660499e-5 +sparkler_N 3.729715012475897e-6 +sparling_N 3.729715012475897e-6 +sparring_N 3.729715012475897e-6 +sparring_match_N 3.729715012475897e-6 +sparring_partner_N 3.729715012475897e-6 +sparrow_N 3.729715012475897e-6 +sparse_A 3.231957596716331e-5 +sparseness_N 3.729715012475897e-6 +sparsity_N 3.729715012475897e-6 +spartan_A 2.1546383978108874e-5 +spartan_N 3.729715012475897e-6 +spasm_N 1.118914503742769e-5 +spasmodic_A 1.0773191989054437e-5 +spasmodically_Adv 8.668966832532898e-6 +spasmolysis_N 3.729715012475897e-6 +spastic_A 1.0773191989054437e-5 +spastic_N 3.729715012475897e-6 +spasticity_N 3.729715012475897e-6 +spat_N 3.729715012475897e-6 +spat_V 2.2678822515534993e-5 +spat_V2 1.609865254278217e-5 +spatchcock_N 3.729715012475897e-6 +spatchcock_V2 1.609865254278217e-5 +spate_N 2.9837720099807175e-5 +spathe_N 3.729715012475897e-6 +spathiphyllum_N 3.729715012475897e-6 +spatial_A 1.0773191989054437e-5 +spatiotemporal_A 1.0773191989054437e-5 +spatter_N 3.729715012475897e-6 +spatter_V 2.2678822515534993e-5 +spatter_V2 1.609865254278217e-5 +spatterdock_N 3.729715012475897e-6 +spatula_N 3.729715012475897e-6 +spatulate_A 1.0773191989054437e-5 +spavin_N 3.729715012475897e-6 +spavined_A 1.0773191989054437e-5 +spawn_N 3.729715012475897e-6 +spawn_V 9.071529006213997e-5 +spawn_V2 1.4488787288503951e-4 +spawner_N 3.729715012475897e-6 +spay_V2 1.609865254278217e-5 +spaying_N 3.729715012475897e-6 +speak_V 1.4287658184787045e-3 +speak_V2 2.575784406845147e-4 +speak_out_V 2.2678822515534993e-5 +speak_up_V 2.2678822515534993e-5 +speakable_A 1.0773191989054437e-5 +speakeasy_N 3.729715012475897e-6 +speaker_N 5.2216010174662554e-5 +speakerphone_N 3.729715012475897e-6 +speakership_N 3.729715012475897e-6 +speaking_N 3.729715012475897e-6 +speaking_trumpet_N 3.729715012475897e-6 +speaking_tube_N 3.729715012475897e-6 +spear_N 3.729715012475897e-6 +spear_V2 1.609865254278217e-5 +spearfish_N 3.729715012475897e-6 +spearhead_N 7.459430024951794e-6 +spearhead_V2 8.049326271391085e-5 +spearmint_N 3.729715012475897e-6 +spec_N 7.459430024951794e-6 +special_A 2.100772437865615e-3 +special_N 3.356743511228307e-5 +specialism_N 3.729715012475897e-6 +specialist_N 4.0653893635987274e-4 +specialistic_A 1.0773191989054437e-5 +speciality_N 7.459430024951794e-6 +specialization_N 1.118914503742769e-5 +specialize_V 8.164376105592598e-4 +specialize_V2 1.609865254278217e-4 +specialty_N 2.16323470723602e-4 +speciation_N 3.729715012475897e-6 +specie_N 3.729715012475897e-6 +species_N 1.8648575062379485e-5 +specifiable_A 1.0773191989054437e-5 +specific_A 1.2927830386865325e-3 +specific_N 4.848629516218666e-5 +specification_N 3.356743511228307e-5 +specificity_N 7.459430024951794e-6 +specifier_N 3.729715012475897e-6 +specify_V 9.071529006213997e-5 +specify_V2 6.761434067968511e-4 +specify_VS 4.6208051753017965e-4 +specimen_N 7.459430024951794e-6 +specious_A 1.0773191989054437e-5 +speciousness_N 3.729715012475897e-6 +speck_N 3.729715012475897e-6 +specked_A 1.0773191989054437e-5 +speckle_N 3.729715012475897e-6 +speckled_A 2.1546383978108874e-5 +speckless_A 1.0773191989054437e-5 +spectacle_N 1.118914503742769e-5 +spectacled_A 1.0773191989054437e-5 +spectacles_N 3.729715012475897e-6 +spectacular_A 1.6159787983581657e-4 +spectacular_N 3.729715012475897e-6 +spectator_N 2.6108005087331277e-5 +spectinomycin_N 3.729715012475897e-6 +spectral_A 1.0773191989054437e-5 +spectre_N 3.729715012475897e-6 +spectrogram_N 3.729715012475897e-6 +spectrograph_N 3.729715012475897e-6 +spectrographic_A 1.0773191989054437e-5 +spectrographically_Adv 8.668966832532898e-6 +spectrometric_A 1.0773191989054437e-5 +spectrophotometer_N 3.729715012475897e-6 +spectroscope_N 3.729715012475897e-6 +spectroscopic_A 1.0773191989054437e-5 +spectroscopy_N 3.729715012475897e-6 +spectrum_N 2.6108005087331277e-5 +speculate_V 3.628611602485599e-4 +speculate_VS 1.2129613585167215e-3 +speculation_N 3.655120712226379e-4 +speculative_A 1.4005149585770768e-4 +speculativeness_N 3.729715012475897e-6 +speculator_N 1.5291831551151176e-4 +speculum_N 3.729715012475897e-6 +speech_N 2.0140461067369843e-4 +speech_day_N 3.729715012475897e-6 +speechify_V 2.2678822515534993e-5 +speechless_A 1.0773191989054437e-5 +speechlessness_N 3.729715012475897e-6 +speechwriter_N 3.729715012475897e-6 +speed_N 1.6783717556141534e-4 +speed_V 3.175035152174899e-4 +speed_V2 2.092824830561682e-4 +speed_along_V 2.2678822515534993e-5 +speed_cop_N 3.729715012475897e-6 +speed_indicator_N 3.729715012475897e-6 +speed_limit_N 3.729715012475897e-6 +speed_up_N 3.729715012475897e-6 +speed_up_V2 4.8295957628346505e-5 +speedboat_N 3.729715012475897e-6 +speeder_N 3.729715012475897e-6 +speeding_N 7.459430024951794e-6 +speedometer_N 1.118914503742769e-5 +speedskater_N 3.729715012475897e-6 +speedway_N 7.459430024951794e-6 +speedwell_N 3.729715012475897e-6 +speedy_A 6.463915193432663e-5 +spelaeologist_N 3.729715012475897e-6 +spelaeology_N 3.729715012475897e-6 +speleologist_N 3.729715012475897e-6 +speleology_N 3.729715012475897e-6 +spell_N 1.118914503742769e-5 +spell_V 9.071529006213997e-5 +spell_V2 1.1269056779947518e-4 +spell_out_V2 1.609865254278217e-5 +spellbinder_N 3.729715012475897e-6 +spellbound_A 1.0773191989054437e-5 +speller_N 3.729715012475897e-6 +spelling_N 1.118914503742769e-5 +spelt_N 3.729715012475897e-6 +spelter_N 3.729715012475897e-6 +spenborough_PN 1.865462821325971e-5 +spend_V 7.642763187735293e-3 +spend_V2 2.1411207881900287e-3 +spend_ing_V2V 9.350163627863488e-4 +spend_to_V2V 9.350163627863488e-4 +spender_N 2.237829007485538e-5 +spending_N 3.729715012475897e-6 +spendthrift_N 7.459430024951794e-6 +spennymoor_PN 1.865462821325971e-5 +sperm_N 7.459430024951794e-6 +sperm_whale_N 3.729715012475897e-6 +spermaceti_N 3.729715012475897e-6 +spermatid_N 3.729715012475897e-6 +spermatocele_N 3.729715012475897e-6 +spermatocyte_N 3.729715012475897e-6 +spermatogenesis_N 3.729715012475897e-6 +spermatophyte_N 3.729715012475897e-6 +spermatozoon_N 3.729715012475897e-6 +spermicidal_A 1.0773191989054437e-5 +spermicide_N 3.729715012475897e-6 +spermous_A 1.0773191989054437e-5 +spew_V 6.803646754660499e-5 +spew_V2 4.8295957628346505e-5 +spew_out_V2 1.609865254278217e-5 +spew_up_V 2.2678822515534993e-5 +sphagnum_N 3.729715012475897e-6 +sphenion_N 3.729715012475897e-6 +sphere_N 1.4918860049903587e-5 +spherical_A 1.0773191989054437e-5 +sphericity_N 3.729715012475897e-6 +spherocyte_N 3.729715012475897e-6 +spheroid_N 3.729715012475897e-6 +spherometer_N 3.729715012475897e-6 +spherule_N 3.729715012475897e-6 +sphincter_N 3.729715012475897e-6 +sphingine_A 1.0773191989054437e-5 +sphinx_N 3.729715012475897e-6 +sphygmomanometer_N 3.729715012475897e-6 +spic_N 3.729715012475897e-6 +spicate_A 1.0773191989054437e-5 +spiccato_N 3.729715012475897e-6 +spice_N 1.118914503742769e-5 +spice_V2 1.609865254278217e-5 +spicebush_N 3.729715012475897e-6 +spicemill_N 3.729715012475897e-6 +spiciness_N 3.729715012475897e-6 +spick_A 1.0773191989054437e-5 +spicule_N 3.729715012475897e-6 +spicy_A 1.0773191989054437e-5 +spider_N 7.459430024951794e-6 +spiderflower_N 3.729715012475897e-6 +spiderwort_N 3.729715012475897e-6 +spidery_A 1.0773191989054437e-5 +spiegeleisen_N 3.729715012475897e-6 +spiel_N 3.729715012475897e-6 +spiel_V 2.2678822515534993e-5 +spiel_V2 1.609865254278217e-5 +spiff_N 3.729715012475897e-6 +spiffing_A 1.0773191989054437e-5 +spigot_N 7.459430024951794e-6 +spike_N 3.729715012475897e-6 +spike_V2 6.439461017112868e-5 +spikelike_A 1.0773191989054437e-5 +spikemoss_N 3.729715012475897e-6 +spikenard_N 3.729715012475897e-6 +spiky_A 1.0773191989054437e-5 +spill_N 8.578344528694562e-5 +spill_V 2.0410940263981494e-4 +spill_V2 3.219730508556434e-5 +spill_out_V 2.2678822515534993e-5 +spill_over_V 2.2678822515534993e-5 +spillage_N 3.729715012475897e-6 +spillover_N 7.459430024951794e-6 +spillway_N 3.729715012475897e-6 +spin_N 1.4918860049903587e-5 +spin_V 5.669705628883749e-4 +spin_V2 6.439461017112868e-5 +spin_drier_N 3.729715012475897e-6 +spin_dry_V2 1.609865254278217e-5 +spin_off_N 7.459430024951794e-6 +spin_off_V2 6.439461017112868e-5 +spin_out_V 2.2678822515534993e-5 +spin_out_V2 1.609865254278217e-5 +spinach_N 3.729715012475897e-6 +spinal_A 4.309276795621775e-5 +spindle_N 3.729715012475897e-6 +spindle_berry_N 3.729715012475897e-6 +spindle_legged_A 1.0773191989054437e-5 +spindle_shanked_A 1.0773191989054437e-5 +spindle_shanks_N 3.729715012475897e-6 +spindle_tree_N 3.729715012475897e-6 +spindlelegs_N 3.729715012475897e-6 +spindly_A 1.0773191989054437e-5 +spindrift_N 3.729715012475897e-6 +spine_N 7.459430024951794e-6 +spinel_N 3.729715012475897e-6 +spineless_A 1.0773191989054437e-5 +spinelessness_N 3.729715012475897e-6 +spinet_N 3.729715012475897e-6 +spinnability_N 3.729715012475897e-6 +spinnable_A 1.0773191989054437e-5 +spinnaker_N 3.729715012475897e-6 +spinnbarkeit_N 3.729715012475897e-6 +spinner_N 3.729715012475897e-6 +spinney_N 3.729715012475897e-6 +spinning_N 3.729715012475897e-6 +spinning_wheel_N 3.729715012475897e-6 +spinose_A 1.0773191989054437e-5 +spinous_A 1.0773191989054437e-5 +spinster_N 3.729715012475897e-6 +spinsterhood_N 3.729715012475897e-6 +spiny_A 1.0773191989054437e-5 +spiracle_N 3.729715012475897e-6 +spiral_A 1.0773191989054437e-5 +spiral_N 2.6108005087331277e-5 +spiral_V 2.2678822515534993e-5 +spire_N 1.118914503742769e-5 +spirea_N 3.729715012475897e-6 +spirillum_N 3.729715012475897e-6 +spirit_N 2.0886404069865022e-4 +spirit_V2 8.049326271391085e-5 +spirit_away_V2 1.609865254278217e-5 +spirit_lamp_N 3.729715012475897e-6 +spirit_level_N 3.729715012475897e-6 +spirit_off_V2 1.609865254278217e-5 +spirit_rapper_N 3.729715012475897e-6 +spirit_stove_N 3.729715012475897e-6 +spiritedly_Adv 8.668966832532898e-6 +spiritless_A 1.0773191989054437e-5 +spiritual_A 2.1546383978108874e-5 +spiritual_N 3.729715012475897e-6 +spiritualism_N 3.729715012475897e-6 +spiritualist_N 3.729715012475897e-6 +spiritualistic_A 1.0773191989054437e-5 +spirituality_N 3.729715012475897e-6 +spiritualization_N 3.729715012475897e-6 +spiritualize_V2 1.609865254278217e-5 +spiritualty_N 3.729715012475897e-6 +spirituous_A 1.0773191989054437e-5 +spirochete_N 3.729715012475897e-6 +spirogram_N 3.729715012475897e-6 +spirograph_N 3.729715012475897e-6 +spirogyra_N 3.729715012475897e-6 +spirometer_N 3.729715012475897e-6 +spirometry_N 3.729715012475897e-6 +spironolactone_N 3.729715012475897e-6 +spirt_N 3.729715012475897e-6 +spirt_V 2.2678822515534993e-5 +spirula_N 3.729715012475897e-6 +spit_N 3.729715012475897e-6 +spit_V 2.2678822515534993e-5 +spit_V2 1.609865254278217e-5 +spit_it_out_V2 1.609865254278217e-5 +spit_out_V2 1.609865254278217e-5 +spitball_N 3.729715012475897e-6 +spite_N 3.729715012475897e-6 +spite_V2 1.609865254278217e-5 +spiteful_A 1.0773191989054437e-5 +spitefulness_N 3.729715012475897e-6 +spitfire_N 3.729715012475897e-6 +spitter_N 3.729715012475897e-6 +spitting_N 7.459430024951794e-6 +spittle_N 7.459430024951794e-6 +spittoon_N 3.729715012475897e-6 +spitz_N 3.729715012475897e-6 +spiv_N 3.729715012475897e-6 +splash_N 3.729715012475897e-6 +splash_V 2.2678822515534993e-5 +splash_V2 3.219730508556434e-5 +splash_down_V 2.2678822515534993e-5 +splash_out_V 2.2678822515534993e-5 +splash_out_on_V2 1.609865254278217e-5 +splashboard_N 3.729715012475897e-6 +splashdown_N 3.729715012475897e-6 +splasher_N 3.729715012475897e-6 +splashy_A 1.0773191989054437e-5 +splat_N 3.729715012475897e-6 +splay_A 1.0773191989054437e-5 +splay_N 3.729715012475897e-6 +splay_V 2.2678822515534993e-5 +splay_V2 1.609865254278217e-5 +splayfoot_N 3.729715012475897e-6 +splayfooted_A 1.0773191989054437e-5 +spleen_N 3.729715012475897e-6 +spleenwort_N 3.729715012475897e-6 +splendid_A 5.3865959945272184e-5 +splendiferous_A 1.0773191989054437e-5 +splendour_N 3.729715012475897e-6 +splenectomy_N 3.729715012475897e-6 +splenetic_A 1.0773191989054437e-5 +splenic_A 1.0773191989054437e-5 +splenitis_N 3.729715012475897e-6 +splenius_N 3.729715012475897e-6 +splenomegaly_N 3.729715012475897e-6 +splice_N 3.729715012475897e-6 +splice_V2 1.609865254278217e-5 +splicer_N 3.729715012475897e-6 +spline_N 3.729715012475897e-6 +splint_N 7.459430024951794e-6 +splinter_N 7.459430024951794e-6 +splinter_V 2.2678822515534993e-5 +splinter_V2 3.219730508556434e-5 +splinter_proof_A 1.0773191989054437e-5 +splintery_A 1.0773191989054437e-5 +split_N 1.5291831551151176e-4 +split_PN 1.865462821325971e-5 +split_V 5.896493854039099e-4 +split_V2 2.575784406845147e-4 +split_up_V 2.2678822515534993e-5 +split_up_V2 1.609865254278217e-5 +splitsville_N 3.729715012475897e-6 +splitter_N 3.729715012475897e-6 +splodge_N 3.729715012475897e-6 +splosh_V2 1.609865254278217e-5 +splotch_N 3.729715012475897e-6 +splurge_N 3.729715012475897e-6 +splurge_V 2.2678822515534993e-5 +splutter_N 3.729715012475897e-6 +splutter_V 2.2678822515534993e-5 +splutter_V2 1.609865254278217e-5 +spode_N 3.729715012475897e-6 +spodumene_N 3.729715012475897e-6 +spoil_N 3.729715012475897e-6 +spoil_V 4.5357645031069986e-5 +spoil_V2 4.8295957628346505e-5 +spoil_for_V2 1.609865254278217e-5 +spoilage_N 3.729715012475897e-6 +spoiler_N 3.729715012475897e-6 +spoilsport_N 3.729715012475897e-6 +spoke_N 7.459430024951794e-6 +spokeshave_N 3.729715012475897e-6 +spokesman_N 1.5702100202523526e-3 +spokesperson_N 3.729715012475897e-6 +spokeswoman_N 2.6108005087331277e-5 +spoliation_N 3.729715012475897e-6 +spondaic_A 1.0773191989054437e-5 +spondee_N 3.729715012475897e-6 +spondylarthritis_N 3.729715012475897e-6 +spondylitis_N 3.729715012475897e-6 +spondylolisthesis_N 3.729715012475897e-6 +sponge_N 3.729715012475897e-6 +sponge_V 2.2678822515534993e-5 +sponge_V2 1.609865254278217e-5 +sponge_cake_N 3.729715012475897e-6 +sponge_down_V2 1.609865254278217e-5 +sponge_off_V2 1.609865254278217e-5 +sponge_on_V2 1.609865254278217e-5 +spongefly_N 3.729715012475897e-6 +sponger_N 3.729715012475897e-6 +sponginess_N 3.729715012475897e-6 +spongioblast_N 3.729715012475897e-6 +spongy_A 1.0773191989054437e-5 +sponsor_N 1.118914503742769e-4 +sponsor_V2 4.185649661123364e-4 +sponsorship_N 1.4918860049903587e-5 +spontaneity_N 3.729715012475897e-6 +spontaneous_A 5.3865959945272184e-5 +spontaneousness_N 3.729715012475897e-6 +spoof_N 3.729715012475897e-6 +spoof_V2 1.609865254278217e-5 +spook_N 1.4918860049903587e-5 +spook_V2 1.9318383051338602e-4 +spooky_A 2.1546383978108874e-5 +spool_N 3.729715012475897e-6 +spoon_N 3.729715012475897e-6 +spoon_V 2.2678822515534993e-5 +spoon_V2 1.609865254278217e-5 +spoonbill_N 3.729715012475897e-6 +spoonerism_N 3.729715012475897e-6 +spoonfeed_V2 1.609865254278217e-5 +spoonfeeding_N 3.729715012475897e-6 +spoonful_N 7.459430024951794e-6 +spoor_N 3.729715012475897e-6 +sporadic_A 7.541234392338106e-5 +sporadically_Adv 1.7337933665065797e-5 +sporangiophore_N 3.729715012475897e-6 +sporangium_N 3.729715012475897e-6 +spore_N 7.459430024951794e-6 +sporocarp_N 3.729715012475897e-6 +sporogenous_A 1.0773191989054437e-5 +sporophore_N 3.729715012475897e-6 +sporophyll_N 3.729715012475897e-6 +sporophyte_N 3.729715012475897e-6 +sporotrichosis_N 3.729715012475897e-6 +sporozoan_N 3.729715012475897e-6 +sporozoite_N 3.729715012475897e-6 +sporran_N 3.729715012475897e-6 +sport_N 3.319446361103548e-4 +sport_V 9.071529006213997e-5 +sport_V2 9.659191525669301e-5 +sportingly_Adv 8.668966832532898e-6 +sportive_A 1.0773191989054437e-5 +sportiveness_N 3.729715012475897e-6 +sports_car_N 3.729715012475897e-6 +sports_coat_N 3.729715012475897e-6 +sports_editor_N 3.729715012475897e-6 +sports_jacket_N 3.729715012475897e-6 +sportscast_N 3.729715012475897e-6 +sportsman_N 7.459430024951794e-6 +sportsmanlike_A 1.0773191989054437e-5 +sportsmanship_N 3.729715012475897e-6 +sportswear_N 7.459430024951794e-6 +sporty_A 1.0773191989054437e-5 +spot_N 2.349720457859815e-4 +spot_V 6.803646754660499e-5 +spot_V2 2.8977574577007903e-4 +spot_VS 1.7328019407381737e-4 +spotless_A 1.0773191989054437e-5 +spotlessness_N 3.729715012475897e-6 +spotlight_N 1.118914503742769e-5 +spotlight_V2 3.219730508556434e-5 +spotter_N 3.729715012475897e-6 +spotty_A 6.463915193432663e-5 +spousal_A 1.0773191989054437e-5 +spouse_N 7.459430024951794e-5 +spout_N 3.729715012475897e-6 +spout_V 2.2678822515534993e-5 +spout_V2 3.219730508556434e-5 +spouter_N 3.729715012475897e-6 +sprachgefuhl_N 3.729715012475897e-6 +sprag_N 3.729715012475897e-6 +sprain_N 3.729715012475897e-6 +sprain_V2 1.609865254278217e-5 +sprat_N 3.729715012475897e-6 +sprawl_N 7.459430024951794e-6 +sprawl_V 6.803646754660499e-5 +sprawl_V2 3.219730508556434e-5 +sprawler_N 3.729715012475897e-6 +sprawly_A 1.0773191989054437e-5 +spray_N 2.237829007485538e-5 +spray_V2 4.8295957628346505e-5 +spray_gun_N 3.729715012475897e-6 +sprayer_N 3.729715012475897e-6 +spraying_N 3.729715012475897e-6 +spread_N 1.7902632059884304e-4 +spread_V 7.030434979815848e-4 +spread_V2 4.0246631356955425e-4 +spread_V2V 4.675081813931744e-4 +spread_VS 2.3104025876508982e-4 +spread_out_V 2.2678822515534993e-5 +spread_over_N 3.729715012475897e-6 +spreadeagle_N 3.729715012475897e-6 +spreadeagle_V2 1.609865254278217e-5 +spreader_N 3.729715012475897e-6 +spreadsheet_N 3.729715012475897e-6 +sprechgesang_N 3.729715012475897e-6 +spree_N 4.475658014971076e-5 +sprig_N 3.729715012475897e-6 +sprigged_A 1.0773191989054437e-5 +sprightliness_N 3.729715012475897e-6 +sprightly_A 3.231957596716331e-5 +spring_N 3.655120712226379e-4 +spring_V 2.4946704767088494e-4 +spring_V2 1.609865254278217e-5 +spring_back_V 2.2678822515534993e-5 +spring_balance_N 3.729715012475897e-6 +spring_clean_N 3.729715012475897e-6 +spring_clean_V2 1.609865254278217e-5 +spring_cleaning_N 3.729715012475897e-6 +spring_for_V2 1.609865254278217e-5 +spring_from_V2 1.609865254278217e-5 +spring_gun_N 3.729715012475897e-6 +spring_mattress_N 3.729715012475897e-6 +spring_on_V3 1.5873015873015873e-3 +spring_up_V 2.2678822515534993e-5 +springboard_N 3.729715012475897e-6 +springbok_N 3.729715012475897e-6 +springer_N 3.729715012475897e-6 +springfield_PN 1.865462821325971e-5 +springless_A 1.0773191989054437e-5 +springlike_A 1.0773191989054437e-5 +springtide_N 3.729715012475897e-6 +springtime_N 3.729715012475897e-6 +springy_A 1.0773191989054437e-5 +sprinkle_N 3.729715012475897e-6 +sprinkle_V2 8.049326271391085e-5 +sprinkler_N 1.118914503742769e-5 +sprinkling_N 3.729715012475897e-6 +sprint_N 3.729715012475897e-6 +sprint_V 2.2678822515534993e-5 +sprinter_N 3.729715012475897e-6 +sprit_N 3.729715012475897e-6 +sprite_N 3.729715012475897e-6 +sprites_N 3.729715012475897e-6 +spritsail_N 3.729715012475897e-6 +spritz_N 3.729715012475897e-6 +spritzer_N 3.729715012475897e-6 +sprocket_N 3.729715012475897e-6 +sprocket_wheel_N 3.729715012475897e-6 +sprog_N 3.729715012475897e-6 +sprout_N 3.729715012475897e-6 +sprout_V 6.803646754660499e-5 +sprout_V2 1.609865254278217e-5 +sprout_up_V 4.5357645031069986e-5 +spruce_A 1.0773191989054437e-5 +spruce_N 3.729715012475897e-6 +spruce_V 6.803646754660499e-5 +spruce_V2 1.609865254278217e-5 +spruce_up_V2 1.609865254278217e-5 +spruceness_N 3.729715012475897e-6 +sprue_N 3.729715012475897e-6 +spry_A 1.0773191989054437e-5 +spud_N 7.459430024951794e-6 +spue_V 2.2678822515534993e-5 +spue_V2 1.609865254278217e-5 +spume_N 3.729715012475897e-6 +spunk_N 3.729715012475897e-6 +spunky_A 1.0773191989054437e-5 +spur_N 7.459430024951794e-6 +spur_V 9.071529006213997e-5 +spur_V2 5.956501440829402e-4 +spur_on_V2 1.609865254278217e-5 +spurge_N 3.729715012475897e-6 +spurious_A 2.1546383978108874e-5 +spuriousness_N 3.729715012475897e-6 +spurn_V2 1.4488787288503951e-4 +spurner_N 3.729715012475897e-6 +spurre_V2V 9.350163627863488e-4 +spurt_N 2.9837720099807175e-5 +spurt_V 1.3607293509320997e-4 +sputnik_N 3.729715012475897e-6 +sputter_N 3.729715012475897e-6 +sputter_V 6.803646754660499e-5 +sputter_V2 1.609865254278217e-5 +sputum_N 3.729715012475897e-6 +spy_N 6.713487022456614e-5 +spy_V 4.5357645031069986e-5 +spy_V2 6.439461017112868e-5 +spy_hole_N 3.729715012475897e-6 +spyglass_N 7.459430024951794e-6 +spying_N 3.729715012475897e-6 +spymaster_N 3.729715012475897e-6 +spyware_N 3.729715012475897e-6 +sq_PN 1.865462821325971e-5 +squab_A 1.0773191989054437e-5 +squab_N 3.729715012475897e-6 +squabble_N 1.4918860049903587e-5 +squabble_V 4.5357645031069986e-5 +squabbler_N 3.729715012475897e-6 +squad_N 2.9837720099807175e-5 +squadron_N 1.118914503742769e-5 +squalid_A 3.231957596716331e-5 +squall_N 7.459430024951794e-6 +squall_V 2.2678822515534993e-5 +squally_A 1.0773191989054437e-5 +squalor_N 7.459430024951794e-6 +squama_N 3.729715012475897e-6 +squamule_N 3.729715012475897e-6 +squamulose_A 1.0773191989054437e-5 +squander_V2 4.8295957628346505e-5 +squandering_N 3.729715012475897e-6 +squandermania_N 3.729715012475897e-6 +square_A 3.016493756935242e-4 +square_Adv 1.7337933665065797e-5 +square_N 4.475658014971076e-5 +square_V 9.071529006213997e-5 +square_V2 3.219730508556434e-5 +square_away_V2 1.609865254278217e-5 +square_bashing_N 3.729715012475897e-6 +square_built_A 1.0773191989054437e-5 +square_off_V 2.2678822515534993e-5 +square_off_against_V3 3.1746031746031746e-3 +square_rigged_A 1.0773191989054437e-5 +square_shouldered_A 1.0773191989054437e-5 +square_toed_A 1.0773191989054437e-5 +square_toes_N 3.729715012475897e-6 +square_up_V 2.2678822515534993e-5 +square_up_to_V2 1.609865254278217e-5 +square_with_V2 1.609865254278217e-5 +squareness_N 3.729715012475897e-6 +squaretail_N 3.729715012475897e-6 +squarish_A 1.0773191989054437e-5 +squash_N 3.729715012475897e-6 +squash_V 2.2678822515534993e-5 +squash_V2 1.609865254278217e-5 +squashy_A 1.0773191989054437e-5 +squat_A 2.1546383978108874e-5 +squat_N 3.729715012475897e-6 +squat_V 4.5357645031069986e-5 +squatness_N 3.729715012475897e-6 +squatter_N 3.729715012475897e-6 +squaw_N 3.729715012475897e-6 +squawbush_N 3.729715012475897e-6 +squawk_N 3.729715012475897e-6 +squawk_V 2.2678822515534993e-5 +squawker_N 3.729715012475897e-6 +squeak_N 3.729715012475897e-6 +squeak_V 2.2678822515534993e-5 +squeak_V2 3.219730508556434e-5 +squeaker_N 3.729715012475897e-6 +squeaky_A 1.0773191989054437e-5 +squeal_N 3.729715012475897e-6 +squeal_V 2.2678822515534993e-5 +squeal_V2 1.609865254278217e-5 +squealer_N 3.729715012475897e-6 +squeamish_A 3.231957596716331e-5 +squeamishness_N 3.729715012475897e-6 +squeegee_N 3.729715012475897e-6 +squeegee_V2 3.219730508556434e-5 +squeeze_N 7.832401526199384e-5 +squeeze_V 2.9482469270195494e-4 +squeeze_V2 3.541703559412077e-4 +squeeze_in_V2 3.219730508556434e-5 +squeeze_out_V2 1.609865254278217e-5 +squeeze_up_V 2.2678822515534993e-5 +squeezer_N 3.729715012475897e-6 +squelch_N 3.729715012475897e-6 +squelch_V 4.5357645031069986e-5 +squelch_V2 3.219730508556434e-5 +squib_N 3.729715012475897e-6 +squid_N 3.729715012475897e-6 +squiffy_A 1.0773191989054437e-5 +squiggle_N 3.729715012475897e-6 +squiggly_A 1.0773191989054437e-5 +squill_N 3.729715012475897e-6 +squilla_N 3.729715012475897e-6 +squinch_N 3.729715012475897e-6 +squinched_A 1.0773191989054437e-5 +squint_N 3.729715012475897e-6 +squint_V 9.071529006213997e-5 +squint_eyed_A 1.0773191989054437e-5 +squinter_N 3.729715012475897e-6 +squinty_A 1.0773191989054437e-5 +squire_N 3.729715012475897e-6 +squire_V2 1.609865254278217e-5 +squirearchy_N 3.729715012475897e-6 +squirm_N 3.729715012475897e-6 +squirm_V 4.5357645031069986e-5 +squirrel_N 3.729715012475897e-6 +squirrelfish_N 3.729715012475897e-6 +squirt_N 3.729715012475897e-6 +squirt_V 2.2678822515534993e-5 +squirt_V2 1.609865254278217e-5 +squish_N 3.729715012475897e-6 +sr_PN 1.865462821325971e-5 +sri_lanka_PN 1.865462821325971e-5 +sri_lankan_A 1.0773191989054437e-5 +sri_lankan_N 3.729715012475897e-6 +srn_N 3.729715012475897e-6 +ss_N 3.729715012475897e-6 +st_PN 1.865462821325971e-5 +st_albans_PN 1.865462821325971e-5 +st_andrews_PN 1.865462821325971e-5 +st_andrews_major_PN 1.865462821325971e-5 +st_austell_PN 1.865462821325971e-5 +st_blazey_PN 1.865462821325971e-5 +st_helens_PN 1.865462821325971e-5 +st_ives_PN 1.865462821325971e-5 +st_louis_PN 1.865462821325971e-5 +st_neots_PN 1.865462821325971e-5 +st_paul_PN 1.865462821325971e-5 +st_petersburg_PN 9.327314106629855e-5 +st_stephen_PN 1.865462821325971e-5 +sta_PN 1.865462821325971e-5 +stab_N 7.459430024951794e-6 +stab_V 2.2678822515534993e-5 +stab_V2 1.1269056779947518e-4 +stabber_N 3.729715012475897e-6 +stabile_A 1.0773191989054437e-5 +stabile_N 3.729715012475897e-6 +stability_N 1.193508803992287e-4 +stabilization_N 1.118914503742769e-5 +stabilize_V 5.669705628883749e-4 +stabilize_V2 3.3807170339842556e-4 +stabilizer_N 3.729715012475897e-6 +stable_A 3.770617196169053e-4 +stable_N 1.4918860049903587e-5 +stable_V2 1.609865254278217e-5 +stable_companion_N 3.729715012475897e-6 +stableboy_N 3.729715012475897e-6 +stableman_N 3.729715012475897e-6 +stablemate_N 3.729715012475897e-6 +stabling_N 3.729715012475897e-6 +staccato_A 1.0773191989054437e-5 +staccato_Adv 8.668966832532898e-6 +stachyose_N 3.729715012475897e-6 +stack_N 1.118914503742769e-5 +stack_V2 1.609865254278217e-4 +stack_up_V 2.2678822515534993e-5 +stack_up_V2 1.609865254278217e-5 +stack_up_against_V2 1.609865254278217e-5 +stacker_N 3.729715012475897e-6 +stacks_N 3.729715012475897e-6 +stackup_N 3.729715012475897e-6 +stacte_N 3.729715012475897e-6 +staddle_N 3.729715012475897e-6 +stadium_N 1.1562116538675279e-4 +staff_N 5.184303867341496e-4 +staff_V2 9.659191525669301e-5 +staff_office_N 3.729715012475897e-6 +staff_up_V2 1.609865254278217e-5 +stafford_PN 1.865462821325971e-5 +staffordshire_PN 1.865462821325971e-5 +stag_N 3.729715012475897e-6 +stag_party_N 3.729715012475897e-6 +stage_N 2.16323470723602e-4 +stage_V 2.7214587018641994e-4 +stage_V2 2.092824830561682e-4 +stage_struck_A 1.0773191989054437e-5 +stage_whisper_N 3.729715012475897e-6 +stagecoach_N 3.729715012475897e-6 +stagecraft_N 3.729715012475897e-6 +stagehand_N 3.729715012475897e-6 +stager_N 3.729715012475897e-6 +stagflation_N 1.4918860049903587e-5 +stagflationary_A 1.0773191989054437e-5 +stagger_N 3.729715012475897e-6 +stagger_V 2.0410940263981494e-4 +stagger_V2 3.219730508556434e-5 +staggerbush_N 3.729715012475897e-6 +staggerer_N 3.729715012475897e-6 +staggeringly_Adv 8.668966832532898e-6 +staggers_N 3.729715012475897e-6 +staghound_N 3.729715012475897e-6 +staginess_N 3.729715012475897e-6 +staging_N 1.8648575062379485e-5 +stagnancy_N 3.729715012475897e-6 +stagnant_A 6.463915193432663e-5 +stagnate_V 6.803646754660499e-5 +stagnation_N 1.118914503742769e-5 +stagy_A 1.0773191989054437e-5 +staid_A 4.309276795621775e-5 +staidness_N 3.729715012475897e-6 +stain_N 7.459430024951794e-6 +stain_V 2.2678822515534993e-5 +stain_V2 3.219730508556434e-5 +stainability_N 3.729715012475897e-6 +stainable_A 1.0773191989054437e-5 +stainer_N 3.729715012475897e-6 +staining_N 3.729715012475897e-6 +stainless_A 2.1546383978108874e-5 +stair_N 1.4918860049903587e-5 +stair_carpet_N 3.729715012475897e-6 +stair_rod_N 3.729715012475897e-6 +staircase_N 7.459430024951794e-6 +stairhead_N 3.729715012475897e-6 +stairway_N 3.729715012475897e-6 +stairwell_N 3.729715012475897e-6 +stake_N 1.476967144940455e-3 +stake_V2 4.8295957628346505e-5 +stake_holder_N 3.729715012475897e-6 +stakeford_PN 1.865462821325971e-5 +stakeholder_N 3.729715012475897e-6 +stakeout_N 3.729715012475897e-6 +stalactite_N 3.729715012475897e-6 +stalagmite_N 3.729715012475897e-6 +stale_A 4.309276795621775e-5 +stale_V 2.2678822515534993e-5 +stalemate_N 1.4918860049903587e-5 +stalemate_V2 1.609865254278217e-5 +staleness_N 3.729715012475897e-6 +stalk_N 3.729715012475897e-6 +stalk_V 2.2678822515534993e-5 +stalk_V2 6.439461017112868e-5 +stalker_N 3.729715012475897e-6 +stalking_horse_N 3.729715012475897e-6 +stall_N 1.4918860049903587e-5 +stall_V 2.7214587018641994e-4 +stall_V2 1.7708517797060386e-4 +stall_fed_A 1.0773191989054437e-5 +stallion_N 7.459430024951794e-6 +stalwart_A 3.231957596716331e-5 +stalwart_N 1.8648575062379485e-5 +stalybridge_PN 1.865462821325971e-5 +stamen_N 3.729715012475897e-6 +stamford_PN 2.238555385591165e-4 +stamina_N 3.729715012475897e-6 +stammel_N 3.729715012475897e-6 +stammer_N 3.729715012475897e-6 +stammer_V 2.2678822515534993e-5 +stammer_V2 1.609865254278217e-5 +stammerer_N 3.729715012475897e-6 +stammeringly_Adv 8.668966832532898e-6 +stamp_N 2.6108005087331277e-5 +stamp_V 1.1339411257767497e-4 +stamp_V2 3.219730508556434e-5 +stamp_album_N 3.729715012475897e-6 +stamp_collector_N 3.729715012475897e-6 +stamp_dealer_N 3.729715012475897e-6 +stamp_duty_N 3.729715012475897e-6 +stamp_out_V2 1.609865254278217e-5 +stampede_N 1.8648575062379485e-5 +stampede_V 4.5357645031069986e-5 +stampede_V2 4.8295957628346505e-5 +stamper_N 3.729715012475897e-6 +stamping_ground_N 3.729715012475897e-6 +stan_PN 1.865462821325971e-5 +stance_N 8.951316029942152e-5 +stanch_V2 3.219730508556434e-5 +stanchion_N 3.729715012475897e-6 +stand_N 1.08161735361801e-4 +stand_V 2.4719916541933143e-3 +stand_V2 2.4147978814173252e-4 +stand_VS 3.4656038814763474e-4 +stand_VV 1.3453776667307323e-3 +stand_about_V 2.2678822515534993e-5 +stand_around_V 2.2678822515534993e-5 +stand_aside_V 2.2678822515534993e-5 +stand_back_V 2.2678822515534993e-5 +stand_by_V 2.2678822515534993e-5 +stand_by_V2 1.609865254278217e-5 +stand_down_V 2.2678822515534993e-5 +stand_for_V2 1.609865254278217e-5 +stand_in_N 3.729715012475897e-6 +stand_in_for_V2 1.609865254278217e-5 +stand_out_V 6.803646754660499e-5 +stand_to_N 3.729715012475897e-6 +stand_up_A 1.0773191989054437e-5 +stand_up_V 2.2678822515534993e-5 +stand_up_V2 1.609865254278217e-5 +stand_up_for_V2 1.609865254278217e-5 +stand_up_to_V2 1.609865254278217e-5 +standard_A 7.110306712775928e-4 +standard_N 4.8486295162186656e-4 +standard_bearer_N 3.729715012475897e-6 +standardization_N 3.729715012475897e-6 +standardize_V2 2.092824830561682e-4 +standardizer_N 3.729715012475897e-6 +standby_A 1.0773191989054437e-5 +standby_N 1.118914503742769e-5 +standdown_N 3.729715012475897e-6 +standee_N 3.729715012475897e-6 +stander_N 3.729715012475897e-6 +standing_N 8.205373027446973e-5 +standoffish_A 1.0773191989054437e-5 +standoffishness_N 3.729715012475897e-6 +standpipe_N 3.729715012475897e-6 +standpoint_N 2.9837720099807175e-5 +standstill_N 2.237829007485538e-5 +stanford_PN 7.461851285303884e-5 +stanhope_N 3.729715012475897e-6 +stanhopea_N 3.729715012475897e-6 +stanley_PN 1.865462821325971e-5 +stannic_A 1.0773191989054437e-5 +stannite_N 3.729715012475897e-6 +stanza_N 3.729715012475897e-6 +stapedectomy_N 3.729715012475897e-6 +stapelia_N 3.729715012475897e-6 +stapes_N 3.729715012475897e-6 +staphylococcal_A 1.0773191989054437e-5 +staphylococcus_N 3.729715012475897e-6 +staple_A 1.0773191989054437e-5 +staple_N 1.118914503742769e-5 +staple_V2 3.219730508556434e-5 +stapler_N 3.729715012475897e-6 +stapling_machine_N 3.729715012475897e-6 +star_N 1.118914503742769e-4 +star_V 1.3607293509320997e-4 +star_V2 6.439461017112868e-5 +starboard_A 1.0773191989054437e-5 +starboard_N 3.729715012475897e-6 +starboard_V2 1.609865254278217e-5 +starch_N 7.459430024951794e-6 +starch_V2 1.609865254278217e-5 +starches_N 3.729715012475897e-6 +starchless_A 1.0773191989054437e-5 +starchlike_A 1.0773191989054437e-5 +starchy_A 1.0773191989054437e-5 +stardom_N 1.118914503742769e-5 +stardust_N 3.729715012475897e-6 +stare_N 7.459430024951794e-6 +stare_V 9.071529006213997e-5 +stare_V2 1.609865254278217e-5 +stare_down_V2 1.609865254278217e-5 +starer_N 3.729715012475897e-6 +starets_N 3.729715012475897e-6 +starfish_N 3.729715012475897e-6 +starflower_N 3.729715012475897e-6 +stargazer_N 3.729715012475897e-6 +stargazing_N 3.729715012475897e-6 +staring_Adv 8.668966832532898e-6 +stark_A 9.695872790148993e-5 +stark_Adv 8.668966832532898e-6 +starkers_A 1.0773191989054437e-5 +starkness_N 3.729715012475897e-6 +starless_A 1.0773191989054437e-5 +starlet_N 3.729715012475897e-6 +starlight_N 3.729715012475897e-6 +starlike_A 1.0773191989054437e-5 +starling_N 3.729715012475897e-6 +starlit_A 1.0773191989054437e-5 +starry_A 1.0773191989054437e-5 +starry_eyed_A 1.0773191989054437e-5 +starship_N 3.729715012475897e-6 +start_N 2.4616119082340916e-4 +start_V 3.628611602485599e-3 +start_V2 1.143004330537534e-3 +start_ing_VV 2.979050547760907e-3 +start_off_V 2.2678822515534993e-5 +start_off_V2 1.609865254278217e-5 +start_off_on_V2 1.609865254278217e-5 +start_on_V2 1.609865254278217e-5 +start_on_at_V2 1.609865254278217e-5 +start_out_V 2.2678822515534993e-5 +start_out_as_V2 1.609865254278217e-5 +start_out_to_V2 1.609865254278217e-5 +start_over_V 2.2678822515534993e-5 +start_to_VV 7.976167595617912e-3 +start_up_V 2.2678822515534993e-5 +start_up_V2 1.609865254278217e-5 +starter_1_N 7.459430024951794e-6 +starter_2_N 3.729715012475897e-6 +starter_3_N 3.729715012475897e-6 +starter_4_N 3.729715012475897e-6 +starter_5_N 3.729715012475897e-6 +starter_6_N 3.729715012475897e-6 +starter_7_N 3.729715012475897e-6 +starting_gate_N 3.729715012475897e-6 +starting_point_N 3.729715012475897e-6 +starting_post_N 3.729715012475897e-6 +startle_N 3.729715012475897e-6 +startle_V2 1.609865254278217e-5 +startling_A 1.0773191989054437e-5 +startup_N 3.729715012475897e-6 +starvation_N 7.459430024951794e-6 +starve_V 1.1339411257767497e-4 +starve_V2 6.439461017112868e-5 +starveling_N 3.729715012475897e-6 +stash_V2 4.8295957628346505e-5 +stash_away_V2 1.609865254278217e-5 +stasis_N 3.729715012475897e-6 +state_N 2.6630165189077903e-3 +state_V2 5.151568813690294e-4 +state_VS 1.0974412291341767e-3 +statecraft_N 3.729715012475897e-6 +statehood_N 3.729715012475897e-6 +statehouse_N 7.459430024951794e-6 +stateless_A 1.0773191989054437e-5 +stateliness_N 3.729715012475897e-6 +stately_A 4.309276795621775e-5 +statement_N 8.466453078320286e-4 +stater_N 3.729715012475897e-6 +stateroom_N 3.729715012475897e-6 +statesman_N 1.118914503742769e-5 +statesmanlike_A 1.0773191989054437e-5 +statesmanship_N 3.729715012475897e-6 +stateswoman_N 3.729715012475897e-6 +statewide_A 1.0773191989054437e-5 +static_A 3.231957596716331e-5 +static_N 3.729715012475897e-6 +statically_Adv 8.668966832532898e-6 +statics_N 3.729715012475897e-6 +station_N 4.550252315220594e-4 +station_V2 4.8295957628346505e-5 +station_waggon_N 3.729715012475897e-6 +stationariness_N 3.729715012475897e-6 +stationary_A 3.231957596716331e-5 +stationer_N 3.729715012475897e-6 +stationery_N 1.4918860049903587e-5 +stationmaster_N 3.729715012475897e-6 +statistic_N 7.459430024951794e-6 +statistical_A 1.508246878467621e-4 +statistician_N 1.118914503742769e-5 +statistics_N 1.3426974044913228e-4 +stative_A 1.0773191989054437e-5 +stator_N 3.729715012475897e-6 +statuary_A 1.0773191989054437e-5 +statuary_N 3.729715012475897e-6 +statue_N 2.9837720099807175e-5 +statuesque_A 1.0773191989054437e-5 +statuette_N 3.729715012475897e-6 +stature_N 1.4918860049903587e-5 +status_N 1.4918860049903588e-4 +status_quo_N 1.4918860049903587e-5 +statute_N 8.951316029942152e-5 +statute_book_N 3.729715012475897e-6 +statutory_A 1.0773191989054437e-4 +staunch_A 7.541234392338106e-5 +staunch_V2 1.609865254278217e-5 +staunchness_N 3.729715012475897e-6 +staurikosaur_N 3.729715012475897e-6 +stave_N 3.729715012475897e-6 +stave_V 6.803646754660499e-5 +stave_V2 1.609865254278217e-5 +stave_in_V2 1.609865254278217e-5 +stave_off_V2 3.219730508556434e-5 +stay_N 4.1026865137234865e-5 +stay_V 2.0184152038826143e-3 +stay_V2 1.9318383051338602e-4 +stay_VA 2.4606299212598427e-2 +stay_VS 2.8880032345636225e-4 +stay_at_home_N 3.729715012475897e-6 +stay_away_V 2.2678822515534993e-5 +stay_away_from_V2 1.609865254278217e-5 +stay_in_V 2.2678822515534993e-5 +stay_on_V 2.2678822515534993e-5 +stay_out_V 2.2678822515534993e-5 +stay_over_V 2.2678822515534993e-5 +stay_up_V 2.2678822515534993e-5 +stayer_N 3.729715012475897e-6 +staysail_N 3.729715012475897e-6 +std_PN 1.865462821325971e-5 +stead_N 3.729715012475897e-6 +steadfast_A 4.309276795621775e-5 +steadfastness_N 3.729715012475897e-6 +steadiness_N 7.459430024951794e-6 +steady_A 7.541234392338106e-4 +steady_Adv 4.33448341626645e-5 +steady_N 3.729715012475897e-6 +steady_V 9.071529006213997e-5 +steady_V2 3.219730508556434e-5 +steak_N 1.4918860049903587e-5 +steakhouse_N 3.729715012475897e-6 +steal_N 3.729715012475897e-6 +steal_V 2.9482469270195494e-4 +steal_V2 5.795514915401581e-4 +steal_away_V 2.2678822515534993e-5 +steal_out_V 2.2678822515534993e-5 +steal_over_V2 1.609865254278217e-5 +steal_up_V 2.2678822515534993e-5 +steal_up_on_V2 1.609865254278217e-5 +stealth_N 3.729715012475897e-6 +stealthy_A 1.0773191989054437e-5 +steam_N 7.086458523704203e-5 +steam_V 6.803646754660499e-5 +steam_V2 1.609865254278217e-5 +steam_boiler_N 3.729715012475897e-6 +steam_coal_N 3.729715012475897e-6 +steam_engine_N 3.729715012475897e-6 +steam_heat_N 3.729715012475897e-6 +steam_heat_V2 1.609865254278217e-5 +steamboat_N 3.729715012475897e-6 +steamer_N 3.729715012475897e-6 +steamfitter_N 3.729715012475897e-6 +steamroller_N 7.459430024951794e-6 +steamroller_V2 1.609865254278217e-5 +steamship_N 3.729715012475897e-6 +steamy_A 1.0773191989054437e-5 +stearic_A 1.0773191989054437e-5 +stearin_N 3.729715012475897e-6 +steatopygia_N 3.729715012475897e-6 +steatorrhea_N 3.729715012475897e-6 +steed_N 3.729715012475897e-6 +steel_N 6.899972773080409e-4 +steel_V2 1.609865254278217e-5 +steel_clad_A 1.0773191989054437e-5 +steel_plated_A 1.0773191989054437e-5 +steelmaker_N 1.118914503742769e-5 +steelworks_N 3.729715012475897e-6 +steely_A 2.1546383978108874e-5 +steelyard_N 3.729715012475897e-6 +steenbok_N 3.729715012475897e-6 +steep_A 4.95566831496504e-4 +steep_N 3.729715012475897e-6 +steep_V 2.2678822515534993e-5 +steep_V2 1.609865254278217e-5 +steepen_V 2.2678822515534993e-5 +steepen_V2 1.609865254278217e-5 +steeper_N 3.729715012475897e-6 +steepish_A 1.0773191989054437e-5 +steeple_N 3.729715012475897e-6 +steeplechase_N 3.729715012475897e-6 +steeplechaser_N 3.729715012475897e-6 +steeplejack_N 3.729715012475897e-6 +steepness_N 3.729715012475897e-6 +steer_N 3.729715012475897e-6 +steer_V 2.9482469270195494e-4 +steer_V2 1.1269056779947518e-4 +steer_clear_of_V2 1.609865254278217e-5 +steerable_A 1.0773191989054437e-5 +steerage_N 3.729715012475897e-6 +steerageway_N 3.729715012475897e-6 +steering_N 3.729715012475897e-6 +steering_gear_N 3.729715012475897e-6 +steering_wheel_N 3.729715012475897e-6 +steersman_N 3.729715012475897e-6 +stegosaur_N 3.729715012475897e-6 +stele_N 3.729715012475897e-6 +stelis_N 3.729715012475897e-6 +stella_PN 1.865462821325971e-5 +stellar_A 6.463915193432663e-5 +stem_N 1.8648575062379485e-5 +stem_V 1.5648387535719145e-3 +stem_V2 1.7708517797060386e-4 +stem_from_V2 1.609865254278217e-5 +stemless_A 1.0773191989054437e-5 +stemma_N 3.729715012475897e-6 +stemmatic_A 1.0773191989054437e-5 +stemmatology_N 3.729715012475897e-6 +stemmer_N 3.729715012475897e-6 +sten_PN 1.865462821325971e-5 +stench_N 7.459430024951794e-6 +stencil_N 3.729715012475897e-6 +stencil_V2 1.609865254278217e-5 +stenograph_N 3.729715012475897e-6 +stenographer_N 3.729715012475897e-6 +stenographic_A 1.0773191989054437e-5 +stenography_N 3.729715012475897e-6 +stenopterygius_N 3.729715012475897e-6 +stenosed_A 1.0773191989054437e-5 +stenosis_N 3.729715012475897e-6 +stent_N 3.729715012475897e-6 +stentor_N 3.729715012475897e-6 +stentorian_A 1.0773191989054437e-5 +step_N 5.482681068339568e-4 +step_V 1.4968022860253095e-3 +step_V2 3.219730508556434e-5 +step_aside_V 2.2678822515534993e-5 +step_back_V 2.2678822515534993e-5 +step_down_V 2.2678822515534993e-5 +step_down_V2 1.609865254278217e-5 +step_forward_V 2.2678822515534993e-5 +step_in_V 2.2678822515534993e-5 +step_on_it_V2 1.609865254278217e-5 +step_out_V 2.2678822515534993e-5 +step_to_V2 1.609865254278217e-5 +step_up_V2 3.219730508556434e-5 +stepbrother_N 3.729715012475897e-6 +stepchild_N 7.459430024951794e-6 +stepdaughter_N 3.729715012475897e-6 +stepfather_N 3.729715012475897e-6 +stephanie_PN 1.865462821325971e-5 +stephanion_N 3.729715012475897e-6 +stephanotis_N 3.729715012475897e-6 +stephen_PN 1.865462821325971e-5 +stepladder_N 3.729715012475897e-6 +stepmother_N 7.459430024951794e-6 +stepparent_N 3.729715012475897e-6 +steppe_N 3.729715012475897e-6 +stepper_N 3.729715012475897e-6 +stepping_stone_N 3.729715012475897e-6 +steprelationship_N 3.729715012475897e-6 +steps_N 3.729715012475897e-6 +stepsister_N 3.729715012475897e-6 +stepson_N 3.729715012475897e-6 +stepwise_Adv 8.668966832532898e-6 +steradian_N 3.729715012475897e-6 +sterculia_N 3.729715012475897e-6 +stereo_N 2.6108005087331277e-5 +stereophonic_A 1.0773191989054437e-5 +stereoscope_N 3.729715012475897e-6 +stereoscopic_A 1.0773191989054437e-5 +stereotype_N 1.118914503742769e-5 +stereotype_V2 1.609865254278217e-5 +stereotypically_Adv 8.668966832532898e-6 +sterile_A 3.231957596716331e-5 +sterility_N 7.459430024951794e-6 +sterilization_N 7.459430024951794e-6 +sterilize_V 1.1339411257767497e-4 +sterilize_V2 4.8295957628346505e-5 +sterling_A 7.541234392338106e-5 +sterling_N 1.4545888548655997e-4 +stern_A 4.309276795621775e-5 +stern_N 3.729715012475897e-6 +sternal_A 1.0773191989054437e-5 +sternness_N 3.729715012475897e-6 +sternocleidomastoid_N 3.729715012475897e-6 +sternpost_N 3.729715012475897e-6 +sternum_N 3.729715012475897e-6 +sternutator_N 3.729715012475897e-6 +sternutatory_A 1.0773191989054437e-5 +sternwheeler_N 3.729715012475897e-6 +steroid_N 3.729715012475897e-6 +steroidal_A 1.0773191989054437e-5 +sterol_N 3.729715012475897e-6 +stertorous_A 1.0773191989054437e-5 +stethoscope_N 3.729715012475897e-6 +stetson_N 3.729715012475897e-6 +steve_PN 1.865462821325971e-5 +stevedore_N 3.729715012475897e-6 +steven_PN 1.865462821325971e-5 +stevenage_PN 1.865462821325971e-5 +stevenston_PN 1.865462821325971e-5 +stevia_N 3.729715012475897e-6 +stew_N 7.459430024951794e-6 +stew_V 4.5357645031069986e-5 +stew_V2 3.219730508556434e-5 +steward_N 7.459430024951794e-6 +stewardess_N 3.729715012475897e-6 +stewardship_N 7.459430024951794e-6 +stewart_PN 1.865462821325971e-5 +stewing_N 3.729715012475897e-6 +steyning_PN 1.865462821325971e-5 +sthene_N 3.729715012475897e-6 +stibnite_N 3.729715012475897e-6 +stick_N 7.459430024951794e-6 +stick_V 7.484011430126548e-4 +stick_V2 1.609865254278217e-5 +stick_around_V 2.2678822515534993e-5 +stick_at_V2 1.609865254278217e-5 +stick_by_V2 1.609865254278217e-5 +stick_down_V2 1.609865254278217e-5 +stick_in_the_mud_A 1.0773191989054437e-5 +stick_in_the_mud_N 3.729715012475897e-6 +stick_it_to_V2 1.609865254278217e-5 +stick_on_A 1.0773191989054437e-5 +stick_out_V 2.2678822515534993e-5 +stick_out_V2 1.609865254278217e-5 +stick_out_for_V2 1.609865254278217e-5 +stick_to_V2 1.609865254278217e-5 +stick_together_V 2.2678822515534993e-5 +stick_up_N 3.729715012475897e-6 +stick_up_V 2.2678822515534993e-5 +stick_up_V2 1.609865254278217e-5 +stick_up_for_V2 1.609865254278217e-5 +stick_with_V2 1.609865254278217e-5 +stickball_N 3.729715012475897e-6 +sticker_N 2.237829007485538e-5 +stickiness_N 7.459430024951794e-6 +sticking_plaster_N 3.729715012475897e-6 +stickleback_N 3.729715012475897e-6 +stickler_N 7.459430024951794e-6 +stickpin_N 3.729715012475897e-6 +sticktight_N 3.729715012475897e-6 +stickweed_N 3.729715012475897e-6 +sticky_A 4.309276795621775e-5 +stiff_A 2.2623703177014317e-4 +stiff_Adv 8.668966832532898e-6 +stiff_N 7.459430024951794e-6 +stiff_necked_A 1.0773191989054437e-5 +stiffen_V 4.5357645031069986e-5 +stiffen_V2 1.609865254278217e-5 +stiffen_up_V 2.2678822515534993e-5 +stiffen_up_V2 1.609865254278217e-5 +stiffener_N 3.729715012475897e-6 +stiffening_N 3.729715012475897e-6 +stiffness_N 3.729715012475897e-6 +stifle_N 3.729715012475897e-6 +stifle_V 4.5357645031069986e-5 +stifle_V2 9.659191525669301e-5 +stifler_N 3.729715012475897e-6 +stigma_N 2.237829007485538e-5 +stigmata_N 3.729715012475897e-6 +stigmatic_A 1.0773191989054437e-5 +stigmatic_N 3.729715012475897e-6 +stigmatism_N 3.729715012475897e-6 +stigmatization_N 3.729715012475897e-6 +stigmatize_V2 1.609865254278217e-5 +stile_N 3.729715012475897e-6 +stiletto_N 3.729715012475897e-6 +still_A 3.231957596716331e-5 +still_AdA 2.028397565922921e-3 +still_AdV 4.014811927499513e-2 +still_Adv 2.826083187405725e-3 +still_N 3.729715012475897e-6 +still_V2 1.609865254278217e-5 +still_life_N 3.729715012475897e-6 +still_room_N 3.729715012475897e-6 +stillbirth_N 3.729715012475897e-6 +stillborn_A 1.0773191989054437e-5 +stillness_N 3.729715012475897e-6 +stillroom_N 3.729715012475897e-6 +stilly_A 1.0773191989054437e-5 +stilt_N 7.459430024951794e-6 +stilted_A 1.0773191989054437e-5 +stilton_N 3.729715012475897e-6 +stimulant_A 1.0773191989054437e-5 +stimulant_N 7.459430024951794e-6 +stimulate_V2 2.575784406845147e-4 +stimulating_A 1.0773191989054437e-5 +stimulation_N 1.118914503742769e-5 +stimulative_A 1.0773191989054437e-5 +stimulus_N 1.4918860049903587e-5 +sting_N 3.729715012475897e-6 +sting_V 1.1339411257767497e-4 +sting_V2 6.439461017112868e-5 +stinger_N 3.729715012475897e-6 +stinginess_N 3.729715012475897e-6 +stingless_A 1.0773191989054437e-5 +stingray_N 7.459430024951794e-6 +stingy_A 3.231957596716331e-5 +stink_N 3.729715012475897e-6 +stink_V 4.5357645031069986e-5 +stink_V2 1.609865254278217e-5 +stinker_N 3.729715012475897e-6 +stinkhorn_N 3.729715012475897e-6 +stint_N 1.4918860049903587e-5 +stint_V 2.2678822515534993e-5 +stint_V2 1.609865254278217e-5 +stinter_N 3.729715012475897e-6 +stipe_N 3.729715012475897e-6 +stipend_N 7.459430024951794e-6 +stipendiary_A 1.0773191989054437e-5 +stipendiary_N 3.729715012475897e-6 +stipple_V2 3.219730508556434e-5 +stippler_N 3.729715012475897e-6 +stipulate_V 4.5357645031069986e-5 +stipulate_V2 1.609865254278217e-5 +stipulate_VS 2.8880032345636225e-4 +stipulation_N 7.459430024951794e-6 +stipule_N 3.729715012475897e-6 +stir_N 3.729715012475897e-6 +stir_V 1.3607293509320997e-4 +stir_V2 1.4488787288503951e-4 +stir_up_V2 4.8295957628346505e-5 +stirk_N 3.729715012475897e-6 +stirling_PN 1.865462821325971e-5 +stirrer_N 3.729715012475897e-6 +stirring_N 3.729715012475897e-6 +stirringly_Adv 8.668966832532898e-6 +stirrup_N 7.459430024951794e-6 +stirrup_cup_N 3.729715012475897e-6 +stitch_N 7.459430024951794e-6 +stitch_V 2.2678822515534993e-5 +stitch_V2 3.219730508556434e-5 +stitch_up_V2 1.609865254278217e-5 +stitcher_N 3.729715012475897e-6 +stitchwort_N 3.729715012475897e-6 +stoat_N 3.729715012475897e-6 +stob_N 3.729715012475897e-6 +stochastic_A 1.0773191989054437e-5 +stochastically_Adv 8.668966832532898e-6 +stock_A 1.0773191989054437e-5 +stock_N 9.477205846701253e-3 +stock_V2 2.2538113559895037e-4 +stock_cube_N 3.729715012475897e-6 +stock_farmer_N 3.729715012475897e-6 +stock_in_trade_N 3.729715012475897e-6 +stock_list_N 3.729715012475897e-6 +stock_still_Adv 8.668966832532898e-6 +stock_up_V 2.2678822515534993e-5 +stockade_N 3.729715012475897e-6 +stockade_V2 1.609865254278217e-5 +stockbreeder_N 3.729715012475897e-6 +stockbroker_N 5.2216010174662554e-5 +stockcar_N 3.729715012475897e-6 +stocker_N 3.729715012475897e-6 +stockfish_N 3.729715012475897e-6 +stockholder_N 1.0443202034932511e-4 +stockholding_N 1.4918860049903587e-5 +stockholm_PN 3.357833078386748e-4 +stockinet_N 3.729715012475897e-6 +stockinette_N 3.729715012475897e-6 +stocking_N 7.459430024951794e-6 +stockinged_A 1.0773191989054437e-5 +stockist_N 3.729715012475897e-6 +stockjobber_N 3.729715012475897e-6 +stockman_N 3.729715012475897e-6 +stockpile_N 2.9837720099807175e-5 +stockpile_V2 3.219730508556434e-5 +stockpiling_N 7.459430024951794e-6 +stockport_PN 1.865462821325971e-5 +stockpot_N 3.729715012475897e-6 +stockroom_N 7.459430024951794e-6 +stocks_N 3.729715012475897e-6 +stocksbridge_PN 1.865462821325971e-5 +stocktake_N 3.729715012475897e-6 +stocktaker_N 3.729715012475897e-6 +stocktaking_N 3.729715012475897e-6 +stocky_A 1.0773191989054437e-5 +stockyard_N 7.459430024951794e-6 +stodge_N 3.729715012475897e-6 +stodginess_N 3.729715012475897e-6 +stodgy_A 3.231957596716331e-5 +stoep_N 3.729715012475897e-6 +stogy_N 3.729715012475897e-6 +stoic_A 1.0773191989054437e-5 +stoic_N 3.729715012475897e-6 +stoical_A 1.0773191989054437e-5 +stoichiometric_A 1.0773191989054437e-5 +stoichiometry_N 3.729715012475897e-6 +stoicism_N 3.729715012475897e-6 +stoke_V 2.2678822515534993e-5 +stoke_V2 6.439461017112868e-5 +stoke_on_trent_PN 1.865462821325971e-5 +stokehold_N 3.729715012475897e-6 +stokehole_N 3.729715012475897e-6 +stoker_N 3.729715012475897e-6 +stole_N 3.729715012475897e-6 +stolid_A 2.1546383978108874e-5 +stolidity_N 3.729715012475897e-6 +stolidness_N 3.729715012475897e-6 +stolon_N 3.729715012475897e-6 +stoloniferous_A 1.0773191989054437e-5 +stoma_N 3.729715012475897e-6 +stomach_N 1.8648575062379485e-5 +stomach_V2 3.219730508556434e-5 +stomach_ache_N 3.729715012475897e-6 +stomach_pump_N 3.729715012475897e-6 +stomachache_N 3.729715012475897e-6 +stomacher_N 3.729715012475897e-6 +stomatal_A 1.0773191989054437e-5 +stomatitis_N 3.729715012475897e-6 +stomatopod_N 3.729715012475897e-6 +stomatous_A 1.0773191989054437e-5 +stomp_N 3.729715012475897e-6 +stomp_V 4.5357645031069986e-5 +stomp_V2 4.8295957628346505e-5 +stomp_off_V 2.2678822515534993e-5 +stomp_on_V2 1.609865254278217e-5 +stone_A 1.0773191989054437e-5 +stone_N 7.086458523704203e-5 +stone_PN 1.865462821325971e-5 +stone_V2 3.219730508556434e-5 +stone_blind_A 1.0773191989054437e-5 +stone_cold_A 1.0773191989054437e-5 +stone_dead_A 1.0773191989054437e-5 +stone_deaf_A 1.0773191989054437e-5 +stone_fruit_N 3.729715012475897e-6 +stone_pit_N 3.729715012475897e-6 +stone_sober_A 1.0773191989054437e-5 +stonebreaker_N 3.729715012475897e-6 +stonechat_N 3.729715012475897e-6 +stonecress_N 3.729715012475897e-6 +stonecrop_N 3.729715012475897e-6 +stonecutter_N 3.729715012475897e-6 +stonefish_N 3.729715012475897e-6 +stonefly_N 3.729715012475897e-6 +stonehouse_PN 1.865462821325971e-5 +stoneless_A 1.0773191989054437e-5 +stonemason_N 1.118914503742769e-5 +stoner_N 3.729715012475897e-6 +stonewall_V2 1.609865254278217e-5 +stonewaller_N 3.729715012475897e-6 +stonewalling_N 3.729715012475897e-6 +stoneware_N 3.729715012475897e-6 +stonework_N 7.459430024951794e-6 +stonewort_N 3.729715012475897e-6 +stoning_N 3.729715012475897e-6 +stony_A 1.0773191989054437e-5 +stony_broke_A 1.0773191989054437e-5 +stood_V2V 4.675081813931744e-4 +stooge_N 7.459430024951794e-6 +stooge_V 2.2678822515534993e-5 +stool_N 7.459430024951794e-6 +stoop_N 3.729715012475897e-6 +stoop_V 2.2678822515534993e-5 +stoop_V2 1.609865254278217e-5 +stooper_N 3.729715012475897e-6 +stop_N 1.118914503742769e-4 +stop_V 1.3153717059010295e-3 +stop_V2 9.498205000241479e-4 +stop_VV 4.036133000192197e-3 +stop_around_V 2.2678822515534993e-5 +stop_back_V 2.2678822515534993e-5 +stop_behind_V 2.2678822515534993e-5 +stop_by_V2 1.609865254278217e-5 +stop_in_V 2.2678822515534993e-5 +stop_off_V 2.2678822515534993e-5 +stop_out_V 2.2678822515534993e-5 +stop_over_V 2.2678822515534993e-5 +stop_up_V 2.2678822515534993e-5 +stop_up_V2 1.609865254278217e-5 +stopcock_N 3.729715012475897e-6 +stopgap_N 1.4918860049903587e-5 +stoplight_N 3.729715012475897e-6 +stopover_N 7.459430024951794e-6 +stoppable_A 1.0773191989054437e-5 +stoppage_N 2.237829007485538e-5 +stopper_N 1.8648575062379485e-5 +stoppered_A 1.0773191989054437e-5 +stopping_N 7.459430024951794e-6 +stopwatch_N 3.729715012475897e-6 +storage_N 1.3426974044913228e-4 +storax_N 3.729715012475897e-6 +store_N 8.988613180066911e-4 +store_V2 2.8977574577007903e-4 +storehouse_N 3.729715012475897e-6 +storeroom_N 7.459430024951794e-6 +storey_N 3.729715012475897e-6 +storeyed_A 1.0773191989054437e-5 +storied_A 1.0773191989054437e-5 +stork_N 3.729715012475897e-6 +storksbill_N 3.729715012475897e-6 +storm_N 1.08161735361801e-4 +storm_V 4.5357645031069986e-5 +storm_V2 3.219730508556434e-5 +storm_beaten_A 1.0773191989054437e-5 +storm_bound_A 1.0773191989054437e-5 +storm_centre_N 3.729715012475897e-6 +storm_cloud_N 3.729715012475897e-6 +storm_cone_N 3.729715012475897e-6 +storm_lantern_N 3.729715012475897e-6 +storm_off_V 2.2678822515534993e-5 +storm_out_V 2.2678822515534993e-5 +storm_signal_N 3.729715012475897e-6 +storm_tossed_A 1.0773191989054437e-5 +storm_trooper_N 3.729715012475897e-6 +stormbound_A 1.0773191989054437e-5 +storminess_N 3.729715012475897e-6 +stormproof_A 1.0773191989054437e-5 +stormy_A 3.231957596716331e-5 +stornoway_PN 1.865462821325971e-5 +story_N 4.587549465345353e-4 +storybook_N 3.729715012475897e-6 +storyline_N 3.729715012475897e-6 +storyteller_N 3.729715012475897e-6 +stotfold_PN 1.865462821325971e-5 +stotinka_N 3.729715012475897e-6 +stoup_N 3.729715012475897e-6 +stourbridge_PN 1.865462821325971e-5 +stourport_on_severn_PN 1.865462821325971e-5 +stout_A 1.0773191989054437e-5 +stout_N 3.729715012475897e-6 +stouthearted_A 1.0773191989054437e-5 +stoutheartedness_N 3.729715012475897e-6 +stoutness_N 3.729715012475897e-6 +stove_N 7.459430024951794e-6 +stovepipe_N 3.729715012475897e-6 +stovepiped_A 1.0773191989054437e-5 +stovepiping_N 3.729715012475897e-6 +stover_N 3.729715012475897e-6 +stow_V2 3.219730508556434e-5 +stow_away_V 2.2678822515534993e-5 +stowage_N 3.729715012475897e-6 +stowaway_N 7.459430024951794e-6 +stowmarket_PN 1.865462821325971e-5 +strabismus_N 3.729715012475897e-6 +strabotomy_N 3.729715012475897e-6 +straddle_N 3.729715012475897e-6 +straddle_V 2.2678822515534993e-5 +straddle_V2 3.219730508556434e-5 +strafe_N 3.729715012475897e-6 +strafe_V2 3.219730508556434e-5 +strafer_N 3.729715012475897e-6 +straggle_N 3.729715012475897e-6 +straggle_V 2.2678822515534993e-5 +straggler_N 3.729715012475897e-6 +straggly_A 1.0773191989054437e-5 +straight_A 2.1546383978108874e-4 +straight_Adv 8.6689668325329e-5 +straight_N 3.729715012475897e-6 +straightaway_N 3.729715012475897e-6 +straightedge_N 3.729715012475897e-6 +straighten_V 9.071529006213997e-5 +straighten_V2 1.609865254278217e-5 +straighten_out_V2 1.609865254278217e-5 +straighten_up_V 2.2678822515534993e-5 +straighten_up_V2 1.609865254278217e-5 +straightener_N 3.729715012475897e-6 +straightforward_A 3.231957596716331e-5 +straightness_N 3.729715012475897e-6 +straightway_Adv 8.668966832532898e-6 +strain_N 7.086458523704203e-5 +strain_V 9.071529006213997e-5 +strain_V2 1.4488787288503951e-4 +strainer_N 7.459430024951794e-6 +strait_A 1.0773191989054437e-5 +strait_N 7.459430024951794e-6 +strait_laced_A 2.1546383978108874e-5 +straiten_V2 1.609865254278217e-5 +straitjacket_N 7.459430024951794e-6 +strand_N 3.729715012475897e-6 +strand_V 4.5357645031069986e-5 +strand_V2 6.439461017112868e-5 +strange_A 1.8314426381392542e-4 +strangeness_N 7.459430024951794e-6 +stranger_N 2.6108005087331277e-5 +strangle_V2 4.8295957628346505e-5 +stranglehold_N 3.729715012475897e-6 +strangler_N 3.729715012475897e-6 +strangulation_N 3.729715012475897e-6 +stranraer_PN 1.865462821325971e-5 +strap_N 3.729715012475897e-6 +strap_V2 1.609865254278217e-4 +straphanger_N 3.729715012475897e-6 +strapless_A 1.0773191989054437e-5 +strapless_N 3.729715012475897e-6 +straplike_A 1.0773191989054437e-5 +strappado_N 3.729715012475897e-6 +strapping_A 1.0773191989054437e-5 +strapping_N 3.729715012475897e-6 +strasbourg_PN 1.865462821325971e-5 +stratagem_N 7.459430024951794e-6 +strategic_A 5.925255593979941e-4 +strategical_A 2.1546383978108874e-5 +strategics_N 3.729715012475897e-6 +strategist_N 1.3799945546160818e-4 +strategy_N 7.832401526199383e-4 +stratford_on_avon_PN 1.865462821325971e-5 +strathaven_PN 1.865462821325971e-5 +strathclyde_PN 1.865462821325971e-5 +stratification_N 3.729715012475897e-6 +stratify_V 2.2678822515534993e-5 +stratify_V2 3.219730508556434e-5 +stratigraphy_N 3.729715012475897e-6 +stratosphere_N 7.459430024951794e-6 +stratum_N 3.729715012475897e-6 +stratus_N 3.729715012475897e-6 +straw_A 1.0773191989054437e-5 +straw_N 3.729715012475897e-6 +straw_V2 1.609865254278217e-5 +straw_coloured_A 1.0773191989054437e-5 +strawberry_N 7.459430024951794e-6 +strawboard_N 3.729715012475897e-6 +strawflower_N 3.729715012475897e-6 +strawworm_N 3.729715012475897e-6 +stray_A 1.0773191989054437e-5 +stray_N 3.729715012475897e-6 +stray_V 9.071529006213997e-5 +streak_N 2.6108005087331277e-5 +streak_V 4.5357645031069986e-5 +streak_V2 1.609865254278217e-5 +streaker_N 3.729715012475897e-6 +streaky_A 1.0773191989054437e-5 +stream_N 5.2216010174662554e-5 +stream_V 1.1339411257767497e-4 +streambed_N 3.729715012475897e-6 +streamer_N 3.729715012475897e-6 +streamlet_N 3.729715012475897e-6 +streamline_V 2.7214587018641994e-4 +streamline_V2 2.575784406845147e-4 +streamliner_N 3.729715012475897e-6 +street_N 2.648097658857887e-4 +street_PN 1.865462821325971e-5 +street_girl_N 3.729715012475897e-6 +street_urchin_N 3.729715012475897e-6 +streetcar_N 3.729715012475897e-6 +streetlight_N 3.729715012475897e-6 +streetwalker_N 3.729715012475897e-6 +streetwise_A 1.0773191989054437e-5 +strength_N 3.505932111727343e-4 +strengthen_V 4.308976277951649e-4 +strengthen_V2 5.473541864545937e-4 +strengthener_N 3.729715012475897e-6 +strengthening_N 3.729715012475897e-6 +strenuous_A 4.309276795621775e-5 +strenuousness_N 3.729715012475897e-6 +streptobacillus_N 3.729715012475897e-6 +streptocarpus_N 3.729715012475897e-6 +streptococcal_A 1.0773191989054437e-5 +streptococcus_N 3.729715012475897e-6 +streptodornase_N 3.729715012475897e-6 +streptokinase_N 7.459430024951794e-6 +streptolysin_N 3.729715012475897e-6 +streptomyces_N 3.729715012475897e-6 +streptomycin_N 3.729715012475897e-6 +streptothricin_N 3.729715012475897e-6 +stress_N 8.951316029942152e-5 +stress_V2 2.4147978814173252e-4 +stress_VS 1.155201293825449e-3 +stress_mark_N 3.729715012475897e-6 +stressor_N 3.729715012475897e-6 +stretch_A 1.0773191989054437e-5 +stretch_N 7.086458523704203e-5 +stretch_V 3.855399827640949e-4 +stretch_V2 1.7708517797060386e-4 +stretch_out_V 2.2678822515534993e-5 +stretchable_A 1.0773191989054437e-5 +stretcher_N 3.729715012475897e-6 +stretcher_bearer_N 3.729715012475897e-6 +stretcher_party_N 3.729715012475897e-6 +stretching_N 3.729715012475897e-6 +stretford_PN 1.865462821325971e-5 +streusel_N 3.729715012475897e-6 +strew_V2 1.609865254278217e-5 +stria_N 3.729715012475897e-6 +striate_A 1.0773191989054437e-5 +striated_A 1.0773191989054437e-5 +stricken_A 3.231957596716331e-5 +strickle_N 3.729715012475897e-6 +strict_A 3.3396895166068756e-4 +strictness_N 3.729715012475897e-6 +stricture_N 3.729715012475897e-6 +stride_N 1.4918860049903587e-5 +stride_V 2.2678822515534993e-5 +stride_V2 1.609865254278217e-5 +strident_A 2.1546383978108874e-5 +strider_N 3.729715012475897e-6 +stridor_N 3.729715012475897e-6 +stridulate_V 2.2678822515534993e-5 +stridulation_N 3.729715012475897e-6 +strife_N 1.118914503742769e-5 +strike_1_N 4.4010637147215583e-4 +strike_2_N 3.729715012475897e-6 +strike_V 1.0659046582301448e-3 +strike_V2 4.0246631356955425e-4 +strike_back_V 2.2678822515534993e-5 +strike_down_V 2.2678822515534993e-5 +strike_down_V2 1.609865254278217e-5 +strike_leader_N 3.729715012475897e-6 +strike_off_V2 1.609865254278217e-5 +strike_on_V2 1.609865254278217e-5 +strike_out_V 4.5357645031069986e-5 +strike_out_V2 1.609865254278217e-5 +strike_pay_N 3.729715012475897e-6 +strike_up_V 2.2678822515534993e-5 +strike_up_V2 1.609865254278217e-5 +strike_upon_V2 1.609865254278217e-5 +strikebound_A 1.0773191989054437e-5 +strikebreaker_N 3.729715012475897e-6 +strikebreaking_N 3.729715012475897e-6 +strikeout_N 3.729715012475897e-6 +striker_N 1.8648575062379485e-5 +striking_A 9.695872790148993e-5 +string_N 8.578344528694562e-5 +string_V 2.2678822515534993e-5 +string_V2 3.219730508556434e-5 +string_along_V 2.2678822515534993e-5 +string_along_V2 1.609865254278217e-5 +string_out_V2 1.609865254278217e-5 +string_together_V2 1.609865254278217e-5 +string_up_V2 1.609865254278217e-5 +stringency_N 3.729715012475897e-6 +stringent_A 7.541234392338106e-5 +stringer_N 3.729715012475897e-6 +stringy_A 1.0773191989054437e-5 +stringybark_N 3.729715012475897e-6 +strip_N 9.324287531189741e-5 +strip_V 2.9482469270195494e-4 +strip_V2 2.7367709322729687e-4 +strip_lighting_N 3.729715012475897e-6 +strip_poker_N 3.729715012475897e-6 +strip_show_N 3.729715012475897e-6 +stripe_N 2.6108005087331277e-5 +striped_A 1.0773191989054437e-5 +striper_N 3.729715012475897e-6 +striping_N 3.729715012475897e-6 +stripling_N 3.729715012475897e-6 +stripper_N 3.729715012475897e-6 +striptease_N 3.729715012475897e-6 +stripy_A 1.0773191989054437e-5 +strive_V 9.071529006213997e-5 +strive_VV 5.765904285988853e-4 +striver_N 3.729715012475897e-6 +striving_N 3.729715012475897e-6 +stroboscope_N 3.729715012475897e-6 +stroke_N 4.1026865137234865e-5 +stroke_V2 4.8295957628346505e-5 +stroll_N 3.729715012475897e-6 +stroll_V 1.3607293509320997e-4 +stroller_N 3.729715012475897e-6 +stroma_N 3.729715012475897e-6 +strong_A 4.772524051151116e-3 +strong_arm_A 2.1546383978108874e-5 +strong_boned_A 1.0773191989054437e-5 +strong_minded_A 1.0773191989054437e-5 +strongbox_N 3.729715012475897e-6 +stronghold_N 1.118914503742769e-5 +strongman_N 3.729715012475897e-6 +strongroom_N 3.729715012475897e-6 +strontianite_N 3.729715012475897e-6 +strontium_N 3.729715012475897e-6 +strop_N 3.729715012475897e-6 +strop_V2 1.609865254278217e-5 +strophanthin_N 3.729715012475897e-6 +strophanthus_N 3.729715012475897e-6 +strophe_N 3.729715012475897e-6 +stroppy_A 1.0773191989054437e-5 +stroud_PN 1.865462821325971e-5 +structural_A 5.278864074636674e-4 +structuralism_N 3.729715012475897e-6 +structure_N 3.2448520608540304e-4 +structure_V2 3.3807170339842556e-4 +strudel_N 3.729715012475897e-6 +struggle_N 8.951316029942152e-5 +struggle_V 5.216129178573049e-4 +struggle_VS 1.7328019407381737e-4 +struggle_VV 2.1141649048625794e-3 +struggle_back_V 2.2678822515534993e-5 +struggler_N 3.729715012475897e-6 +strum_N 3.729715012475897e-6 +strum_V 2.2678822515534993e-5 +strum_V2 1.609865254278217e-5 +strumpet_N 3.729715012475897e-6 +strut_N 3.729715012475897e-6 +strut_V 2.2678822515534993e-5 +struthiomimus_N 3.729715012475897e-6 +strychnine_N 3.729715012475897e-6 +stuart_PN 1.865462821325971e-5 +stub_N 1.118914503742769e-5 +stub_V2 3.219730508556434e-5 +stub_out_V2 1.609865254278217e-5 +stubble_N 3.729715012475897e-6 +stubbly_A 1.0773191989054437e-5 +stubborn_A 7.541234392338106e-5 +stubbornness_N 3.729715012475897e-6 +stubby_A 2.1546383978108874e-5 +stucco_N 7.459430024951794e-6 +stucco_V2 1.609865254278217e-5 +stuck_V2 2.8977574577007903e-4 +stuck_by_V 2.2678822515534993e-5 +stuck_up_A 1.0773191989054437e-5 +stud_N 3.729715012475897e-6 +stud_V2 3.219730508556434e-5 +stud_farm_N 3.729715012475897e-6 +stud_mare_N 3.729715012475897e-6 +studbook_N 3.729715012475897e-6 +student_N 5.221601017466256e-4 +studentship_N 3.729715012475897e-6 +studio_N 2.610800508733128e-4 +studious_A 3.231957596716331e-5 +studiousness_N 7.459430024951794e-6 +studley_PN 1.865462821325971e-5 +study_N 6.042138320210953e-4 +study_V 2.7214587018641994e-4 +study_V2 9.015245423958015e-4 +stuff_N 1.08161735361801e-4 +stuff_V2 6.439461017112868e-5 +stuff_up_V2 1.609865254278217e-5 +stuffer_N 3.729715012475897e-6 +stuffiness_N 3.729715012475897e-6 +stuffing_N 3.729715012475897e-6 +stuffy_A 2.1546383978108874e-5 +stultification_N 3.729715012475897e-6 +stultify_V2 1.609865254278217e-5 +stumble_N 7.459430024951794e-6 +stumble_V 2.9482469270195494e-4 +stumble_across_V2 1.609865254278217e-5 +stumble_upon_V2 1.609865254278217e-5 +stumblebum_N 3.729715012475897e-6 +stumbler_N 3.729715012475897e-6 +stumbling_block_N 3.729715012475897e-6 +stump_N 7.459430024951794e-6 +stump_V 2.2678822515534993e-5 +stump_V2 1.609865254278217e-5 +stump_up_V2 1.609865254278217e-5 +stumper_N 3.729715012475897e-6 +stumping_N 3.729715012475897e-6 +stumpy_A 1.0773191989054437e-5 +stun_V2 1.7708517797060386e-4 +stun_V2S 8.0e-2 +stunne_V2V 4.675081813931744e-4 +stunner_N 3.729715012475897e-6 +stunning_A 1.1850511187959881e-4 +stunt_N 1.4918860049903587e-5 +stunt_V2 3.219730508556434e-5 +stupa_N 3.729715012475897e-6 +stupefaction_N 3.729715012475897e-6 +stupefy_V2 1.609865254278217e-5 +stupefying_A 1.0773191989054437e-5 +stupendous_A 1.0773191989054437e-5 +stupid_A 1.2927830386865325e-4 +stupid_N 3.729715012475897e-6 +stupidity_N 3.729715012475897e-6 +stupify_V2 1.609865254278217e-5 +stupifying_A 1.0773191989054437e-5 +stupor_N 3.729715012475897e-6 +sturdiness_N 3.729715012475897e-6 +sturdy_A 4.309276795621775e-5 +sturgeon_N 3.729715012475897e-6 +stutter_N 7.459430024951794e-6 +stutter_V 2.2678822515534993e-5 +stutter_V2 1.609865254278217e-5 +stutterer_N 3.729715012475897e-6 +stutteringly_Adv 8.668966832532898e-6 +stuttgart_PN 1.865462821325971e-5 +sty_N 3.729715012475897e-6 +stye_N 3.729715012475897e-6 +stygian_A 2.1546383978108874e-5 +style_N 2.53620620848361e-4 +style_V2 4.8295957628346505e-5 +styleless_A 1.0773191989054437e-5 +stylet_N 3.729715012475897e-6 +stylish_A 3.231957596716331e-5 +stylishness_N 3.729715012475897e-6 +stylist_N 7.459430024951794e-6 +stylistic_A 3.231957596716331e-5 +stylistically_Adv 8.668966832532898e-6 +stylite_N 3.729715012475897e-6 +stylization_N 3.729715012475897e-6 +stylize_V2 1.609865254278217e-5 +stylopodium_N 3.729715012475897e-6 +stylus_N 3.729715012475897e-6 +stymie_N 3.729715012475897e-6 +stymie_V2 1.609865254278217e-5 +stymy_V2 6.439461017112868e-5 +styptic_A 1.0773191989054437e-5 +styptic_N 3.729715012475897e-6 +styracosaur_N 3.729715012475897e-6 +styrax_N 3.729715012475897e-6 +styrene_N 3.729715012475897e-6 +styx_PN 1.865462821325971e-5 +suasion_N 3.729715012475897e-6 +suave_A 1.0773191989054437e-5 +suavity_N 3.729715012475897e-6 +sub_N 1.4918860049903587e-5 +sub_V 2.2678822515534993e-5 +sub_V2 1.609865254278217e-5 +sub_judice_A 1.0773191989054437e-5 +sub_rosa_Adv 8.668966832532898e-6 +sub_underwrite_V2 3.219730508556434e-5 +subacid_A 1.0773191989054437e-5 +subacute_A 1.0773191989054437e-5 +subaltern_N 3.729715012475897e-6 +subaqueous_A 1.0773191989054437e-5 +subarctic_A 1.0773191989054437e-5 +subartesian_A 1.0773191989054437e-5 +subatomic_A 1.0773191989054437e-5 +subbase_N 3.729715012475897e-6 +subbing_N 3.729715012475897e-6 +subclass_N 3.729715012475897e-6 +subclavian_A 1.0773191989054437e-5 +subclinical_A 1.0773191989054437e-5 +subcommittee_N 1.6037774553646355e-4 +subcompact_N 3.729715012475897e-6 +subconscious_A 1.0773191989054437e-5 +subconscious_N 7.459430024951794e-6 +subconsciousness_N 3.729715012475897e-6 +subcontinent_N 3.729715012475897e-6 +subcontract_N 3.729715012475897e-6 +subcontract_V 4.5357645031069986e-5 +subcontract_V2 3.219730508556434e-5 +subcontractor_N 2.9837720099807175e-5 +subcortical_A 1.0773191989054437e-5 +subculture_N 3.729715012475897e-6 +subcutaneous_A 1.0773191989054437e-5 +subdeacon_N 3.729715012475897e-6 +subdirectory_N 3.729715012475897e-6 +subdivide_V 2.2678822515534993e-5 +subdivide_V2 1.609865254278217e-5 +subdivider_N 3.729715012475897e-6 +subdivision_N 3.729715012475897e-6 +subdominant_N 3.729715012475897e-6 +subduable_A 1.0773191989054437e-5 +subduction_N 3.729715012475897e-6 +subdue_V2 1.1269056779947518e-4 +subduer_N 3.729715012475897e-6 +subdural_A 1.0773191989054437e-5 +subedit_V2 1.609865254278217e-5 +subeditor_N 3.729715012475897e-6 +subfamily_N 3.729715012475897e-6 +subfigure_N 3.729715012475897e-6 +subfusc_A 1.0773191989054437e-5 +subgenus_N 3.729715012475897e-6 +subgross_A 1.0773191989054437e-5 +subgroup_N 1.4918860049903587e-5 +subheading_N 3.729715012475897e-6 +subhuman_A 1.0773191989054437e-5 +subjacent_A 1.0773191989054437e-5 +subject_A 1.0773191989054437e-5 +subject_A2 6.329113924050633e-3 +subject_N 2.53620620848361e-4 +subject_V2 1.7708517797060386e-4 +subject_to_Prep 9.978546125829467e-6 +subjection_N 3.729715012475897e-6 +subjective_A 3.231957596716331e-5 +subjectivism_N 3.729715012475897e-6 +subjectivist_N 3.729715012475897e-6 +subjectivity_N 3.729715012475897e-6 +subjoin_V2 1.609865254278217e-5 +subjugate_V2 1.609865254278217e-5 +subjugation_N 3.729715012475897e-6 +subjugator_N 3.729715012475897e-6 +subjunctive_A 1.0773191989054437e-5 +subjunctive_N 3.729715012475897e-6 +subkingdom_N 3.729715012475897e-6 +sublease_N 3.729715012475897e-6 +sublease_V 2.2678822515534993e-5 +sublease_V2 1.609865254278217e-5 +sublet_V 2.2678822515534993e-5 +sublet_V2 3.219730508556434e-5 +sublieutenant_N 3.729715012475897e-6 +sublimate_A 1.0773191989054437e-5 +sublimate_N 3.729715012475897e-6 +sublimate_V2 1.609865254278217e-5 +sublimation_N 3.729715012475897e-6 +sublime_A 3.231957596716331e-5 +sublime_N 3.729715012475897e-6 +sublimed_A 1.0773191989054437e-5 +subliminal_A 2.1546383978108874e-5 +sublimity_N 3.729715012475897e-6 +sublingual_A 1.0773191989054437e-5 +subliterary_A 1.0773191989054437e-5 +sublittoral_A 1.0773191989054437e-5 +sublunar_A 1.0773191989054437e-5 +subluxation_N 3.729715012475897e-6 +submarine_A 3.231957596716331e-5 +submarine_N 1.4918860049903587e-5 +submariner_N 3.729715012475897e-6 +submediant_N 3.729715012475897e-6 +submerge_V 2.2678822515534993e-5 +submerge_V2 1.609865254278217e-5 +submergence_N 3.729715012475897e-6 +submersible_A 1.0773191989054437e-5 +submersible_N 3.729715012475897e-6 +submersion_N 3.729715012475897e-6 +submission_N 1.118914503742769e-5 +submissive_A 1.0773191989054437e-5 +submissiveness_N 3.729715012475897e-6 +submit_V 3.401823377330249e-4 +submit_V2 6.439461017112868e-4 +submitter_N 3.729715012475897e-6 +submucosa_N 3.729715012475897e-6 +subnormal_A 1.0773191989054437e-5 +subnormal_N 3.729715012475897e-6 +subnormality_N 3.729715012475897e-6 +suboceanic_A 1.0773191989054437e-5 +suborbital_A 1.0773191989054437e-5 +suborder_N 3.729715012475897e-6 +subordinate_A 7.541234392338106e-5 +subordinate_N 2.6108005087331277e-5 +subordinate_V2 1.2234975932514448e-3 +subordinateness_N 3.729715012475897e-6 +subordination_N 3.729715012475897e-6 +subordinative_A 1.0773191989054437e-5 +suborn_V2 1.609865254278217e-5 +subornation_N 3.729715012475897e-6 +subpart_N 3.729715012475897e-6 +subphylum_N 3.729715012475897e-6 +subpoena_N 2.6108005087331277e-5 +subpoena_V2 6.439461017112868e-5 +subpopulation_N 3.729715012475897e-6 +subrogation_N 3.729715012475897e-6 +subscribe_V 2.9482469270195494e-4 +subscribe_V2 3.219730508556434e-5 +subscriber_N 1.4918860049903588e-4 +subscript_A 1.0773191989054437e-5 +subscript_N 3.729715012475897e-6 +subscription_N 5.2216010174662554e-5 +subsection_N 3.729715012475897e-6 +subsequent_A 4.7402044751839524e-4 +subserve_V2 1.609865254278217e-5 +subservience_N 3.729715012475897e-6 +subservient_A 1.0773191989054437e-5 +subset_N 3.729715012475897e-6 +subshrub_N 3.729715012475897e-6 +subside_V 6.803646754660499e-5 +subsidence_N 1.118914503742769e-5 +subsidiary_A 5.3865959945272184e-5 +subsidiary_N 8.354561627946009e-4 +subsidization_N 7.459430024951794e-6 +subsidize_V2 4.668609237406829e-4 +subsidizer_N 3.729715012475897e-6 +subsidy_N 1.9767489566122252e-4 +subsist_V 2.2678822515534993e-5 +subsistence_N 7.459430024951794e-6 +subsoil_N 3.729715012475897e-6 +subsonic_A 1.0773191989054437e-5 +subspace_N 3.729715012475897e-6 +subspecies_N 3.729715012475897e-6 +substance_N 7.832401526199384e-5 +substandard_A 2.1546383978108874e-5 +substantial_A 1.6913911422815466e-3 +substantiality_N 3.729715012475897e-6 +substantiate_V2 3.219730508556434e-5 +substantiation_N 3.729715012475897e-6 +substantival_A 1.0773191989054437e-5 +substantive_A 6.463915193432663e-5 +substantive_N 3.729715012475897e-6 +substation_N 7.459430024951794e-6 +substitutable_A 1.0773191989054437e-5 +substitute_N 5.967544019961435e-5 +substitute_V 6.803646754660499e-5 +substitute_V2 1.7708517797060386e-4 +substitution_N 7.459430024951794e-6 +substrate_N 3.729715012475897e-6 +substratum_N 3.729715012475897e-6 +substring_N 3.729715012475897e-6 +substructure_N 3.729715012475897e-6 +subsume_V2 3.219730508556434e-5 +subsumption_N 3.729715012475897e-6 +subsurface_A 1.0773191989054437e-5 +subsystem_N 3.729715012475897e-6 +subtend_V2 1.609865254278217e-5 +subterfuge_N 7.459430024951794e-6 +subterminal_A 1.0773191989054437e-5 +subterranean_A 2.1546383978108874e-5 +subthalamus_N 3.729715012475897e-6 +subtilin_N 3.729715012475897e-6 +subtitle_N 7.459430024951794e-6 +subtitle_V3 4.761904761904762e-3 +subtle_A 7.541234392338106e-5 +subtlety_N 7.459430024951794e-6 +subtly_Adv 8.668966832532898e-6 +subtonic_N 3.729715012475897e-6 +subtopia_N 3.729715012475897e-6 +subtotal_N 3.729715012475897e-6 +subtract_V2 1.1269056779947518e-4 +subtracter_N 3.729715012475897e-6 +subtraction_N 7.459430024951794e-6 +subtractive_A 1.0773191989054437e-5 +subtrahend_N 3.729715012475897e-6 +subtreasury_N 3.729715012475897e-6 +subtropical_A 1.0773191989054437e-5 +subtropics_N 3.729715012475897e-6 +suburb_N 4.848629516218666e-5 +suburban_A 2.1546383978108874e-4 +suburbanite_N 3.729715012475897e-6 +suburbanized_A 1.0773191989054437e-5 +suburbia_N 7.459430024951794e-6 +subvention_N 3.729715012475897e-6 +subversion_N 3.729715012475897e-6 +subversive_A 1.0773191989054437e-5 +subversive_N 7.459430024951794e-6 +subvert_V2 8.049326271391085e-5 +subvocalizer_N 3.729715012475897e-6 +subway_N 3.356743511228307e-5 +subwoofer_N 3.729715012475897e-6 +succedaneum_N 3.729715012475897e-6 +succeed_V 1.1566199482922848e-3 +succeed_V2 1.7708517797060386e-3 +success_N 3.505932111727343e-4 +successful_A 9.91133662993008e-4 +succession_N 3.729715012475897e-5 +successive_A 5.3865959945272184e-5 +successor_N 1.5664803052398767e-4 +succinct_A 1.0773191989054437e-5 +succinctness_N 3.729715012475897e-6 +succinic_A 1.0773191989054437e-5 +succinylcholine_N 3.729715012475897e-6 +succorer_N 3.729715012475897e-6 +succotash_N 3.729715012475897e-6 +succour_N 3.729715012475897e-6 +succour_V2 1.609865254278217e-5 +succubus_N 3.729715012475897e-6 +succulence_N 3.729715012475897e-6 +succulent_A 1.0773191989054437e-5 +succulent_N 3.729715012475897e-6 +succumb_V 6.803646754660499e-5 +succussion_N 3.729715012475897e-6 +such_Adv 8.668966832532898e-6 +such_Predet 0.2866666666666667 +such_as_Prep 4.390560295364965e-4 +suchlike_A 1.0773191989054437e-5 +suchow_PN 1.865462821325971e-5 +suck_N 3.729715012475897e-6 +suck_V 4.5357645031069986e-5 +suck_V2 1.609865254278217e-5 +suck_in_V2 1.609865254278217e-5 +suck_into_V2 1.609865254278217e-5 +suck_up_V 2.2678822515534993e-5 +suck_up_to_V2 1.609865254278217e-5 +sucker_N 2.237829007485538e-5 +sucking_N 3.729715012475897e-6 +sucking_pig_N 3.729715012475897e-6 +suckle_V2 1.609865254278217e-5 +suckling_N 3.729715012475897e-6 +sucralfate_N 3.729715012475897e-6 +sucre_N 3.729715012475897e-6 +sucrose_N 3.729715012475897e-6 +suction_N 3.729715012475897e-6 +suctorial_A 1.0773191989054437e-5 +sudan_PN 1.865462821325971e-5 +sudanese_A 1.0773191989054437e-5 +sudanese_N 3.729715012475897e-6 +sudatorium_N 3.729715012475897e-6 +sudbury_PN 1.865462821325971e-5 +sudden_A 8.510821671353005e-4 +sudden_N 3.729715012475897e-6 +suddenness_N 3.729715012475897e-6 +sudoku_N 3.729715012475897e-6 +sudorific_N 3.729715012475897e-6 +sudra_N 3.729715012475897e-6 +suds_N 3.729715012475897e-6 +sue_PN 1.865462821325971e-5 +sue_V 5.896493854039099e-4 +sue_V2 3.541703559412077e-4 +sue_V2V 4.675081813931744e-4 +suede_N 3.729715012475897e-6 +suer_N 3.729715012475897e-6 +suet_N 3.729715012475897e-6 +suety_A 1.0773191989054437e-5 +suffer_V 1.4287658184787045e-3 +suffer_V2 6.117487966257224e-4 +sufferable_A 1.0773191989054437e-5 +sufferance_N 3.729715012475897e-6 +sufferer_N 3.729715012475897e-6 +suffering_N 2.9837720099807175e-5 +suffice_V 6.803646754660499e-5 +suffice_V2 1.609865254278217e-5 +suffice_V2V 4.675081813931744e-4 +sufficiency_N 1.118914503742769e-5 +sufficient_A 4.95566831496504e-4 +suffix_N 3.729715012475897e-6 +suffixation_N 3.729715012475897e-6 +suffocate_V 2.2678822515534993e-5 +suffocate_V2 1.609865254278217e-5 +suffocation_N 3.729715012475897e-6 +suffolk_PN 1.865462821325971e-5 +suffragan_N 3.729715012475897e-6 +suffrage_N 3.729715012475897e-6 +suffragette_N 3.729715012475897e-6 +suffragism_N 3.729715012475897e-6 +suffragist_N 3.729715012475897e-6 +suffrutescent_A 1.0773191989054437e-5 +suffuse_V2 1.609865254278217e-5 +suffusion_N 3.729715012475897e-6 +suffusive_A 1.0773191989054437e-5 +sugar_N 1.9767489566122252e-4 +sugar_V2 4.8295957628346505e-5 +sugar_beet_N 3.729715012475897e-6 +sugar_candy_N 3.729715012475897e-6 +sugar_cane_N 3.729715012475897e-6 +sugar_coated_A 1.0773191989054437e-5 +sugar_daddy_N 3.729715012475897e-6 +sugar_loaf_N 3.729715012475897e-6 +sugar_refinery_N 3.729715012475897e-6 +sugarberry_N 3.729715012475897e-6 +sugarcane_N 3.729715012475897e-6 +sugariness_N 3.729715012475897e-6 +sugarless_A 1.0773191989054437e-5 +sugarloaf_N 3.729715012475897e-6 +sugarlump_N 3.729715012475897e-6 +sugarplum_N 3.729715012475897e-6 +sugary_A 2.1546383978108874e-5 +suggest_V 5.896493854039099e-4 +suggest_V2 5.151568813690294e-4 +suggest_VS 8.201929186160688e-3 +suggester_N 3.729715012475897e-6 +suggestibility_N 3.729715012475897e-6 +suggestible_A 1.0773191989054437e-5 +suggestion_N 1.08161735361801e-4 +suggestive_A 1.0773191989054437e-5 +suicidal_A 2.1546383978108874e-5 +suicide_N 1.4918860049903587e-5 +suit_N 8.951316029942152e-4 +suit_V 6.803646754660499e-5 +suit_V2 1.1269056779947518e-4 +suit_up_V 2.2678822515534993e-5 +suitability_N 3.729715012475897e-6 +suitable_A 8.61855359124355e-5 +suitableness_N 3.729715012475897e-6 +suitcase_N 3.729715012475897e-6 +suite_N 4.1026865137234865e-5 +suiting_N 3.729715012475897e-6 +suitor_N 1.118914503742769e-4 +sukiyaki_N 3.729715012475897e-6 +suksdorfia_N 3.729715012475897e-6 +sulcate_A 1.0773191989054437e-5 +sulcus_N 3.729715012475897e-6 +sulfacetamide_N 3.729715012475897e-6 +sulfadiazine_N 3.729715012475897e-6 +sulfamethazine_N 3.729715012475897e-6 +sulfamethoxazole_N 3.729715012475897e-6 +sulfanilamide_N 3.729715012475897e-6 +sulfapyridine_N 3.729715012475897e-6 +sulfate_N 3.729715012475897e-6 +sulfide_N 3.729715012475897e-6 +sulfisoxazole_N 3.729715012475897e-6 +sulfonate_N 3.729715012475897e-6 +sulfonylurea_N 3.729715012475897e-6 +sulfur_N 3.729715012475897e-6 +sulfurous_A 1.0773191989054437e-5 +sulindac_N 3.729715012475897e-6 +sulk_N 3.729715012475897e-6 +sulk_V 2.2678822515534993e-5 +sulkiness_N 3.729715012475897e-6 +sulky_A 1.0773191989054437e-5 +sulky_N 3.729715012475897e-6 +sullen_A 1.0773191989054437e-5 +sullenness_N 3.729715012475897e-6 +sully_V2 1.609865254278217e-5 +sulpha_N 3.729715012475897e-6 +sulphate_N 3.729715012475897e-6 +sulphide_N 3.729715012475897e-6 +sulphur_N 3.729715012475897e-6 +sulphuretted_A 1.0773191989054437e-5 +sulphuric_A 1.0773191989054437e-5 +sulphurous_A 1.0773191989054437e-5 +sultan_N 7.459430024951794e-6 +sultana_N 3.729715012475897e-6 +sultanate_N 3.729715012475897e-6 +sultriness_N 3.729715012475897e-6 +sultry_A 1.0773191989054437e-5 +sum_N 9.324287531189741e-5 +sum_V 1.5875175760874494e-4 +sum_V2 1.609865254278217e-5 +sum_up_V2 1.609865254278217e-5 +sumac_N 3.729715012475897e-6 +sumach_N 3.729715012475897e-6 +sumatra_PN 1.865462821325971e-5 +sumatran_A 1.0773191989054437e-5 +sumatran_N 3.729715012475897e-6 +summarization_N 3.729715012475897e-6 +summarize_V2 9.659191525669301e-5 +summary_A 4.309276795621775e-5 +summary_N 3.356743511228307e-5 +summation_N 3.729715012475897e-6 +summational_A 1.0773191989054437e-5 +summer_N 4.587549465345353e-4 +summer_V 2.2678822515534993e-5 +summercaters_N 3.729715012475897e-6 +summerhouse_N 3.729715012475897e-6 +summertime_N 3.729715012475897e-6 +summery_A 1.0773191989054437e-5 +summing_up_N 3.729715012475897e-6 +summit_N 8.205373027446973e-5 +summon_V2 1.7708517797060386e-4 +summon_up_V2 1.609865254278217e-5 +summons_N 7.459430024951794e-6 +summons_V2 1.609865254278217e-5 +sumo_N 3.729715012475897e-6 +sump_N 3.729715012475897e-6 +sumpsimus_N 3.729715012475897e-6 +sumpter_N 3.729715012475897e-6 +sumptuary_A 1.0773191989054437e-5 +sumptuous_A 1.0773191989054437e-5 +sumptuousness_N 3.729715012475897e-6 +sun_N 4.475658014971076e-5 +sun_PN 1.865462821325971e-5 +sun_V2 1.609865254278217e-5 +sun_drenched_A 2.1546383978108874e-5 +sun_dried_A 1.0773191989054437e-5 +sun_god_N 3.729715012475897e-6 +sun_helmet_N 3.729715012475897e-6 +sun_lounge_N 3.729715012475897e-6 +sun_parlour_N 3.729715012475897e-6 +sun_porch_N 3.729715012475897e-6 +sun_up_N 3.729715012475897e-6 +sun_visor_N 3.729715012475897e-6 +sun_worship_N 3.729715012475897e-6 +sunbaked_A 1.0773191989054437e-5 +sunbathe_N 3.729715012475897e-6 +sunbathe_V 2.2678822515534993e-5 +sunbather_N 3.729715012475897e-6 +sunbeam_N 3.729715012475897e-6 +sunblind_N 3.729715012475897e-6 +sunbonnet_N 3.729715012475897e-6 +sunburn_N 7.459430024951794e-6 +sunburned_A 1.0773191989054437e-5 +sunburnt_A 1.0773191989054437e-5 +sunburst_N 3.729715012475897e-6 +sundae_N 3.729715012475897e-6 +sunday_N 3.729715012475897e-6 +sunday_PN 6.342573592508301e-4 +sunder_N 3.729715012475897e-6 +sunder_V2 1.609865254278217e-5 +sunderland_PN 1.865462821325971e-5 +sundew_N 3.729715012475897e-6 +sundial_N 3.729715012475897e-6 +sundown_N 3.729715012475897e-6 +sundowner_N 3.729715012475897e-6 +sundress_N 3.729715012475897e-6 +sundries_N 3.729715012475897e-6 +sundrops_N 3.729715012475897e-6 +sundry_A 2.1546383978108874e-5 +sunfish_N 3.729715012475897e-6 +sunflower_N 7.459430024951794e-6 +sunglass_N 3.729715012475897e-6 +sunglasses_N 3.729715012475897e-6 +sunhat_N 3.729715012475897e-6 +sunlamp_N 3.729715012475897e-6 +sunless_A 1.0773191989054437e-5 +sunlight_N 1.118914503742769e-5 +sunlit_A 1.0773191989054437e-5 +sunniness_N 3.729715012475897e-6 +sunny_A 4.309276795621775e-5 +sunray_A 1.0773191989054437e-5 +sunray_N 3.729715012475897e-6 +sunrise_N 1.118914503742769e-5 +sunroof_N 3.729715012475897e-6 +sunscreen_N 3.729715012475897e-6 +sunset_A 1.0773191989054437e-5 +sunset_N 7.459430024951794e-6 +sunshade_N 3.729715012475897e-6 +sunshine_N 1.4918860049903587e-5 +sunshine_roof_N 3.729715012475897e-6 +sunspot_N 3.729715012475897e-6 +sunstone_N 3.729715012475897e-6 +sunstroke_N 3.729715012475897e-6 +sunsuit_N 3.729715012475897e-6 +suntan_N 1.118914503742769e-5 +suntrap_N 3.729715012475897e-6 +sup_N 3.729715012475897e-6 +sup_V 2.2678822515534993e-5 +sup_V2 1.609865254278217e-5 +super_A 2.1546383978108874e-5 +super_N 2.237829007485538e-5 +superabundance_N 3.729715012475897e-6 +superabundant_A 1.0773191989054437e-5 +superannuate_V2 1.609865254278217e-5 +superannuation_N 3.729715012475897e-6 +superb_A 3.231957596716331e-5 +superbug_N 3.729715012475897e-6 +supercargo_N 3.729715012475897e-6 +supercede_V2 4.8295957628346505e-5 +supercharged_A 1.0773191989054437e-5 +supercharger_N 7.459430024951794e-6 +supercilious_A 2.1546383978108874e-5 +superciliousness_N 3.729715012475897e-6 +superclass_N 3.729715012475897e-6 +supercomputer_N 9.324287531189741e-5 +superconductivity_N 3.729715012475897e-6 +supercritical_A 1.0773191989054437e-5 +superego_N 3.729715012475897e-6 +supererogation_N 3.729715012475897e-6 +superfamily_N 3.729715012475897e-6 +superfatted_A 1.0773191989054437e-5 +superfecta_N 3.729715012475897e-6 +superfecundation_N 3.729715012475897e-6 +superfetation_N 3.729715012475897e-6 +superficial_A 3.231957596716331e-5 +superficiality_N 3.729715012475897e-6 +superficies_N 3.729715012475897e-6 +superfine_A 1.0773191989054437e-5 +superfluity_N 3.729715012475897e-6 +superfluous_A 1.0773191989054437e-5 +supergiant_N 3.729715012475897e-6 +supergrass_N 3.729715012475897e-6 +superhighway_N 3.729715012475897e-6 +superhuman_A 1.0773191989054437e-5 +superimpose_V2 4.8295957628346505e-5 +superincumbent_A 1.0773191989054437e-5 +superinfection_N 3.729715012475897e-6 +superintend_V 2.2678822515534993e-5 +superintend_V2 1.609865254278217e-5 +superintendence_N 3.729715012475897e-6 +superintendent_N 2.237829007485538e-5 +superior_A 1.8314426381392542e-4 +superior_N 1.118914503742769e-5 +superiority_N 1.4918860049903587e-5 +superjacent_A 1.0773191989054437e-5 +superlative_A 1.0773191989054437e-5 +superlative_N 3.729715012475897e-6 +superman_N 3.729715012475897e-6 +supermarket_N 7.832401526199384e-5 +supermarketer_N 3.729715012475897e-6 +supermodel_N 3.729715012475897e-6 +supermom_N 3.729715012475897e-6 +supernal_A 1.0773191989054437e-5 +supernatant_A 1.0773191989054437e-5 +supernatant_N 3.729715012475897e-6 +supernatural_A 1.0773191989054437e-5 +supernatural_N 3.729715012475897e-6 +supernaturalism_N 3.729715012475897e-6 +supernaturalist_A 1.0773191989054437e-5 +supernormal_A 1.0773191989054437e-5 +supernova_N 3.729715012475897e-6 +supernumerary_N 3.729715012475897e-6 +superorder_N 3.729715012475897e-6 +superordinate_A 1.0773191989054437e-5 +superoxide_N 3.729715012475897e-6 +superphylum_N 3.729715012475897e-6 +superposition_N 3.729715012475897e-6 +supersaturated_A 1.0773191989054437e-5 +superscript_A 1.0773191989054437e-5 +superscript_N 3.729715012475897e-6 +superscription_N 3.729715012475897e-6 +supersede_V2 4.8295957628346505e-5 +supersedure_N 3.729715012475897e-6 +supersession_N 3.729715012475897e-6 +supersonic_A 3.231957596716331e-5 +superstition_N 3.729715012475897e-6 +superstitious_A 1.0773191989054437e-5 +superstrate_N 3.729715012475897e-6 +superstring_N 3.729715012475897e-6 +superstructure_N 3.729715012475897e-6 +supersymmetry_N 3.729715012475897e-6 +supertanker_N 3.729715012475897e-6 +supertax_N 3.729715012475897e-6 +supertitle_N 3.729715012475897e-6 +supertonic_N 3.729715012475897e-6 +supertwister_N 3.729715012475897e-6 +supervene_V 2.2678822515534993e-5 +supervention_N 3.729715012475897e-6 +supervise_V 4.5357645031069986e-5 +supervise_V2 2.4147978814173252e-4 +supervision_N 2.9837720099807175e-5 +supervisor_N 7.832401526199384e-5 +supervisory_A 2.1546383978108874e-5 +supination_N 3.729715012475897e-6 +supinator_N 3.729715012475897e-6 +supine_A 1.0773191989054437e-5 +supper_N 7.459430024951794e-6 +supperless_A 1.0773191989054437e-5 +supping_N 3.729715012475897e-6 +supplant_V2 1.609865254278217e-5 +supplanter_N 3.729715012475897e-6 +supplanting_N 3.729715012475897e-6 +supple_A 1.0773191989054437e-5 +supplejack_N 3.729715012475897e-6 +supplement_N 2.9837720099807175e-5 +supplement_V2 4.8295957628346505e-5 +supplementary_A 1.0773191989054437e-5 +supplementation_N 3.729715012475897e-6 +suppleness_N 3.729715012475897e-6 +suppliant_A 1.0773191989054437e-5 +suppliant_N 3.729715012475897e-6 +supplicant_N 3.729715012475897e-6 +supplicate_V 2.2678822515534993e-5 +supplicate_V2 1.609865254278217e-5 +supplication_N 3.729715012475897e-6 +supplier_N 2.1259375571112613e-4 +supply_N 5.855652569587158e-4 +supply_V2 1.1269056779947518e-3 +support_N 7.422132874827035e-4 +support_V2 2.8172641949868794e-3 +support_VV 1.9219680953296174e-4 +supportable_A 1.0773191989054437e-5 +supporter_N 1.4172917047408407e-4 +supportive_A 1.0773191989054437e-5 +suppose_V2 6.439461017112868e-5 +suppose_V2V 1.916783543712015e-2 +suppose_VS 3.4656038814763474e-4 +supposed_A 1.4005149585770768e-4 +supposition_N 3.729715012475897e-6 +suppository_N 7.459430024951794e-6 +suppress_V2 8.049326271391085e-5 +suppressant_N 3.729715012475897e-6 +suppression_N 1.8648575062379485e-5 +suppressive_A 1.0773191989054437e-5 +suppressor_N 2.6108005087331277e-5 +suppurate_V 2.2678822515534993e-5 +suppuration_N 3.729715012475897e-6 +suppurative_A 1.0773191989054437e-5 +supra_Adv 8.668966832532898e-6 +suprainfection_N 3.729715012475897e-6 +supranational_A 1.0773191989054437e-5 +supraorbital_A 1.0773191989054437e-5 +suprasegmental_A 1.0773191989054437e-5 +supremacism_N 3.729715012475897e-6 +supremacist_N 3.729715012475897e-6 +supremacy_N 7.459430024951794e-6 +suprematism_N 3.729715012475897e-6 +suprematist_N 3.729715012475897e-6 +supreme_A 3.231957596716331e-5 +supremo_N 3.729715012475897e-6 +supt_PN 1.865462821325971e-5 +sura_N 3.729715012475897e-6 +surabaja_PN 1.865462821325971e-5 +surbase_N 3.729715012475897e-6 +surcharge_N 3.729715012475897e-6 +surcharge_V2 1.609865254278217e-5 +surcoat_N 3.729715012475897e-6 +surd_N 3.729715012475897e-6 +sure_A 1.2065975027740969e-3 +sure_Adv 1.4737243615305928e-4 +sure_footed_A 1.0773191989054437e-5 +surefooted_A 1.0773191989054437e-5 +sureness_N 3.729715012475897e-6 +surety_N 3.729715012475897e-6 +surf_N 7.459430024951794e-6 +surface_A 1.0773191989054437e-5 +surface_N 5.967544019961435e-5 +surface_V 3.855399827640949e-4 +surface_V2 6.439461017112868e-5 +surface_V2V 4.675081813931744e-4 +surface_VS 2.3104025876508982e-4 +surface_to_air_A 3.231957596716331e-5 +surfacing_N 3.729715012475897e-6 +surfbird_N 3.729715012475897e-6 +surfboard_N 3.729715012475897e-6 +surfboat_N 3.729715012475897e-6 +surfeit_N 3.729715012475897e-6 +surfeit_V2 1.609865254278217e-5 +surfer_N 3.729715012475897e-6 +surficial_A 1.0773191989054437e-5 +surfing_N 3.729715012475897e-6 +surfperch_N 3.729715012475897e-6 +surfriding_N 3.729715012475897e-6 +surge_N 1.9394518064874664e-4 +surge_V 1.1792987708078198e-3 +surge_V2 4.0246631356955425e-4 +surge_on_V 2.2678822515534993e-5 +surgeon_N 2.237829007485538e-5 +surgeonfish_N 3.729715012475897e-6 +surgery_N 8.205373027446973e-5 +surgical_A 9.695872790148993e-5 +suricate_N 3.729715012475897e-6 +surliness_N 3.729715012475897e-6 +surly_A 1.0773191989054437e-5 +surmise_N 3.729715012475897e-6 +surmise_V 2.2678822515534993e-5 +surmise_V2 1.609865254278217e-5 +surmount_V2 3.219730508556434e-5 +surmountable_A 1.0773191989054437e-5 +surname_N 3.729715012475897e-6 +surpass_V2 1.2878922034225736e-4 +surpassing_A 1.0773191989054437e-5 +surplice_N 3.729715012475897e-6 +surpliced_A 1.0773191989054437e-5 +surplus_N 1.4545888548655997e-4 +surprise_N 1.4545888548655997e-4 +surprise_V2 7.405380169679798e-4 +surprise_V2V 4.675081813931744e-4 +surprisedly_Adv 8.668966832532898e-6 +surpriser_N 3.729715012475897e-6 +surprising_A 7.541234392338106e-4 +surrealism_N 3.729715012475897e-6 +surrealist_N 3.729715012475897e-6 +surrealistic_A 1.0773191989054437e-5 +surrebutter_N 3.729715012475897e-6 +surrejoinder_N 3.729715012475897e-6 +surrender_N 2.237829007485538e-5 +surrender_V 1.5875175760874494e-4 +surrender_V2 1.7708517797060386e-4 +surrenderer_N 3.729715012475897e-6 +surreptitious_A 3.231957596716331e-5 +surrey_N 3.729715012475897e-6 +surrey_PN 1.865462821325971e-5 +surrogate_A 2.1546383978108874e-5 +surrogate_N 7.459430024951794e-6 +surround_N 3.729715012475897e-6 +surround_V2 5.312555339118116e-4 +surrounding_A 2.1546383978108874e-5 +surtax_N 2.237829007485538e-5 +surtax_V2 1.609865254278217e-5 +surtout_N 3.729715012475897e-6 +surveillance_N 2.6108005087331277e-5 +survey_N 4.1772808139730044e-4 +survey_V2 5.634528389973759e-4 +surveying_N 3.729715012475897e-6 +surveyor_N 3.729715012475897e-6 +survival_N 6.713487022456614e-5 +survivalist_N 3.729715012475897e-6 +survive_V 8.164376105592598e-4 +survive_V2 3.058743983128612e-4 +survivor_N 3.729715012475897e-5 +susan_PN 1.865462821325971e-5 +susanna_PN 1.865462821325971e-5 +susceptibility_N 3.729715012475897e-6 +susceptible_A 9.695872790148993e-5 +sushi_N 3.729715012475897e-6 +susie_PN 1.865462821325971e-5 +suslik_N 3.729715012475897e-6 +suspect_A 6.463915193432663e-5 +suspect_N 2.6108005087331277e-5 +suspect_V2 1.2878922034225736e-4 +suspect_VS 1.386241552590539e-3 +suspend_V 4.308976277951649e-4 +suspend_V2 1.0303137627380588e-3 +suspender_N 3.729715012475897e-6 +suspense_N 7.459430024951794e-6 +suspension_N 2.275126157610297e-4 +suspensive_A 1.0773191989054437e-5 +suspensory_N 3.729715012475897e-6 +suspicion_N 2.6108005087331277e-5 +suspicious_A 5.3865959945272184e-5 +suss_V2 1.609865254278217e-5 +suss_out_V2 1.609865254278217e-5 +sussex_PN 1.865462821325971e-5 +sustain_V2 8.854258898530193e-4 +sustainability_N 3.729715012475897e-6 +sustainable_A 1.0773191989054437e-5 +sustenance_N 7.459430024951794e-6 +sustentacular_A 1.0773191989054437e-5 +susurration_N 3.729715012475897e-6 +sutler_N 3.729715012475897e-6 +sutra_N 3.729715012475897e-6 +suttee_N 3.729715012475897e-6 +sutton_PN 1.865462821325971e-5 +sutton_at_hone_PN 1.865462821325971e-5 +sutton_coldfield_PN 1.865462821325971e-5 +sutton_in_ashfield_PN 1.865462821325971e-5 +suture_N 7.459430024951794e-6 +suturing_N 3.729715012475897e-6 +suzanne_PN 1.865462821325971e-5 +suzerain_N 3.729715012475897e-6 +suzerainty_N 3.729715012475897e-6 +svelte_A 2.1546383978108874e-5 +sverdlovsk_PN 1.865462821325971e-5 +svoboda_N 3.729715012475897e-6 +swab_N 3.729715012475897e-6 +swab_V2 1.609865254278217e-5 +swabbing_N 3.729715012475897e-6 +swad_N 3.729715012475897e-6 +swaddle_V2 1.609865254278217e-5 +swadlincote_PN 1.865462821325971e-5 +swag_N 3.729715012475897e-6 +swagger_A 1.0773191989054437e-5 +swagger_N 7.459430024951794e-6 +swagger_V 2.2678822515534993e-5 +swaggerer_N 3.729715012475897e-6 +swagman_N 3.729715012475897e-6 +swahili_N 3.729715012475897e-6 +swain_N 3.729715012475897e-6 +swale_N 3.729715012475897e-6 +swallow_N 3.729715012475897e-6 +swallow_V 9.071529006213997e-5 +swallow_V2 1.2878922034225736e-4 +swallow_tailed_A 1.0773191989054437e-5 +swallow_up_V 2.2678822515534993e-5 +swami_N 3.729715012475897e-6 +swamp_N 3.729715012475897e-6 +swamp_V2 1.7708517797060386e-4 +swampy_A 1.0773191989054437e-5 +swan's_down_N 3.729715012475897e-6 +swan_N 7.459430024951794e-6 +swan_V 2.2678822515534993e-5 +swan_about_V 2.2678822515534993e-5 +swan_around_V 2.2678822515534993e-5 +swan_in_V 2.2678822515534993e-5 +swan_off_V 2.2678822515534993e-5 +swan_song_N 3.729715012475897e-6 +swanage_PN 1.865462821325971e-5 +swank_A 1.0773191989054437e-5 +swank_N 3.729715012475897e-6 +swank_V 2.2678822515534993e-5 +swanky_A 2.1546383978108874e-5 +swanley_PN 1.865462821325971e-5 +swansea_PN 1.865462821325971e-5 +swap_N 1.118914503742769e-4 +swap_V 9.071529006213997e-5 +swap_V2 2.7367709322729687e-4 +sward_N 3.729715012475897e-6 +swarm_N 1.118914503742769e-5 +swarm_V 2.2678822515534993e-5 +swarm_V2 1.609865254278217e-5 +swarthy_A 1.0773191989054437e-5 +swash_N 3.729715012475897e-6 +swashbuckler_N 3.729715012475897e-6 +swashbuckling_A 1.0773191989054437e-5 +swashbuckling_N 3.729715012475897e-6 +swastika_N 3.729715012475897e-6 +swat_N 7.459430024951794e-6 +swat_V2 1.609865254278217e-5 +swatch_N 3.729715012475897e-6 +swath_N 7.459430024951794e-6 +swathe_N 3.729715012475897e-6 +swathe_V2 3.219730508556434e-5 +swathing_N 3.729715012475897e-6 +swatter_N 3.729715012475897e-6 +sway_N 1.118914503742769e-5 +sway_V 1.8143058012427994e-4 +sway_V2 6.439461017112868e-5 +swazi_A 1.0773191989054437e-5 +swazi_N 3.729715012475897e-6 +swaziland_PN 1.865462821325971e-5 +swear_V 1.3607293509320997e-4 +swear_V2 8.049326271391085e-5 +swear_V2V 4.675081813931744e-4 +swear_VV 1.9219680953296174e-4 +swear_by_V2 1.609865254278217e-5 +swear_down_V 2.2678822515534993e-5 +swear_off_V 2.2678822515534993e-5 +swearer_N 3.729715012475897e-6 +swearing_N 7.459430024951794e-6 +swearword_N 3.729715012475897e-6 +sweat_N 2.237829007485538e-5 +sweat_V 1.3607293509320997e-4 +sweat_V2 1.609865254278217e-5 +sweat_out_V 2.2678822515534993e-5 +sweatband_N 3.729715012475897e-6 +sweatbox_N 3.729715012475897e-6 +sweater_N 2.9837720099807175e-5 +sweatshirt_N 3.729715012475897e-6 +sweatshop_N 3.729715012475897e-6 +sweaty_A 2.1546383978108874e-5 +swedeFem_N 3.729715012475897e-6 +swedeMasc_N 3.729715012475897e-6 +swede_A 1.0773191989054437e-5 +sweden_PN 2.7981942319889563e-4 +swedish_A 1.0773191989054437e-5 +swedish_N 3.729715012475897e-6 +sweep_N 4.475658014971076e-5 +sweep_V 6.123282079194448e-4 +sweep_V2 1.4488787288503951e-4 +sweep_through_V2 1.609865254278217e-5 +sweeper_N 1.118914503742769e-5 +sweeping_A 2.1546383978108874e-5 +sweeping_N 3.729715012475897e-6 +sweepstakes_N 3.729715012475897e-6 +sweet_A 1.508246878467621e-4 +sweet_N 7.459430024951794e-6 +sweet_scented_A 1.0773191989054437e-5 +sweetbread_N 3.729715012475897e-6 +sweetbriar_N 3.729715012475897e-6 +sweetbrier_N 3.729715012475897e-6 +sweeten_V 1.1339411257767497e-4 +sweeten_V2 2.7367709322729687e-4 +sweetening_N 3.729715012475897e-6 +sweetheart_A 1.0773191989054437e-5 +sweetheart_N 1.118914503742769e-5 +sweetie_N 3.729715012475897e-6 +sweetish_A 1.0773191989054437e-5 +sweetleaf_N 3.729715012475897e-6 +sweetmeat_N 3.729715012475897e-6 +sweetness_N 7.459430024951794e-6 +sweetsop_N 3.729715012475897e-6 +swell_A 1.0773191989054437e-5 +swell_N 1.118914503742769e-5 +swell_V 3.855399827640949e-4 +swell_V2 1.1269056779947518e-4 +swelling_N 3.729715012475897e-6 +swelter_V 2.2678822515534993e-5 +sweptback_A 1.0773191989054437e-5 +sweptwing_A 1.0773191989054437e-5 +swerve_N 3.729715012475897e-6 +swerve_V 4.5357645031069986e-5 +swerve_V2 1.609865254278217e-5 +swift_A 2.1546383978108874e-4 +swift_N 1.118914503742769e-5 +swiftlet_N 3.729715012475897e-6 +swiftness_N 3.729715012475897e-6 +swig_N 7.459430024951794e-6 +swig_V 2.2678822515534993e-5 +swig_V2 1.609865254278217e-5 +swill_N 3.729715012475897e-6 +swill_V 2.2678822515534993e-5 +swill_V2 1.609865254278217e-5 +swim_N 3.729715012475897e-6 +swim_V 1.1339411257767497e-4 +swim_V2 1.609865254278217e-5 +swimmer_N 1.118914503742769e-5 +swimmeret_N 3.729715012475897e-6 +swimming_N 1.8648575062379485e-5 +swimming_bath_N 3.729715012475897e-6 +swimming_costume_N 3.729715012475897e-6 +swimming_pool_N 3.729715012475897e-6 +swimmingly_Adv 8.668966832532898e-6 +swimsuit_N 3.729715012475897e-6 +swindle_N 3.729715012475897e-6 +swindle_V 2.2678822515534993e-5 +swindle_V2 3.219730508556434e-5 +swindler_N 3.729715012475897e-6 +swindon_PN 1.865462821325971e-5 +swine_N 7.459430024951794e-6 +swineherd_N 3.729715012475897e-6 +swing_N 2.237829007485538e-4 +swing_V 2.7214587018641994e-4 +swing_V2 3.219730508556434e-5 +swing_around_V 2.2678822515534993e-5 +swing_at_V2 1.609865254278217e-5 +swing_by_V 2.2678822515534993e-5 +swing_round_V 2.2678822515534993e-5 +swinge_V2 1.609865254278217e-5 +swingeing_A 1.0773191989054437e-5 +swinger_N 3.729715012475897e-6 +swinish_A 1.0773191989054437e-5 +swinton_PN 1.865462821325971e-5 +swipe_N 1.118914503742769e-5 +swipe_V2 1.609865254278217e-5 +swirl_N 7.459430024951794e-6 +swirl_V 2.2678822515534993e-5 +swirl_V2 1.609865254278217e-5 +swish_A 1.0773191989054437e-5 +swish_N 3.729715012475897e-6 +swish_V 2.2678822515534993e-5 +swish_V2 1.609865254278217e-5 +swishy_A 1.0773191989054437e-5 +swiss_A 6.463915193432663e-4 +swiss_N 1.118914503742769e-5 +switch_N 5.594572518713845e-5 +switch_V 8.391164330747948e-4 +switch_V2 2.4147978814173252e-4 +switch_off_V2 1.609865254278217e-5 +switch_on_V2 1.609865254278217e-5 +switchblade_N 3.729715012475897e-6 +switchboard_N 3.729715012475897e-6 +switcher_N 3.729715012475897e-6 +switcheroo_N 3.729715012475897e-6 +switchman_N 3.729715012475897e-6 +switzerland_PN 8.39458269596687e-4 +swivel_N 3.729715012475897e-6 +swivel_V 2.2678822515534993e-5 +swivel_V2 1.609865254278217e-5 +swivet_N 3.729715012475897e-6 +swiz_N 3.729715012475897e-6 +swizzle_N 3.729715012475897e-6 +swizzle_stick_N 3.729715012475897e-6 +swob_N 3.729715012475897e-6 +swob_V2 1.609865254278217e-5 +swollen_headed_A 1.0773191989054437e-5 +swoon_N 1.4918860049903587e-5 +swoon_V 2.2678822515534993e-5 +swoop_N 1.118914503742769e-5 +swoop_V 2.2678822515534993e-5 +swoop_V2 1.609865254278217e-5 +swoosh_N 3.729715012475897e-6 +swop_N 3.729715012475897e-6 +swop_V 2.2678822515534993e-5 +swop_V2 1.609865254278217e-5 +sword_N 7.459430024951794e-6 +sword_cane_N 3.729715012475897e-6 +sword_cut_N 3.729715012475897e-6 +sword_dance_N 3.729715012475897e-6 +swordfish_N 3.729715012475897e-6 +swordplay_N 3.729715012475897e-6 +swordsman_N 3.729715012475897e-6 +swordsmanship_N 3.729715012475897e-6 +swordstick_N 3.729715012475897e-6 +swordtail_N 3.729715012475897e-6 +swore_off_V 2.2678822515534993e-5 +swot_N 3.729715012475897e-6 +swot_V 2.2678822515534993e-5 +swot_V2 1.609865254278217e-5 +sybarite_N 3.729715012475897e-6 +sybaritic_A 1.0773191989054437e-5 +sycamore_N 7.459430024951794e-6 +syconium_N 3.729715012475897e-6 +sycophancy_N 3.729715012475897e-6 +sycophant_N 7.459430024951794e-6 +sycophantic_A 1.0773191989054437e-5 +sydney_PN 1.865462821325971e-5 +syllabary_N 3.729715012475897e-6 +syllabic_A 1.0773191989054437e-5 +syllabically_Adv 8.668966832532898e-6 +syllabicate_V2 1.609865254278217e-5 +syllabication_N 3.729715012475897e-6 +syllabicity_N 3.729715012475897e-6 +syllabification_N 3.729715012475897e-6 +syllabify_V2 1.609865254278217e-5 +syllabize_V2 1.609865254278217e-5 +syllable_N 7.459430024951794e-6 +syllabled_A 1.0773191989054437e-5 +syllabub_N 3.729715012475897e-6 +syllabus_N 3.729715012475897e-6 +syllepsis_N 3.729715012475897e-6 +syllogism_N 3.729715012475897e-6 +syllogist_N 3.729715012475897e-6 +syllogistic_A 1.0773191989054437e-5 +sylph_N 3.729715012475897e-6 +sylph_like_A 1.0773191989054437e-5 +sylvan_A 1.0773191989054437e-5 +sylvan_N 3.729715012475897e-6 +sylvanite_N 3.729715012475897e-6 +sylvia_PN 1.865462821325971e-5 +sylvite_N 3.729715012475897e-6 +symbiosis_N 3.729715012475897e-6 +symbiotic_A 1.0773191989054437e-5 +symbiotically_Adv 8.668966832532898e-6 +symbol_N 1.1562116538675279e-4 +symbolatry_N 3.729715012475897e-6 +symbolic_A 6.463915193432663e-5 +symbolical_A 2.1546383978108874e-5 +symbolism_N 1.118914503742769e-5 +symbolist_N 3.729715012475897e-6 +symbolization_N 3.729715012475897e-6 +symbolize_V2 4.8295957628346505e-5 +symbolizing_N 3.729715012475897e-6 +symbology_N 3.729715012475897e-6 +symmetric_A 1.0773191989054437e-5 +symmetrical_A 2.1546383978108874e-5 +symmetry_N 1.118914503742769e-5 +sympathectomy_N 3.729715012475897e-6 +sympathetic_A 1.4005149585770768e-4 +sympathetically_Adv 8.668966832532898e-6 +sympathize_V 6.803646754660499e-5 +sympathizer_N 7.459430024951794e-6 +sympathy_N 2.9837720099807175e-5 +sympatric_A 1.0773191989054437e-5 +sympatry_N 3.729715012475897e-6 +symphonic_A 1.0773191989054437e-5 +symphonist_N 3.729715012475897e-6 +symphony_N 3.729715012475897e-6 +symphysion_N 3.729715012475897e-6 +symphysis_N 3.729715012475897e-6 +symploce_N 3.729715012475897e-6 +symposiast_N 3.729715012475897e-6 +symposium_N 1.118914503742769e-5 +symptom_N 6.340515521209024e-5 +symptomatic_A 1.0773191989054437e-5 +symptomatically_Adv 8.668966832532898e-6 +symptomless_A 1.0773191989054437e-5 +synagogue_N 3.729715012475897e-6 +synapse_N 3.729715012475897e-6 +synapsid_N 3.729715012475897e-6 +synapsis_N 3.729715012475897e-6 +synaptic_A 1.0773191989054437e-5 +syncarpous_A 1.0773191989054437e-5 +syncategorem_N 3.729715012475897e-6 +syncategorematic_A 1.0773191989054437e-5 +synchrocyclotron_N 3.729715012475897e-6 +synchroflash_N 3.729715012475897e-6 +synchromesh_N 3.729715012475897e-6 +synchronic_A 1.0773191989054437e-5 +synchronism_N 3.729715012475897e-6 +synchronization_N 3.729715012475897e-6 +synchronize_V 4.5357645031069986e-5 +synchronize_V2 6.439461017112868e-5 +synchronous_A 2.1546383978108874e-5 +synchrony_N 3.729715012475897e-6 +synchroscope_N 3.729715012475897e-6 +synchrotron_N 3.729715012475897e-6 +synclinal_A 1.0773191989054437e-5 +syncopate_V2 1.609865254278217e-5 +syncopation_N 3.729715012475897e-6 +syncopator_N 3.729715012475897e-6 +syncope_N 3.729715012475897e-6 +syncretic_A 1.0773191989054437e-5 +syncretism_N 3.729715012475897e-6 +syncytium_N 3.729715012475897e-6 +syndactyly_N 3.729715012475897e-6 +syndciate_V2 3.219730508556434e-5 +syndetic_A 1.0773191989054437e-5 +syndic_N 3.729715012475897e-6 +syndicalism_N 3.729715012475897e-6 +syndicalist_N 3.729715012475897e-6 +syndicate_N 1.6783717556141534e-4 +syndicate_V2 1.4488787288503951e-4 +syndication_N 3.729715012475897e-5 +syndicator_N 3.729715012475897e-6 +syndrome_N 4.848629516218666e-5 +synecdoche_N 3.729715012475897e-6 +synecdochic_A 1.0773191989054437e-5 +synechia_N 3.729715012475897e-6 +syneresis_N 3.729715012475897e-6 +synergetic_A 1.0773191989054437e-5 +synergism_N 3.729715012475897e-6 +synergist_N 3.729715012475897e-6 +synergistic_A 1.0773191989054437e-5 +synergistically_Adv 8.668966832532898e-6 +synergy_N 3.729715012475897e-6 +synesthesia_N 3.729715012475897e-6 +synesthetic_A 1.0773191989054437e-5 +synizesis_N 3.729715012475897e-6 +synod_N 3.729715012475897e-6 +synoicous_A 1.0773191989054437e-5 +synonym_N 3.729715012475897e-6 +synonymist_N 3.729715012475897e-6 +synonymous_A 2.1546383978108874e-5 +synonymy_N 3.729715012475897e-6 +synopsis_N 3.729715012475897e-6 +synoptic_A 1.0773191989054437e-5 +synoptically_Adv 8.668966832532898e-6 +synovia_N 3.729715012475897e-6 +synovial_A 1.0773191989054437e-5 +synovitis_N 3.729715012475897e-6 +synsemantic_A 1.0773191989054437e-5 +synset_N 3.729715012475897e-6 +syntactic_A 1.0773191989054437e-5 +syntactically_Adv 8.668966832532898e-6 +syntagma_N 3.729715012475897e-6 +syntagmatic_A 1.0773191989054437e-5 +syntax_N 3.729715012475897e-6 +synthesis_N 7.459430024951794e-6 +synthesist_N 3.729715012475897e-6 +synthesize_V2 3.219730508556434e-5 +synthesizer_N 3.729715012475897e-6 +synthetic_A 1.0773191989054437e-4 +synthetic_N 1.4918860049903587e-5 +synthetically_Adv 8.668966832532898e-6 +synthetism_N 3.729715012475897e-6 +syphilis_N 3.729715012475897e-6 +syphilitic_A 1.0773191989054437e-5 +syphilitic_N 3.729715012475897e-6 +syphon_N 3.729715012475897e-6 +syphon_V 2.2678822515534993e-5 +syphon_V2 1.609865254278217e-5 +syphon_off_V2 1.609865254278217e-5 +syracuse_PN 1.865462821325971e-5 +syria_PN 9.327314106629855e-5 +syrian_A 7.541234392338106e-5 +syrian_N 3.729715012475897e-6 +syringa_N 3.729715012475897e-6 +syringe_N 7.459430024951794e-6 +syringe_V2 1.609865254278217e-5 +syrinx_N 3.729715012475897e-6 +syrup_N 7.459430024951794e-6 +syrupy_A 1.0773191989054437e-5 +system_N 2.010316391724508e-3 +systematic_A 5.3865959945272184e-5 +systematically_Adv 1.7337933665065797e-5 +systematics_N 3.729715012475897e-6 +systematism_N 3.729715012475897e-6 +systematization_N 3.729715012475897e-6 +systematize_V2 1.609865254278217e-5 +systemic_A 1.0773191989054437e-5 +systole_N 3.729715012475897e-6 +systolic_A 1.0773191989054437e-5 +syston_PN 1.865462821325971e-5 +syzygy_N 3.729715012475897e-6 +t_junction_N 3.729715012475897e-6 +t_shirt_N 3.729715012475897e-6 +t_square_N 3.729715012475897e-6 +tab_N 3.729715012475897e-5 +tabard_N 3.729715012475897e-6 +tabasco_N 3.729715012475897e-6 +tabbouleh_N 3.729715012475897e-6 +tabby_A 1.0773191989054437e-5 +tabby_N 3.729715012475897e-6 +tabby_cat_N 3.729715012475897e-6 +tabernacle_N 3.729715012475897e-6 +tabes_N 3.729715012475897e-6 +tabi_N 3.729715012475897e-6 +tablature_N 3.729715012475897e-6 +table_N 2.16323470723602e-4 +table_V2 1.609865254278217e-5 +table_d'hote_A 1.0773191989054437e-5 +table_d'hote_Adv 8.668966832532898e-6 +table_knife_N 3.729715012475897e-6 +table_lifting_N 3.729715012475897e-6 +table_linen_N 3.729715012475897e-6 +table_rapping_N 3.729715012475897e-6 +table_talk_N 3.729715012475897e-6 +table_turning_N 3.729715012475897e-6 +tableau_N 3.729715012475897e-6 +tableau_vivant_N 3.729715012475897e-6 +tablecloth_N 3.729715012475897e-6 +tablefork_N 3.729715012475897e-6 +tableland_N 3.729715012475897e-6 +tablemat_N 3.729715012475897e-6 +tablemate_N 3.729715012475897e-6 +tablespoon_N 7.459430024951794e-6 +tablespoonful_N 3.729715012475897e-6 +tablet_N 1.8648575062379485e-5 +tabletop_N 3.729715012475897e-6 +tableware_N 3.729715012475897e-6 +tabloid_N 2.6108005087331277e-5 +taboo_A 3.231957596716331e-5 +taboo_N 1.118914503742769e-5 +taboo_V2 3.219730508556434e-5 +tabor_N 3.729715012475897e-6 +taboret_N 3.729715012475897e-6 +tabular_A 1.0773191989054437e-5 +tabulate_V2 1.609865254278217e-5 +tabulation_N 3.729715012475897e-6 +tabulator_N 3.729715012475897e-6 +tabun_N 3.729715012475897e-6 +tachistoscope_N 3.729715012475897e-6 +tachogram_N 3.729715012475897e-6 +tachograph_N 3.729715012475897e-6 +tachometer_N 3.729715012475897e-6 +tachycardia_N 3.729715012475897e-6 +tachylite_N 3.729715012475897e-6 +tachymeter_N 3.729715012475897e-6 +tacit_A 7.541234392338106e-5 +taciturn_A 1.0773191989054437e-5 +taciturnity_N 3.729715012475897e-6 +tack_N 2.237829007485538e-5 +tack_V 1.8143058012427994e-4 +tack_V2 3.219730508556434e-5 +tack_down_V 2.2678822515534993e-5 +tack_on_V2 1.609865254278217e-5 +tack_onto_V3 1.5873015873015873e-3 +tacker_N 3.729715012475897e-6 +tackle_N 3.729715012475897e-6 +tackle_V 4.5357645031069986e-5 +tackle_V2 1.9318383051338602e-4 +tackler_N 3.729715012475897e-6 +tacky_A 2.1546383978108874e-5 +taco_N 3.729715012475897e-6 +taconite_N 3.729715012475897e-6 +tact_N 3.729715012475897e-6 +tactful_A 1.0773191989054437e-5 +tactic_N 8.578344528694562e-5 +tactical_A 9.695872790148993e-5 +tactician_N 3.729715012475897e-6 +tactics_N 3.729715012475897e-6 +tactile_A 1.0773191989054437e-5 +tactless_A 1.0773191989054437e-5 +tactlessness_N 3.729715012475897e-6 +tactual_A 1.0773191989054437e-5 +tad_N 3.729715012475897e-6 +tadalafil_N 3.729715012475897e-6 +tadley_PN 1.865462821325971e-5 +tadpole_N 3.729715012475897e-6 +taegu_PN 1.865462821325971e-5 +tael_N 3.729715012475897e-6 +taenia_N 3.729715012475897e-6 +taffeta_N 3.729715012475897e-6 +taffrail_N 3.729715012475897e-6 +taffy_N 3.729715012475897e-6 +tag_N 4.475658014971076e-5 +tag_V 2.2678822515534993e-5 +tag_V2 3.219730508556434e-5 +tag_V3 3.1746031746031746e-3 +tag_along_V 2.2678822515534993e-5 +tag_on_V2 1.609865254278217e-5 +tag_onto_V3 1.5873015873015873e-3 +tag_with_V2 1.609865254278217e-5 +tagalong_N 3.729715012475897e-6 +tagasaste_N 3.729715012475897e-6 +tagger_N 3.729715012475897e-6 +tagliatelle_N 3.729715012475897e-6 +taguan_N 3.729715012475897e-6 +tahini_N 3.729715012475897e-6 +tahiti_PN 1.865462821325971e-5 +tahitian_A 1.0773191989054437e-5 +tahitian_N 3.729715012475897e-6 +tail_N 1.8648575062379485e-5 +tail_V 2.2678822515534993e-5 +tail_V2 3.219730508556434e-5 +tail_away_V 2.2678822515534993e-5 +tail_back_V 2.2678822515534993e-5 +tail_coat_N 3.729715012475897e-6 +tail_end_N 3.729715012475897e-6 +tail_light_N 3.729715012475897e-6 +tail_off_V 2.2678822515534993e-5 +tailback_N 3.729715012475897e-6 +tailboard_N 3.729715012475897e-6 +tailgate_N 3.729715012475897e-6 +tailgater_N 3.729715012475897e-6 +tailless_A 1.0773191989054437e-5 +taillight_N 3.729715012475897e-6 +tailor_N 3.729715012475897e-6 +tailor_V2 1.2878922034225736e-4 +tailor_made_A 4.309276795621775e-5 +tailorbird_N 3.729715012475897e-6 +tailoring_N 3.729715012475897e-6 +tailpiece_N 3.729715012475897e-6 +tailpipe_N 3.729715012475897e-6 +tailplane_N 3.729715012475897e-6 +tailrace_N 3.729715012475897e-6 +tailspin_N 3.356743511228307e-5 +tailstock_N 3.729715012475897e-6 +tailwind_N 3.729715012475897e-6 +taint_N 1.118914503742769e-5 +taint_V 4.5357645031069986e-5 +taint_V2 9.659191525669301e-5 +taintless_A 1.0773191989054437e-5 +taipan_N 3.729715012475897e-6 +taipei_PN 2.9847405141215536e-4 +taiwan_PN 5.596388463977913e-4 +taiwanese_A 6.463915193432663e-5 +taiwanese_N 3.729715012475897e-6 +taiyuan_PN 1.865462821325971e-5 +taka_N 3.729715012475897e-6 +take_N 7.459430024951794e-6 +take_V 1.0885834807456796e-2 +take_V2 1.1752016356230983e-2 +take_V2A 3.5e-2 +take_V2V 4.675081813931743e-3 +take_VA 4.921259842519685e-3 +take_after_V2 1.609865254278217e-5 +take_apart_V2 3.219730508556434e-5 +take_aside_V2 1.609865254278217e-5 +take_away_V2 1.609865254278217e-5 +take_back_V 2.2678822515534993e-5 +take_back_V2 1.609865254278217e-5 +take_down_V2 1.609865254278217e-5 +take_for_V2 1.609865254278217e-5 +take_home_A 1.0773191989054437e-5 +take_in_V 2.2678822515534993e-5 +take_in_V2 1.609865254278217e-5 +take_it_V2 1.609865254278217e-5 +take_it_out_on_V2 1.609865254278217e-5 +take_it_upon_yourself_V 2.2678822515534993e-5 +take_off_N 3.729715012475897e-6 +take_off_V 2.2678822515534993e-5 +take_off_V2 3.219730508556434e-5 +take_on_V 2.2678822515534993e-5 +take_on_V2 6.439461017112868e-5 +take_out_V 2.2678822515534993e-5 +take_out_V2 3.219730508556434e-5 +take_over_V 6.803646754660499e-5 +take_over_V2 8.049326271391085e-5 +take_through_V2 1.609865254278217e-5 +take_to_V2 1.609865254278217e-5 +take_up_N 3.729715012475897e-6 +take_up_V 2.2678822515534993e-5 +take_up_V2 1.609865254278217e-5 +takeaway_A 1.0773191989054437e-5 +takeaway_N 3.729715012475897e-6 +takedown_N 3.729715012475897e-6 +takeoff_N 3.729715012475897e-6 +takeout_A 1.0773191989054437e-5 +takeout_N 3.729715012475897e-6 +takeover_N 1.3576162645412265e-3 +taker_N 1.4918860049903587e-5 +takin_N 3.729715012475897e-6 +tala_N 3.729715012475897e-6 +talapoin_N 3.729715012475897e-6 +talaria_N 3.729715012475897e-6 +talc_N 3.729715012475897e-6 +talcum_N 3.729715012475897e-6 +tale_N 5.2216010174662554e-5 +tale_bearer_N 3.729715012475897e-6 +tale_teller_N 3.729715012475897e-6 +talent_N 8.205373027446973e-5 +talented_A 1.0773191989054437e-5 +talentlessness_N 3.729715012475897e-6 +talipot_N 3.729715012475897e-6 +talisman_N 3.729715012475897e-6 +talismanic_A 1.0773191989054437e-5 +talk_N 8.951316029942152e-4 +talk_V 2.8802104594729443e-3 +talk_V2 2.2538113559895037e-4 +talk_around_V2 1.609865254278217e-5 +talk_at_V2 1.609865254278217e-5 +talk_back_V 2.2678822515534993e-5 +talk_back_to_V2 1.609865254278217e-5 +talk_down_V2 1.609865254278217e-5 +talk_down_to_V2 1.609865254278217e-5 +talk_into_V3 1.5873015873015873e-3 +talk_out_V2 1.609865254278217e-5 +talk_out_of_V3 1.5873015873015873e-3 +talk_over_V2 1.609865254278217e-5 +talk_round_V2 1.609865254278217e-5 +talk_through_V3 1.5873015873015873e-3 +talk_up_V2 1.609865254278217e-5 +talk_yourself_out_V 2.2678822515534993e-5 +talkative_A 1.0773191989054437e-5 +talker_N 3.729715012475897e-6 +talkie_N 3.729715012475897e-6 +talking_point_N 3.729715012475897e-6 +talking_to_N 3.729715012475897e-6 +tall_A 1.508246878467621e-4 +tall_N 3.729715012475897e-6 +tallboy_N 3.729715012475897e-6 +tallgrass_N 3.729715012475897e-6 +tallish_A 1.0773191989054437e-5 +tallness_N 3.729715012475897e-6 +tallow_N 3.729715012475897e-6 +tally_N 3.356743511228307e-5 +tally_V 2.2678822515534993e-5 +tally_V2 4.8295957628346505e-5 +tally_clerk_N 3.729715012475897e-6 +tallyman_N 3.729715012475897e-6 +talmud_N 3.729715012475897e-6 +talon_N 3.729715012475897e-6 +talus_N 3.729715012475897e-6 +tam_N 3.729715012475897e-6 +tam_o'_shanter_N 3.729715012475897e-6 +tamable_A 1.0773191989054437e-5 +tamale_N 3.729715012475897e-6 +tamandua_N 3.729715012475897e-6 +tamarau_N 3.729715012475897e-6 +tamarin_N 3.729715012475897e-6 +tamarind_N 3.729715012475897e-6 +tamarisk_N 3.729715012475897e-6 +tambala_N 3.729715012475897e-6 +tambour_N 3.729715012475897e-6 +tambourine_N 3.729715012475897e-6 +tame_A 8.61855359124355e-5 +tame_V2 4.8295957628346505e-5 +tameness_N 3.729715012475897e-6 +tamer_N 3.729715012475897e-6 +tamil_A 1.0773191989054437e-5 +tamil_N 3.729715012475897e-6 +tammany_N 3.729715012475897e-6 +tammy_N 3.729715012475897e-6 +tamp_N 3.729715012475897e-6 +tamp_V2 1.609865254278217e-5 +tamper_V 6.803646754660499e-5 +tampere_PN 1.865462821325971e-5 +tampion_N 3.729715012475897e-6 +tampon_N 3.729715012475897e-6 +tamponade_N 3.729715012475897e-6 +tamworth_PN 1.865462821325971e-5 +tan_A 1.0773191989054437e-5 +tan_N 7.459430024951794e-6 +tan_V 4.5357645031069986e-5 +tan_V2 1.609865254278217e-5 +tanager_N 3.729715012475897e-6 +tanbark_N 3.729715012475897e-6 +tandem_Adv 8.668966832532898e-6 +tandem_N 1.118914503742769e-5 +tandoor_N 3.729715012475897e-6 +tanekaha_N 3.729715012475897e-6 +tang_N 3.729715012475897e-6 +tanga_N 3.729715012475897e-6 +tangelo_N 3.729715012475897e-6 +tangency_N 3.729715012475897e-6 +tangent_N 3.729715012475897e-6 +tangential_A 1.0773191989054437e-5 +tangerine_A 1.0773191989054437e-5 +tangerine_N 3.729715012475897e-6 +tangibility_N 3.729715012475897e-6 +tangible_A 8.61855359124355e-5 +tangle_N 7.459430024951794e-6 +tangle_V 2.2678822515534993e-5 +tangle_V2 6.439461017112868e-5 +tanglebush_N 3.729715012475897e-6 +tango_N 3.729715012475897e-6 +tango_V 4.5357645031069986e-5 +tangram_N 3.729715012475897e-6 +tangshan_PN 1.865462821325971e-5 +tangy_A 1.0773191989054437e-5 +tank_N 1.193508803992287e-4 +tank_V 4.5357645031069986e-5 +tank_car_N 3.729715012475897e-6 +tanka_N 3.729715012475897e-6 +tankage_N 3.729715012475897e-6 +tankard_N 3.729715012475897e-6 +tanker_N 4.848629516218666e-5 +tanner_N 3.729715012475897e-6 +tannery_N 3.729715012475897e-6 +tannic_A 1.0773191989054437e-5 +tannin_N 3.729715012475897e-6 +tanning_N 3.729715012475897e-6 +tannish_A 1.0773191989054437e-5 +tannoy_N 3.729715012475897e-6 +tansy_N 3.729715012475897e-6 +tantalite_N 3.729715012475897e-6 +tantalize_V2 1.609865254278217e-5 +tantalizer_N 3.729715012475897e-6 +tantalizing_A 1.0773191989054437e-5 +tantalum_N 3.729715012475897e-6 +tantamount_A 4.309276795621775e-5 +tantra_N 3.729715012475897e-6 +tantrum_N 3.729715012475897e-6 +tanzania_PN 1.865462821325971e-5 +tanzanian_A 1.0773191989054437e-5 +tanzanian_N 3.729715012475897e-6 +taoiseach_N 3.729715012475897e-6 +tap_N 1.4918860049903587e-5 +tap_V 1.5875175760874494e-4 +tap_V2 2.7367709322729687e-4 +tap_dancing_N 3.729715012475897e-6 +tap_for_V3 1.5873015873015873e-3 +tap_into_V2 1.609865254278217e-5 +tap_off_with_V2 1.609865254278217e-5 +tap_out_V2 1.609865254278217e-5 +tap_up_V2 1.609865254278217e-5 +tapa_N 3.729715012475897e-6 +tape_N 1.9021546563627073e-4 +tape_V 2.9482469270195494e-4 +tape_V2 1.609865254278217e-4 +tape_measure_N 3.729715012475897e-6 +tape_recorder_N 3.729715012475897e-6 +tapenade_N 3.729715012475897e-6 +taper_N 7.459430024951794e-6 +taper_V 9.071529006213997e-5 +taper_V2 3.219730508556434e-5 +taper_off_V 2.2678822515534993e-5 +tapering_N 3.729715012475897e-6 +tapestried_A 1.0773191989054437e-5 +tapestry_N 1.118914503742769e-5 +tapeworm_N 3.729715012475897e-6 +taphephobia_N 3.729715012475897e-6 +tapioca_N 3.729715012475897e-6 +tapir_N 3.729715012475897e-6 +tapotement_N 3.729715012475897e-6 +tapper_N 3.729715012475897e-6 +tappet_N 3.729715012475897e-6 +tapping_N 3.729715012475897e-6 +taproom_N 3.729715012475897e-6 +taproot_N 3.729715012475897e-6 +taps_N 3.729715012475897e-6 +tapster_N 3.729715012475897e-6 +tar_N 1.118914503742769e-5 +tar_V2 3.219730508556434e-5 +tar_macadam_N 3.729715012475897e-6 +taradiddle_N 3.729715012475897e-6 +taranaki_PN 1.865462821325971e-5 +tarantella_N 3.729715012475897e-6 +tarantelle_N 3.729715012475897e-6 +tarantism_N 3.729715012475897e-6 +taranto_PN 1.865462821325971e-5 +tarantula_N 3.729715012475897e-6 +tarboosh_N 3.729715012475897e-6 +tardigrade_N 3.729715012475897e-6 +tardiness_N 3.729715012475897e-6 +tardive_A 1.0773191989054437e-5 +tardy_A 4.309276795621775e-5 +tare_N 3.729715012475897e-6 +target_N 4.0653893635987274e-4 +target_V2 8.693272373102371e-4 +target_V2V 4.675081813931744e-4 +tariff_N 9.697259032437332e-5 +tarmac_N 3.729715012475897e-6 +tarmac_V2 1.609865254278217e-5 +tarmacadam_N 3.729715012475897e-6 +tarn_N 3.729715012475897e-6 +tarnish_N 3.729715012475897e-6 +tarnish_V 2.2678822515534993e-5 +tarnish_V2 1.1269056779947518e-4 +taro_N 3.729715012475897e-6 +tarpan_N 3.729715012475897e-6 +tarpaulin_N 3.729715012475897e-6 +tarpon_N 3.729715012475897e-6 +tarradiddle_N 3.729715012475897e-6 +tarragon_N 3.729715012475897e-6 +tarrasa_PN 1.865462821325971e-5 +tarriance_N 3.729715012475897e-6 +tarry_A 1.0773191989054437e-5 +tarry_V 2.2678822515534993e-5 +tarsal_A 1.0773191989054437e-5 +tarsal_N 3.729715012475897e-6 +tarsier_N 3.729715012475897e-6 +tarsitis_N 3.729715012475897e-6 +tarsus_N 3.729715012475897e-6 +tart_A 2.1546383978108874e-5 +tart_N 3.729715012475897e-6 +tart_V2 1.609865254278217e-5 +tartan_N 1.118914503742769e-5 +tartar_N 3.729715012475897e-6 +tartaric_A 1.0773191989054437e-5 +tartlet_N 3.729715012475897e-6 +tartness_N 3.729715012475897e-6 +tartrate_N 3.729715012475897e-6 +tarweed_N 3.729715012475897e-6 +tarwood_N 3.729715012475897e-6 +tashkent_PN 1.865462821325971e-5 +task_N 2.53620620848361e-4 +task_V2 1.609865254278217e-5 +task_force_N 3.729715012475897e-6 +taskmaster_N 3.729715012475897e-6 +taskmistress_N 3.729715012475897e-6 +tasmania_PN 1.865462821325971e-5 +tassel_N 1.118914503742769e-5 +tasseled_A 1.0773191989054437e-5 +tasselled_A 1.0773191989054437e-5 +tasset_N 3.729715012475897e-6 +taste_N 7.086458523704203e-5 +taste_V 9.071529006213997e-5 +taste_V2 3.219730508556434e-5 +tastebud_N 3.729715012475897e-6 +tasteful_A 3.231957596716331e-5 +tastefulness_N 3.729715012475897e-6 +tasteless_A 4.309276795621775e-5 +tastelessness_N 3.729715012475897e-6 +taster_N 3.729715012475897e-6 +tasting_N 3.729715012475897e-6 +tasty_A 5.3865959945272184e-5 +tat_N 3.729715012475897e-6 +tat_V 2.2678822515534993e-5 +tat_V2 1.609865254278217e-5 +tatouay_N 3.729715012475897e-6 +tatter_N 3.729715012475897e-6 +tatterdemalion_N 3.729715012475897e-6 +tattered_A 2.1546383978108874e-5 +tatting_N 3.729715012475897e-6 +tattle_N 3.729715012475897e-6 +tattle_V 2.2678822515534993e-5 +tattle_V2 1.609865254278217e-5 +tattler_N 3.729715012475897e-6 +tattletale_N 3.729715012475897e-6 +tattoo_N 3.729715012475897e-6 +tattoo_V2 1.609865254278217e-5 +tatty_A 1.0773191989054437e-5 +tau_N 3.729715012475897e-6 +taunt_N 3.729715012475897e-6 +taunt_V2 1.609865254278217e-5 +tauntingly_Adv 8.668966832532898e-6 +taunton_PN 1.865462821325971e-5 +tauon_N 3.729715012475897e-6 +taupe_N 3.729715012475897e-6 +taurine_A 1.0773191989054437e-5 +taurine_N 3.729715012475897e-6 +taurus_PN 1.865462821325971e-5 +taut_A 2.1546383978108874e-5 +tautness_N 3.729715012475897e-6 +tautog_N 3.729715012475897e-6 +tautological_A 1.0773191989054437e-5 +tautology_N 3.729715012475897e-6 +taverham_PN 1.865462821325971e-5 +tavern_N 7.459430024951794e-6 +tavistock_PN 1.865462821325971e-5 +taw_N 3.729715012475897e-6 +tawdriness_N 3.729715012475897e-6 +tawdry_A 2.1546383978108874e-5 +tawniness_N 3.729715012475897e-6 +tawny_A 1.0773191989054437e-5 +tawse_N 3.729715012475897e-6 +tax_N 2.278855872622773e-3 +tax_V2 1.609865254278217e-4 +tax_collector_N 3.729715012475897e-6 +tax_free_A 1.6159787983581657e-4 +taxability_N 3.729715012475897e-6 +taxable_A 2.8010299171541536e-4 +taxation_N 4.848629516218666e-5 +taxer_N 3.729715012475897e-6 +taxi_N 3.356743511228307e-5 +taxi_V 2.2678822515534993e-5 +taxi_V2 1.609865254278217e-5 +taxicab_N 7.459430024951794e-6 +taxidermist_N 3.729715012475897e-6 +taxidermy_N 3.729715012475897e-6 +taxidriver_N 3.729715012475897e-6 +taximeter_N 3.729715012475897e-6 +taxis_N 3.729715012475897e-6 +taxiway_N 3.729715012475897e-6 +taxonomic_A 1.0773191989054437e-5 +taxonomically_Adv 8.668966832532898e-6 +taxonomist_N 3.729715012475897e-6 +taxonomy_N 3.729715012475897e-6 +taxpayer_N 2.16323470723602e-4 +taxpaying_A 1.0773191989054437e-5 +tayra_N 3.729715012475897e-6 +tayside_PN 1.865462821325971e-5 +tb_N 7.459430024951794e-6 +tbilisi_PN 1.865462821325971e-5 +te_deum_N 3.729715012475897e-6 +tea_N 5.2216010174662554e-5 +tea_bag_N 3.729715012475897e-6 +tea_break_N 3.729715012475897e-6 +tea_caddy_N 3.729715012475897e-6 +tea_chest_N 3.729715012475897e-6 +tea_cloth_N 3.729715012475897e-6 +tea_cosy_N 3.729715012475897e-6 +tea_garden_N 3.729715012475897e-6 +tea_kettle_N 3.729715012475897e-6 +tea_leaf_N 3.729715012475897e-6 +tea_party_N 3.729715012475897e-6 +tea_service_N 3.729715012475897e-6 +tea_set_N 3.729715012475897e-6 +tea_strainer_N 3.729715012475897e-6 +tea_table_N 3.729715012475897e-6 +tea_time_N 3.729715012475897e-6 +tea_towel_N 3.729715012475897e-6 +tea_tray_N 3.729715012475897e-6 +tea_trolley_N 3.729715012475897e-6 +tea_urn_N 3.729715012475897e-6 +tea_wagon_N 3.729715012475897e-6 +teaberry_N 3.729715012475897e-6 +teacake_N 3.729715012475897e-6 +teach_V 6.803646754660498e-4 +teach_V2 1.9318383051338602e-4 +teach_V2V 9.350163627863488e-4 +teach_in_N 3.729715012475897e-6 +teachable_A 1.0773191989054437e-5 +teacher_N 1.9021546563627073e-4 +teachership_N 3.729715012475897e-6 +teaching_N 3.729715012475897e-5 +teacup_N 3.729715012475897e-6 +teahouse_N 3.729715012475897e-6 +teak_N 3.729715012475897e-6 +teakettle_N 3.729715012475897e-6 +teal_N 3.729715012475897e-6 +team_N 6.825378472830891e-4 +team_V 2.0410940263981494e-4 +team_up_V 4.5357645031069986e-5 +teammate_N 3.729715012475897e-6 +teamster_N 3.729715012475897e-6 +teamwork_N 3.729715012475897e-6 +teapot_N 3.729715012475897e-6 +tear_N 1.118914503742769e-5 +tear_V 2.4946704767088494e-4 +tear_V2 8.049326271391085e-5 +tear_apart_V2 1.609865254278217e-5 +tear_at_V2 1.609865254278217e-5 +tear_away_V2 1.609865254278217e-5 +tear_down_V2 1.609865254278217e-5 +tear_drop_N 3.729715012475897e-6 +tear_gas_N 3.729715012475897e-6 +tear_into_V2 1.609865254278217e-5 +tear_off_V 2.2678822515534993e-5 +tear_off_V2 1.609865254278217e-5 +tear_out_V 2.2678822515534993e-5 +tear_up_V 2.2678822515534993e-5 +tear_up_V2 1.609865254278217e-5 +tearaway_A 1.0773191989054437e-5 +tearaway_N 3.729715012475897e-6 +teardrop_N 3.729715012475897e-6 +tearful_A 1.0773191989054437e-5 +tearing_N 3.729715012475897e-6 +tearjerker_N 3.729715012475897e-6 +tearless_A 1.0773191989054437e-5 +tearoom_N 3.729715012475897e-6 +teary_A 1.0773191989054437e-5 +tease_N 3.729715012475897e-6 +tease_V2 3.219730508556434e-5 +teasel_N 3.729715012475897e-6 +teaser_N 3.729715012475897e-6 +teashop_N 3.729715012475897e-6 +teasing_A 1.0773191989054437e-5 +teasing_N 3.729715012475897e-6 +teaspoon_N 7.459430024951794e-6 +teaspoonful_N 3.729715012475897e-6 +teat_N 3.729715012475897e-6 +teazel_N 3.729715012475897e-6 +teazle_N 3.729715012475897e-6 +tebibit_N 3.729715012475897e-6 +tec_N 3.729715012475897e-6 +tech_N 3.729715012475897e-6 +techie_N 3.729715012475897e-6 +technetium_N 3.729715012475897e-6 +technical_A 8.510821671353005e-4 +technical_N 3.729715012475897e-6 +technicality_N 1.118914503742769e-5 +technician_N 4.848629516218666e-5 +technicolor_N 3.729715012475897e-6 +technique_N 1.7156689057389125e-4 +techno_N 3.729715012475897e-6 +technobabble_N 3.729715012475897e-6 +technocracy_N 3.729715012475897e-6 +technocrat_N 7.459430024951794e-6 +technological_A 1.4005149585770768e-4 +technologist_N 7.459430024951794e-6 +technology_N 8.056184426947937e-4 +technophile_N 3.729715012475897e-6 +technophilia_N 3.729715012475897e-6 +technophilic_A 1.0773191989054437e-5 +technophobe_N 3.729715012475897e-6 +technophobia_N 3.729715012475897e-6 +technophobic_A 1.0773191989054437e-5 +techy_A 1.0773191989054437e-5 +tectonic_A 1.0773191989054437e-5 +tectonics_N 3.729715012475897e-6 +ted_N 3.729715012475897e-6 +ted_PN 1.865462821325971e-5 +teddy_N 3.729715012475897e-6 +teddy_PN 1.865462821325971e-5 +teddy_boy_N 3.729715012475897e-6 +tedious_A 2.1546383978108874e-5 +tediousness_N 3.729715012475897e-6 +tedium_N 3.729715012475897e-6 +tee_N 7.459430024951794e-6 +tee_V 2.2678822515534993e-5 +tee_V2 1.609865254278217e-5 +tee_off_V 2.2678822515534993e-5 +tee_off_V2 1.609865254278217e-5 +tee_off_on_V2 1.609865254278217e-5 +tee_shirt_N 3.729715012475897e-6 +tee_up_V 2.2678822515534993e-5 +teem_V 1.1339411257767497e-4 +teenage_A 3.231957596716331e-5 +teenager_N 7.459430024951794e-6 +teens_N 3.729715012475897e-6 +teeny_A 1.0773191989054437e-5 +teeoff_N 3.729715012475897e-6 +teesside_PN 1.865462821325971e-5 +teeter_V 6.803646754660499e-5 +teethe_V 2.2678822515534993e-5 +teething_N 3.729715012475897e-6 +teetotal_A 1.0773191989054437e-5 +teetotaler_N 3.729715012475897e-6 +teetotaling_N 3.729715012475897e-6 +teetotaller_N 3.729715012475897e-6 +teetotum_N 3.729715012475897e-6 +teff_N 3.729715012475897e-6 +teg_N 3.729715012475897e-6 +tegular_A 1.0773191989054437e-5 +tegument_N 3.729715012475897e-6 +teheran_PN 1.865462821325971e-5 +teignmouth_PN 1.865462821325971e-5 +teju_N 3.729715012475897e-6 +tektite_N 3.729715012475897e-6 +tel_PN 1.865462821325971e-5 +tel_aviv_PN 1.865462821325971e-5 +telecast_N 7.459430024951794e-6 +telecast_V2 1.609865254278217e-5 +telecaster_N 3.729715012475897e-6 +telecommunication_N 1.2308059541170458e-4 +telecommuting_N 3.729715012475897e-6 +teleconference_N 3.729715012475897e-6 +telefilm_N 3.729715012475897e-6 +telegnosis_N 3.729715012475897e-6 +telegnostic_A 1.0773191989054437e-5 +telegram_N 7.459430024951794e-6 +telegraph_N 7.459430024951794e-6 +telegraph_V 6.803646754660499e-5 +telegraph_V2 3.219730508556434e-5 +telegraph_line_N 3.729715012475897e-6 +telegraph_pole_N 3.729715012475897e-6 +telegraph_post_N 3.729715012475897e-6 +telegraph_wire_N 3.729715012475897e-6 +telegrapher_N 3.729715012475897e-6 +telegraphese_N 3.729715012475897e-6 +telegraphic_A 1.0773191989054437e-5 +telegraphically_Adv 8.668966832532898e-6 +telegraphist_N 3.729715012475897e-6 +telegraphy_N 3.729715012475897e-6 +telekinesis_N 3.729715012475897e-6 +telemark_N 3.729715012475897e-6 +telemarketing_N 3.729715012475897e-6 +telemeter_N 3.729715012475897e-6 +telemetered_A 1.0773191989054437e-5 +telemetry_N 3.729715012475897e-6 +telencephalon_N 3.729715012475897e-6 +teleological_A 1.0773191989054437e-5 +teleologist_N 3.729715012475897e-6 +teleology_N 3.729715012475897e-6 +telepathic_A 1.0773191989054437e-5 +telepathist_N 3.729715012475897e-6 +telepathy_N 3.729715012475897e-6 +telephone_N 4.960520966592943e-4 +telephone_V 6.803646754660499e-5 +telephone_V2 3.219730508556434e-5 +telephonic_A 1.0773191989054437e-5 +telephonist_N 3.729715012475897e-6 +telephony_N 3.729715012475897e-6 +telephoto_N 3.729715012475897e-6 +telephotograph_N 3.729715012475897e-6 +telephotography_N 3.729715012475897e-6 +teleportation_N 3.729715012475897e-6 +teleprinter_N 3.729715012475897e-6 +teleprompter_N 3.729715012475897e-6 +telerobotics_N 3.729715012475897e-6 +telescope_N 7.459430024951794e-6 +telescope_V 2.2678822515534993e-5 +telescope_V2 1.609865254278217e-5 +telescopic_A 1.0773191989054437e-5 +telescopically_Adv 8.668966832532898e-6 +telescopy_N 3.729715012475897e-6 +telethermometer_N 3.729715012475897e-6 +teletypewriter_N 3.729715012475897e-6 +televangelism_N 3.729715012475897e-6 +televangelist_N 3.729715012475897e-6 +televise_V2 1.609865254278217e-4 +television_N 6.303218371084265e-4 +telex_N 1.8648575062379485e-5 +telfer_N 3.729715012475897e-6 +telford_PN 1.865462821325971e-5 +teliospore_N 3.729715012475897e-6 +tell_V 6.667573819567288e-3 +tell_V2 7.566366695107619e-4 +tell_V2Q 1.0 +tell_V2S 0.52 +tell_V2V 1.402524544179523e-3 +tell_V3 4.761904761904762e-3 +tell_VS 9.241610350603593e-4 +tell_VV 2.8829521429944266e-4 +tell_apart_V2 1.609865254278217e-5 +tell_off_V2 1.609865254278217e-5 +tell_on_V2 1.609865254278217e-5 +teller_N 2.9837720099807175e-5 +telling_A 3.231957596716331e-5 +telling_N 3.729715012475897e-6 +telltale_N 3.729715012475897e-6 +tellurian_A 1.0773191989054437e-5 +tellurian_N 3.729715012475897e-6 +telluric_A 1.0773191989054437e-5 +telluride_N 3.729715012475897e-6 +tellurium_N 3.729715012475897e-6 +telly_N 3.729715012475897e-6 +telocentric_A 1.0773191989054437e-5 +telomerase_N 3.729715012475897e-6 +telomere_N 3.729715012475897e-6 +telophase_N 3.729715012475897e-6 +telpher_N 3.729715012475897e-6 +telpherage_N 3.729715012475897e-6 +telstar_PN 1.865462821325971e-5 +temazepam_N 3.729715012475897e-6 +temerity_N 3.729715012475897e-6 +temp_N 7.459430024951794e-6 +temper_N 3.729715012475897e-6 +temper_V 2.2678822515534993e-5 +temper_V2 4.8295957628346505e-5 +tempera_N 3.729715012475897e-6 +temperament_N 7.459430024951794e-6 +temperamental_A 1.0773191989054437e-5 +temperance_N 3.729715012475897e-6 +temperate_A 1.0773191989054437e-5 +temperateness_N 3.729715012475897e-6 +temperature_N 6.340515521209024e-5 +tempest_N 3.729715012475897e-6 +tempest_swept_A 1.0773191989054437e-5 +tempest_tossed_A 1.0773191989054437e-5 +tempestuous_A 1.0773191989054437e-5 +tempestuousness_N 3.729715012475897e-6 +template_N 3.729715012475897e-6 +temple_N 7.459430024951794e-6 +templet_N 3.729715012475897e-6 +tempo_N 7.459430024951794e-6 +temporal_A 2.1546383978108874e-5 +temporality_N 3.729715012475897e-6 +temporalty_N 3.729715012475897e-6 +temporariness_N 3.729715012475897e-6 +temporary_A 1.2065975027740969e-3 +temporize_V 2.2678822515534993e-5 +temporizer_N 3.729715012475897e-6 +tempt_V2 1.609865254278217e-5 +tempt_V2V 2.3375409069658717e-3 +temptable_A 1.0773191989054437e-5 +temptation_N 3.729715012475897e-5 +tempter_N 3.729715012475897e-6 +temptingly_Adv 8.668966832532898e-6 +temptress_N 3.729715012475897e-6 +tempura_N 3.729715012475897e-6 +tenability_N 3.729715012475897e-6 +tenable_A 1.0773191989054437e-5 +tenacious_A 4.309276795621775e-5 +tenaciousness_N 3.729715012475897e-6 +tenacity_N 3.729715012475897e-6 +tenancy_N 3.729715012475897e-6 +tenant_N 5.2216010174662554e-5 +tenant_V2 1.609865254278217e-5 +tenantry_N 3.729715012475897e-6 +tenby_PN 1.865462821325971e-5 +tench_N 3.729715012475897e-6 +tend_V 2.0410940263981494e-4 +tend_V2 3.219730508556434e-5 +tend_VV 6.5346915241206996e-3 +tendency_N 5.594572518713845e-5 +tendentious_A 2.1546383978108874e-5 +tendentiousness_N 3.729715012475897e-6 +tender_A 3.231957596716331e-5 +tender_N 2.9837720099807176e-4 +tender_V 1.5875175760874494e-4 +tender_V2 4.668609237406829e-4 +tender_V2V 4.675081813931744e-4 +tenderfoot_N 3.729715012475897e-6 +tendergreen_N 3.729715012475897e-6 +tenderhearted_A 1.0773191989054437e-5 +tenderization_N 3.729715012475897e-6 +tenderized_A 1.0773191989054437e-5 +tenderizer_N 3.729715012475897e-6 +tenderloin_N 3.729715012475897e-6 +tenderness_N 7.459430024951794e-6 +tendinitis_N 3.729715012475897e-6 +tendinous_A 1.0773191989054437e-5 +tendon_N 3.729715012475897e-6 +tendril_N 3.729715012475897e-6 +tenebrous_A 1.0773191989054437e-5 +tenement_N 3.729715012475897e-6 +tenement_house_N 3.729715012475897e-6 +tenesmus_N 3.729715012475897e-6 +tenet_N 1.4918860049903587e-5 +tenfold_A 1.0773191989054437e-5 +tenfold_Adv 6.068276782773029e-5 +tenge_N 3.729715012475897e-6 +tenner_N 3.729715012475897e-6 +tennessee_PN 1.678916539193374e-4 +tennis_N 2.9837720099807175e-5 +tennis_court_N 3.729715012475897e-6 +tennis_elbow_N 3.729715012475897e-6 +tenon_N 3.729715012475897e-6 +tenor_A 1.0773191989054437e-5 +tenor_N 1.4918860049903587e-5 +tenoroon_N 3.729715012475897e-6 +tenosynovitis_N 3.729715012475897e-6 +tenpence_N 3.729715012475897e-6 +tenpin_N 3.729715012475897e-6 +tenpins_N 3.729715012475897e-6 +tenrec_N 3.729715012475897e-6 +tense_A 5.3865959945272184e-5 +tense_N 3.729715012475897e-6 +tense_V 2.2678822515534993e-5 +tense_V2 1.609865254278217e-5 +tenseness_N 3.729715012475897e-6 +tensile_A 1.0773191989054437e-5 +tensimeter_N 3.729715012475897e-6 +tensiometer_N 3.729715012475897e-6 +tension_N 9.324287531189741e-5 +tensional_A 1.0773191989054437e-5 +tensionless_A 1.0773191989054437e-5 +tensity_N 3.729715012475897e-6 +tensor_N 3.729715012475897e-6 +tent_N 7.459430024951794e-6 +tent_peg_N 3.729715012475897e-6 +tentacle_N 3.729715012475897e-6 +tentacled_A 1.0773191989054437e-5 +tentacular_A 1.0773191989054437e-5 +tentative_A 5.17113215474613e-4 +tenter_N 3.729715012475897e-6 +tenterden_PN 1.865462821325971e-5 +tenterhook_N 3.729715012475897e-6 +tenth_N 1.8648575062379485e-5 +tentmaker_N 3.729715012475897e-6 +tentorium_N 3.729715012475897e-6 +tenuity_N 3.729715012475897e-6 +tenuous_A 2.1546383978108874e-5 +tenure_N 6.340515521209024e-5 +tenured_A 1.0773191989054437e-5 +tepal_N 3.729715012475897e-6 +tepee_N 3.729715012475897e-6 +tepid_A 3.231957596716331e-5 +tepidity_N 3.729715012475897e-6 +tepidness_N 3.729715012475897e-6 +tequila_N 3.729715012475897e-6 +terabit_N 3.729715012475897e-6 +terabyte_N 3.729715012475897e-6 +teraflop_N 3.729715012475897e-6 +terahertz_N 3.729715012475897e-6 +teratogen_N 3.729715012475897e-6 +teratogenesis_N 3.729715012475897e-6 +teratogenic_A 1.0773191989054437e-5 +teratology_N 3.729715012475897e-6 +teratoma_N 3.729715012475897e-6 +terazosin_N 3.729715012475897e-6 +terbinafine_N 3.729715012475897e-6 +terbium_N 3.729715012475897e-6 +terce_N 3.729715012475897e-6 +tercentenary_N 3.729715012475897e-6 +tercentennial_N 3.729715012475897e-6 +terebinth_N 3.729715012475897e-6 +teredo_N 3.729715012475897e-6 +terence_PN 1.865462821325971e-5 +teres_N 3.729715012475897e-6 +teresa_PN 1.865462821325971e-5 +terete_A 1.0773191989054437e-5 +tergiversate_V 2.2678822515534993e-5 +tergiversation_N 3.729715012475897e-6 +teriyaki_N 3.729715012475897e-6 +term_N 1.3203191144164675e-3 +term_V2 9.659191525669301e-5 +term_VS 5.198405822214521e-4 +termagant_N 3.729715012475897e-6 +termer_N 3.729715012475897e-6 +termi_PN 1.865462821325971e-5 +terminable_A 1.0773191989054437e-5 +terminal_A 2.1546383978108874e-5 +terminal_N 9.324287531189741e-5 +terminate_V 1.5875175760874494e-4 +terminate_V2 2.7367709322729687e-4 +termination_N 2.9837720099807175e-5 +terminative_A 1.0773191989054437e-5 +terminological_A 1.0773191989054437e-5 +terminology_N 3.729715012475897e-6 +terminus_N 3.729715012475897e-6 +termite_N 3.729715012475897e-6 +tern_N 3.729715012475897e-6 +ternary_A 1.0773191989054437e-5 +ternate_A 1.0773191989054437e-5 +terpene_N 3.729715012475897e-6 +terpsichorean_A 1.0773191989054437e-5 +terr_PN 1.865462821325971e-5 +terra_cotta_N 3.729715012475897e-6 +terra_firma_N 7.459430024951794e-6 +terra_incognita_N 7.459430024951794e-6 +terrace_N 7.459430024951794e-6 +terrace_V2 1.609865254278217e-5 +terrain_N 7.459430024951794e-6 +terrapin_N 3.729715012475897e-6 +terrarium_N 3.729715012475897e-6 +terreplein_N 3.729715012475897e-6 +terrestrial_A 2.1546383978108874e-5 +terrible_A 1.72371071824871e-4 +terrier_N 3.729715012475897e-6 +terrific_A 6.463915193432663e-5 +terrifically_Adv 8.668966832532898e-6 +terrify_V2 4.8295957628346505e-5 +terrine_N 7.459430024951794e-6 +territorial_A 1.0773191989054437e-5 +territorial_N 3.729715012475897e-6 +territoriality_N 3.729715012475897e-6 +territorialization_N 3.729715012475897e-6 +territory_N 8.578344528694562e-5 +terror_N 1.4918860049903587e-5 +terror_stricken_A 1.0773191989054437e-5 +terror_struck_A 1.0773191989054437e-5 +terrorism_N 9.324287531189741e-5 +terrorist_N 1.8648575062379485e-5 +terrorization_N 3.729715012475897e-6 +terrorize_V2 1.609865254278217e-5 +terry_N 3.729715012475897e-6 +terry_PN 1.865462821325971e-5 +terse_A 2.1546383978108874e-5 +terseness_N 3.729715012475897e-6 +tertian_A 1.0773191989054437e-5 +tertiary_A 1.0773191989054437e-5 +tertigravida_N 3.729715012475897e-6 +terylene_N 3.729715012475897e-6 +tesla_N 3.729715012475897e-6 +tess_PN 1.865462821325971e-5 +tessa_PN 1.865462821325971e-5 +tessella_N 3.729715012475897e-6 +tessellated_A 1.0773191989054437e-5 +tessellation_N 3.729715012475897e-6 +tessera_N 3.729715012475897e-6 +tesseract_N 3.729715012475897e-6 +test_N 6.788081322706132e-4 +test_V2 8.210312796818907e-4 +test_drive_N 3.729715012475897e-6 +test_drive_V2 4.8295957628346505e-5 +test_tube_N 3.729715012475897e-6 +testa_N 3.729715012475897e-6 +testacean_N 3.729715012475897e-6 +testaceous_A 1.0773191989054437e-5 +testament_N 7.459430024951794e-6 +testamentary_A 1.0773191989054437e-5 +testate_A 1.0773191989054437e-5 +testate_N 3.729715012475897e-6 +testator_N 3.729715012475897e-6 +testatrix_N 3.729715012475897e-6 +testbed_N 3.729715012475897e-6 +testcross_N 3.729715012475897e-6 +testee_N 3.729715012475897e-6 +tester_N 3.729715012475897e-6 +testicle_N 3.729715012475897e-6 +testicular_A 1.0773191989054437e-5 +testifier_N 3.729715012475897e-6 +testify_V 6.123282079194448e-4 +testify_V2 1.609865254278217e-5 +testify_VS 3.4656038814763474e-4 +testimonial_A 1.0773191989054437e-5 +testimonial_N 7.459430024951794e-6 +testimony_N 1.268103104241805e-4 +testiness_N 3.729715012475897e-6 +testing_N 3.729715012475897e-6 +testis_N 3.729715012475897e-6 +testosterone_N 3.729715012475897e-6 +testudo_N 3.729715012475897e-6 +testy_A 1.0773191989054437e-5 +tetanic_A 1.0773191989054437e-5 +tetanus_N 7.459430024951794e-6 +tetany_N 3.729715012475897e-6 +tetartanopia_N 3.729715012475897e-6 +tetchiness_N 3.729715012475897e-6 +tetchy_A 1.0773191989054437e-5 +tete_a_tete_Adv 8.668966832532898e-6 +tete_a_tete_N 3.729715012475897e-6 +teth_N 3.729715012475897e-6 +tether_N 3.729715012475897e-6 +tether_V2 4.8295957628346505e-5 +tetherball_N 3.729715012475897e-6 +tetra_N 3.729715012475897e-6 +tetracaine_N 3.729715012475897e-6 +tetrachlorethylene_N 3.729715012475897e-6 +tetrachloride_N 3.729715012475897e-6 +tetracycline_N 3.729715012475897e-6 +tetrafluoroethylene_N 3.729715012475897e-6 +tetragonal_A 1.0773191989054437e-5 +tetragram_N 3.729715012475897e-6 +tetrahalide_N 3.729715012475897e-6 +tetrahedron_N 3.729715012475897e-6 +tetrahydrocannabinol_N 3.729715012475897e-6 +tetrahymena_N 3.729715012475897e-6 +tetralogy_N 3.729715012475897e-6 +tetramerous_A 1.0773191989054437e-5 +tetrameter_N 3.729715012475897e-6 +tetrametric_A 1.0773191989054437e-5 +tetrapod_N 3.729715012475897e-6 +tetrasaccharide_N 3.729715012475897e-6 +tetraskelion_N 3.729715012475897e-6 +tetrasporangium_N 3.729715012475897e-6 +tetraspore_N 3.729715012475897e-6 +tetravalent_A 1.0773191989054437e-5 +tetri_N 3.729715012475897e-6 +tetrode_N 3.729715012475897e-6 +tetrodotoxin_N 3.729715012475897e-6 +tetrose_N 3.729715012475897e-6 +tetroxide_N 3.729715012475897e-6 +tetryl_N 3.729715012475897e-6 +teuton_N 3.729715012475897e-6 +teutonic_A 2.1546383978108874e-5 +tewkesbury_PN 1.865462821325971e-5 +texan_A 2.1546383978108874e-5 +texan_N 7.459430024951794e-6 +texas_PN 1.977390590605529e-3 +text_N 7.459430024951794e-5 +text_out_V 2.2678822515534993e-5 +textbook_N 1.4918860049903587e-5 +textile_A 5.3865959945272184e-5 +textile_N 6.340515521209024e-5 +textual_A 1.0773191989054437e-5 +texture_N 1.118914503742769e-5 +textured_A 1.0773191989054437e-5 +thai_A 3.231957596716331e-5 +thai_N 3.729715012475897e-6 +thailand_PN 1.865462821325971e-4 +thalamocortical_A 1.0773191989054437e-5 +thalamus_N 3.729715012475897e-6 +thalassemia_N 3.729715012475897e-6 +thalassic_A 1.0773191989054437e-5 +thalidomide_N 3.729715012475897e-6 +thallium_N 3.729715012475897e-6 +thalloid_A 1.0773191989054437e-5 +thallophyte_N 3.729715012475897e-6 +thallophytic_A 1.0773191989054437e-5 +thallus_N 3.729715012475897e-6 +thalweg_N 3.729715012475897e-6 +thame_PN 1.865462821325971e-5 +than_Prep 1.7931447388115553e-2 +thanatology_N 3.729715012475897e-6 +thanatophobia_N 3.729715012475897e-6 +thanatopsis_N 3.729715012475897e-6 +thane_N 3.729715012475897e-6 +thaneship_N 3.729715012475897e-6 +thank_V2 1.1269056779947518e-4 +thank_offering_N 3.729715012475897e-6 +thankful_A 2.1546383978108874e-5 +thankfulness_N 3.729715012475897e-6 +thankless_A 2.1546383978108874e-5 +thanks_Interj 7.633587786259542e-3 +thanks_to_Prep 1.3969964576161252e-4 +thanksgiving_N 3.729715012475897e-6 +that_Quant 1.0123530088876233e-2 +that_RP 0.36881407416782686 +that_Subj 0.2891566265060241 +that_of_Prep 9.978546125829467e-6 +thatch_N 3.729715012475897e-6 +thatch_V2 1.609865254278217e-5 +thatcham_PN 1.865462821325971e-5 +thatcher_N 3.729715012475897e-6 +thaumatolatry_N 3.729715012475897e-6 +thaw_N 7.459430024951794e-6 +thaw_V 2.2678822515534993e-5 +thaw_V2 1.609865254278217e-5 +theanthropism_N 3.729715012475897e-6 +theatre_N 7.459430024951794e-6 +theatregoer_N 3.729715012475897e-6 +theatrical_A 7.541234392338106e-5 +theatrical_N 7.459430024951794e-6 +thebe_N 3.729715012475897e-6 +theca_N 3.729715012475897e-6 +thecodont_N 3.729715012475897e-6 +theft_N 7.832401526199384e-5 +theism_N 3.729715012475897e-6 +theist_A 1.0773191989054437e-5 +theist_N 3.729715012475897e-6 +theistic_A 1.0773191989054437e-5 +theistical_A 1.0773191989054437e-5 +thelarche_N 3.729715012475897e-6 +thematic_A 2.1546383978108874e-5 +thematically_Adv 8.668966832532898e-6 +theme_N 1.3799945546160818e-4 +themselves_NP 6.061400347301858e-4 +then_Adv 4.2998075489363175e-3 +then_N 3.729715012475897e-6 +then_Prep 1.9957092251658934e-5 +thenal_A 1.0773191989054437e-5 +thenar_N 3.729715012475897e-6 +thence_Adv 8.668966832532898e-6 +thenceforth_Adv 8.668966832532898e-6 +thenceforward_Adv 8.668966832532898e-6 +theo_PN 1.865462821325971e-5 +theocracy_N 7.459430024951794e-6 +theocratic_A 1.0773191989054437e-5 +theodicy_N 3.729715012475897e-6 +theodolite_N 3.729715012475897e-6 +theodore_PN 1.865462821325971e-5 +theogony_N 3.729715012475897e-6 +theologian_N 1.118914503742769e-5 +theological_A 2.1546383978108874e-5 +theology_N 7.459430024951794e-6 +theophany_N 3.729715012475897e-6 +theophylline_N 3.729715012475897e-6 +theorem_N 3.729715012475897e-6 +theoretic_A 1.0773191989054437e-5 +theoretical_A 9.695872790148993e-5 +theoretician_N 3.729715012475897e-6 +theorist_N 2.237829007485538e-5 +theorization_N 3.729715012475897e-6 +theorize_V 2.2678822515534993e-5 +theorize_VS 1.7328019407381737e-4 +theory_N 1.9021546563627073e-4 +theosophical_A 1.0773191989054437e-5 +theosophism_N 3.729715012475897e-6 +theosophist_N 3.729715012475897e-6 +theosophy_N 3.729715012475897e-6 +theoterrorism_N 3.729715012475897e-6 +therapeutic_A 4.309276795621775e-5 +therapeutical_A 1.0773191989054437e-5 +therapeutics_N 3.729715012475897e-6 +therapist_N 7.459430024951794e-6 +therapsid_N 3.729715012475897e-6 +therapy_N 5.2216010174662554e-5 +there_Adv 1.5517450630233888e-3 +thereabout_Adv 8.668966832532898e-6 +thereabouts_Adv 8.668966832532898e-6 +thereafter_Adv 1.5604140298559218e-4 +thereby_Adv 1.1269656882292768e-4 +therefor_Adv 8.668966832532898e-6 +therefore_Adv 2.5140003814345404e-4 +therefrom_Adv 8.668966832532898e-6 +therein_Adv 2.6006900497598697e-5 +thereinafter_Adv 8.668966832532898e-6 +theremin_N 3.729715012475897e-6 +thereness_N 3.729715012475897e-6 +thereof_Adv 2.6006900497598697e-5 +thereon_Adv 8.668966832532898e-6 +theresa_PN 1.865462821325971e-5 +thereto_Adv 8.668966832532898e-6 +theretofore_Adv 8.668966832532898e-6 +thereunder_Adv 8.668966832532898e-6 +thereupon_Adv 8.668966832532898e-6 +therewith_Adv 8.668966832532898e-6 +therewithal_Adv 8.668966832532898e-6 +therm_N 3.729715012475897e-6 +thermal_A 4.309276795621775e-5 +thermal_N 3.729715012475897e-6 +thermalgesia_N 3.729715012475897e-6 +thermion_N 3.729715012475897e-6 +thermionic_A 1.0773191989054437e-5 +thermionics_N 3.729715012475897e-6 +thermistor_N 3.729715012475897e-6 +thermoacidophile_N 3.729715012475897e-6 +thermocautery_N 3.729715012475897e-6 +thermochemistry_N 3.729715012475897e-6 +thermocoagulation_N 3.729715012475897e-6 +thermocouple_N 3.729715012475897e-6 +thermodynamic_A 1.0773191989054437e-5 +thermodynamically_Adv 8.668966832532898e-6 +thermodynamics_N 3.729715012475897e-6 +thermoelectric_A 1.0773191989054437e-5 +thermoelectricity_N 3.729715012475897e-6 +thermogram_N 3.729715012475897e-6 +thermograph_N 3.729715012475897e-6 +thermography_N 3.729715012475897e-6 +thermogravimetry_N 3.729715012475897e-6 +thermohydrometer_N 3.729715012475897e-6 +thermohydrometric_A 1.0773191989054437e-5 +thermojunction_N 3.729715012475897e-6 +thermolabile_A 1.0773191989054437e-5 +thermometer_N 7.459430024951794e-6 +thermometric_A 1.0773191989054437e-5 +thermometry_N 3.729715012475897e-6 +thermonuclear_A 1.0773191989054437e-5 +thermopile_N 3.729715012475897e-6 +thermoplastic_A 1.0773191989054437e-5 +thermoplastic_N 3.729715012475897e-6 +thermoreceptor_N 3.729715012475897e-6 +thermos_N 3.729715012475897e-6 +thermosetting_A 1.0773191989054437e-5 +thermosphere_N 3.729715012475897e-6 +thermostat_N 3.729715012475897e-6 +thermostatic_A 1.0773191989054437e-5 +thermostatically_Adv 8.668966832532898e-6 +thermostatics_N 3.729715012475897e-6 +thermotherapy_N 3.729715012475897e-6 +thermotropism_N 3.729715012475897e-6 +theropod_N 3.729715012475897e-6 +thesaurus_N 7.459430024951794e-6 +thesis_N 7.459430024951794e-6 +thespian_A 2.1546383978108874e-5 +thespian_N 3.729715012475897e-6 +thessaloniki_PN 1.865462821325971e-5 +theta_N 3.729715012475897e-6 +thetford_PN 1.865462821325971e-5 +theurgy_N 3.729715012475897e-6 +they_Pron 0.19058998288500661 +thiabendazole_N 3.729715012475897e-6 +thiazide_N 3.729715012475897e-6 +thiazine_N 3.729715012475897e-6 +thick_A 1.508246878467621e-4 +thick_Adv 8.668966832532898e-6 +thick_N 3.729715012475897e-6 +thick_headed_A 1.0773191989054437e-5 +thick_set_A 1.0773191989054437e-5 +thick_skinned_A 1.0773191989054437e-5 +thicken_V 2.2678822515534993e-5 +thicken_V2 1.609865254278217e-5 +thickening_N 3.729715012475897e-6 +thicket_N 1.118914503742769e-5 +thickhead_N 3.729715012475897e-6 +thickness_N 1.118914503742769e-5 +thickset_A 1.0773191989054437e-5 +thickspread_A 1.0773191989054437e-5 +thief_N 6.713487022456614e-5 +thieve_V 2.2678822515534993e-5 +thieve_V2 1.609865254278217e-5 +thievery_N 3.729715012475897e-6 +thievish_A 1.0773191989054437e-5 +thievishness_N 3.729715012475897e-6 +thigh_N 7.459430024951794e-6 +thighbone_N 3.729715012475897e-6 +thill_N 3.729715012475897e-6 +thimble_N 3.729715012475897e-6 +thimbleful_N 3.729715012475897e-6 +thimbleweed_N 3.729715012475897e-6 +thimerosal_N 3.729715012475897e-6 +thin_A 5.063400234855585e-4 +thin_Adv 1.7337933665065797e-5 +thin_V 9.071529006213997e-5 +thin_V2 1.609865254278217e-5 +thin_skinned_A 1.0773191989054437e-5 +thine_A 1.0773191989054437e-5 +thing_N 1.3911836996535094e-3 +thingmabob_N 3.729715012475897e-6 +thingmajig_N 3.729715012475897e-6 +things_N 3.729715012475897e-6 +thingumabob_N 3.729715012475897e-6 +thingumajig_N 3.729715012475897e-6 +thingummy_N 3.729715012475897e-6 +think_N 1.118914503742769e-5 +think_V 2.6080645892865243e-3 +think_V2 2.4147978814173252e-4 +think_V2A 1.5e-2 +think_VS 2.5992029111072606e-2 +think_over_V2 1.609865254278217e-5 +think_tank_N 3.729715012475897e-6 +think_through_V2 1.609865254278217e-5 +think_up_V2 1.609865254278217e-5 +thinkable_A 1.0773191989054437e-5 +thinker_N 1.118914503742769e-5 +thinking_N 3.356743511228307e-5 +thinness_N 3.729715012475897e-6 +thiobacillus_N 3.729715012475897e-6 +thiobacteria_N 3.729715012475897e-6 +thiocyanate_N 3.729715012475897e-6 +thioguanine_N 3.729715012475897e-6 +thionville_PN 1.865462821325971e-5 +thiopental_N 3.729715012475897e-6 +thioridazine_N 3.729715012475897e-6 +thiotepa_N 3.729715012475897e-6 +thiothixene_N 3.729715012475897e-6 +thiouracil_N 3.729715012475897e-6 +third_rate_A 1.0773191989054437e-5 +third_rater_N 3.729715012475897e-6 +thirdhand_A 1.0773191989054437e-5 +thirdhand_Adv 8.668966832532898e-6 +thirsk_PN 1.865462821325971e-5 +thirst_N 7.459430024951794e-6 +thirst_V2 1.609865254278217e-5 +thirsty_A 2.1546383978108874e-5 +this_Quant 1.7847947122578926e-2 +thistle_N 7.459430024951794e-6 +thistledown_N 3.729715012475897e-6 +thistlelike_A 1.0773191989054437e-5 +thither_Adv 8.668966832532898e-6 +tho'_Adv 8.668966832532898e-6 +thole_N 3.729715012475897e-6 +tholepin_N 3.729715012475897e-6 +thomas_PN 1.865462821325971e-5 +thong_N 3.729715012475897e-6 +thoracocentesis_N 3.729715012475897e-6 +thoracotomy_N 3.729715012475897e-6 +thorax_N 3.729715012475897e-6 +thoriated_A 1.0773191989054437e-5 +thorite_N 3.729715012475897e-6 +thorium_N 3.729715012475897e-6 +thorn_N 3.729715012475897e-6 +thornbill_N 3.729715012475897e-6 +thornbury_PN 1.865462821325971e-5 +thorne_PN 1.865462821325971e-5 +thornless_A 1.0773191989054437e-5 +thorny_A 1.0773191989054437e-5 +thorough_A 1.0773191989054437e-4 +thoroughbred_A 5.3865959945272184e-5 +thoroughbred_N 1.4918860049903587e-5 +thoroughfare_N 1.118914503742769e-5 +thoroughgoing_A 1.0773191989054437e-5 +thoroughness_N 3.729715012475897e-6 +thortveitite_N 3.729715012475897e-6 +though_Adv 5.634828441146385e-4 +though_Prep 3.592276605298608e-4 +though_Subj 0.1285140562248996 +thought_N 8.951316029942152e-5 +thought_reader_N 3.729715012475897e-6 +thoughtful_A 4.309276795621775e-5 +thoughtfulness_N 3.729715012475897e-6 +thoughtless_A 3.231957596716331e-5 +thoughtlessness_N 3.729715012475897e-6 +thousandfold_A 1.0773191989054437e-5 +thousandfold_Adv 8.668966832532898e-6 +thraldom_N 3.729715012475897e-6 +thrall_N 1.118914503742769e-5 +thrash_N 3.729715012475897e-6 +thrash_V 9.071529006213997e-5 +thrash_V2 3.219730508556434e-5 +thrasher_N 3.729715012475897e-6 +thrashing_N 7.459430024951794e-6 +thread_N 1.4918860049903587e-5 +thread_V2 1.609865254278217e-5 +threadbare_A 1.0773191989054437e-5 +threadfin_N 3.729715012475897e-6 +threadfish_N 3.729715012475897e-6 +threadlike_A 1.0773191989054437e-5 +threat_N 3.170257760604512e-4 +threaten_V 3.401823377330249e-4 +threaten_V2 4.990582288262473e-4 +threaten_VS 2.3104025876508982e-4 +threaten_VV 3.171247357293869e-3 +threateningly_Adv 8.668966832532898e-6 +three_cornered_A 1.0773191989054437e-5 +three_d_A 1.0773191989054437e-5 +three_d_N 3.729715012475897e-6 +three_decker_N 3.729715012475897e-6 +three_dimensional_A 4.309276795621775e-5 +three_figure_A 1.0773191989054437e-5 +three_funnelled_A 1.0773191989054437e-5 +three_lane_A 1.0773191989054437e-5 +three_legged_A 1.0773191989054437e-5 +three_piece_A 1.0773191989054437e-5 +three_ply_A 1.0773191989054437e-5 +three_quarter_A 1.0773191989054437e-5 +three_quarter_N 3.729715012475897e-6 +three_score_A 1.0773191989054437e-5 +three_score_N 3.729715012475897e-6 +three_storey_A 1.0773191989054437e-5 +three_storeyed_A 1.0773191989054437e-5 +three_wheeled_A 1.0773191989054437e-5 +threefold_A 1.0773191989054437e-5 +threefold_Adv 1.7337933665065797e-5 +threepence_N 3.729715012475897e-6 +threepenny_A 1.0773191989054437e-5 +threescore_N 3.729715012475897e-6 +threesome_N 3.729715012475897e-6 +threnody_N 3.729715012475897e-6 +threonine_N 3.729715012475897e-6 +thresh_V 2.2678822515534993e-5 +thresh_V2 1.609865254278217e-5 +thresher_N 3.729715012475897e-6 +threshing_N 3.729715012475897e-6 +threshing_floor_N 3.729715012475897e-6 +threshing_machine_N 3.729715012475897e-6 +threshold_N 2.237829007485538e-5 +thrice_Adv 1.7337933665065797e-5 +thrift_N 7.57132147532607e-4 +thriftless_A 1.0773191989054437e-5 +thriftlessness_N 3.729715012475897e-6 +thriftshop_N 3.729715012475897e-6 +thrifty_A 1.0773191989054437e-5 +thrill_N 1.118914503742769e-5 +thrill_V 4.5357645031069986e-5 +thrill_V2 4.8295957628346505e-5 +thriller_N 7.459430024951794e-6 +thrillful_A 1.0773191989054437e-5 +thrips_N 3.729715012475897e-6 +thrive_V 2.7214587018641994e-4 +throat_N 1.118914503742769e-5 +throated_A 1.0773191989054437e-5 +throatwort_N 3.729715012475897e-6 +throaty_A 1.0773191989054437e-5 +throb_N 3.729715012475897e-6 +throb_V 2.2678822515534993e-5 +throbbing_N 3.729715012475897e-6 +throe_N 3.729715012475897e-6 +throes_N 3.729715012475897e-6 +thrombasthenia_N 3.729715012475897e-6 +thrombectomy_N 3.729715012475897e-6 +thrombin_N 3.729715012475897e-6 +thrombocytopenia_N 3.729715012475897e-6 +thrombocytosis_N 3.729715012475897e-6 +thromboembolism_N 3.729715012475897e-6 +thrombolysis_N 3.729715012475897e-6 +thrombolytic_N 3.729715012475897e-6 +thrombophlebitis_N 3.729715012475897e-6 +thromboplastin_N 3.729715012475897e-6 +thrombosed_A 1.0773191989054437e-5 +thrombosis_N 3.729715012475897e-6 +thrombus_N 3.729715012475897e-6 +throne_N 7.459430024951794e-6 +throng_N 3.729715012475897e-6 +throng_V 2.2678822515534993e-5 +throng_V2 1.609865254278217e-5 +throstle_N 3.729715012475897e-6 +throttle_N 3.729715012475897e-6 +throttle_V 2.2678822515534993e-5 +throttle_V2 1.609865254278217e-5 +throttle_valve_N 3.729715012475897e-6 +through_Adv 1.9071727031572377e-4 +through_Prep 6.74549718106072e-3 +throughout_Adv 8.668966832532898e-6 +throughout_Prep 6.984982288080626e-4 +throughput_N 3.729715012475897e-6 +throughway_N 3.729715012475897e-6 +throw_N 3.729715012475897e-6 +throw_V 9.525105456524698e-4 +throw_V2 5.312555339118116e-4 +throw_away_V2 1.609865254278217e-5 +throw_in_N 3.729715012475897e-6 +throw_in_V 2.2678822515534993e-5 +throw_in_V2 1.609865254278217e-5 +throw_off_V 2.2678822515534993e-5 +throw_off_V2 1.609865254278217e-5 +throw_on_V2 1.609865254278217e-5 +throw_out_V2 4.8295957628346505e-5 +throw_over_V2 1.609865254278217e-5 +throw_together_V2 1.609865254278217e-5 +throw_up_V 2.2678822515534993e-5 +throw_up_V2 1.609865254278217e-5 +throw_yourself_at_V2 1.609865254278217e-5 +throw_yourself_into_V2 1.609865254278217e-5 +throwaway_N 3.729715012475897e-6 +throwback_N 3.729715012475897e-6 +thrower_N 3.729715012475897e-6 +throwster_N 3.729715012475897e-6 +thrum_N 3.729715012475897e-6 +thrum_V 2.2678822515534993e-5 +thrum_V2 1.609865254278217e-5 +thrush_N 3.729715012475897e-6 +thrust_N 3.356743511228307e-5 +thrust_V 4.5357645031069986e-5 +thrust_V2 6.439461017112868e-5 +thrust_open_V 2.2678822515534993e-5 +thruster_N 3.729715012475897e-6 +thud_N 3.729715012475897e-6 +thud_V 2.2678822515534993e-5 +thug_N 1.4918860049903587e-5 +thuggee_N 3.729715012475897e-6 +thuggery_N 3.729715012475897e-6 +thulium_N 3.729715012475897e-6 +thumb_N 2.9837720099807175e-5 +thumb_V2 4.8295957628346505e-5 +thumbhole_N 3.729715012475897e-6 +thumbnail_N 3.729715012475897e-6 +thumbnut_N 3.729715012475897e-6 +thumbprint_N 3.729715012475897e-6 +thumbscrew_N 3.729715012475897e-6 +thumbstall_N 3.729715012475897e-6 +thumbtack_N 3.729715012475897e-6 +thump_N 1.118914503742769e-5 +thump_V 2.2678822515534993e-5 +thump_V2 1.609865254278217e-5 +thunder_N 1.4918860049903587e-5 +thunder_V 4.5357645031069986e-5 +thunder_V2 1.609865254278217e-5 +thunderbird_N 3.729715012475897e-6 +thunderbolt_N 3.729715012475897e-6 +thunderclap_N 3.729715012475897e-6 +thunderer_N 3.729715012475897e-6 +thunderhead_N 3.729715012475897e-6 +thunderous_A 1.0773191989054437e-5 +thundershower_N 3.729715012475897e-6 +thunderstorm_N 7.459430024951794e-6 +thunderstruck_A 1.0773191989054437e-5 +thundery_A 1.0773191989054437e-5 +thunk_N 3.729715012475897e-6 +thurcroft_PN 1.865462821325971e-5 +thurible_N 3.729715012475897e-6 +thurifer_N 3.729715012475897e-6 +thurmaston_PN 1.865462821325971e-5 +thurrock_PN 1.865462821325971e-5 +thurs_PN 1.865462821325971e-5 +thursday_N 3.729715012475897e-6 +thursday_PN 1.8468081931127113e-3 +thurso_PN 1.865462821325971e-5 +thus_Adv 1.0576139535690137e-3 +thwack_N 3.729715012475897e-6 +thwack_V2 1.609865254278217e-5 +thwart_N 3.729715012475897e-6 +thwart_V2 2.4147978814173252e-4 +thy_A 1.0773191989054437e-5 +thylacine_N 3.729715012475897e-6 +thyme_N 3.729715012475897e-6 +thymine_N 3.729715012475897e-6 +thymol_N 3.729715012475897e-6 +thymosin_N 3.729715012475897e-6 +thyroglobulin_N 3.729715012475897e-6 +thyroid_A 1.0773191989054437e-5 +thyroid_N 3.729715012475897e-6 +thyroidectomy_N 3.729715012475897e-6 +thyroiditis_N 3.729715012475897e-6 +thyronine_N 3.729715012475897e-6 +thyroprotein_N 3.729715012475897e-6 +thyrotoxic_A 1.0773191989054437e-5 +thyrotropin_N 3.729715012475897e-6 +thyroxine_N 3.729715012475897e-6 +thyrse_N 3.729715012475897e-6 +thyrsopteris_N 3.729715012475897e-6 +thysanopter_N 3.729715012475897e-6 +ti_N 3.729715012475897e-6 +tiara_N 3.729715012475897e-6 +tibet_PN 1.865462821325971e-5 +tibetan_A 1.0773191989054437e-5 +tibetan_N 3.729715012475897e-6 +tibia_N 3.729715012475897e-6 +tibial_A 1.0773191989054437e-5 +tibialis_N 3.729715012475897e-6 +tic_N 3.729715012475897e-6 +tick_N 7.459430024951794e-6 +tick_V 1.3607293509320997e-4 +tick_V2 1.609865254278217e-5 +tick_along_V 2.2678822515534993e-5 +tick_away_V 2.2678822515534993e-5 +tick_by_V 2.2678822515534993e-5 +tick_off_V 2.2678822515534993e-5 +tick_off_V2 1.609865254278217e-5 +tick_over_V 2.2678822515534993e-5 +tick_tock_N 3.729715012475897e-6 +ticker_N 7.459430024951794e-6 +ticker_tape_N 3.729715012475897e-6 +ticket_N 1.7529660558636716e-4 +ticket_V2 4.8295957628346505e-5 +ticket_collector_N 3.729715012475897e-6 +ticking_N 3.729715012475897e-6 +tickle_N 3.729715012475897e-6 +tickle_V 2.2678822515534993e-5 +tickle_V2 1.609865254278217e-5 +tickler_N 3.729715012475897e-6 +ticklish_A 2.1546383978108874e-5 +ticktack_N 3.729715012475897e-6 +ticktacktoe_N 3.729715012475897e-6 +ticktock_N 3.729715012475897e-6 +tidal_A 4.309276795621775e-5 +tidbit_N 1.4918860049903587e-5 +tiddler_N 3.729715012475897e-6 +tiddley_A 1.0773191989054437e-5 +tiddlywinks_N 3.729715012475897e-6 +tide_N 3.356743511228307e-5 +tide_V2 1.609865254278217e-5 +tide_over_V2 1.609865254278217e-5 +tideland_N 3.729715012475897e-6 +tidemark_N 3.729715012475897e-6 +tidewater_N 3.729715012475897e-6 +tideway_N 3.729715012475897e-6 +tidiness_N 3.729715012475897e-6 +tidworth_PN 1.865462821325971e-5 +tidy_A 3.231957596716331e-5 +tidy_N 3.729715012475897e-6 +tidy_V 2.2678822515534993e-5 +tidy_V2 1.609865254278217e-5 +tidy_up_V2 1.609865254278217e-5 +tidytips_N 3.729715012475897e-6 +tie_N 2.051343256861743e-4 +tie_V 3.628611602485599e-4 +tie_V2 6.439461017112868e-4 +tie_back_V2 1.609865254278217e-5 +tie_down_V2 1.609865254278217e-5 +tie_in_V 2.2678822515534993e-5 +tie_in_V2 1.609865254278217e-5 +tie_in_with_V2 1.609865254278217e-5 +tie_on_A 1.0773191989054437e-5 +tie_up_N 3.729715012475897e-6 +tie_up_V2 1.609865254278217e-5 +tiebreaker_N 3.729715012475897e-6 +tientsin_PN 1.865462821325971e-5 +tier_N 3.729715012475897e-6 +tiercel_N 3.729715012475897e-6 +tiered_A 1.0773191989054437e-5 +tiff_N 7.459430024951794e-6 +tiger_N 1.4918860049903587e-5 +tiger_lily_N 3.729715012475897e-6 +tigerish_A 1.0773191989054437e-5 +tight_A 4.7402044751839524e-4 +tight_Adv 7.802070149279609e-5 +tight_laced_A 1.0773191989054437e-5 +tight_lipped_A 2.1546383978108874e-5 +tight_wad_N 3.729715012475897e-6 +tighten_V 2.7214587018641994e-4 +tighten_V2 2.7367709322729687e-4 +tighten_up_V2 1.609865254278217e-5 +tightening_N 3.729715012475897e-6 +tightness_N 7.459430024951794e-6 +tightrope_N 3.729715012475897e-6 +tights_N 3.729715012475897e-6 +tiglon_N 3.729715012475897e-6 +tigress_N 3.729715012475897e-6 +tike_N 3.729715012475897e-6 +til_Prep 1.9957092251658934e-5 +tilburg_PN 1.865462821325971e-5 +tilbury_PN 1.865462821325971e-5 +tilde_N 3.729715012475897e-6 +tile_N 1.8648575062379485e-5 +tile_V2 1.609865254278217e-5 +tilefish_N 3.729715012475897e-6 +tiler_N 3.729715012475897e-6 +tiling_N 3.729715012475897e-6 +till_N 3.729715012475897e-6 +till_Prep 6.984982288080626e-5 +till_V2 1.609865254278217e-5 +tillage_N 3.729715012475897e-6 +tiller_N 7.459430024951794e-6 +tilling_N 3.729715012475897e-6 +tilt_N 1.4918860049903587e-5 +tilt_V 9.071529006213997e-5 +tilt_V2 8.049326271391085e-5 +tilter_N 3.729715012475897e-6 +tilth_N 7.459430024951794e-6 +tiltyard_N 3.729715012475897e-6 +tim_PN 1.865462821325971e-5 +timbale_N 3.729715012475897e-6 +timber_N 2.237829007485538e-5 +timbered_A 1.0773191989054437e-5 +timberman_N 3.729715012475897e-6 +timbre_N 3.729715012475897e-6 +timbrel_N 3.729715012475897e-6 +time_N 4.300361409384709e-3 +time_V2 1.2878922034225736e-4 +time_ball_N 3.729715012475897e-6 +time_bomb_N 3.729715012475897e-6 +time_expired_A 1.0773191989054437e-5 +time_exposure_N 3.729715012475897e-6 +time_fuse_N 3.729715012475897e-6 +time_honoured_A 1.0773191989054437e-5 +time_lag_N 3.729715012475897e-6 +time_limit_N 3.729715012475897e-6 +time_out_V 2.2678822515534993e-5 +time_out_V2 1.609865254278217e-5 +time_sheet_N 3.729715012475897e-6 +time_signal_N 3.729715012475897e-6 +time_switch_N 3.729715012475897e-6 +timecard_N 3.729715012475897e-6 +timekeeper_N 3.729715012475897e-6 +timekeeping_N 3.729715012475897e-6 +timeless_A 1.0773191989054437e-5 +timeline_N 3.729715012475897e-6 +timeliness_N 3.729715012475897e-6 +timely_A 1.0773191989054437e-4 +timepiece_N 3.729715012475897e-6 +timer_N 3.729715012475897e-6 +times_N 3.729715012475897e-6 +times_Prep 9.978546125829467e-6 +timesaving_A 1.0773191989054437e-5 +timeserver_N 3.729715012475897e-6 +timeserving_A 1.0773191989054437e-5 +timetable_N 5.2216010174662554e-5 +timework_N 3.729715012475897e-6 +timid_A 6.463915193432663e-5 +timid_N 3.729715012475897e-6 +timidity_N 2.237829007485538e-5 +timidness_N 3.729715012475897e-6 +timing_N 1.193508803992287e-4 +timmy_PN 1.865462821325971e-5 +timolol_N 3.729715012475897e-6 +timorous_A 2.1546383978108874e-5 +timothy_N 3.729715012475897e-6 +timothy_PN 1.865462821325971e-5 +timpanist_N 3.729715012475897e-6 +timucu_N 3.729715012475897e-6 +tin_N 1.8648575062379485e-5 +tin_V2 1.609865254278217e-5 +tin_opener_N 3.729715012475897e-6 +tin_pan_alley_N 3.729715012475897e-6 +tin_plate_N 3.729715012475897e-6 +tina_PN 1.865462821325971e-5 +tinamou_N 3.729715012475897e-6 +tincture_N 3.729715012475897e-6 +tincture_V2 1.609865254278217e-5 +tinder_N 3.729715012475897e-6 +tinderbox_N 3.729715012475897e-6 +tine_N 3.729715012475897e-6 +tinea_N 3.729715012475897e-6 +tined_A 1.0773191989054437e-5 +tineid_N 3.729715012475897e-6 +tineoid_N 3.729715012475897e-6 +tinfoil_N 3.729715012475897e-6 +ting_N 3.729715012475897e-6 +ting_V 2.2678822515534993e-5 +ting_V2 1.609865254278217e-5 +tinge_N 7.459430024951794e-6 +tinge_V2 1.609865254278217e-5 +tingle_N 3.729715012475897e-6 +tingle_V 2.2678822515534993e-5 +tinker_N 3.729715012475897e-6 +tinker_V 1.3607293509320997e-4 +tinkerer_N 3.729715012475897e-6 +tinkle_N 3.729715012475897e-6 +tinkle_V 2.2678822515534993e-5 +tinkle_V2 1.609865254278217e-5 +tinning_N 3.729715012475897e-6 +tinnitus_N 3.729715012475897e-6 +tinny_A 1.0773191989054437e-5 +tinsel_N 3.729715012475897e-6 +tinsel_V2 1.609865254278217e-5 +tinselly_A 1.0773191989054437e-5 +tinsmith_N 3.729715012475897e-6 +tint_N 3.729715012475897e-6 +tint_V2 1.609865254278217e-5 +tintack_N 3.729715012475897e-6 +tinter_N 3.729715012475897e-6 +tinting_N 3.729715012475897e-6 +tintinnabulation_N 3.729715012475897e-6 +tinware_N 3.729715012475897e-6 +tiny_A 3.2319575967163313e-4 +tip_N 7.086458523704203e-5 +tip_V 4.5357645031069986e-5 +tip_V2 4.8295957628346505e-5 +tip_and_run_A 1.0773191989054437e-5 +tip_off_N 3.729715012475897e-6 +tip_off_V2 1.609865254278217e-5 +tip_over_V2 1.609865254278217e-5 +tip_top_A 1.0773191989054437e-5 +tip_top_Adv 8.668966832532898e-6 +tip_up_A 1.0773191989054437e-5 +tipper_N 3.729715012475897e-6 +tipperary_PN 1.865462821325971e-5 +tippet_N 3.729715012475897e-6 +tipple_N 3.729715012475897e-6 +tipple_V 4.5357645031069986e-5 +tipple_V2 1.609865254278217e-5 +tippler_N 3.729715012475897e-6 +tipstaff_N 3.729715012475897e-6 +tipster_N 7.459430024951794e-6 +tipsy_A 1.0773191989054437e-5 +tiptoe_A 1.0773191989054437e-5 +tiptoe_Adv 8.668966832532898e-6 +tiptoe_N 3.729715012475897e-6 +tiptoe_V 4.5357645031069986e-5 +tiptop_N 3.729715012475897e-6 +tipu_N 3.729715012475897e-6 +tirade_N 3.729715012475897e-6 +tiramisu_N 3.729715012475897e-6 +tire_N 1.0070230533684921e-4 +tire_V 6.803646754660499e-5 +tire_V2 1.2878922034225736e-4 +tire_of_V2 1.609865254278217e-5 +tire_out_V2 1.609865254278217e-5 +tiredly_Adv 8.668966832532898e-6 +tiredness_N 3.729715012475897e-6 +tireless_A 3.231957596716331e-5 +tiresome_A 2.1546383978108874e-5 +tiring_Adv 8.668966832532898e-6 +tiro_N 3.729715012475897e-6 +tisane_N 3.729715012475897e-6 +tissue_N 7.832401526199384e-5 +tit_N 3.729715012475897e-6 +titan_N 1.8648575062379485e-5 +titanic_A 1.0773191989054437e-5 +titanium_N 3.729715012475897e-6 +titanosaur_N 3.729715012475897e-6 +titbit_N 3.729715012475897e-6 +titer_N 3.729715012475897e-6 +titfer_N 3.729715012475897e-6 +tithe_N 3.729715012475897e-6 +tithe_barn_N 3.729715012475897e-6 +tither_N 3.729715012475897e-6 +titi_N 3.729715012475897e-6 +titillate_V2 1.609865254278217e-5 +titillating_A 1.0773191989054437e-5 +titillation_N 3.729715012475897e-6 +titivate_V 2.2678822515534993e-5 +titivate_V2 1.609865254278217e-5 +titivation_N 3.729715012475897e-6 +titlark_N 3.729715012475897e-6 +title_N 1.7529660558636716e-4 +title_V3 1.2698412698412698e-2 +title_deed_N 3.729715012475897e-6 +title_page_N 3.729715012475897e-6 +title_role_N 3.729715012475897e-6 +titled_A 1.0773191989054437e-5 +titmouse_N 3.729715012475897e-6 +titration_N 3.729715012475897e-6 +titrator_N 3.729715012475897e-6 +titter_N 3.729715012475897e-6 +titter_V 2.2678822515534993e-5 +titterer_N 3.729715012475897e-6 +tittivate_V 2.2678822515534993e-5 +tittivate_V2 1.609865254278217e-5 +tittle_N 3.729715012475897e-6 +tittle_tattle_N 3.729715012475897e-6 +tittle_tattle_V 2.2678822515534993e-5 +titular_A 1.0773191989054437e-5 +tiverton_PN 1.865462821325971e-5 +tiyin_N 3.729715012475897e-6 +tizzy_N 3.729715012475897e-6 +tnt_N 3.729715012475897e-6 +to_Adv 8.668966832532898e-6 +to_Prep 9.423738961233348e-2 +to_date_Adv 1.9071727031572377e-4 +to_do_N 3.729715012475897e-6 +toad_N 1.118914503742769e-5 +toad_in_the_hole_N 3.729715012475897e-6 +toadfish_N 3.729715012475897e-6 +toadflax_N 3.729715012475897e-6 +toadstool_N 3.729715012475897e-6 +toady_N 3.729715012475897e-6 +toady_V 2.2678822515534993e-5 +toast_N 1.4918860049903587e-5 +toast_V 2.2678822515534993e-5 +toast_V2 3.219730508556434e-5 +toaster_N 7.459430024951794e-6 +toasting_N 3.729715012475897e-6 +toasting_fork_N 3.729715012475897e-6 +toastmaster_N 3.729715012475897e-6 +toastrack_N 3.729715012475897e-6 +tobacco_N 1.5664803052398767e-4 +tobacconist_N 3.729715012475897e-6 +tobago_PN 1.865462821325971e-5 +tobagonian_A 1.0773191989054437e-5 +tobagonian_N 3.729715012475897e-6 +toboggan_N 3.729715012475897e-6 +toboggan_V 2.2678822515534993e-5 +tobogganing_N 3.729715012475897e-6 +tobogganist_N 3.729715012475897e-6 +tobramycin_N 3.729715012475897e-6 +toby_N 3.729715012475897e-6 +toby_PN 1.865462821325971e-5 +toby_jug_N 3.729715012475897e-6 +tocainide_N 3.729715012475897e-6 +toccata_N 7.459430024951794e-6 +tocsin_N 3.729715012475897e-6 +tod_A 1.0773191989054437e-5 +tod_N 3.729715012475897e-6 +today_Adv 4.0744144112904625e-4 +today_N 1.2792922492792325e-3 +toddle_V 2.2678822515534993e-5 +toddle_off_V 2.2678822515534993e-5 +toddler_N 7.459430024951794e-6 +toddy_N 3.729715012475897e-6 +todmorden_PN 1.865462821325971e-5 +tody_N 3.729715012475897e-6 +toe_N 2.237829007485538e-5 +toe_V2 1.609865254278217e-5 +toea_N 3.729715012475897e-6 +toecap_N 3.729715012475897e-6 +toed_A 1.0773191989054437e-5 +toehold_N 1.118914503742769e-5 +toeless_A 1.0773191989054437e-5 +toenail_N 3.729715012475897e-6 +toetoe_N 3.729715012475897e-6 +toff_N 3.729715012475897e-6 +toffee_N 3.729715012475897e-6 +tog_V2 1.609865254278217e-5 +toga_N 7.459430024951794e-6 +together_A 1.0773191989054437e-5 +together_Adv 8.495587495882241e-4 +togetherness_N 3.729715012475897e-6 +toggle_N 3.729715012475897e-6 +togo_PN 1.865462821325971e-5 +togolese_A 1.0773191989054437e-5 +togolese_N 3.729715012475897e-6 +togs_N 3.729715012475897e-6 +toil_N 3.729715012475897e-6 +toil_V 9.071529006213997e-5 +toil_V2V 4.675081813931744e-4 +toil_VV 1.9219680953296174e-4 +toiler_N 3.729715012475897e-6 +toilet_N 3.356743511228307e-5 +toilet_paper_N 3.729715012475897e-6 +toilet_powder_N 3.729715012475897e-6 +toilet_roll_N 3.729715012475897e-6 +toilet_table_N 3.729715012475897e-6 +toiletry_N 3.729715012475897e-6 +toilsome_A 1.0773191989054437e-5 +tokamak_N 3.729715012475897e-6 +tokay_N 3.729715012475897e-6 +toke_N 3.729715012475897e-6 +token_N 3.729715012475897e-6 +tokyo_PN 2.052009103458568e-3 +tolazamide_N 3.729715012475897e-6 +tolazoline_N 3.729715012475897e-6 +tolbutamide_N 3.729715012475897e-6 +tole_N 3.729715012475897e-6 +tolerable_A 2.1546383978108874e-5 +tolerance_N 2.6108005087331277e-5 +tolerant_A 1.0773191989054437e-5 +tolerate_V2 8.049326271391085e-5 +toleration_N 3.729715012475897e-6 +toll_N 1.0070230533684921e-4 +toll_V 2.2678822515534993e-5 +toll_V2 1.609865254278217e-5 +tollbar_N 3.729715012475897e-6 +tollbooth_N 3.729715012475897e-6 +toller_N 3.729715012475897e-6 +tollgate_N 3.729715012475897e-6 +tollhouse_N 3.729715012475897e-6 +tollkeeper_N 3.729715012475897e-6 +tolu_N 3.729715012475897e-6 +toluene_N 3.729715012475897e-6 +tom_N 3.729715012475897e-6 +tom_PN 1.865462821325971e-5 +tomahawk_N 3.729715012475897e-6 +tomahawk_V2 1.609865254278217e-5 +tomalley_N 3.729715012475897e-6 +tomatillo_N 3.729715012475897e-6 +tomato_N 7.459430024951794e-6 +tomb_N 1.118914503742769e-5 +tombac_N 3.729715012475897e-6 +tombola_N 3.729715012475897e-6 +tomboy_N 3.729715012475897e-6 +tombstone_N 3.729715012475897e-6 +tomcat_N 3.729715012475897e-6 +tome_N 3.729715012475897e-6 +tomentose_A 1.0773191989054437e-5 +tomentum_N 3.729715012475897e-6 +tomfool_N 3.729715012475897e-6 +tomfoolery_N 3.729715012475897e-6 +tommy_PN 1.865462821325971e-5 +tommy_gun_N 3.729715012475897e-6 +tommy_rot_N 3.729715012475897e-6 +tomograph_N 3.729715012475897e-6 +tomorrow_Adv 6.068276782773029e-5 +tomorrow_N 2.7599891092321637e-4 +tomtate_N 3.729715012475897e-6 +tomtit_N 3.729715012475897e-6 +tomtom_N 3.729715012475897e-6 +ton_N 5.669166818963363e-4 +ton_V 2.2678822515534993e-5 +tonal_A 2.1546383978108874e-5 +tonality_N 3.729715012475897e-6 +tonbridge_PN 1.865462821325971e-5 +tone_N 1.2308059541170458e-4 +tone_V 4.5357645031069986e-5 +tone_V2 1.609865254278217e-5 +tone_deaf_A 1.0773191989054437e-5 +tone_down_V2 1.609865254278217e-5 +tone_poem_N 3.729715012475897e-6 +toneless_A 1.0773191989054437e-5 +toner_N 3.729715012475897e-6 +tonga_PN 1.865462821325971e-5 +tongan_A 1.0773191989054437e-5 +tongan_N 3.729715012475897e-6 +tongs_N 3.729715012475897e-6 +tongue_N 2.6108005087331277e-5 +tongue_in_cheek_A 3.231957596716331e-5 +tongue_in_cheek_Adv 1.7337933665065797e-5 +tongue_tied_A 1.0773191989054437e-5 +tongue_twister_N 3.729715012475897e-6 +tongued_A 1.0773191989054437e-5 +tonguefish_N 3.729715012475897e-6 +tongueflower_N 3.729715012475897e-6 +tongueless_A 1.0773191989054437e-5 +tonguelike_A 1.0773191989054437e-5 +tonic_A 1.0773191989054437e-5 +tonic_N 3.729715012475897e-6 +tonic_sol_fa_N 7.459430024951794e-6 +tonicity_N 3.729715012475897e-6 +tonight_Adv 5.2013800995197394e-5 +tonight_N 3.729715012475897e-5 +tonnage_N 1.8648575062379485e-5 +tonne_N 3.729715012475897e-6 +tonometer_N 3.729715012475897e-6 +tonometry_N 3.729715012475897e-6 +tons_N 3.729715012475897e-6 +tonsil_N 3.729715012475897e-6 +tonsillectomy_N 3.729715012475897e-6 +tonsillitis_N 3.729715012475897e-6 +tonsorial_A 1.0773191989054437e-5 +tonsure_N 3.729715012475897e-6 +tonsure_V2 1.609865254278217e-5 +tontine_N 3.729715012475897e-6 +tony_PN 1.865462821325971e-5 +tonyrefail_PN 1.865462821325971e-5 +too_AdA 1.3691683569979716e-2 +too_Adv 3.25953152903237e-3 +tool_N 2.0140461067369843e-4 +tool_V2 1.609865254278217e-5 +tool_up_V2 1.609865254278217e-5 +toolbox_N 3.729715012475897e-6 +toolmaker_N 3.729715012475897e-6 +toolshed_N 3.729715012475897e-6 +toot_N 3.729715012475897e-6 +toot_V 4.5357645031069986e-5 +toot_V2 1.609865254278217e-5 +tooth_N 3.729715012475897e-5 +toothache_N 3.729715012475897e-6 +toothbrush_N 3.729715012475897e-6 +toothed_A 1.0773191989054437e-5 +toothless_A 1.0773191989054437e-5 +toothlike_A 1.0773191989054437e-5 +toothpaste_N 2.237829007485538e-5 +toothpick_N 3.729715012475897e-6 +toothpowder_N 3.729715012475897e-6 +toothsome_A 1.0773191989054437e-5 +toothy_A 1.0773191989054437e-5 +tootle_N 3.729715012475897e-6 +tootle_V 2.2678822515534993e-5 +tootle_off_V 2.2678822515534993e-5 +top_N 1.7156689057389125e-4 +top_V2 6.117487966257224e-4 +top_boot_N 3.729715012475897e-6 +top_dress_V2 1.609865254278217e-5 +top_dressing_N 3.729715012475897e-6 +top_flight_A 3.231957596716331e-5 +top_heavy_A 2.1546383978108874e-5 +top_hole_A 1.0773191989054437e-5 +top_off_V2 1.609865254278217e-5 +top_out_V 2.2678822515534993e-5 +top_ranking_A 1.0773191989054437e-5 +top_up_V2 1.609865254278217e-5 +topaz_N 1.4918860049903587e-5 +topcoat_N 3.729715012475897e-6 +tope_V 2.2678822515534993e-5 +tope_V2 1.609865254278217e-5 +toper_N 3.729715012475897e-6 +topgallant_A 1.0773191989054437e-5 +topgallant_N 3.729715012475897e-6 +tophus_N 3.729715012475897e-6 +topi_N 3.729715012475897e-6 +topiary_N 3.729715012475897e-6 +topic_N 1.118914503742769e-4 +topical_A 2.1546383978108874e-5 +topicality_N 3.729715012475897e-6 +topicalization_N 3.729715012475897e-6 +topknot_N 3.729715012475897e-6 +topless_A 2.1546383978108874e-5 +topmast_N 3.729715012475897e-6 +topminnow_N 3.729715012475897e-6 +topmost_A 1.0773191989054437e-5 +topnotch_A 1.0773191989054437e-5 +topognosia_N 3.729715012475897e-6 +topographical_A 1.0773191989054437e-5 +topography_N 3.729715012475897e-6 +topolatry_N 3.729715012475897e-6 +topological_A 1.0773191989054437e-5 +topology_N 3.729715012475897e-6 +toponymy_N 3.729715012475897e-6 +topos_N 3.729715012475897e-6 +topper_N 3.729715012475897e-6 +topping_N 3.729715012475897e-6 +topple_V 6.803646754660499e-5 +topple_V2 1.609865254278217e-4 +topsail_N 3.729715012475897e-6 +topside_N 3.729715012475897e-6 +topsoil_N 3.729715012475897e-6 +topspin_N 3.729715012475897e-6 +topsy_turvy_A 1.0773191989054437e-5 +topsy_turvy_Adv 1.7337933665065797e-5 +topsy_turvydom_N 3.729715012475897e-6 +toque_N 3.729715012475897e-6 +tor_N 3.729715012475897e-6 +torbay_PN 1.865462821325971e-5 +torch_N 7.459430024951794e-6 +torch_V2 4.8295957628346505e-5 +torch_race_N 3.729715012475897e-6 +torch_singer_N 3.729715012475897e-6 +torchbearer_N 3.729715012475897e-6 +torchlight_N 3.729715012475897e-6 +tore_up_V 2.2678822515534993e-5 +toreador_N 3.729715012475897e-6 +torero_N 3.729715012475897e-6 +torino_PN 1.865462821325971e-5 +torment_N 3.729715012475897e-6 +torment_V2 6.439461017112868e-5 +tormenter_N 3.729715012475897e-6 +tormentor_N 7.459430024951794e-6 +tornado_N 1.118914503742769e-5 +toroid_N 3.729715012475897e-6 +toroidal_A 1.0773191989054437e-5 +toronto_PN 4.6636570533149275e-4 +torpedo_N 3.729715012475897e-6 +torpedo_V2 4.8295957628346505e-5 +torpedo_boat_N 3.729715012475897e-6 +torpedo_tube_N 3.729715012475897e-6 +torpid_A 1.0773191989054437e-5 +torpidity_N 3.729715012475897e-6 +torpidness_N 3.729715012475897e-6 +torpor_N 3.729715012475897e-6 +torque_N 7.459430024951794e-6 +torr_N 3.729715012475897e-6 +torrent_N 7.459430024951794e-6 +torrential_A 1.0773191989054437e-5 +torrid_A 3.231957596716331e-5 +torridity_N 3.729715012475897e-6 +torsion_N 3.729715012475897e-6 +torso_N 3.729715012475897e-6 +tort_N 1.4918860049903587e-5 +torte_N 3.729715012475897e-6 +tortellini_N 3.729715012475897e-6 +torticollis_N 3.729715012475897e-6 +tortilla_N 3.729715012475897e-6 +tortious_A 1.0773191989054437e-5 +tortoise_N 3.729715012475897e-6 +tortoiseshell_N 3.729715012475897e-6 +tortricid_N 3.729715012475897e-6 +tortuosity_N 3.729715012475897e-6 +tortuous_A 2.1546383978108874e-5 +torture_N 3.729715012475897e-6 +torture_V2 4.8295957628346505e-5 +torturer_N 3.729715012475897e-6 +torulose_A 1.0773191989054437e-5 +torus_N 3.729715012475897e-6 +tory_N 7.459430024951794e-6 +tosh_N 3.729715012475897e-6 +toss_N 3.729715012475897e-6 +toss_V 9.071529006213997e-5 +toss_V2 8.049326271391085e-5 +toss_about_V2 1.609865254278217e-5 +toss_around_V2 1.609865254278217e-5 +toss_back_V2 1.609865254278217e-5 +toss_down_V2 1.609865254278217e-5 +toss_for_V2 1.609865254278217e-5 +toss_off_V2 1.609865254278217e-5 +toss_out_V 2.2678822515534993e-5 +toss_up_N 3.729715012475897e-6 +toss_up_V 2.2678822515534993e-5 +tosser_N 3.729715012475897e-6 +tossup_N 3.729715012475897e-6 +tostada_N 3.729715012475897e-6 +tot_N 7.459430024951794e-6 +tot_V 2.2678822515534993e-5 +tot_V2 1.609865254278217e-5 +tot_up_V 2.2678822515534993e-5 +total_A 2.564019693394956e-3 +total_N 4.214577964097763e-4 +total_V 9.751893681680048e-4 +total_V2 1.9640356102194247e-3 +totalitarian_A 1.0773191989054437e-5 +totalitarian_N 3.729715012475897e-6 +totalitarianism_N 3.729715012475897e-6 +totality_N 3.729715012475897e-6 +totalizator_N 3.729715012475897e-6 +totara_N 3.729715012475897e-6 +tote_N 3.729715012475897e-6 +tote_V2 6.439461017112868e-5 +totem_N 3.729715012475897e-6 +totem_pole_N 3.729715012475897e-6 +totemic_A 1.0773191989054437e-5 +totemism_N 3.729715012475897e-6 +totemist_N 3.729715012475897e-6 +totipotency_N 3.729715012475897e-6 +totipotent_A 1.0773191989054437e-5 +totnes_PN 1.865462821325971e-5 +totter_V 6.803646754660499e-5 +tottery_A 1.0773191989054437e-5 +toucan_N 3.729715012475897e-6 +toucanet_N 3.729715012475897e-6 +touch_N 7.086458523704203e-5 +touch_V 2.7214587018641994e-4 +touch_V2 1.609865254278217e-4 +touch_and_go_A 1.0773191989054437e-5 +touch_down_V 2.2678822515534993e-5 +touch_for_V3 1.5873015873015873e-3 +touch_off_V2 1.609865254278217e-5 +touch_on_V2 1.609865254278217e-5 +touch_type_V 2.2678822515534993e-5 +touch_up_V2 1.609865254278217e-5 +touch_upon_V2 1.609865254278217e-5 +touchable_A 1.0773191989054437e-5 +touchback_N 3.729715012475897e-6 +touchdown_N 7.459430024951794e-6 +toucher_N 3.729715012475897e-6 +touchiness_N 3.729715012475897e-6 +touching_A 2.1546383978108874e-5 +touchline_N 3.729715012475897e-6 +touchstone_N 3.729715012475897e-6 +touchy_A 7.541234392338106e-5 +tough_A 1.2496902707303146e-3 +tough_N 3.729715012475897e-6 +toughen_V 2.2678822515534993e-5 +toughen_V2 3.219730508556434e-5 +toughie_N 3.729715012475897e-6 +toughness_N 7.459430024951794e-6 +toulon_PN 1.865462821325971e-5 +toulouse_PN 1.865462821325971e-5 +toupee_N 3.729715012475897e-6 +toupeed_A 1.0773191989054437e-5 +tour_N 5.594572518713845e-5 +tour_V 6.803646754660499e-5 +tour_V2 9.659191525669301e-5 +tour_de_force_N 1.118914503742769e-5 +touraco_N 3.729715012475897e-6 +touring_N 7.459430024951794e-6 +tourism_N 6.713487022456614e-5 +tourist_N 1.5291831551151176e-4 +touristed_A 1.0773191989054437e-5 +tourmaline_N 3.729715012475897e-6 +tournament_N 1.4918860049903587e-5 +tournedos_N 3.729715012475897e-6 +tourney_N 3.729715012475897e-6 +tourniquet_N 3.729715012475897e-6 +tours_PN 1.865462821325971e-5 +tourtiere_N 3.729715012475897e-6 +tousle_V2 1.609865254278217e-5 +tout_N 3.729715012475897e-6 +tout_V 6.803646754660499e-5 +tout_V2 3.219730508556434e-4 +tout_ensemble_Adv 8.668966832532898e-6 +tout_ensemble_N 3.729715012475897e-6 +tovarich_N 3.729715012475897e-6 +tow_N 1.118914503742769e-5 +tow_V2 1.609865254278217e-5 +tow_away_V2 1.609865254278217e-5 +toward_Prep 1.516739011126079e-3 +towards_Prep 5.98712767549768e-5 +towel_N 3.356743511228307e-5 +towel_V2 1.609865254278217e-5 +towel_horse_N 3.729715012475897e-6 +towel_rack_N 3.729715012475897e-6 +towel_rail_N 3.729715012475897e-6 +toweling_N 3.729715012475897e-6 +towelling_N 3.729715012475897e-6 +tower_N 1.0070230533684921e-4 +tower_V 9.071529006213997e-5 +tower_block_N 3.729715012475897e-6 +tower_hamlets_PN 1.865462821325971e-5 +towhead_N 3.729715012475897e-6 +towhee_N 3.729715012475897e-6 +towing_line_N 3.729715012475897e-6 +towing_path_N 3.729715012475897e-6 +towing_rope_N 3.729715012475897e-6 +towline_N 3.729715012475897e-6 +town_N 2.610800508733128e-4 +town_crier_N 3.729715012475897e-6 +town_gas_N 3.729715012475897e-6 +townee_N 3.729715012475897e-6 +townie_N 3.729715012475897e-6 +township_N 3.729715012475897e-5 +townsman_N 3.729715012475897e-6 +towpath_N 3.729715012475897e-6 +towrope_N 3.729715012475897e-6 +toxaemia_N 3.729715012475897e-6 +toxemia_N 3.729715012475897e-6 +toxic_A 9.695872790148993e-5 +toxicity_N 7.459430024951794e-6 +toxicognath_N 3.729715012475897e-6 +toxicological_A 1.0773191989054437e-5 +toxicologist_N 7.459430024951794e-6 +toxicology_N 7.459430024951794e-6 +toxin_N 5.2216010174662554e-5 +toxoplasmosis_N 3.729715012475897e-6 +toy_N 1.4918860049903588e-4 +toy_V 9.071529006213997e-5 +toy_at_V2 1.609865254278217e-5 +toy_over_V2 1.609865254278217e-5 +toy_with_V2 1.609865254278217e-5 +toyon_N 3.729715012475897e-6 +toyshop_N 3.729715012475897e-6 +trabeated_A 1.0773191989054437e-5 +trabecula_N 3.729715012475897e-6 +trabecular_A 1.0773191989054437e-5 +trace_N 1.4918860049903587e-5 +trace_V 2.2678822515534993e-5 +trace_V2 1.4488787288503951e-4 +traceable_A 1.0773191989054437e-5 +tracer_N 3.729715012475897e-6 +tracery_N 3.729715012475897e-6 +trachea_N 3.729715012475897e-6 +tracheal_A 1.0773191989054437e-5 +tracheid_N 3.729715012475897e-6 +tracheitis_N 3.729715012475897e-6 +tracheobronchitis_N 3.729715012475897e-6 +tracheostomy_N 3.729715012475897e-6 +trachodon_N 3.729715012475897e-6 +trachoma_N 3.729715012475897e-6 +tracing_N 3.729715012475897e-6 +tracing_paper_N 3.729715012475897e-6 +track_N 1.7529660558636716e-4 +track_V 2.4946704767088494e-4 +track_V2 6.278474491685046e-4 +track_down_V2 3.219730508556434e-5 +trackball_N 3.729715012475897e-6 +tracker_N 3.729715012475897e-6 +trackless_A 1.0773191989054437e-5 +tract_N 2.9837720099807175e-5 +tractability_N 3.729715012475897e-6 +tractable_A 1.0773191989054437e-5 +traction_N 3.729715012475897e-6 +traction_engine_N 3.729715012475897e-6 +tractive_A 1.0773191989054437e-5 +tractor_N 2.9837720099807175e-5 +tracy_PN 1.865462821325971e-5 +trad_N 3.729715012475897e-6 +trade_N 1.7417769108262439e-3 +trade_V 3.4131627885880166e-2 +trade_V2 1.5454706441070882e-3 +trade_away_V 2.2678822515534993e-5 +trade_down_V 2.2678822515534993e-5 +trade_in_N 3.729715012475897e-6 +trade_in_V2 1.609865254278217e-5 +trade_off_V2 1.609865254278217e-5 +trade_on_V2 1.609865254278217e-5 +trade_union_N 3.729715012475897e-6 +trade_unionism_N 3.729715012475897e-6 +trade_unionist_N 3.729715012475897e-6 +trade_up_V 6.803646754660499e-5 +trade_upon_V2 1.609865254278217e-5 +trade_wind_N 3.729715012475897e-6 +tradecraft_N 3.729715012475897e-6 +trademark_N 4.1026865137234865e-5 +trademarked_A 1.0773191989054437e-5 +tradeoff_N 3.729715012475897e-6 +trader_N 2.174423852273448e-3 +trades_union_N 3.729715012475897e-6 +tradesman_N 3.729715012475897e-6 +tradespeople_N 3.729715012475897e-6 +trading_N 3.729715012475897e-6 +tradition_N 8.578344528694562e-5 +traditional_A 1.1419583508397704e-3 +traditionalism_N 3.729715012475897e-6 +traditionalist_N 1.4918860049903587e-5 +traditionalistic_A 1.0773191989054437e-5 +traduce_V2 4.8295957628346505e-5 +traducer_N 3.729715012475897e-6 +traffic_N 2.4243147581093328e-4 +traffic_V 2.2678822515534993e-5 +trafficator_N 3.729715012475897e-6 +trafficker_N 3.356743511228307e-5 +tragacanth_N 3.729715012475897e-6 +tragedian_N 3.729715012475897e-6 +tragedienne_N 3.729715012475897e-6 +tragedy_N 3.356743511228307e-5 +tragic_A 6.463915193432663e-5 +tragically_Adv 1.7337933665065797e-5 +tragicomedy_N 3.729715012475897e-6 +tragicomic_A 2.1546383978108874e-5 +tragopan_N 3.729715012475897e-6 +tragus_N 3.729715012475897e-6 +trail_N 6.340515521209024e-5 +trail_V 1.5875175760874494e-4 +trail_V2 2.092824830561682e-4 +trailblazer_N 3.729715012475897e-6 +trailer_N 2.6108005087331277e-5 +trailing_N 3.729715012475897e-6 +train_N 9.697259032437332e-5 +train_V 1.5875175760874494e-4 +train_V2 2.092824830561682e-4 +train_V2V 2.3375409069658717e-3 +train_up_V2 1.609865254278217e-5 +trainband_N 3.729715012475897e-6 +trainbandsman_N 3.729715012475897e-6 +trainbearer_N 3.729715012475897e-6 +trainee_N 3.729715012475897e-6 +traineeship_N 3.729715012475897e-6 +trainer_N 3.729715012475897e-5 +training_N 2.051343256861743e-4 +training_college_N 3.729715012475897e-6 +training_ship_N 3.729715012475897e-6 +trainload_N 3.729715012475897e-6 +trainman_N 3.729715012475897e-6 +traipse_V 4.5357645031069986e-5 +trait_N 2.237829007485538e-5 +traitor_N 7.459430024951794e-6 +traitorous_A 1.0773191989054437e-5 +traitress_N 3.729715012475897e-6 +trajectory_N 3.729715012475897e-6 +tralee_PN 1.865462821325971e-5 +tram_N 3.729715012475897e-6 +tram_car_N 3.729715012475897e-6 +tramcar_N 3.729715012475897e-6 +tramline_N 3.729715012475897e-6 +trammel_N 3.729715012475897e-6 +trammel_V2 1.609865254278217e-5 +tramontane_A 1.0773191989054437e-5 +tramontane_N 3.729715012475897e-6 +tramp_N 7.459430024951794e-6 +tramp_V 4.5357645031069986e-5 +tramp_V2 1.609865254278217e-5 +tramp_steamer_N 3.729715012475897e-6 +trample_N 3.729715012475897e-6 +trample_V 2.2678822515534993e-5 +trample_V2 4.8295957628346505e-5 +trampler_N 3.729715012475897e-6 +trampoline_N 3.729715012475897e-6 +tramway_N 3.729715012475897e-6 +trance_N 3.729715012475897e-6 +trancelike_A 1.0773191989054437e-5 +tranche_N 3.729715012475897e-6 +trandolapril_N 3.729715012475897e-6 +tranent_PN 1.865462821325971e-5 +tranquil_A 1.0773191989054437e-5 +tranquility_N 7.459430024951794e-6 +tranquilize_V2 1.609865254278217e-5 +tranquilizer_N 3.729715012475897e-6 +tranquillity_N 3.729715012475897e-6 +tranquillize_V2 1.609865254278217e-5 +tranquillizer_N 3.729715012475897e-6 +trans_PN 1.865462821325971e-5 +transact_V2 6.439461017112868e-5 +transactinide_A 1.0773191989054437e-5 +transactinide_N 3.729715012475897e-6 +transaction_N 1.2494545291794254e-3 +transactor_N 3.729715012475897e-6 +transalpine_A 1.0773191989054437e-5 +transalpine_N 3.729715012475897e-6 +transaminase_N 3.729715012475897e-6 +transamination_N 3.729715012475897e-6 +transatlantic_A 1.0773191989054437e-5 +transcend_V2 1.609865254278217e-5 +transcendence_N 3.729715012475897e-6 +transcendency_N 3.729715012475897e-6 +transcendent_A 1.0773191989054437e-5 +transcendental_A 1.0773191989054437e-5 +transcendentalism_N 3.729715012475897e-6 +transcendentalist_N 3.729715012475897e-6 +transcontinental_A 1.0773191989054437e-5 +transcribe_V2 3.219730508556434e-5 +transcriber_N 3.729715012475897e-6 +transcript_N 2.9837720099807175e-5 +transcriptase_N 3.729715012475897e-6 +transcription_N 3.729715012475897e-6 +transcultural_A 1.0773191989054437e-5 +transdermal_A 1.0773191989054437e-5 +transducer_N 3.729715012475897e-6 +transduction_N 3.729715012475897e-6 +transept_N 3.729715012475897e-6 +transeunt_A 1.0773191989054437e-5 +transfer_N 1.193508803992287e-4 +transfer_V 3.855399827640949e-4 +transfer_V2 6.439461017112868e-4 +transferability_N 3.729715012475897e-6 +transferable_A 4.309276795621775e-5 +transferase_N 3.729715012475897e-6 +transferee_N 3.729715012475897e-6 +transference_N 3.729715012475897e-6 +transferer_N 3.729715012475897e-6 +transferor_N 3.729715012475897e-6 +transferrin_N 3.729715012475897e-6 +transfiguration_N 3.729715012475897e-6 +transfigure_V2 1.609865254278217e-5 +transfix_V2 1.609865254278217e-5 +transform_V2 4.668609237406829e-4 +transformable_A 1.0773191989054437e-5 +transformation_N 1.8648575062379485e-5 +transformer_N 3.729715012475897e-6 +transfuse_V2 1.609865254278217e-5 +transfusion_N 1.8648575062379485e-5 +transgender_A 1.0773191989054437e-5 +transgene_N 3.729715012475897e-6 +transgress_V 2.2678822515534993e-5 +transgress_V2 1.609865254278217e-5 +transgression_N 3.729715012475897e-6 +transgressor_N 3.729715012475897e-6 +transience_N 3.729715012475897e-6 +transiency_N 3.729715012475897e-6 +transient_A 2.1546383978108874e-5 +transient_N 3.729715012475897e-6 +transistor_N 7.459430024951794e-6 +transistorized_A 1.0773191989054437e-5 +transit_N 2.9837720099807175e-5 +transition_N 7.086458523704203e-5 +transitional_A 3.231957596716331e-5 +transitive_A 1.0773191989054437e-5 +transitivity_N 3.729715012475897e-6 +transitory_A 2.1546383978108874e-5 +translatable_A 1.0773191989054437e-5 +translate_V 3.855399827640949e-4 +translate_V2 1.9318383051338602e-4 +translation_N 4.848629516218666e-5 +translational_A 1.0773191989054437e-5 +translator_N 1.4918860049903587e-5 +transliterate_V2 1.609865254278217e-5 +transliteration_N 3.729715012475897e-6 +translocation_N 3.729715012475897e-6 +translucence_N 3.729715012475897e-6 +translucency_N 3.729715012475897e-6 +translucent_A 2.1546383978108874e-5 +translunar_A 1.0773191989054437e-5 +transmigrante_N 3.729715012475897e-6 +transmigration_N 3.729715012475897e-6 +transmission_N 3.729715012475897e-5 +transmit_V2 1.2878922034225736e-4 +transmittance_N 3.729715012475897e-6 +transmitter_N 7.459430024951794e-6 +transmogrification_N 3.729715012475897e-6 +transmogrify_V2 4.8295957628346505e-5 +transmundane_A 1.0773191989054437e-5 +transmutable_A 1.0773191989054437e-5 +transmutation_N 3.729715012475897e-6 +transmute_V2 1.609865254278217e-5 +transoceanic_A 1.0773191989054437e-5 +transom_N 3.729715012475897e-6 +transom_window_N 3.729715012475897e-6 +transparence_N 3.729715012475897e-6 +transparency_N 3.729715012475897e-6 +transparent_A 3.231957596716331e-5 +transpiration_N 3.729715012475897e-6 +transpire_V 2.2678822515534993e-5 +transpire_V2 1.609865254278217e-5 +transplacental_A 1.0773191989054437e-5 +transplant_N 8.578344528694562e-5 +transplant_V 4.5357645031069986e-5 +transplant_V2 8.049326271391085e-5 +transplantable_A 1.0773191989054437e-5 +transplantation_N 1.118914503742769e-5 +transplanter_N 3.729715012475897e-6 +transpolar_A 1.0773191989054437e-5 +transponder_N 3.729715012475897e-6 +transport_N 7.459430024951794e-5 +transport_V2 2.8977574577007903e-4 +transportable_A 2.1546383978108874e-5 +transportation_N 3.468634961602584e-4 +transporter_N 1.118914503742769e-5 +transposable_A 1.0773191989054437e-5 +transpose_N 3.729715012475897e-6 +transpose_V2 1.609865254278217e-5 +transposition_N 3.729715012475897e-6 +transposon_N 3.729715012475897e-6 +transsexual_N 3.729715012475897e-6 +transsexualism_N 3.729715012475897e-6 +transship_V2 1.609865254278217e-5 +transshipment_N 3.729715012475897e-6 +transubstantiation_N 3.729715012475897e-6 +transudate_N 3.729715012475897e-6 +transuranic_A 1.0773191989054437e-5 +transverse_A 1.0773191989054437e-5 +transvestic_A 1.0773191989054437e-5 +transvestism_N 3.729715012475897e-6 +transvestite_N 7.459430024951794e-6 +tranylcypromine_N 3.729715012475897e-6 +trap_N 4.475658014971076e-5 +trap_V 1.1339411257767497e-4 +trap_V2 6.439461017112868e-5 +trap_door_N 3.729715012475897e-6 +trap_shooting_N 3.729715012475897e-6 +trapeze_N 3.729715012475897e-6 +trapezium_N 3.729715012475897e-6 +trapezius_N 3.729715012475897e-6 +trapezohedron_N 3.729715012475897e-6 +trapezoid_N 3.729715012475897e-6 +trapezoidal_A 1.0773191989054437e-5 +trapper_N 3.729715012475897e-6 +trappist_N 3.729715012475897e-6 +trapshooter_N 3.729715012475897e-6 +trash_N 3.356743511228307e-5 +trash_V2 6.439461017112868e-5 +trashy_A 1.0773191989054437e-5 +trauma_N 1.4918860049903587e-5 +traumatic_A 2.1546383978108874e-5 +traumatology_N 3.729715012475897e-6 +traumatophobia_N 3.729715012475897e-6 +travail_N 7.459430024951794e-6 +trave_N 3.729715012475897e-6 +travel_N 1.8275603561131894e-4 +travel_V 8.391164330747948e-4 +travel_V2 1.1269056779947518e-4 +travel_soiled_A 1.0773191989054437e-5 +travel_stained_A 1.0773191989054437e-5 +travel_worn_A 1.0773191989054437e-5 +traveler_N 3.729715012475897e-6 +travelled_A 1.0773191989054437e-5 +traveller_N 3.729715012475897e-6 +travelling_N 3.729715012475897e-6 +travelogue_N 7.459430024951794e-6 +traversable_A 1.0773191989054437e-5 +traversal_N 3.729715012475897e-6 +traverse_N 3.729715012475897e-6 +traverse_V2 1.609865254278217e-5 +traverser_N 3.729715012475897e-6 +travesty_N 3.729715012475897e-6 +travesty_V2 1.609865254278217e-5 +trawl_N 3.729715012475897e-6 +trawl_V 2.2678822515534993e-5 +trawl_V2 1.609865254278217e-5 +trawl_net_N 3.729715012475897e-6 +trawler_N 3.729715012475897e-6 +tray_N 1.118914503742769e-5 +tray_cloth_N 3.729715012475897e-6 +trazodone_N 3.729715012475897e-6 +treacherous_A 6.463915193432663e-5 +treachery_N 3.729715012475897e-6 +treacle_N 3.729715012475897e-6 +treacly_A 1.0773191989054437e-5 +tread_N 3.729715012475897e-6 +tread_V 6.803646754660499e-5 +tread_V2 3.219730508556434e-5 +treadle_N 3.729715012475897e-6 +treadle_V 2.2678822515534993e-5 +treadmill_N 7.459430024951794e-6 +treas_N 3.729715012475897e-6 +treason_N 3.729715012475897e-6 +treasonable_A 1.0773191989054437e-5 +treasonous_A 1.0773191989054437e-5 +treasure_N 1.8648575062379485e-5 +treasure_V2 3.219730508556434e-5 +treasure_house_N 3.729715012475897e-6 +treasure_trove_N 3.729715012475897e-6 +treasurer_N 8.578344528694562e-5 +treasurership_N 3.729715012475897e-6 +treasury_N 1.6410746054893946e-4 +treat_N 7.459430024951794e-6 +treat_V 2.0410940263981494e-4 +treat_V2 7.405380169679798e-4 +treatise_N 7.459430024951794e-6 +treatment_N 3.170257760604512e-4 +treaty_N 9.697259032437332e-5 +treble_A 1.0773191989054437e-5 +treble_N 3.729715012475897e-6 +treble_V 2.2678822515534993e-5 +treble_V2 3.219730508556434e-5 +tredegar_PN 1.865462821325971e-5 +tree_N 1.08161735361801e-4 +tree_V2 1.609865254278217e-5 +tree_fern_N 3.729715012475897e-6 +treehopper_N 3.729715012475897e-6 +treeless_A 1.0773191989054437e-5 +treelet_N 3.729715012475897e-6 +treenail_N 3.729715012475897e-6 +trefoil_N 3.729715012475897e-6 +trek_N 3.729715012475897e-6 +trek_V 4.5357645031069986e-5 +trek_over_V 2.2678822515534993e-5 +trekker_N 3.729715012475897e-6 +trellis_N 3.729715012475897e-6 +trellis_V2 1.609865254278217e-5 +tremble_N 3.729715012475897e-6 +tremble_V 4.5357645031069986e-5 +trembles_N 3.729715012475897e-6 +tremendous_A 2.585566077373065e-4 +tremolite_N 3.729715012475897e-6 +tremolo_N 3.729715012475897e-6 +tremor_N 7.086458523704203e-5 +tremulous_A 2.1546383978108874e-5 +trench_N 1.4918860049903587e-5 +trench_V2 1.609865254278217e-5 +trenchancy_N 3.729715012475897e-6 +trenchant_A 1.0773191989054437e-5 +trencher_N 3.729715012475897e-6 +trencherman_N 3.729715012475897e-6 +trend_N 4.32646941447204e-4 +trend_V 9.071529006213997e-5 +trend_setter_N 3.729715012475897e-6 +trend_setting_N 3.729715012475897e-6 +trendsetting_A 1.0773191989054437e-5 +trendy_A 7.541234392338106e-5 +trepan_N 3.729715012475897e-6 +trepan_V2 1.609865254278217e-5 +trepang_N 3.729715012475897e-6 +trephination_N 3.729715012475897e-6 +trephine_N 3.729715012475897e-6 +trephine_V2 1.609865254278217e-5 +trepidation_N 1.118914503742769e-5 +treponema_N 3.729715012475897e-6 +trespass_N 2.6108005087331277e-5 +trespass_V 1.1339411257767497e-4 +trespasser_N 3.729715012475897e-6 +tress_N 3.729715012475897e-6 +trestle_N 3.729715012475897e-6 +trestle_bridge_N 3.729715012475897e-6 +trestle_table_N 3.729715012475897e-6 +trestlework_N 3.729715012475897e-6 +trevor_PN 1.865462821325971e-5 +trews_N 3.729715012475897e-6 +trey_N 3.729715012475897e-6 +triad_N 3.729715012475897e-6 +triage_N 3.729715012475897e-6 +trial_N 4.214577964097763e-4 +triamcinolone_N 3.729715012475897e-6 +triangle_N 7.459430024951794e-6 +triangular_A 1.0773191989054437e-5 +triangularity_N 3.729715012475897e-6 +triangulate_A 1.0773191989054437e-5 +triangulation_N 3.729715012475897e-6 +triazine_N 3.729715012475897e-6 +triazolam_N 3.729715012475897e-6 +tribadism_N 3.729715012475897e-6 +tribadistic_A 1.0773191989054437e-5 +tribal_A 1.0773191989054437e-5 +tribalism_N 3.729715012475897e-6 +tribalization_N 3.729715012475897e-6 +tribe_N 1.4918860049903587e-5 +tribesman_N 3.729715012475897e-6 +tribologist_N 3.729715012475897e-6 +tribology_N 3.729715012475897e-6 +tribromoethanol_N 3.729715012475897e-6 +tribulation_N 3.729715012475897e-6 +tribunal_N 1.118914503742769e-5 +tribune_N 3.729715012475897e-6 +tribuneship_N 3.729715012475897e-6 +tributary_A 1.0773191989054437e-5 +tributary_N 3.729715012475897e-6 +tribute_N 1.8648575062379485e-5 +tributyrin_N 3.729715012475897e-6 +trice_N 3.729715012475897e-6 +trice_V2 1.609865254278217e-5 +tricentenary_A 1.0773191989054437e-5 +triceps_N 3.729715012475897e-6 +triceratops_N 3.729715012475897e-6 +trichina_N 3.729715012475897e-6 +trichinosis_N 3.729715012475897e-6 +trichion_N 3.729715012475897e-6 +trichloride_N 3.729715012475897e-6 +trichlormethiazide_N 3.729715012475897e-6 +trichloroethylene_N 3.729715012475897e-6 +trichodesmium_N 3.729715012475897e-6 +trichomonad_N 3.729715012475897e-6 +trichomoniasis_N 3.729715012475897e-6 +trichotillomania_N 3.729715012475897e-6 +trichotomy_N 3.729715012475897e-6 +trichroism_N 3.729715012475897e-6 +trichromatic_A 1.0773191989054437e-5 +trichuriasis_N 3.729715012475897e-6 +trick_N 2.237829007485538e-5 +trick_V2 3.219730508556434e-5 +trickery_N 7.459430024951794e-6 +trickiness_N 3.729715012475897e-6 +trickle_N 7.459430024951794e-6 +trickle_V 1.1339411257767497e-4 +trickle_V2 1.609865254278217e-5 +trickle_down_V 2.2678822515534993e-5 +trickster_N 3.729715012475897e-6 +tricksy_A 1.0773191989054437e-5 +tricky_A 1.1850511187959881e-4 +triclinic_A 1.0773191989054437e-5 +triclinium_N 3.729715012475897e-6 +tricolor_N 3.729715012475897e-6 +tricolour_N 3.729715012475897e-6 +tricorn_N 3.729715012475897e-6 +tricot_N 3.729715012475897e-6 +tricuspid_A 1.0773191989054437e-5 +tricycle_N 3.729715012475897e-6 +tricyclic_N 3.729715012475897e-6 +trident_N 3.729715012475897e-6 +tridymite_N 3.729715012475897e-6 +triennial_A 1.0773191989054437e-5 +triennial_N 3.729715012475897e-6 +trier_N 3.729715012475897e-6 +trieste_PN 1.865462821325971e-5 +trifid_A 1.0773191989054437e-5 +trifle_N 3.729715012475897e-6 +trifle_V 2.2678822515534993e-5 +trifle_V2 1.609865254278217e-5 +trifler_N 3.729715012475897e-6 +trifoliate_A 1.0773191989054437e-5 +trifurcation_N 3.729715012475897e-6 +trigeminal_N 3.729715012475897e-6 +trigger_N 2.9837720099807175e-5 +trigger_V2 1.1269056779947518e-3 +trigger_happy_A 1.0773191989054437e-5 +triggerfish_N 3.729715012475897e-6 +triglyceride_N 3.729715012475897e-6 +trigon_N 3.729715012475897e-6 +trigonometric_A 1.0773191989054437e-5 +trigonometrician_N 3.729715012475897e-6 +trigonometry_N 3.729715012475897e-6 +trigram_N 3.729715012475897e-6 +trihydroxy_A 1.0773191989054437e-5 +triiodothyronine_N 3.729715012475897e-6 +trilateral_A 1.0773191989054437e-5 +trilby_N 3.729715012475897e-6 +trilingual_A 1.0773191989054437e-5 +trill_N 7.459430024951794e-6 +trill_V 2.2678822515534993e-5 +trill_V2 1.609865254278217e-5 +trillion_A 1.0773191989054437e-5 +trillion_N 1.118914503742769e-5 +trillionth_A 1.0773191989054437e-5 +trillionth_N 3.729715012475897e-6 +trillium_N 3.729715012475897e-6 +trilobate_A 1.0773191989054437e-5 +trilobite_N 3.729715012475897e-6 +trilogy_N 3.729715012475897e-6 +trim_A 3.231957596716331e-5 +trim_N 3.729715012475897e-6 +trim_V 2.2678822515534994e-4 +trim_V2 4.0246631356955425e-4 +trimaran_N 3.729715012475897e-6 +trimer_N 3.729715012475897e-6 +trimester_N 3.729715012475897e-6 +trimipramine_N 3.729715012475897e-6 +trimmer_N 3.729715012475897e-6 +trimming_N 3.729715012475897e-6 +trimotored_A 1.0773191989054437e-5 +tring_PN 1.865462821325971e-5 +trinidad_PN 1.865462821325971e-5 +trinidadian_A 1.0773191989054437e-5 +trinidadian_N 3.729715012475897e-6 +trinitrotoluene_N 3.729715012475897e-6 +trinity_N 7.459430024951794e-6 +trinket_N 3.729715012475897e-6 +trinketry_N 3.729715012475897e-6 +trinucleate_A 1.0773191989054437e-5 +trio_N 7.459430024951794e-6 +triode_N 3.729715012475897e-6 +triolein_N 3.729715012475897e-6 +triose_N 3.729715012475897e-6 +trioxide_N 3.729715012475897e-6 +trip_N 1.8648575062379482e-4 +trip_V 2.2678822515534993e-5 +trip_V2 3.219730508556434e-5 +trip_out_V 2.2678822515534993e-5 +trip_over_V 2.2678822515534993e-5 +trip_over_V2 1.609865254278217e-5 +trip_up_V 2.2678822515534993e-5 +tripalmitin_N 3.729715012475897e-6 +tripartite_A 1.0773191989054437e-5 +tripe_N 3.729715012475897e-6 +triphammer_N 3.729715012475897e-6 +triphosphopyridine_N 3.729715012475897e-6 +tripinnate_A 1.0773191989054437e-5 +tripinnatifid_A 1.0773191989054437e-5 +triple_A 7.541234392338106e-5 +triple_N 3.729715012475897e-6 +triple_V 2.9482469270195494e-4 +triple_V2 4.8295957628346505e-5 +triplet_N 3.729715012475897e-6 +tripletail_N 3.729715012475897e-6 +triplex_A 1.0773191989054437e-5 +triplicate_A 1.0773191989054437e-5 +triplicate_N 3.729715012475897e-6 +triplicate_V2 1.609865254278217e-5 +triplicity_N 3.729715012475897e-6 +tripling_N 3.729715012475897e-6 +triploid_A 1.0773191989054437e-5 +tripod_N 3.729715012475897e-6 +tripos_N 3.729715012475897e-6 +tripper_N 3.729715012475897e-6 +triptych_N 3.729715012475897e-6 +triquetral_N 3.729715012475897e-6 +trireme_N 3.729715012475897e-6 +trisaccharide_N 3.729715012475897e-6 +trisect_V2 1.609865254278217e-5 +triskaidekaphobia_N 3.729715012475897e-6 +triskaidekaphobic_A 1.0773191989054437e-5 +triskelion_N 3.729715012475897e-6 +trismus_N 3.729715012475897e-6 +trisomy_N 3.729715012475897e-6 +tristearin_N 3.729715012475897e-6 +trisyllable_N 3.729715012475897e-6 +tritanopia_N 3.729715012475897e-6 +tritanopic_A 1.0773191989054437e-5 +trite_A 1.0773191989054437e-5 +triteness_N 3.729715012475897e-6 +tritheism_N 3.729715012475897e-6 +tritheist_N 3.729715012475897e-6 +tritium_N 3.729715012475897e-6 +triton_N 3.729715012475897e-6 +triumph_N 2.237829007485538e-5 +triumph_V 6.803646754660499e-5 +triumphal_A 1.0773191989054437e-5 +triumphant_A 1.0773191989054437e-5 +triumvir_N 3.729715012475897e-6 +triumvirate_N 3.729715012475897e-6 +triune_A 1.0773191989054437e-5 +trivalent_A 1.0773191989054437e-5 +trivet_N 3.729715012475897e-6 +trivial_A 6.463915193432663e-5 +triviality_N 3.729715012475897e-6 +trivialize_V2 3.219730508556434e-5 +trivium_N 3.729715012475897e-6 +trochaic_A 1.0773191989054437e-5 +trochanter_N 3.729715012475897e-6 +trochee_N 3.729715012475897e-6 +trochlear_N 3.729715012475897e-6 +troglodyte_N 3.729715012475897e-6 +trogon_N 3.729715012475897e-6 +troika_N 3.729715012475897e-6 +trojan_A 1.0773191989054437e-5 +trojan_N 3.729715012475897e-6 +troll_N 3.729715012475897e-6 +troll_V 2.2678822515534993e-5 +troll_V2 1.609865254278217e-5 +trolley_N 1.118914503742769e-5 +trolley_car_N 3.729715012475897e-6 +trolleybus_N 3.729715012475897e-6 +trollop_N 3.729715012475897e-6 +trombiculiasis_N 3.729715012475897e-6 +trombiculid_N 3.729715012475897e-6 +trombidiid_N 3.729715012475897e-6 +trombone_N 3.729715012475897e-6 +trombonist_N 3.729715012475897e-6 +trompillo_N 3.729715012475897e-6 +troon_PN 1.865462821325971e-5 +troop_N 1.118914503742769e-4 +troop_V 2.2678822515534993e-5 +troop_V2 1.609865254278217e-5 +troop_carrier_N 3.729715012475897e-6 +trooper_N 3.729715012475897e-6 +troopship_N 3.729715012475897e-6 +trope_N 3.729715012475897e-6 +trophic_A 1.0773191989054437e-5 +trophobiosis_N 3.729715012475897e-6 +trophoblast_N 3.729715012475897e-6 +trophoblastic_A 1.0773191989054437e-5 +trophotropic_A 1.0773191989054437e-5 +trophotropism_N 3.729715012475897e-6 +trophozoite_N 3.729715012475897e-6 +trophy_N 1.118914503742769e-5 +tropic_N 3.729715012475897e-6 +tropical_A 4.309276795621775e-5 +tropism_N 3.729715012475897e-6 +troponym_N 3.729715012475897e-6 +troponymy_N 3.729715012475897e-6 +tropopause_N 3.729715012475897e-6 +troposphere_N 3.729715012475897e-6 +trot_N 3.729715012475897e-6 +trot_V 9.071529006213997e-5 +trot_V2 1.609865254278217e-5 +trot_off_V 2.2678822515534993e-5 +trot_off_to_V2 1.609865254278217e-5 +trot_out_V2 1.609865254278217e-5 +troth_N 3.729715012475897e-6 +trotter_N 3.729715012475897e-6 +troubadour_N 3.729715012475897e-6 +trouble_N 4.923223816468183e-4 +trouble_V 3.628611602485599e-4 +trouble_V2 9.176231949385836e-4 +troublemaker_N 7.459430024951794e-6 +troubleshooter_N 3.729715012475897e-6 +troublesome_A 1.1850511187959881e-4 +troublesomeness_N 3.729715012475897e-6 +troublous_A 1.0773191989054437e-5 +trough_N 4.1026865137234865e-5 +trough_V 6.803646754660499e-5 +trough_out_V 2.2678822515534993e-5 +trounce_V2 1.609865254278217e-5 +trouncing_N 3.729715012475897e-6 +troupe_N 1.118914503742769e-5 +trouper_N 3.729715012475897e-6 +trouser_N 7.459430024951794e-6 +trousseau_N 3.729715012475897e-6 +trout_N 7.459430024951794e-6 +trove_N 7.459430024951794e-6 +trowbridge_PN 1.865462821325971e-5 +trowel_N 7.459430024951794e-6 +troy_N 3.729715012475897e-6 +truancy_N 3.729715012475897e-6 +truant_A 1.0773191989054437e-5 +truant_N 3.729715012475897e-6 +truce_N 3.356743511228307e-5 +truck_N 4.550252315220594e-4 +truckage_N 3.729715012475897e-6 +truckle_N 3.729715012475897e-6 +truckle_V 2.2678822515534993e-5 +truckle_bed_N 3.729715012475897e-6 +truckling_N 3.729715012475897e-6 +truculence_N 7.459430024951794e-6 +truculency_N 3.729715012475897e-6 +truculent_A 1.0773191989054437e-5 +trudge_N 7.459430024951794e-6 +trudge_V 6.803646754660499e-5 +trudger_N 3.729715012475897e-6 +true_A 1.0880923908944981e-3 +true_N 3.729715012475897e-6 +true_V2 1.609865254278217e-5 +true_blue_A 1.0773191989054437e-5 +true_blue_N 3.729715012475897e-6 +true_hearted_A 1.0773191989054437e-5 +truelove_N 3.729715012475897e-6 +trueness_N 3.729715012475897e-6 +truffle_N 3.729715012475897e-6 +truism_N 3.729715012475897e-6 +trump_N 3.729715012475897e-6 +trump_V 2.2678822515534993e-5 +trump_V2 3.219730508556434e-5 +trump_up_V 2.2678822515534993e-5 +trumpery_A 1.0773191989054437e-5 +trumpet_N 7.459430024951794e-6 +trumpet_V 4.5357645031069986e-5 +trumpet_V2 8.049326271391085e-5 +trumpeter_N 3.729715012475897e-6 +trumpetfish_N 3.729715012475897e-6 +trumpetwood_N 3.729715012475897e-6 +truncate_A 1.0773191989054437e-5 +truncate_V2 1.609865254278217e-5 +truncation_N 3.729715012475897e-6 +truncheon_N 3.729715012475897e-6 +trundle_N 3.729715012475897e-6 +trundle_V 4.5357645031069986e-5 +trundle_V2 1.609865254278217e-5 +trunk_N 1.118914503742769e-5 +trunk_call_N 3.729715012475897e-6 +trunk_line_N 3.729715012475897e-6 +trunk_road_N 3.729715012475897e-6 +trunking_N 3.729715012475897e-6 +truro_PN 1.865462821325971e-5 +truss_N 3.729715012475897e-6 +truss_V2 1.609865254278217e-5 +trust_N 4.438360864846317e-4 +trust_V 1.1339411257767497e-4 +trust_V2 1.609865254278217e-4 +trust_V2V 9.350163627863488e-4 +trust_VS 1.1552012938254491e-4 +trustbuster_N 3.729715012475897e-6 +trustee_N 5.594572518713845e-5 +trusteeship_N 3.729715012475897e-6 +trustful_A 1.0773191989054437e-5 +trustworthiness_N 3.729715012475897e-6 +trustworthy_A 1.0773191989054437e-5 +trusty_A 1.0773191989054437e-5 +trusty_N 3.729715012475897e-6 +truth_N 8.578344528694562e-5 +truthful_A 4.309276795621775e-5 +truthfulness_N 3.729715012475897e-6 +try_N 1.4918860049903587e-5 +try_V 1.3607293509320995e-3 +try_V2 3.541703559412077e-4 +try_V2V 9.350163627863488e-4 +try_VV 3.747837785892754e-2 +try_back_V 2.2678822515534993e-5 +try_for_V2 1.609865254278217e-5 +try_it_on_V 2.2678822515534993e-5 +try_on_N 3.729715012475897e-6 +try_on_V2 1.609865254278217e-5 +try_out_N 3.729715012475897e-6 +try_out_V 2.2678822515534993e-5 +try_out_V2 3.219730508556434e-5 +try_out_for_V2 1.609865254278217e-5 +trypsin_N 3.729715012475897e-6 +trypsinogen_N 3.729715012475897e-6 +tryptophan_N 3.729715012475897e-6 +tryst_N 3.729715012475897e-6 +tsar_N 3.729715012475897e-6 +tsarina_N 3.729715012475897e-6 +tsetse_N 3.729715012475897e-6 +tsetse_fly_N 3.729715012475897e-6 +tsinan_PN 1.865462821325971e-5 +tsingtao_PN 1.865462821325971e-5 +tsitsihar_PN 1.865462821325971e-5 +tsoris_N 3.729715012475897e-6 +tsunami_N 3.729715012475897e-6 +tsuris_N 3.729715012475897e-6 +tswana_A 1.0773191989054437e-5 +tswana_N 3.729715012475897e-6 +tuatara_N 3.729715012475897e-6 +tub_N 7.459430024951794e-6 +tub_thumper_N 3.729715012475897e-6 +tuba_N 3.729715012475897e-6 +tubal_A 1.0773191989054437e-5 +tubby_A 1.0773191989054437e-5 +tube_N 4.475658014971076e-5 +tube_well_N 3.729715012475897e-6 +tubed_A 1.0773191989054437e-5 +tubeless_A 1.0773191989054437e-5 +tubeless_N 3.729715012475897e-6 +tuber_N 3.729715012475897e-6 +tubercle_N 3.729715012475897e-6 +tubercular_A 1.0773191989054437e-5 +tuberculate_A 1.0773191989054437e-5 +tuberculin_N 3.729715012475897e-6 +tuberculoid_A 1.0773191989054437e-5 +tuberculosis_N 3.729715012475897e-6 +tuberculous_A 1.0773191989054437e-5 +tuberose_N 3.729715012475897e-6 +tuberosity_N 3.729715012475897e-6 +tuberous_A 1.0773191989054437e-5 +tubful_N 3.729715012475897e-6 +tubing_N 3.729715012475897e-6 +tubocurarine_N 3.729715012475897e-6 +tubular_A 4.309276795621775e-5 +tubule_N 3.729715012475897e-6 +tuc_N 3.729715012475897e-6 +tuck_N 3.729715012475897e-6 +tuck_V 6.803646754660499e-5 +tuck_V2 6.439461017112868e-5 +tuck_away_V2 1.609865254278217e-5 +tuck_in_N 3.729715012475897e-6 +tuck_in_V 2.2678822515534993e-5 +tuck_in_V2 1.609865254278217e-5 +tuck_into_V2 1.609865254278217e-5 +tuck_shop_N 3.729715012475897e-6 +tuck_up_V2 1.609865254278217e-5 +tucker_N 3.729715012475897e-6 +tudung_N 3.729715012475897e-6 +tues_PN 1.865462821325971e-5 +tuesday_N 3.729715012475897e-6 +tuesday_PN 3.22725068089393e-3 +tufa_N 3.729715012475897e-6 +tuff_N 3.729715012475897e-6 +tuft_N 3.729715012475897e-6 +tufted_A 1.0773191989054437e-5 +tug_N 7.459430024951794e-6 +tug_V 4.5357645031069986e-5 +tug_V2 3.219730508556434e-5 +tugboat_N 3.729715012475897e-6 +tugrik_N 3.729715012475897e-6 +tuille_N 3.729715012475897e-6 +tuition_N 7.459430024951794e-5 +tularemia_N 3.729715012475897e-6 +tulip_N 7.459430024951794e-6 +tulipwood_N 3.729715012475897e-6 +tulle_N 3.729715012475897e-6 +tullibody_PN 1.865462821325971e-5 +tumble_N 4.475658014971076e-5 +tumble_V 9.751893681680048e-4 +tumble_V2 4.185649661123364e-4 +tumble_down_A 1.0773191989054437e-5 +tumblebug_N 3.729715012475897e-6 +tumbler_N 3.729715012475897e-6 +tumbleweed_N 3.729715012475897e-6 +tumbrel_N 3.729715012475897e-6 +tumbril_N 3.729715012475897e-6 +tumefaction_N 3.729715012475897e-6 +tumescence_N 3.729715012475897e-6 +tumescent_A 1.0773191989054437e-5 +tumid_A 1.0773191989054437e-5 +tumidity_N 3.729715012475897e-6 +tummy_N 3.729715012475897e-6 +tumor_N 3.729715012475897e-6 +tumour_N 7.459430024951794e-6 +tumult_N 1.8648575062379485e-5 +tumultuous_A 9.695872790148993e-5 +tumulus_N 3.729715012475897e-6 +tun_N 3.729715012475897e-6 +tuna_N 1.4918860049903587e-5 +tunaburger_N 3.729715012475897e-6 +tunbridge_wells_PN 1.865462821325971e-5 +tundra_N 3.729715012475897e-6 +tune_N 4.1026865137234865e-5 +tune_V 1.5875175760874494e-4 +tune_V2 4.8295957628346505e-5 +tune_in_V 2.2678822515534993e-5 +tune_in_to_V2 1.609865254278217e-5 +tune_out_V2 1.609865254278217e-5 +tune_up_V2 1.609865254278217e-5 +tuneful_A 1.0773191989054437e-5 +tunefulness_N 3.729715012475897e-6 +tuneless_A 1.0773191989054437e-5 +tuner_N 3.729715012475897e-6 +tung_oil_N 3.729715012475897e-6 +tungstate_N 3.729715012475897e-6 +tungsten_N 3.729715012475897e-6 +tunic_N 3.729715012475897e-6 +tunicate_N 3.729715012475897e-6 +tuning_N 3.729715012475897e-6 +tuning_fork_N 3.729715012475897e-6 +tunis_PN 1.865462821325971e-5 +tunisia_PN 1.865462821325971e-5 +tunisian_A 1.0773191989054437e-5 +tunisian_N 3.729715012475897e-6 +tunnel_N 2.9837720099807175e-5 +tunnel_V 2.2678822515534993e-5 +tunnel_V2 1.609865254278217e-5 +tunny_N 3.729715012475897e-6 +tup_N 3.729715012475897e-6 +tupelo_N 3.729715012475897e-6 +tupik_N 3.729715012475897e-6 +tuppence_N 3.729715012475897e-6 +tuppenny_A 1.0773191989054437e-5 +turban_N 2.237829007485538e-5 +turbaned_A 1.0773191989054437e-5 +turbid_A 1.0773191989054437e-5 +turbidity_N 3.729715012475897e-6 +turbidness_N 3.729715012475897e-6 +turbinate_A 1.0773191989054437e-5 +turbine_N 4.1026865137234865e-5 +turbogenerator_N 3.729715012475897e-6 +turbojet_N 3.729715012475897e-6 +turboprop_N 1.4918860049903587e-5 +turbot_N 3.729715012475897e-6 +turbulence_N 4.1026865137234865e-5 +turbulent_A 3.231957596716331e-5 +turd_N 3.729715012475897e-6 +tureen_N 3.729715012475897e-6 +turf_N 4.1026865137234865e-5 +turf_V2 1.609865254278217e-5 +turgid_A 2.1546383978108874e-5 +turgidity_N 3.729715012475897e-6 +turgor_N 3.729715012475897e-6 +turin_PN 1.865462821325971e-5 +turk_N 3.729715012475897e-6 +turkey_N 7.459430024951794e-6 +turkey_PN 3.917471924784539e-4 +turkish_A 1.0773191989054437e-5 +turkish_N 3.729715012475897e-6 +turku_PN 1.865462821325971e-5 +turmeric_N 3.729715012475897e-6 +turmoil_N 1.7902632059884304e-4 +turn_N 1.7529660558636716e-4 +turn_V 5.896493854039098e-3 +turn_V2 8.371299322246728e-4 +turn_V2A 2.0e-2 +turn_VA 1.673228346456693e-2 +turn_against_V2 1.609865254278217e-5 +turn_around_V2 1.609865254278217e-5 +turn_away_V 2.2678822515534993e-5 +turn_away_V2 1.609865254278217e-5 +turn_back_V 2.2678822515534993e-5 +turn_down_V2 4.8295957628346505e-5 +turn_in_V 2.2678822515534993e-5 +turn_in_V2 1.609865254278217e-5 +turn_into_V2 1.609865254278217e-5 +turn_off_N 3.729715012475897e-6 +turn_off_V2 1.609865254278217e-5 +turn_on_N 3.729715012475897e-6 +turn_on_V 2.2678822515534993e-5 +turn_on_V2 1.609865254278217e-5 +turn_out_N 3.729715012475897e-6 +turn_out_V 2.2678822515534993e-5 +turn_out_V2 4.8295957628346505e-5 +turn_over_V 2.2678822515534993e-5 +turn_over_V2 1.609865254278217e-5 +turn_round_N 3.729715012475897e-6 +turn_to_V2 1.609865254278217e-5 +turn_up_N 3.729715012475897e-6 +turn_up_V 2.2678822515534993e-5 +turn_up_V2 1.609865254278217e-5 +turnaround_N 3.729715012475897e-6 +turnbuckle_N 3.729715012475897e-6 +turncoat_N 3.729715012475897e-6 +turncock_N 3.729715012475897e-6 +turner_N 3.729715012475897e-6 +turnery_N 3.729715012475897e-6 +turning_N 7.459430024951794e-6 +turning_point_N 3.729715012475897e-6 +turnip_N 3.729715012475897e-6 +turnkey_N 7.459430024951794e-6 +turnoff_N 3.729715012475897e-6 +turnout_N 3.729715012475897e-6 +turnover_N 1.3799945546160818e-4 +turnpike_N 3.729715012475897e-6 +turnspit_N 3.729715012475897e-6 +turnstile_N 3.729715012475897e-6 +turnstone_N 3.729715012475897e-6 +turntable_N 3.729715012475897e-6 +turnverein_N 3.729715012475897e-6 +turpentine_N 3.729715012475897e-6 +turpitude_N 3.729715012475897e-6 +turps_N 3.729715012475897e-6 +turquoise_N 7.459430024951794e-6 +turreae_N 3.729715012475897e-6 +turret_N 3.729715012475897e-6 +turtle_N 1.4918860049903587e-5 +turtledove_N 3.729715012475897e-6 +turtleneck_A 1.0773191989054437e-5 +turtleneck_N 3.729715012475897e-6 +turtlenecked_A 1.0773191989054437e-5 +turtler_N 3.729715012475897e-6 +tushery_N 3.729715012475897e-6 +tusk_N 1.118914503742769e-5 +tusked_A 1.0773191989054437e-5 +tusker_N 3.729715012475897e-6 +tussah_N 3.729715012475897e-6 +tussle_N 3.729715012475897e-6 +tussle_V 2.2678822515534993e-5 +tussock_N 3.729715012475897e-6 +tut_V2 1.609865254278217e-5 +tutee_N 3.729715012475897e-6 +tutelage_N 3.729715012475897e-6 +tutelary_A 1.0773191989054437e-5 +tutor_N 3.729715012475897e-6 +tutor_V2 4.8295957628346505e-5 +tutorial_A 1.0773191989054437e-5 +tutorial_N 7.459430024951794e-6 +tutorship_N 3.729715012475897e-6 +tutti_frutti_N 3.729715012475897e-6 +tutu_N 3.729715012475897e-6 +tuxedo_N 1.118914503742769e-5 +tuxedoed_A 1.0773191989054437e-5 +tv_N 5.967544019961435e-5 +twaddle_N 3.729715012475897e-6 +twaddle_V 2.2678822515534993e-5 +twaddler_N 3.729715012475897e-6 +twain_N 3.729715012475897e-6 +twang_N 7.459430024951794e-6 +twang_V 2.2678822515534993e-5 +twang_V2 1.609865254278217e-5 +twayblade_N 3.729715012475897e-6 +tweak_N 3.729715012475897e-6 +tweak_V2 1.609865254278217e-5 +twee_A 1.0773191989054437e-5 +tweed_N 7.459430024951794e-6 +tweediness_N 3.729715012475897e-6 +tweedy_A 1.0773191989054437e-5 +tween_Adv 8.668966832532898e-6 +tween_decks_Adv 8.668966832532898e-6 +tweet_N 3.729715012475897e-6 +tweet_V 2.2678822515534993e-5 +tweeter_N 3.729715012475897e-6 +twelfth_night_N 3.729715012475897e-6 +twelfth_night_PN 1.865462821325971e-5 +twelvemonth_N 3.729715012475897e-6 +twerp_N 3.729715012475897e-6 +twice_Adv 4.941311094543752e-4 +twiddle_N 3.729715012475897e-6 +twiddle_V 2.2678822515534993e-5 +twiddle_V2 3.219730508556434e-5 +twiddler_N 3.729715012475897e-6 +twiddly_A 1.0773191989054437e-5 +twig_N 3.729715012475897e-6 +twig_V 2.2678822515534993e-5 +twig_V2 1.609865254278217e-5 +twiggy_A 1.0773191989054437e-5 +twilight_N 3.729715012475897e-6 +twilit_A 1.0773191989054437e-5 +twill_N 3.729715012475897e-6 +twilled_A 1.0773191989054437e-5 +twin_N 2.237829007485538e-5 +twin_V2 3.219730508556434e-5 +twinberry_N 3.729715012475897e-6 +twine_N 3.729715012475897e-6 +twine_V 2.2678822515534993e-5 +twine_V2 1.609865254278217e-5 +twiner_N 3.729715012475897e-6 +twinflower_N 3.729715012475897e-6 +twinge_N 3.729715012475897e-6 +twinjet_N 3.729715012475897e-6 +twinkle_N 3.729715012475897e-6 +twinkle_V 2.2678822515534993e-5 +twinkler_N 3.729715012475897e-6 +twinkling_N 3.729715012475897e-6 +twins_N 3.729715012475897e-6 +twirl_N 3.729715012475897e-6 +twirl_V 2.2678822515534993e-5 +twirl_V2 1.609865254278217e-5 +twirlingly_Adv 8.668966832532898e-6 +twist_N 4.848629516218666e-5 +twist_V 6.803646754660499e-5 +twist_V2 1.2878922034225736e-4 +twist_together_V 2.2678822515534993e-5 +twister_N 3.729715012475897e-6 +twisty_A 1.0773191989054437e-5 +twit_N 3.729715012475897e-6 +twit_V2 1.609865254278217e-5 +twitch_N 3.729715012475897e-6 +twitch_V 4.5357645031069986e-5 +twitch_V2 1.609865254278217e-5 +twitter_N 3.729715012475897e-6 +twitter_V 2.2678822515534993e-5 +twitterer_N 3.729715012475897e-6 +twixt_Prep 9.978546125829467e-6 +two_a_penny_A 1.0773191989054437e-5 +two_edged_A 1.0773191989054437e-5 +two_faced_A 1.0773191989054437e-5 +two_funnelled_A 1.0773191989054437e-5 +two_handed_A 1.0773191989054437e-5 +two_piece_N 3.729715012475897e-6 +two_ply_A 1.0773191989054437e-5 +two_seater_N 3.729715012475897e-6 +two_step_N 3.729715012475897e-6 +two_timing_A 1.0773191989054437e-5 +two_way_A 1.0773191989054437e-5 +twofer_N 3.729715012475897e-6 +twofold_A 1.0773191989054437e-5 +twofold_Adv 8.668966832532898e-6 +twopence_N 3.729715012475897e-6 +twopenny_A 1.0773191989054437e-5 +twopenny_halfpenny_A 1.0773191989054437e-5 +tycoon_N 2.237829007485538e-5 +tying_N 3.729715012475897e-6 +tyiyn_N 3.729715012475897e-6 +tyke_N 7.459430024951794e-6 +tympanic_A 1.0773191989054437e-5 +tympanist_N 3.729715012475897e-6 +tympanites_N 3.729715012475897e-6 +tympanitic_A 1.0773191989054437e-5 +tympanitis_N 3.729715012475897e-6 +tympanoplasty_N 3.729715012475897e-6 +tympanum_N 3.729715012475897e-6 +tyne_PN 1.865462821325971e-5 +tynemouth_PN 1.865462821325971e-5 +type_N 3.7297150124758965e-4 +type_V 2.2678822515534993e-5 +type_V2 3.219730508556434e-5 +type_in_V2 1.609865254278217e-5 +type_out_V2 1.609865254278217e-5 +type_up_V2 1.609865254278217e-5 +typecast_V2 1.609865254278217e-5 +typeface_N 7.459430024951794e-6 +typescript_N 3.729715012475897e-6 +typesetter_N 3.729715012475897e-6 +typewriter_N 1.118914503742769e-5 +typewritten_A 1.0773191989054437e-5 +typhoid_N 3.729715012475897e-6 +typhoon_N 7.459430024951794e-6 +typhus_N 3.729715012475897e-6 +typical_1_A 1.378968574598968e-3 +typical_2_A 1.0773191989054437e-5 +typical_3_A 2.1546383978108874e-5 +typicality_N 3.729715012475897e-6 +typification_N 3.729715012475897e-6 +typify_V2 4.8295957628346505e-5 +typing_N 3.729715012475897e-6 +typist_N 3.729715012475897e-6 +typographer_N 3.729715012475897e-6 +typographic_A 1.0773191989054437e-5 +typographically_Adv 8.668966832532898e-6 +typography_N 3.729715012475897e-6 +typology_N 3.729715012475897e-6 +tyramine_N 3.729715012475897e-6 +tyrannical_A 1.0773191989054437e-5 +tyrannicide_N 3.729715012475897e-6 +tyrannid_N 3.729715012475897e-6 +tyrannize_V 2.2678822515534993e-5 +tyrannize_V2 1.609865254278217e-5 +tyrannosaur_N 3.729715012475897e-6 +tyrannous_A 1.0773191989054437e-5 +tyranny_N 7.459430024951794e-6 +tyrant_N 3.729715012475897e-6 +tyre_N 3.729715012475897e-6 +tyro_N 3.729715012475897e-6 +tyrocidine_N 3.729715012475897e-6 +tyrolean_N 3.729715012475897e-6 +tyrone_PN 1.865462821325971e-5 +tyrosine_N 3.729715012475897e-6 +tyrosinemia_N 3.729715012475897e-6 +tyrothricin_N 3.729715012475897e-6 +tzar_N 3.729715012475897e-6 +tzarina_N 3.729715012475897e-6 +tzupo_PN 1.865462821325971e-5 +u_A 1.0773191989054437e-5 +u_boat_N 3.729715012475897e-6 +u_turn_N 3.729715012475897e-6 +uakari_N 3.729715012475897e-6 +ubiety_N 3.729715012475897e-6 +ubiquinone_N 3.729715012475897e-6 +ubiquitous_A 2.1546383978108874e-5 +ubiquity_N 7.459430024951794e-6 +udder_N 3.729715012475897e-6 +uddingston_PN 1.865462821325971e-5 +udi_PN 1.865462821325971e-5 +udine_PN 1.865462821325971e-5 +ufa_PN 1.865462821325971e-5 +ufo_N 3.729715012475897e-6 +uganda_PN 1.865462821325971e-5 +ugandan_A 1.0773191989054437e-5 +ugandan_N 3.729715012475897e-6 +uglify_V2 1.609865254278217e-5 +ugliness_N 3.729715012475897e-6 +ugly_A 4.309276795621775e-5 +uh_Interj 2.2900763358778626e-2 +uh_huh_Interj 1.5267175572519083e-2 +uh_uh_Interj 1.5267175572519083e-2 +uk_PN 1.865462821325971e-5 +ukase_N 3.729715012475897e-6 +uke_N 3.729715012475897e-6 +ukulele_N 3.729715012475897e-6 +ulalgia_N 3.729715012475897e-6 +ulatrophia_N 3.729715012475897e-6 +ulcer_N 7.459430024951794e-6 +ulcerate_V 2.2678822515534993e-5 +ulcerate_V2 1.609865254278217e-5 +ulceration_N 3.729715012475897e-6 +ulcerative_A 1.0773191989054437e-5 +ulcerous_A 1.0773191989054437e-5 +ulema_N 3.729715012475897e-6 +ulemorrhagia_N 3.729715012475897e-6 +ulitis_N 3.729715012475897e-6 +ullage_N 3.729715012475897e-6 +ulna_N 3.729715012475897e-6 +ulnar_A 1.0773191989054437e-5 +ulster_N 3.729715012475897e-6 +ulster_PN 1.865462821325971e-5 +ulterior_A 1.0773191989054437e-5 +ulteriority_N 3.729715012475897e-6 +ultima_N 3.729715012475897e-6 +ultimacy_N 3.729715012475897e-6 +ultimate_A 7.541234392338106e-4 +ultimate_N 3.729715012475897e-6 +ultimatum_N 1.8648575062379485e-5 +ultimo_A 1.0773191989054437e-5 +ultra_vires_A 1.0773191989054437e-5 +ultra_vires_Adv 8.668966832532898e-6 +ultracentrifugation_N 3.729715012475897e-6 +ultracentrifuge_N 3.729715012475897e-6 +ultraconservative_A 1.0773191989054437e-5 +ultramarine_A 1.0773191989054437e-5 +ultramarine_N 3.729715012475897e-6 +ultramicroscope_N 3.729715012475897e-6 +ultramicroscopic_A 1.0773191989054437e-5 +ultramodern_A 1.0773191989054437e-5 +ultramontane_A 1.0773191989054437e-5 +ultramontane_N 3.729715012475897e-6 +ultramontanism_N 3.729715012475897e-6 +ultrasonic_A 2.1546383978108874e-5 +ultrasonically_Adv 8.668966832532898e-6 +ultrasound_N 3.729715012475897e-6 +ultraviolet_A 2.1546383978108874e-5 +ultraviolet_N 3.729715012475897e-6 +ululate_V 2.2678822515534993e-5 +ululation_N 3.729715012475897e-6 +ulverston_PN 1.865462821325971e-5 +umbel_N 3.729715012475897e-6 +umbellate_A 1.0773191989054437e-5 +umbellifer_N 3.729715012475897e-6 +umbelliferous_A 1.0773191989054437e-5 +umbelliform_A 1.0773191989054437e-5 +umber_A 1.0773191989054437e-5 +umber_N 3.729715012475897e-6 +umbilical_A 1.0773191989054437e-5 +umbilicate_A 1.0773191989054437e-5 +umbo_N 3.729715012475897e-6 +umbra_N 3.729715012475897e-6 +umbrage_N 3.729715012475897e-6 +umbrella_A 1.0773191989054437e-5 +umbrella_N 1.8648575062379485e-5 +umbrellalike_A 1.0773191989054437e-5 +umbrellawort_N 3.729715012475897e-6 +umlaut_N 3.729715012475897e-6 +umpirage_N 3.729715012475897e-6 +umpire_N 3.729715012475897e-6 +umpire_V 2.2678822515534993e-5 +umpire_V2 1.609865254278217e-5 +umpteen_A 1.0773191989054437e-5 +umpteenth_A 1.0773191989054437e-5 +un_N 7.459430024951794e-6 +un_come_at_able_A 1.0773191989054437e-5 +un_get_at_able_A 1.0773191989054437e-5 +unabashed_A 1.0773191989054437e-5 +unabated_A 3.231957596716331e-5 +unable_A 5.278864074636674e-4 +unabridged_A 1.0773191989054437e-5 +unabused_A 1.0773191989054437e-5 +unaccented_A 1.0773191989054437e-5 +unacceptability_N 3.729715012475897e-6 +unacceptable_A 7.541234392338106e-5 +unaccommodating_A 1.0773191989054437e-5 +unaccompanied_A 1.0773191989054437e-5 +unaccountable_A 1.0773191989054437e-5 +unaccounted_A 2.1546383978108874e-5 +unaccredited_A 1.0773191989054437e-5 +unaccustomed_A 2.1546383978108874e-5 +unachievable_A 1.0773191989054437e-5 +unacknowledged_A 1.0773191989054437e-5 +unacquainted_A 1.0773191989054437e-5 +unacquisitive_A 1.0773191989054437e-5 +unactable_A 1.0773191989054437e-5 +unadaptability_N 3.729715012475897e-6 +unadaptable_A 1.0773191989054437e-5 +unadapted_A 1.0773191989054437e-5 +unaddicted_A 1.0773191989054437e-5 +unaddressed_A 1.0773191989054437e-5 +unadjustable_A 1.0773191989054437e-5 +unadjusted_A 1.0773191989054437e-5 +unadoptable_A 1.0773191989054437e-5 +unadorned_A 1.0773191989054437e-5 +unadulterated_A 1.0773191989054437e-5 +unadventurous_A 1.0773191989054437e-5 +unadvised_A 1.0773191989054437e-5 +unaerated_A 1.0773191989054437e-5 +unaffected_A 2.1546383978108874e-5 +unaffectedness_N 3.729715012475897e-6 +unaffecting_A 1.0773191989054437e-5 +unaffiliated_A 1.0773191989054437e-5 +unaffixed_A 1.0773191989054437e-5 +unafraid_A 1.0773191989054437e-5 +unaged_A 1.0773191989054437e-5 +unaggressive_A 1.0773191989054437e-5 +unagitated_A 1.0773191989054437e-5 +unaided_A 1.0773191989054437e-5 +unairworthy_A 1.0773191989054437e-5 +unalarming_A 1.0773191989054437e-5 +unalert_A 1.0773191989054437e-5 +unalienable_A 1.0773191989054437e-5 +unaligned_A 1.0773191989054437e-5 +unalike_A 1.0773191989054437e-5 +unalloyed_A 1.0773191989054437e-5 +unalterability_N 3.729715012475897e-6 +unalterable_A 1.0773191989054437e-5 +unaltered_A 2.1546383978108874e-5 +unambiguity_N 3.729715012475897e-6 +unambiguous_A 2.1546383978108874e-5 +unambitious_A 1.0773191989054437e-5 +unamended_A 2.1546383978108874e-5 +unanalyzable_A 1.0773191989054437e-5 +unanalyzed_A 1.0773191989054437e-5 +unanimated_A 1.0773191989054437e-5 +unanimity_N 7.459430024951794e-6 +unanimous_A 1.8314426381392542e-4 +unannounced_A 1.0773191989054437e-5 +unanswerable_A 2.1546383978108874e-5 +unanswered_A 5.3865959945272184e-5 +unanticipated_A 9.695872790148993e-5 +unapologetic_A 1.0773191989054437e-5 +unappareled_A 1.0773191989054437e-5 +unapparent_A 1.0773191989054437e-5 +unappealable_A 1.0773191989054437e-5 +unappealing_A 2.1546383978108874e-5 +unappendaged_A 1.0773191989054437e-5 +unappetizing_A 1.0773191989054437e-5 +unappetizingness_N 3.729715012475897e-6 +unappreciated_A 1.0773191989054437e-5 +unappreciative_A 1.0773191989054437e-5 +unapprehensive_A 1.0773191989054437e-5 +unapproachability_N 3.729715012475897e-6 +unapproachable_A 1.0773191989054437e-5 +unarguable_A 1.0773191989054437e-5 +unargumentative_A 1.0773191989054437e-5 +unarmed_A 1.0773191989054437e-5 +unarmored_A 1.0773191989054437e-5 +unarticulated_A 1.0773191989054437e-5 +unary_A 1.0773191989054437e-5 +unascertainable_A 1.0773191989054437e-5 +unashamed_A 1.0773191989054437e-5 +unasked_A 2.1546383978108874e-5 +unassailable_A 1.0773191989054437e-5 +unassertive_A 1.0773191989054437e-5 +unassertiveness_N 3.729715012475897e-6 +unassigned_A 1.0773191989054437e-5 +unassisted_A 1.0773191989054437e-5 +unassuming_A 2.1546383978108874e-5 +unassured_A 1.0773191989054437e-5 +unasterisked_A 1.0773191989054437e-5 +unattached_A 1.0773191989054437e-5 +unattainable_A 2.1546383978108874e-5 +unattainableness_N 3.729715012475897e-6 +unattended_A 1.0773191989054437e-5 +unattractive_A 4.309276795621775e-5 +unattractiveness_N 3.729715012475897e-6 +unattributable_A 1.0773191989054437e-5 +unauthorized_A 1.2927830386865325e-4 +unavailable_A 1.4005149585770768e-4 +unavailing_A 1.0773191989054437e-5 +unavenged_A 1.0773191989054437e-5 +unavoidable_A 1.0773191989054437e-5 +unavowed_A 1.0773191989054437e-5 +unawakened_A 1.0773191989054437e-5 +unaware_A 3.231957596716331e-5 +unaware_of_A2 1.89873417721519e-2 +unawares_Adv 1.7337933665065797e-5 +unawed_A 1.0773191989054437e-5 +unbacked_A 1.0773191989054437e-5 +unbaffled_A 1.0773191989054437e-5 +unbalance_V2 1.609865254278217e-5 +unbalconied_A 1.0773191989054437e-5 +unbanded_A 1.0773191989054437e-5 +unbaptized_A 1.0773191989054437e-5 +unbar_V2 1.609865254278217e-5 +unbarreled_A 1.0773191989054437e-5 +unbearable_A 2.1546383978108874e-5 +unbeatable_A 1.0773191989054437e-5 +unbeaten_A 1.0773191989054437e-5 +unbecoming_A 1.0773191989054437e-5 +unbecomingness_N 3.729715012475897e-6 +unbefitting_A 1.0773191989054437e-5 +unbeknown_A 1.0773191989054437e-5 +unbeknown_Adv 8.668966832532898e-6 +unbeknownst_A 2.1546383978108874e-5 +unbeknownst_Adv 8.668966832532898e-6 +unbelief_N 3.729715012475897e-6 +unbelievable_A 4.309276795621775e-5 +unbeliever_N 3.729715012475897e-6 +unbelieving_A 1.0773191989054437e-5 +unbeloved_A 1.0773191989054437e-5 +unbelted_A 1.0773191989054437e-5 +unbend_V 2.2678822515534993e-5 +unbend_V2 1.609865254278217e-5 +unbeneficed_A 1.0773191989054437e-5 +unbent_A 1.0773191989054437e-5 +unbiased_A 2.1546383978108874e-5 +unbiassed_A 1.0773191989054437e-5 +unbidden_A 1.0773191989054437e-5 +unbigoted_A 1.0773191989054437e-5 +unbind_V2 1.609865254278217e-5 +unbitter_A 1.0773191989054437e-5 +unbleached_A 1.0773191989054437e-5 +unblemished_A 1.0773191989054437e-5 +unblended_A 1.0773191989054437e-5 +unblessed_A 1.0773191989054437e-5 +unblinking_A 1.0773191989054437e-5 +unblock_V2 3.219730508556434e-5 +unblushing_A 1.0773191989054437e-5 +unbodied_A 1.0773191989054437e-5 +unbolt_V 2.2678822515534993e-5 +unbolt_V2 1.609865254278217e-5 +unbooked_A 1.0773191989054437e-5 +unbordered_A 1.0773191989054437e-5 +unborn_A 5.3865959945272184e-5 +unbosom_V2 1.609865254278217e-5 +unbounded_A 1.0773191989054437e-5 +unbowed_A 1.0773191989054437e-5 +unbraced_A 1.0773191989054437e-5 +unbrainwashed_A 1.0773191989054437e-5 +unbranched_A 1.0773191989054437e-5 +unbranded_A 1.0773191989054437e-5 +unbreakable_A 1.0773191989054437e-5 +unbreakableness_N 3.729715012475897e-6 +unbridgeable_A 1.0773191989054437e-5 +unbridled_A 1.0773191989054437e-5 +unbroken_A 2.1546383978108874e-5 +unbrushed_A 1.0773191989054437e-5 +unbuckle_V2 1.609865254278217e-5 +unburden_V2 1.609865254278217e-5 +unburied_A 1.0773191989054437e-5 +unburnished_A 1.0773191989054437e-5 +unbutton_V2 1.609865254278217e-5 +uncalled_for_A 1.0773191989054437e-5 +uncamphorated_A 1.0773191989054437e-5 +uncanny_A 5.3865959945272184e-5 +uncapped_A 1.0773191989054437e-5 +uncared_for_A 1.0773191989054437e-5 +uncarpeted_A 1.0773191989054437e-5 +uncarved_A 1.0773191989054437e-5 +uncastrated_A 1.0773191989054437e-5 +uncategorized_A 1.0773191989054437e-5 +uncaulked_A 1.0773191989054437e-5 +unceasing_A 1.0773191989054437e-5 +uncensored_A 2.1546383978108874e-5 +unceremonious_A 2.1546383978108874e-5 +unceremoniousness_N 3.729715012475897e-6 +uncertain_A 3.2319575967163313e-4 +uncertainty_N 3.095663460354994e-4 +uncertified_A 1.0773191989054437e-5 +unchain_V2 1.609865254278217e-5 +unchallengeable_A 1.0773191989054437e-5 +unchallenged_A 2.1546383978108874e-5 +unchangeable_A 1.0773191989054437e-5 +unchanged_A 1.1419583508397704e-3 +unchanging_A 3.231957596716331e-5 +uncharacteristic_A 1.0773191989054437e-5 +uncharacteristically_Adv 3.4675867330131594e-5 +uncharged_A 1.0773191989054437e-5 +uncharitable_A 1.0773191989054437e-5 +uncharted_A 6.463915193432663e-5 +unchartered_A 1.0773191989054437e-5 +unchaste_A 1.0773191989054437e-5 +uncheckable_A 1.0773191989054437e-5 +unchecked_A 3.231957596716331e-5 +uncheerfulness_N 3.729715012475897e-6 +unchivalrously_Adv 8.668966832532898e-6 +unchristian_A 1.0773191989054437e-5 +unchristianly_A 1.0773191989054437e-5 +uncial_A 1.0773191989054437e-5 +uncial_N 3.729715012475897e-6 +uncivil_A 1.0773191989054437e-5 +uncivilized_A 1.0773191989054437e-5 +unclaimed_A 2.1546383978108874e-5 +unclassifiable_A 1.0773191989054437e-5 +unclassified_A 3.231957596716331e-5 +uncle_N 1.8648575062379485e-5 +unclean_A 2.1546383978108874e-5 +uncleanliness_N 3.729715012475897e-6 +uncleanly_A 1.0773191989054437e-5 +unclear_A 2.1546383978108874e-4 +uncleared_A 1.0773191989054437e-5 +unclearness_N 3.729715012475897e-6 +unclipped_A 1.0773191989054437e-5 +unclogged_A 1.0773191989054437e-5 +unclothed_A 1.0773191989054437e-5 +unclouded_A 1.0773191989054437e-5 +uncluttered_A 1.0773191989054437e-5 +unco_A 1.0773191989054437e-5 +unco_Adv 8.668966832532898e-6 +unco_operative_A 1.0773191989054437e-5 +unco_ordinated_A 1.0773191989054437e-5 +uncoated_A 1.0773191989054437e-5 +uncoerced_A 1.0773191989054437e-5 +uncoiled_A 1.0773191989054437e-5 +uncollected_A 1.0773191989054437e-5 +uncolored_A 1.0773191989054437e-5 +uncoloured_A 1.0773191989054437e-5 +uncombable_A 1.0773191989054437e-5 +uncombed_A 1.0773191989054437e-5 +uncombined_A 1.0773191989054437e-5 +uncomfortable_A 7.541234392338106e-5 +uncommercial_A 1.0773191989054437e-5 +uncommercialized_A 1.0773191989054437e-5 +uncommitted_A 1.0773191989054437e-5 +uncommon_A 9.695872790148993e-5 +uncommonness_N 3.729715012475897e-6 +uncommunicative_A 1.0773191989054437e-5 +uncommunicativeness_N 3.729715012475897e-6 +uncompartmented_A 1.0773191989054437e-5 +uncompassionate_A 1.0773191989054437e-5 +uncompensated_A 1.0773191989054437e-5 +uncompetitive_A 1.0773191989054437e-5 +uncomplaining_A 2.1546383978108874e-5 +uncompleted_A 1.0773191989054437e-5 +uncomplicated_A 3.231957596716331e-5 +uncomplimentary_A 1.0773191989054437e-5 +uncompounded_A 1.0773191989054437e-5 +uncomprehended_A 1.0773191989054437e-5 +uncomprehending_A 1.0773191989054437e-5 +uncompromising_A 1.0773191989054437e-5 +unconcealed_A 1.0773191989054437e-5 +unconcern_N 3.729715012475897e-6 +unconcerned_A 3.231957596716331e-5 +unconditional_A 3.231957596716331e-5 +unconditioned_A 1.0773191989054437e-5 +unconfessed_A 1.0773191989054437e-5 +unconfessed_N 3.729715012475897e-6 +unconfined_A 1.0773191989054437e-5 +unconfirmed_A 2.1546383978108874e-5 +unconformable_A 1.0773191989054437e-5 +uncongenial_A 1.0773191989054437e-5 +uncongeniality_N 3.729715012475897e-6 +unconnected_A 2.1546383978108874e-5 +unconnectedness_N 3.729715012475897e-6 +unconquerable_A 1.0773191989054437e-5 +unconquered_A 1.0773191989054437e-5 +unconscientious_A 1.0773191989054437e-5 +unconscientiousness_N 3.729715012475897e-6 +unconscionable_A 1.0773191989054437e-5 +unconscious_A 2.1546383978108874e-5 +unconscious_N 3.729715012475897e-6 +unconsciousness_N 3.729715012475897e-6 +unconsidered_A 1.0773191989054437e-5 +unconsolidated_A 1.0773191989054437e-5 +unconstipated_A 1.0773191989054437e-5 +unconstitutional_A 2.2623703177014317e-4 +unconstrained_A 1.0773191989054437e-5 +unconstricted_A 1.0773191989054437e-5 +unconstructive_A 1.0773191989054437e-5 +unconsumed_A 1.0773191989054437e-5 +unconsummated_A 1.0773191989054437e-5 +uncontaminated_A 1.0773191989054437e-5 +uncontested_A 1.0773191989054437e-5 +uncontrollable_A 1.0773191989054437e-5 +uncontrolled_A 3.231957596716331e-5 +uncontroversial_A 1.0773191989054437e-5 +unconventional_A 5.3865959945272184e-5 +unconventionality_N 3.729715012475897e-6 +unconverted_A 1.0773191989054437e-5 +unconvinced_A 2.1546383978108874e-5 +unconvincing_A 2.1546383978108874e-5 +uncooked_A 1.0773191989054437e-5 +uncool_A 1.0773191989054437e-5 +uncooperative_A 1.0773191989054437e-5 +uncoordinated_A 1.0773191989054437e-5 +uncordial_A 1.0773191989054437e-5 +uncork_V2 1.609865254278217e-5 +uncorrected_A 1.0773191989054437e-5 +uncorrelated_A 1.0773191989054437e-5 +uncorroborated_A 1.0773191989054437e-5 +uncorrupted_A 1.0773191989054437e-5 +uncouple_V2 1.609865254278217e-5 +uncousinly_A 1.0773191989054437e-5 +uncouth_A 1.0773191989054437e-5 +uncouthness_N 3.729715012475897e-6 +uncover_V2 2.7367709322729687e-4 +uncrannied_A 1.0773191989054437e-5 +uncreative_A 1.0773191989054437e-5 +uncreativeness_N 3.729715012475897e-6 +uncritical_A 4.309276795621775e-5 +uncropped_A 1.0773191989054437e-5 +uncross_V2 1.609865254278217e-5 +uncrowded_A 1.0773191989054437e-5 +uncrowned_A 1.0773191989054437e-5 +uncrystallized_A 1.0773191989054437e-5 +unction_N 3.729715012475897e-6 +unctuous_A 1.0773191989054437e-5 +uncultivable_A 1.0773191989054437e-5 +uncultivated_A 1.0773191989054437e-5 +uncultured_A 1.0773191989054437e-5 +uncured_A 1.0773191989054437e-5 +uncurl_V 2.2678822515534993e-5 +uncurl_V2 1.609865254278217e-5 +uncurved_A 1.0773191989054437e-5 +uncus_N 3.729715012475897e-6 +uncut_A 1.0773191989054437e-5 +undamaged_A 4.309276795621775e-5 +undatable_A 1.0773191989054437e-5 +undated_A 2.1546383978108874e-5 +undaunted_A 2.1546383978108874e-5 +undecagon_N 3.729715012475897e-6 +undeceive_V2 1.609865254278217e-5 +undecided_A 2.1546383978108874e-5 +undeciphered_A 1.0773191989054437e-5 +undeclared_A 1.0773191989054437e-5 +undedicated_A 1.0773191989054437e-5 +undefeated_A 2.1546383978108874e-5 +undefended_A 1.0773191989054437e-5 +undeferential_A 1.0773191989054437e-5 +undefinable_A 1.0773191989054437e-5 +undefined_A 5.3865959945272184e-5 +undelineated_A 1.0773191989054437e-5 +undemanding_A 1.0773191989054437e-5 +undemocratic_A 6.463915193432663e-5 +undemocratically_Adv 8.668966832532898e-6 +undemonstrative_A 1.0773191989054437e-5 +undeniable_A 4.309276795621775e-5 +undenominational_A 1.0773191989054437e-5 +undependability_N 3.729715012475897e-6 +undependable_A 1.0773191989054437e-5 +undepicted_A 1.0773191989054437e-5 +under_Adv 1.7337933665065797e-5 +under_Prep 8.372000199570923e-3 +under_the_counter_A 1.0773191989054437e-5 +underachievement_N 3.729715012475897e-6 +underachiever_N 3.729715012475897e-6 +underact_V 2.2678822515534993e-5 +underact_V2 1.609865254278217e-5 +underage_A 1.0773191989054437e-5 +underarm_A 1.0773191989054437e-5 +underarm_Adv 8.668966832532898e-6 +underbelly_N 3.729715012475897e-6 +underbid_V2 1.609865254278217e-5 +underboss_N 3.729715012475897e-6 +underbred_A 1.0773191989054437e-5 +underbrush_N 3.729715012475897e-6 +undercarriage_N 3.729715012475897e-6 +undercharge_N 3.729715012475897e-6 +undercharge_V2 1.609865254278217e-5 +underclothing_N 3.729715012475897e-6 +undercoat_N 3.729715012475897e-6 +undercoated_A 1.0773191989054437e-5 +undercover_A 3.231957596716331e-5 +undercurrent_N 1.4918860049903587e-5 +undercut_N 3.729715012475897e-6 +undercut_V2 1.7708517797060386e-4 +underdeveloped_A 3.231957596716331e-5 +underdevelopment_N 3.729715012475897e-6 +underdog_N 7.459430024951794e-6 +underdone_A 1.0773191989054437e-5 +underdressed_A 2.1546383978108874e-5 +undereducated_A 1.0773191989054437e-5 +underemployed_A 2.1546383978108874e-5 +underestimate_N 3.729715012475897e-6 +underestimate_V2 1.7708517797060386e-4 +underestimation_N 3.729715012475897e-6 +underevaluation_N 3.729715012475897e-6 +underexpose_V2 1.609865254278217e-5 +underexposure_N 3.729715012475897e-6 +underfed_A 1.0773191989054437e-5 +underfelt_N 3.729715012475897e-6 +underfloor_A 1.0773191989054437e-5 +underfoot_Adv 8.668966832532898e-6 +underfund_V2 4.8295957628346505e-5 +undergarment_N 7.459430024951794e-6 +undergo_V2 1.9318383051338602e-4 +undergraduate_N 7.459430024951794e-6 +underground_A 7.541234392338106e-5 +underground_Adv 2.6006900497598697e-5 +underground_N 7.459430024951794e-6 +undergrowth_N 3.729715012475897e-6 +underhand_A 1.0773191989054437e-5 +underhand_Adv 8.668966832532898e-6 +underhanded_A 1.0773191989054437e-5 +underhung_A 1.0773191989054437e-5 +underivative_A 1.0773191989054437e-5 +underived_A 1.0773191989054437e-5 +underlay_N 3.729715012475897e-6 +underlie_V2 4.8295957628346505e-4 +underline_N 3.729715012475897e-6 +underline_V2 9.659191525669301e-5 +underling_N 3.729715012475897e-6 +underlip_N 3.729715012475897e-6 +underlying_A 2.1546383978108874e-5 +undermanned_A 1.0773191989054437e-5 +undermentioned_A 1.0773191989054437e-5 +undermine_V2 3.3807170339842556e-4 +underneath_Adv 8.668966832532898e-6 +underneath_Prep 3.991418450331787e-5 +undernourished_A 1.0773191989054437e-5 +undernourishment_N 3.729715012475897e-6 +underpants_N 3.729715012475897e-6 +underpart_N 3.729715012475897e-6 +underpass_N 3.729715012475897e-6 +underpay_V2 3.219730508556434e-5 +underpayment_N 3.729715012475897e-6 +underperform_V2 8.049326271391085e-5 +underperformer_N 3.729715012475897e-6 +underpin_V2 1.4488787288503951e-4 +underpopulated_A 1.0773191989054437e-5 +underprivileged_A 3.231957596716331e-5 +underproduction_N 3.729715012475897e-6 +underquote_V2 1.609865254278217e-5 +underrate_V2 1.609865254278217e-5 +underscore_N 3.729715012475897e-6 +underscore_V2 3.702690084839899e-4 +undersea_A 1.0773191989054437e-5 +underseal_N 3.729715012475897e-6 +undersealed_A 1.0773191989054437e-5 +undersecretary_N 1.8648575062379485e-5 +undersell_V2 3.219730508556434e-5 +underseller_N 3.729715012475897e-6 +undersexed_A 1.0773191989054437e-5 +undershoot_V2 1.609865254278217e-5 +undershrub_N 3.729715012475897e-6 +underside_N 7.459430024951794e-6 +undersign_V2 1.609865254278217e-5 +undersize_A 1.0773191989054437e-5 +undersized_A 1.0773191989054437e-5 +underskirt_N 3.729715012475897e-6 +underslung_A 1.0773191989054437e-5 +underspend_V 2.2678822515534993e-5 +underspend_V2 1.609865254278217e-5 +understaffed_A 1.0773191989054437e-5 +understand_V 4.308976277951649e-4 +understand_V2 5.151568813690294e-4 +understand_V2V 4.675081813931744e-4 +understand_VS 1.8483220701207186e-3 +understandable_A 9.695872790148993e-5 +understanding_N 4.848629516218666e-5 +understate_V2 1.609865254278217e-4 +understatement_N 1.4918860049903587e-5 +understock_V2 1.609865254278217e-5 +understudy_N 3.729715012475897e-6 +understudy_V2 1.609865254278217e-5 +undersurface_N 3.729715012475897e-6 +undertake_V2 3.541703559412077e-4 +undertaker_N 3.729715012475897e-6 +undertaking_N 2.6108005087331277e-5 +undertide_N 3.729715012475897e-6 +undertone_N 1.4918860049903587e-5 +undertow_N 3.729715012475897e-6 +undervaluation_N 3.729715012475897e-6 +undervalue_V2 1.7708517797060386e-4 +underwater_A 3.231957596716331e-5 +underwear_N 3.729715012475897e-5 +underweight_A 1.0773191989054437e-5 +underwhelm_V2 3.219730508556434e-5 +underwing_N 3.729715012475897e-6 +underworld_N 7.459430024951794e-6 +underwrite_V 5.216129178573049e-4 +underwrite_V2 2.8977574577007903e-4 +underwriter_N 3.5805264119768607e-4 +undescended_A 1.0773191989054437e-5 +undescriptive_A 1.0773191989054437e-5 +undeserved_A 2.1546383978108874e-5 +undeserving_A 1.0773191989054437e-5 +undesigned_A 1.0773191989054437e-5 +undesirability_N 3.729715012475897e-6 +undesirable_A 4.309276795621775e-5 +undesirable_N 3.729715012475897e-6 +undesired_A 1.0773191989054437e-5 +undesirous_A 1.0773191989054437e-5 +undestroyable_A 1.0773191989054437e-5 +undetectable_A 1.0773191989054437e-5 +undetected_A 2.1546383978108874e-5 +undetermined_A 5.3865959945272184e-5 +undeterred_A 4.309276795621775e-5 +undeveloped_A 8.61855359124355e-5 +undeviating_A 1.0773191989054437e-5 +undiagnosable_A 1.0773191989054437e-5 +undiagnosed_A 1.0773191989054437e-5 +undies_N 3.729715012475897e-6 +undifferentiated_A 1.0773191989054437e-5 +undigested_A 1.0773191989054437e-5 +undignified_A 1.0773191989054437e-5 +undiluted_A 1.0773191989054437e-5 +undiminished_A 1.0773191989054437e-5 +undimmed_A 1.0773191989054437e-5 +undine_N 3.729715012475897e-6 +undiplomatic_A 2.1546383978108874e-5 +undiplomatically_Adv 8.668966832532898e-6 +undiscerning_A 1.0773191989054437e-5 +undischarged_A 1.0773191989054437e-5 +undisciplined_A 2.1546383978108874e-5 +undisclosed_A 1.4005149585770768e-4 +undiscovered_A 1.0773191989054437e-5 +undiscriminating_A 1.0773191989054437e-5 +undisguised_A 1.0773191989054437e-5 +undismayed_A 1.0773191989054437e-5 +undisputed_A 2.1546383978108874e-5 +undissolved_A 1.0773191989054437e-5 +undistinguishable_A 1.0773191989054437e-5 +undistinguished_A 3.231957596716331e-5 +undistorted_A 1.0773191989054437e-5 +undistributed_A 1.0773191989054437e-5 +undisturbed_A 2.1546383978108874e-5 +undiversified_A 1.0773191989054437e-5 +undividable_A 1.0773191989054437e-5 +undivided_A 1.0773191989054437e-5 +undo_V2 1.7708517797060386e-4 +undock_V 2.2678822515534993e-5 +undock_V2 1.609865254278217e-5 +undocumented_A 1.0773191989054437e-5 +undoer_N 3.729715012475897e-6 +undogmatic_A 1.0773191989054437e-5 +undoing_N 7.459430024951794e-6 +undomestic_A 1.0773191989054437e-5 +undomesticated_A 1.0773191989054437e-5 +undoubted_A 1.2927830386865325e-4 +undrained_A 1.0773191989054437e-5 +undramatic_A 1.0773191989054437e-5 +undramatically_Adv 8.668966832532898e-6 +undraped_A 1.0773191989054437e-5 +undrawn_A 1.0773191989054437e-5 +undreamed_A 1.0773191989054437e-5 +undreamed_of_A 1.0773191989054437e-5 +undreamt_A 1.0773191989054437e-5 +undress_N 7.459430024951794e-6 +undress_V 2.2678822515534993e-5 +undress_V2 1.609865254278217e-5 +undried_A 1.0773191989054437e-5 +undrinkable_A 1.0773191989054437e-5 +undue_A 3.231957596716331e-5 +undulate_A 1.0773191989054437e-5 +undulate_V 6.803646754660499e-5 +undulation_N 3.729715012475897e-6 +undulatory_A 1.0773191989054437e-5 +unduly_Adv 5.2013800995197394e-5 +undutifulness_N 3.729715012475897e-6 +undying_A 1.0773191989054437e-5 +undynamic_A 1.0773191989054437e-5 +uneager_A 1.0773191989054437e-5 +unearned_A 1.0773191989054437e-5 +unearth_V2 3.219730508556434e-5 +unearthly_A 1.0773191989054437e-5 +unease_N 1.4918860049903587e-5 +uneasiness_N 1.118914503742769e-5 +uneasy_A 9.695872790148993e-5 +uneatable_A 1.0773191989054437e-5 +uneaten_A 1.0773191989054437e-5 +uneconomic_A 2.1546383978108874e-5 +uneconomical_A 1.0773191989054437e-5 +unedifying_A 1.0773191989054437e-5 +unedited_A 1.0773191989054437e-5 +uneducated_A 3.231957596716331e-5 +uneffective_A 1.0773191989054437e-5 +unelaborated_A 1.0773191989054437e-5 +unemotional_A 1.0773191989054437e-5 +unemotionality_N 3.729715012475897e-6 +unemphatic_A 1.0773191989054437e-5 +unemployable_A 1.0773191989054437e-5 +unemployed_A 4.309276795621775e-5 +unemployment_N 1.5664803052398767e-4 +unenclosed_A 1.0773191989054437e-5 +unencouraging_A 1.0773191989054437e-5 +unencumbered_A 1.0773191989054437e-5 +unended_A 1.0773191989054437e-5 +unending_A 3.231957596716331e-5 +unendowed_A 1.0773191989054437e-5 +unendurable_A 1.0773191989054437e-5 +unenforceable_A 1.0773191989054437e-5 +unenforced_A 1.0773191989054437e-5 +unengaged_A 1.0773191989054437e-5 +unenlightened_A 1.0773191989054437e-5 +unenlightening_A 1.0773191989054437e-5 +unenlightenment_N 3.729715012475897e-6 +unenlivened_A 1.0773191989054437e-5 +unenterprising_A 1.0773191989054437e-5 +unenthusiastic_A 3.231957596716331e-5 +unenthusiastically_Adv 8.668966832532898e-6 +unentitled_A 1.0773191989054437e-5 +unenviable_A 1.0773191989054437e-5 +unequal_A 2.1546383978108874e-5 +unequalized_A 1.0773191989054437e-5 +unequalled_A 1.0773191989054437e-5 +unequipped_A 1.0773191989054437e-5 +unequivocal_A 2.1546383978108874e-5 +unerect_A 1.0773191989054437e-5 +unerring_A 2.1546383978108874e-5 +unesco_PN 1.865462821325971e-5 +unestablished_A 1.0773191989054437e-5 +unethical_A 5.3865959945272184e-5 +uneven_A 4.309276795621775e-5 +unevenness_N 3.729715012475897e-6 +uneventful_A 2.1546383978108874e-5 +unexacting_A 1.0773191989054437e-5 +unexampled_A 1.0773191989054437e-5 +unexceeded_A 1.0773191989054437e-5 +unexcelled_A 1.0773191989054437e-5 +unexceptionable_A 1.0773191989054437e-5 +unexceptional_A 1.0773191989054437e-5 +unexchangeability_N 3.729715012475897e-6 +unexchangeable_A 1.0773191989054437e-5 +unexcitable_A 1.0773191989054437e-5 +unexcited_A 1.0773191989054437e-5 +unexciting_A 1.0773191989054437e-5 +unexclusive_A 1.0773191989054437e-5 +unexcused_A 1.0773191989054437e-5 +unexhausted_A 1.0773191989054437e-5 +unexpansive_A 1.0773191989054437e-5 +unexpected_A 3.770617196169053e-4 +unexpectedness_N 3.729715012475897e-6 +unexpendable_A 1.0773191989054437e-5 +unexpired_A 1.0773191989054437e-5 +unexplained_A 6.463915193432663e-5 +unexploited_A 1.0773191989054437e-5 +unexplored_A 1.0773191989054437e-5 +unexportable_A 1.0773191989054437e-5 +unexposed_A 1.0773191989054437e-5 +unexpressed_A 1.0773191989054437e-5 +unexpurgated_A 1.0773191989054437e-5 +unextended_A 1.0773191989054437e-5 +unfaceted_A 1.0773191989054437e-5 +unfailing_A 1.0773191989054437e-5 +unfair_A 4.309276795621775e-4 +unfairness_N 3.729715012475897e-6 +unfaithful_A 1.0773191989054437e-5 +unfaithfulness_N 3.729715012475897e-6 +unfaltering_A 1.0773191989054437e-5 +unfamiliar_A 2.1546383978108874e-5 +unfamiliarity_N 7.459430024951794e-6 +unfashionable_A 2.1546383978108874e-5 +unfasten_V 2.2678822515534993e-5 +unfasten_V2 1.609865254278217e-5 +unfastidious_A 1.0773191989054437e-5 +unfathomable_A 2.1546383978108874e-5 +unfathomed_A 1.0773191989054437e-5 +unfattened_A 1.0773191989054437e-5 +unfavorable_A 1.0773191989054437e-5 +unfavorableness_N 3.729715012475897e-6 +unfavourable_A 1.0773191989054437e-5 +unfaze_V2 4.8295957628346505e-5 +unfeathered_A 1.0773191989054437e-5 +unfed_A 1.0773191989054437e-5 +unfeeling_A 1.0773191989054437e-5 +unfeelingness_N 3.729715012475897e-6 +unfeigned_A 1.0773191989054437e-5 +unfeminine_A 1.0773191989054437e-5 +unfenced_A 1.0773191989054437e-5 +unfermented_A 1.0773191989054437e-5 +unfertilized_A 1.0773191989054437e-5 +unfettered_A 3.231957596716331e-5 +unfilled_A 2.1546383978108874e-5 +unfilmed_A 1.0773191989054437e-5 +unfinished_A 4.309276795621775e-5 +unfirm_A 1.0773191989054437e-5 +unfit_A 4.309276795621775e-5 +unfit_V2 1.609865254278217e-5 +unfitness_N 3.729715012475897e-6 +unfixed_A 1.0773191989054437e-5 +unflagging_A 2.1546383978108874e-5 +unflappable_A 1.0773191989054437e-5 +unflattering_A 1.0773191989054437e-5 +unflavored_A 1.0773191989054437e-5 +unfledged_A 1.0773191989054437e-5 +unflinching_A 1.0773191989054437e-5 +unflurried_A 1.0773191989054437e-5 +unfocused_A 1.0773191989054437e-5 +unfold_V 2.0410940263981494e-4 +unfold_V2 1.609865254278217e-5 +unfolding_N 3.729715012475897e-6 +unforbearing_A 1.0773191989054437e-5 +unforced_A 1.0773191989054437e-5 +unforeseeable_A 1.0773191989054437e-5 +unforeseen_A 3.231957596716331e-5 +unforested_A 1.0773191989054437e-5 +unforethoughtful_A 1.0773191989054437e-5 +unforfeitable_A 1.0773191989054437e-5 +unforgettable_A 1.0773191989054437e-5 +unforgivable_A 1.0773191989054437e-5 +unforgiving_A 2.1546383978108874e-5 +unformed_A 1.0773191989054437e-5 +unforthcoming_A 1.0773191989054437e-5 +unfortunate_A 3.986081035950142e-4 +unfortunate_N 3.729715012475897e-6 +unfounded_A 4.309276795621775e-5 +unframed_A 1.0773191989054437e-5 +unfree_A 1.0773191989054437e-5 +unfrequented_A 1.0773191989054437e-5 +unfretted_A 1.0773191989054437e-5 +unfriendliness_N 3.729715012475897e-6 +unfriendly_A 1.0773191989054437e-4 +unfrightened_A 1.0773191989054437e-5 +unfrock_V2 1.609865254278217e-5 +unfrosted_A 1.0773191989054437e-5 +unfrozen_A 1.0773191989054437e-5 +unfruitful_A 1.0773191989054437e-5 +unfueled_A 1.0773191989054437e-5 +unfulfilled_A 3.231957596716331e-5 +unfunctional_A 1.0773191989054437e-5 +unfunded_A 1.0773191989054437e-5 +unfunny_A 1.0773191989054437e-5 +unfurl_V 2.2678822515534993e-5 +unfurl_V2 1.609865254278217e-5 +unfurnished_A 1.0773191989054437e-5 +unfurrowed_A 1.0773191989054437e-5 +ungainly_A 2.1546383978108874e-5 +ungeared_A 1.0773191989054437e-5 +ungenerous_A 1.0773191989054437e-5 +ungentle_A 1.0773191989054437e-5 +ungentlemanly_A 2.1546383978108874e-5 +unglazed_A 1.0773191989054437e-5 +ungodliness_N 3.729715012475897e-6 +ungodly_A 1.0773191989054437e-5 +ungovernable_A 1.0773191989054437e-5 +ungraceful_A 1.0773191989054437e-5 +ungracious_A 1.0773191989054437e-5 +ungraciousness_N 3.729715012475897e-6 +ungraded_A 1.0773191989054437e-5 +ungrammatical_A 1.0773191989054437e-5 +ungrasped_A 1.0773191989054437e-5 +ungrateful_A 1.0773191989054437e-5 +ungratefulness_N 3.729715012475897e-6 +ungregarious_A 1.0773191989054437e-5 +ungroomed_A 1.0773191989054437e-5 +ungrudging_A 1.0773191989054437e-5 +ungual_A 1.0773191989054437e-5 +unguaranteed_A 1.0773191989054437e-5 +unguarded_A 1.0773191989054437e-5 +unguent_N 3.729715012475897e-6 +unguiculate_A 1.0773191989054437e-5 +unguiculate_N 3.729715012475897e-6 +unguided_A 1.0773191989054437e-5 +ungulate_A 1.0773191989054437e-5 +ungulate_N 3.729715012475897e-6 +ungummed_A 1.0773191989054437e-5 +ungusseted_A 1.0773191989054437e-5 +unhallowed_A 1.0773191989054437e-5 +unhampered_A 1.0773191989054437e-5 +unhand_V2 1.609865254278217e-5 +unhappiness_N 1.118914503742769e-5 +unhappy_A 1.4005149585770768e-4 +unharmed_A 3.231957596716331e-5 +unhatched_A 1.0773191989054437e-5 +unheaded_A 1.0773191989054437e-5 +unhealed_A 2.1546383978108874e-5 +unhealthful_A 1.0773191989054437e-5 +unhealthfulness_N 3.729715012475897e-6 +unhealthy_A 2.1546383978108874e-5 +unheard_A 4.309276795621775e-5 +unheard_of_A 2.1546383978108874e-5 +unhearing_A 1.0773191989054437e-5 +unheated_A 1.0773191989054437e-5 +unheeded_A 1.0773191989054437e-5 +unhelpful_A 2.1546383978108874e-5 +unhelpfulness_N 3.729715012475897e-6 +unheralded_A 1.0773191989054437e-5 +unhesitating_A 1.0773191989054437e-5 +unhewn_A 1.0773191989054437e-5 +unhindered_A 2.1546383978108874e-5 +unhinge_V2 4.8295957628346505e-5 +unhitch_V 2.2678822515534993e-5 +unhitch_V2 1.609865254278217e-5 +unholiness_N 3.729715012475897e-6 +unholy_A 1.0773191989054437e-5 +unhomogenized_A 1.0773191989054437e-5 +unhook_V2 1.609865254278217e-5 +unhoped_A 1.0773191989054437e-5 +unhoped_for_A 1.0773191989054437e-5 +unhorse_V2 1.609865254278217e-5 +unhurried_A 1.0773191989054437e-5 +unhurt_A 2.1546383978108874e-5 +unhygienic_A 1.0773191989054437e-5 +unhygienically_Adv 8.668966832532898e-6 +unicameral_A 1.0773191989054437e-5 +unicef_PN 1.865462821325971e-5 +unicellular_A 1.0773191989054437e-5 +unicorn_N 3.729715012475897e-6 +unicuspid_A 1.0773191989054437e-5 +unicycle_N 3.729715012475897e-6 +unicyclist_N 3.729715012475897e-6 +unidentifiable_A 1.0773191989054437e-5 +unidentified_A 1.0773191989054437e-4 +unidimensional_A 1.0773191989054437e-5 +unidirectional_A 1.0773191989054437e-5 +unifacial_A 1.0773191989054437e-5 +unification_N 1.4918860049903587e-5 +unifilar_A 1.0773191989054437e-5 +unifoliate_A 1.0773191989054437e-5 +uniform_A 7.541234392338106e-5 +uniform_N 3.356743511228307e-5 +uniformed_A 2.1546383978108874e-5 +uniformity_N 7.459430024951794e-6 +unify_V2 2.092824830561682e-4 +unilateral_A 5.3865959945272184e-5 +unilateralism_N 3.729715012475897e-6 +unilateralist_A 1.0773191989054437e-5 +unilateralist_N 3.729715012475897e-6 +unimaginable_A 2.1546383978108874e-5 +unimaginative_A 2.1546383978108874e-5 +unimodal_A 1.0773191989054437e-5 +unimpaired_A 1.0773191989054437e-5 +unimpassioned_A 1.0773191989054437e-5 +unimpeachable_A 1.0773191989054437e-5 +unimpeded_A 2.1546383978108874e-5 +unimportance_N 3.729715012475897e-6 +unimportant_A 3.231957596716331e-5 +unimposing_A 1.0773191989054437e-5 +unimpressed_A 1.0773191989054437e-5 +unimpressionable_A 1.0773191989054437e-5 +unimpressive_A 1.0773191989054437e-5 +unimproved_A 1.0773191989054437e-5 +unincorporated_A 1.0773191989054437e-5 +unindustrialized_A 1.0773191989054437e-5 +uninebriated_A 1.0773191989054437e-5 +uninfected_A 1.0773191989054437e-5 +uninflected_A 1.0773191989054437e-5 +uninfluenced_A 1.0773191989054437e-5 +uninfluential_A 1.0773191989054437e-5 +uninformative_A 2.1546383978108874e-5 +uninformed_A 3.231957596716331e-5 +uninhabitable_A 2.1546383978108874e-5 +uninhabited_A 1.0773191989054437e-5 +uninhibited_A 2.1546383978108874e-5 +uninitiate_A 1.0773191989054437e-5 +uninitiate_N 3.729715012475897e-6 +uninitiated_A 2.1546383978108874e-5 +uninjectable_A 1.0773191989054437e-5 +uninjured_A 1.0773191989054437e-5 +uninominal_A 1.0773191989054437e-5 +uninquiring_A 1.0773191989054437e-5 +uninspired_A 4.309276795621775e-5 +uninspiring_A 1.0773191989054437e-5 +uninstructed_A 1.0773191989054437e-5 +uninstructive_A 1.0773191989054437e-5 +uninsurability_N 3.729715012475897e-6 +uninsurable_A 1.0773191989054437e-5 +uninsured_A 7.541234392338106e-5 +unintelligent_A 1.0773191989054437e-5 +unintelligibility_N 3.729715012475897e-6 +unintelligible_A 2.1546383978108874e-5 +unintended_A 3.231957596716331e-5 +unintentional_A 2.1546383978108874e-5 +uninterested_A 2.1546383978108874e-5 +uninteresting_A 1.0773191989054437e-5 +uninterestingness_N 3.729715012475897e-6 +uninterrupted_A 3.231957596716331e-5 +unintrusive_A 1.0773191989054437e-5 +uninucleate_A 1.0773191989054437e-5 +uninvited_A 4.309276795621775e-5 +uninviting_A 1.0773191989054437e-5 +uninvolved_A 1.0773191989054437e-5 +union_A 1.0773191989054437e-5 +union_N 7.795104376074624e-4 +unionism_N 3.729715012475897e-6 +unionist_N 1.118914503742769e-5 +unionization_N 3.729715012475897e-6 +uniovular_A 1.0773191989054437e-5 +uniparous_A 1.0773191989054437e-5 +unipolar_A 1.0773191989054437e-5 +unique_A 1.508246878467621e-4 +uniqueness_N 3.729715012475897e-6 +unironed_A 1.0773191989054437e-5 +unisex_A 1.0773191989054437e-5 +unisexual_A 1.0773191989054437e-5 +unison_N 3.729715012475897e-6 +unit_1_N 3.729715012475897e-6 +unit_2_N 3.729715012475897e-6 +unit_3_N 3.1143120354173736e-3 +unit_4_N 3.729715012475897e-6 +unit_5_N 3.729715012475897e-6 +unit_6_N 3.729715012475897e-6 +unit_V2V 4.675081813931744e-4 +unitarian_A 1.0773191989054437e-5 +unitarian_N 3.729715012475897e-6 +unitarianism_N 3.729715012475897e-6 +unitary_A 2.1546383978108874e-5 +unite_V 1.5875175760874494e-4 +unite_V2 8.049326271391085e-5 +unitization_N 3.729715012475897e-6 +unity_N 2.9837720099807175e-5 +univ_PN 1.865462821325971e-5 +univalent_A 1.0773191989054437e-5 +univalve_A 1.0773191989054437e-5 +universal_A 1.6159787983581657e-4 +universal_N 3.729715012475897e-6 +universalism_N 3.729715012475897e-6 +universalistic_A 1.0773191989054437e-5 +universality_N 3.729715012475897e-6 +universe_N 2.9837720099807175e-5 +university_N 1.9767489566122252e-4 +unjointed_A 1.0773191989054437e-5 +unjust_A 5.3865959945272184e-5 +unjustifiable_A 1.0773191989054437e-5 +unjustified_A 3.231957596716331e-5 +unkempt_A 1.0773191989054437e-5 +unkind_A 1.0773191989054437e-5 +unkindled_A 1.0773191989054437e-5 +unkindly_A 1.0773191989054437e-5 +unkindness_N 3.729715012475897e-6 +unkissed_A 1.0773191989054437e-5 +unknowable_A 1.0773191989054437e-5 +unknowing_A 2.1546383978108874e-5 +unknowingness_N 3.729715012475897e-6 +unknown_A 9.695872790148993e-5 +unknown_N 2.6108005087331277e-5 +unlabeled_A 1.0773191989054437e-5 +unlabelled_A 1.0773191989054437e-5 +unlaced_A 1.0773191989054437e-5 +unladylike_A 1.0773191989054437e-5 +unlamented_A 1.0773191989054437e-5 +unlatched_A 1.0773191989054437e-5 +unlaureled_A 1.0773191989054437e-5 +unlawful_A 9.695872790148993e-5 +unlawfulness_N 3.729715012475897e-6 +unleaded_A 1.0773191989054437e-5 +unlearn_V2 1.609865254278217e-5 +unleash_V2 1.4488787288503951e-4 +unleavened_A 1.0773191989054437e-5 +unless_Subj 8.112449799196787e-2 +unlettered_A 1.0773191989054437e-5 +unlicensed_A 2.1546383978108874e-5 +unlighted_A 1.0773191989054437e-5 +unlikable_A 1.0773191989054437e-5 +unlike_A 4.309276795621775e-5 +unlike_Prep 7.4839095943721e-4 +unlikelihood_N 3.729715012475897e-6 +unlikely_A 5.386595994527219e-4 +unlikeness_N 3.729715012475897e-6 +unlimited_A 5.3865959945272184e-5 +unlined_A 1.0773191989054437e-5 +unlisted_A 2.1546383978108874e-5 +unlit_A 1.0773191989054437e-5 +unliterary_A 1.0773191989054437e-5 +unlivable_A 1.0773191989054437e-5 +unliveried_A 1.0773191989054437e-5 +unload_V 1.1339411257767497e-4 +unload_V2 2.575784406845147e-4 +unloading_N 3.729715012475897e-6 +unlobed_A 1.0773191989054437e-5 +unlocated_A 1.0773191989054437e-5 +unlock_V 4.5357645031069986e-5 +unlock_V2 4.8295957628346505e-5 +unlooked_for_A 1.0773191989054437e-5 +unloose_V2 1.609865254278217e-5 +unlovable_A 2.1546383978108874e-5 +unloved_A 1.0773191989054437e-5 +unlovely_A 2.1546383978108874e-5 +unloving_A 1.0773191989054437e-5 +unlubricated_A 1.0773191989054437e-5 +unlucky_A 2.1546383978108874e-5 +unmade_A 1.0773191989054437e-5 +unmalicious_A 1.0773191989054437e-5 +unmalleability_N 3.729715012475897e-6 +unmalleable_A 1.0773191989054437e-5 +unmalted_A 1.0773191989054437e-5 +unman_V2 3.219730508556434e-5 +unmanageable_A 1.0773191989054437e-5 +unmanfully_Adv 8.668966832532898e-6 +unmanly_A 1.0773191989054437e-5 +unmannered_A 1.0773191989054437e-5 +unmannerly_A 1.0773191989054437e-5 +unmarked_A 3.231957596716331e-5 +unmarketable_A 1.0773191989054437e-5 +unmarried_A 1.0773191989054437e-5 +unmask_V 2.2678822515534993e-5 +unmask_V2 4.8295957628346505e-5 +unmatchable_A 1.0773191989054437e-5 +unmatched_A 2.1546383978108874e-5 +unmated_A 1.0773191989054437e-5 +unmeasured_A 1.0773191989054437e-5 +unmechanical_A 1.0773191989054437e-5 +unmechanized_A 1.0773191989054437e-5 +unmedicinal_A 1.0773191989054437e-5 +unmelodious_A 1.0773191989054437e-5 +unmelted_A 1.0773191989054437e-5 +unmemorable_A 1.0773191989054437e-5 +unmentionable_A 1.0773191989054437e-5 +unmercenary_A 1.0773191989054437e-5 +unmerciful_A 1.0773191989054437e-5 +unmerited_A 1.0773191989054437e-5 +unmeritorious_A 1.0773191989054437e-5 +unmethodical_A 1.0773191989054437e-5 +unmilitary_A 1.0773191989054437e-5 +unmindful_A 1.0773191989054437e-5 +unmindfulness_N 3.729715012475897e-6 +unmined_A 1.0773191989054437e-5 +unmingled_A 1.0773191989054437e-5 +unmistakable_A 3.231957596716331e-5 +unmitigable_A 1.0773191989054437e-5 +unmitigated_A 1.0773191989054437e-5 +unmixed_A 1.0773191989054437e-5 +unmoderated_A 1.0773191989054437e-5 +unmodernized_A 1.0773191989054437e-5 +unmodifiable_A 1.0773191989054437e-5 +unmodified_A 1.0773191989054437e-5 +unmodulated_A 1.0773191989054437e-5 +unmolested_A 1.0773191989054437e-5 +unmotivated_A 1.0773191989054437e-5 +unmotorized_A 1.0773191989054437e-5 +unmourned_A 1.0773191989054437e-5 +unmovable_A 1.0773191989054437e-5 +unmoved_A 2.1546383978108874e-5 +unmoving_A 1.0773191989054437e-5 +unmown_A 1.0773191989054437e-5 +unmusical_A 1.0773191989054437e-5 +unmyelinated_A 1.0773191989054437e-5 +unnamed_A 5.3865959945272184e-5 +unnatural_A 1.0773191989054437e-5 +unnaturalized_A 1.0773191989054437e-5 +unnaturalness_N 3.729715012475897e-6 +unnavigable_A 1.0773191989054437e-5 +unnecessary_A 2.1546383978108874e-4 +unneighborliness_N 3.729715012475897e-6 +unneighborly_A 1.0773191989054437e-5 +unnerve_V2 6.439461017112868e-5 +unneurotic_A 1.0773191989054437e-5 +unnotched_A 1.0773191989054437e-5 +unnoticeable_A 1.0773191989054437e-5 +unnoticeableness_N 3.729715012475897e-6 +unnoticed_A 2.1546383978108874e-5 +unnourished_A 1.0773191989054437e-5 +unnumbered_A 2.1546383978108874e-5 +unobjectionable_A 1.0773191989054437e-5 +unobjective_A 1.0773191989054437e-5 +unobligated_A 1.0773191989054437e-5 +unobservable_A 1.0773191989054437e-5 +unobservant_A 1.0773191989054437e-5 +unobserved_A 3.231957596716331e-5 +unobstructed_A 1.0773191989054437e-5 +unobtainable_A 1.0773191989054437e-5 +unobtrusive_A 2.1546383978108874e-5 +unobtrusiveness_N 3.729715012475897e-6 +unobvious_A 1.0773191989054437e-5 +unoccupied_A 3.231957596716331e-5 +unoffending_A 1.0773191989054437e-5 +unofficial_A 9.695872790148993e-5 +unoiled_A 1.0773191989054437e-5 +unopen_A 1.0773191989054437e-5 +unopened_A 1.0773191989054437e-5 +unopposable_A 1.0773191989054437e-5 +unopposed_A 1.0773191989054437e-5 +unorganized_A 1.0773191989054437e-5 +unoriented_A 1.0773191989054437e-5 +unoriginal_A 1.0773191989054437e-5 +unoriginality_N 3.729715012475897e-6 +unorthodox_A 2.1546383978108874e-5 +unorthodoxy_N 3.729715012475897e-6 +unostentatious_A 1.0773191989054437e-5 +unowned_A 1.0773191989054437e-5 +unpack_V 2.2678822515534993e-5 +unpack_V2 1.609865254278217e-5 +unpackaged_A 1.0773191989054437e-5 +unpaid_A 1.0773191989054437e-4 +unpaintable_A 1.0773191989054437e-5 +unpainted_A 1.0773191989054437e-5 +unpalatability_N 3.729715012475897e-6 +unpalatable_A 1.0773191989054437e-5 +unparallel_A 1.0773191989054437e-5 +unparalleled_A 1.0773191989054437e-5 +unpardonable_A 1.0773191989054437e-5 +unparented_A 1.0773191989054437e-5 +unparliamentary_A 1.0773191989054437e-5 +unpartitioned_A 1.0773191989054437e-5 +unpasteurized_A 1.0773191989054437e-5 +unpatented_A 1.0773191989054437e-5 +unpatriotic_A 1.0773191989054437e-5 +unpatriotically_Adv 8.668966832532898e-6 +unpatronized_A 1.0773191989054437e-5 +unpaved_A 1.0773191989054437e-5 +unpeaceable_A 1.0773191989054437e-5 +unpeaceful_A 1.0773191989054437e-5 +unpeopled_A 1.0773191989054437e-5 +unperceived_A 1.0773191989054437e-5 +unperceptive_A 1.0773191989054437e-5 +unperceptiveness_N 3.729715012475897e-6 +unperformed_A 1.0773191989054437e-5 +unpermed_A 1.0773191989054437e-5 +unpermissive_A 1.0773191989054437e-5 +unpermissiveness_N 3.729715012475897e-6 +unperplexed_A 1.0773191989054437e-5 +unpersuadable_A 1.0773191989054437e-5 +unpersuaded_A 1.0773191989054437e-5 +unpersuasive_A 1.0773191989054437e-5 +unpersuasiveness_N 3.729715012475897e-6 +unperturbed_A 3.231957596716331e-5 +unpick_V 2.2678822515534993e-5 +unpick_V2 1.609865254278217e-5 +unpierced_A 1.0773191989054437e-5 +unpigmented_A 1.0773191989054437e-5 +unpillared_A 1.0773191989054437e-5 +unplaced_A 1.0773191989054437e-5 +unplanned_A 3.231957596716331e-5 +unplanted_A 1.0773191989054437e-5 +unplayable_A 1.0773191989054437e-5 +unplayful_A 1.0773191989054437e-5 +unpleasant_A 5.3865959945272184e-5 +unpleasantness_N 7.459430024951794e-6 +unpleasingness_N 3.729715012475897e-6 +unplowed_A 1.0773191989054437e-5 +unplug_V 2.2678822515534993e-5 +unplug_V2 3.219730508556434e-5 +unplumbed_A 1.0773191989054437e-5 +unpointedness_N 3.729715012475897e-6 +unpolished_A 1.0773191989054437e-5 +unpolluted_A 1.0773191989054437e-5 +unpompous_A 1.0773191989054437e-5 +unpopular_A 9.695872790148993e-5 +unpopularity_N 7.459430024951794e-6 +unportable_A 1.0773191989054437e-5 +unposed_A 1.0773191989054437e-5 +unpotted_A 1.0773191989054437e-5 +unpowered_A 1.0773191989054437e-5 +unpracticed_A 1.0773191989054437e-5 +unpractised_A 1.0773191989054437e-5 +unprecedented_A 2.585566077373065e-4 +unpredictability_N 3.729715012475897e-6 +unpredictable_A 6.463915193432663e-5 +unpredicted_A 1.0773191989054437e-5 +unpredictive_A 1.0773191989054437e-5 +unprejudiced_A 1.0773191989054437e-5 +unpremeditated_A 1.0773191989054437e-5 +unprepared_A 5.3865959945272184e-5 +unprepossessing_A 1.0773191989054437e-5 +unpresidential_A 1.0773191989054437e-5 +unpressed_A 1.0773191989054437e-5 +unpretentious_A 1.0773191989054437e-5 +unpretentiousness_N 3.729715012475897e-6 +unpreventable_A 1.0773191989054437e-5 +unpriestly_A 1.0773191989054437e-5 +unprincipled_A 1.0773191989054437e-5 +unprintable_A 1.0773191989054437e-5 +unprocessed_A 1.0773191989054437e-5 +unproductive_A 4.309276795621775e-5 +unproductiveness_N 3.729715012475897e-6 +unprofessional_A 3.231957596716331e-5 +unprofitable_A 1.0773191989054437e-4 +unprofitableness_N 3.729715012475897e-6 +unpromising_A 1.0773191989054437e-5 +unprompted_A 1.0773191989054437e-5 +unpronounceable_A 1.0773191989054437e-5 +unprophetic_A 1.0773191989054437e-5 +unpropitious_A 1.0773191989054437e-5 +unprotected_A 1.0773191989054437e-5 +unprotective_A 1.0773191989054437e-5 +unprovable_A 1.0773191989054437e-5 +unproved_A 1.0773191989054437e-5 +unproven_A 2.1546383978108874e-5 +unprovided_A 1.0773191989054437e-5 +unprovocative_A 1.0773191989054437e-5 +unprovoked_A 1.0773191989054437e-5 +unpublishable_A 1.0773191989054437e-5 +unpublished_A 8.61855359124355e-5 +unpunctual_A 1.0773191989054437e-5 +unpunished_A 2.1546383978108874e-5 +unpurified_A 1.0773191989054437e-5 +unputdownable_A 1.0773191989054437e-5 +unqualified_A 2.1546383978108874e-5 +unquestionable_A 2.1546383978108874e-5 +unquestioned_A 1.0773191989054437e-5 +unquestioning_A 1.0773191989054437e-5 +unquiet_A 1.0773191989054437e-5 +unquotable_A 1.0773191989054437e-5 +unquote_Adv 8.668966832532898e-6 +unratable_A 1.0773191989054437e-5 +unratified_A 1.0773191989054437e-5 +unravel_V 6.803646754660499e-5 +unravel_V2 4.8295957628346505e-5 +unreached_A 1.0773191989054437e-5 +unreactive_A 1.0773191989054437e-5 +unread_A 2.1546383978108874e-5 +unreadable_A 2.1546383978108874e-5 +unready_A 1.0773191989054437e-5 +unreal_A 1.0773191989054437e-5 +unrealistic_A 1.0773191989054437e-4 +unreality_N 3.729715012475897e-6 +unrealized_A 4.309276795621775e-5 +unreasonable_A 8.61855359124355e-5 +unreasoning_A 1.0773191989054437e-5 +unreassuring_A 1.0773191989054437e-5 +unreceptive_A 1.0773191989054437e-5 +unreciprocated_A 1.0773191989054437e-5 +unrecognizable_A 3.231957596716331e-5 +unrecognized_A 3.231957596716331e-5 +unreconciled_A 1.0773191989054437e-5 +unreconstructed_A 1.0773191989054437e-5 +unrecorded_A 1.0773191989054437e-5 +unrecoverable_A 1.0773191989054437e-5 +unredeemable_A 1.0773191989054437e-5 +unreduced_A 1.0773191989054437e-5 +unrefined_A 1.0773191989054437e-5 +unreflected_A 1.0773191989054437e-5 +unreflective_A 1.0773191989054437e-5 +unreformable_A 1.0773191989054437e-5 +unreformed_A 1.0773191989054437e-5 +unrefreshed_A 1.0773191989054437e-5 +unregenerate_A 1.0773191989054437e-5 +unregistered_A 3.231957596716331e-5 +unregretful_A 1.0773191989054437e-5 +unregulated_A 1.0773191989054437e-5 +unrehearsed_A 1.0773191989054437e-5 +unrelated_A 2.046906477920343e-4 +unrelatedness_N 3.729715012475897e-6 +unrelaxed_A 1.0773191989054437e-5 +unreleased_A 1.0773191989054437e-5 +unrelenting_A 1.0773191989054437e-5 +unreliable_A 2.1546383978108874e-5 +unrelieved_A 1.0773191989054437e-5 +unremarkable_A 2.1546383978108874e-5 +unremedied_A 1.0773191989054437e-5 +unremitting_A 2.1546383978108874e-5 +unremunerative_A 1.0773191989054437e-5 +unrenewable_A 1.0773191989054437e-5 +unrentable_A 1.0773191989054437e-5 +unrepaired_A 1.0773191989054437e-5 +unrepeatable_A 1.0773191989054437e-5 +unrepentant_A 1.0773191989054437e-5 +unreportable_A 1.0773191989054437e-5 +unreported_A 1.0773191989054437e-5 +unrepresentative_A 1.0773191989054437e-5 +unrepressed_A 1.0773191989054437e-5 +unreproducible_A 1.0773191989054437e-5 +unrequested_A 1.0773191989054437e-5 +unrequited_A 1.0773191989054437e-5 +unresentful_A 1.0773191989054437e-5 +unreserved_A 1.0773191989054437e-5 +unresisting_A 1.0773191989054437e-5 +unresolvable_A 1.0773191989054437e-5 +unresolved_A 6.463915193432663e-5 +unrespectability_N 3.729715012475897e-6 +unrespectable_A 1.0773191989054437e-5 +unresponsive_A 1.0773191989054437e-5 +unresponsiveness_N 3.729715012475897e-6 +unrest_N 4.475658014971076e-5 +unrestrained_A 3.231957596716331e-5 +unrestraint_N 3.729715012475897e-6 +unrestricted_A 2.1546383978108874e-5 +unrestrictive_A 1.0773191989054437e-5 +unretentive_A 1.0773191989054437e-5 +unreverberant_A 1.0773191989054437e-5 +unrevised_A 1.0773191989054437e-5 +unrevived_A 1.0773191989054437e-5 +unrewarded_A 1.0773191989054437e-5 +unrewarding_A 1.0773191989054437e-5 +unrhetorical_A 1.0773191989054437e-5 +unrhymed_A 1.0773191989054437e-5 +unrhythmical_A 1.0773191989054437e-5 +unrifled_A 1.0773191989054437e-5 +unrigged_A 1.0773191989054437e-5 +unrighteous_A 1.0773191989054437e-5 +unrighteousness_N 3.729715012475897e-6 +unripe_A 1.0773191989054437e-5 +unripened_A 1.0773191989054437e-5 +unrivalled_A 1.0773191989054437e-5 +unroll_V 4.5357645031069986e-5 +unroll_V2 3.219730508556434e-5 +unromantic_A 1.0773191989054437e-5 +unromantically_Adv 8.668966832532898e-6 +unroofed_A 1.0773191989054437e-5 +unrouged_A 1.0773191989054437e-5 +unruffled_A 1.0773191989054437e-5 +unruliness_N 3.729715012475897e-6 +unruly_A 4.309276795621775e-5 +unsaddle_V2 1.609865254278217e-5 +unsafe_A 5.3865959945272184e-5 +unsalable_A 1.0773191989054437e-5 +unsaleable_A 1.0773191989054437e-5 +unsalted_A 1.0773191989054437e-5 +unsanctioned_A 1.0773191989054437e-5 +unsanitariness_N 3.729715012475897e-6 +unsanitary_A 1.0773191989054437e-5 +unsaponified_A 1.0773191989054437e-5 +unsarcastic_A 1.0773191989054437e-5 +unsated_A 1.0773191989054437e-5 +unsatisfactoriness_N 3.729715012475897e-6 +unsatisfactory_A 1.0773191989054437e-5 +unsatisfiable_A 1.0773191989054437e-5 +unsatisfied_A 1.0773191989054437e-5 +unsatisfying_A 1.0773191989054437e-5 +unsaturated_A 1.0773191989054437e-5 +unsavory_A 2.1546383978108874e-5 +unsavoury_A 1.0773191989054437e-5 +unsay_V2 1.609865254278217e-5 +unscalable_A 1.0773191989054437e-5 +unscathed_A 6.463915193432663e-5 +unscheduled_A 1.0773191989054437e-5 +unscholarly_A 1.0773191989054437e-5 +unschooled_A 1.0773191989054437e-5 +unscientific_A 2.1546383978108874e-5 +unscientifically_Adv 8.668966832532898e-6 +unscramble_V2 1.609865254278217e-5 +unscrew_V 2.2678822515534993e-5 +unscrew_V2 1.609865254278217e-5 +unscripted_A 1.0773191989054437e-5 +unscrupulous_A 8.61855359124355e-5 +unscrupulousness_N 3.729715012475897e-6 +unsealed_A 1.0773191989054437e-5 +unseamanlike_A 1.0773191989054437e-5 +unseamed_A 1.0773191989054437e-5 +unseasonable_A 2.1546383978108874e-5 +unseasonableness_N 3.729715012475897e-6 +unseasoned_A 1.0773191989054437e-5 +unseat_V2 1.609865254278217e-5 +unseaworthy_A 1.0773191989054437e-5 +unsecured_A 4.417008715512319e-4 +unseductive_A 1.0773191989054437e-5 +unseeded_A 1.0773191989054437e-5 +unseeing_A 1.0773191989054437e-5 +unseemliness_N 3.729715012475897e-6 +unseemly_A 3.231957596716331e-5 +unseen_A 3.231957596716331e-5 +unseen_N 3.729715012475897e-6 +unseeyn_A 1.0773191989054437e-5 +unsegmented_A 1.0773191989054437e-5 +unselected_A 1.0773191989054437e-5 +unselective_A 1.0773191989054437e-5 +unselfconscious_A 1.0773191989054437e-5 +unselfconsciousness_N 3.729715012475897e-6 +unselfish_A 1.0773191989054437e-5 +unselfishness_N 3.729715012475897e-6 +unsensational_A 1.0773191989054437e-5 +unsent_A 1.0773191989054437e-5 +unsentimentally_Adv 8.668966832532898e-6 +unserviceable_A 1.0773191989054437e-5 +unservile_A 1.0773191989054437e-5 +unsettle_V2 2.092824830561682e-4 +unsex_V2 1.609865254278217e-5 +unsexy_A 1.0773191989054437e-5 +unshaded_A 1.0773191989054437e-5 +unshadowed_A 1.0773191989054437e-5 +unshakable_A 1.0773191989054437e-5 +unshaped_A 1.0773191989054437e-5 +unshapely_A 1.0773191989054437e-5 +unshared_A 1.0773191989054437e-5 +unsharpened_A 1.0773191989054437e-5 +unshaved_A 1.0773191989054437e-5 +unshaven_A 1.0773191989054437e-5 +unsheared_A 1.0773191989054437e-5 +unsheathe_V2 1.609865254278217e-5 +unshelled_A 1.0773191989054437e-5 +unshielded_A 1.0773191989054437e-5 +unshockable_A 1.0773191989054437e-5 +unshod_A 1.0773191989054437e-5 +unshrinkable_A 1.0773191989054437e-5 +unshrinking_A 1.0773191989054437e-5 +unshuttered_A 1.0773191989054437e-5 +unsighted_A 1.0773191989054437e-5 +unsightliness_N 3.729715012475897e-6 +unsightly_A 1.0773191989054437e-5 +unsigned_A 2.1546383978108874e-5 +unsilenced_A 1.0773191989054437e-5 +unsinkable_A 1.0773191989054437e-5 +unsized_A 1.0773191989054437e-5 +unskilled_A 2.1546383978108874e-5 +unskillfulness_N 3.729715012475897e-6 +unsleeping_A 1.0773191989054437e-5 +unsmiling_A 1.0773191989054437e-5 +unsmoothed_A 1.0773191989054437e-5 +unsnarling_N 3.729715012475897e-6 +unsociability_N 3.729715012475897e-6 +unsociable_A 1.0773191989054437e-5 +unsocial_A 1.0773191989054437e-5 +unsoiled_A 1.0773191989054437e-5 +unsold_A 4.309276795621775e-5 +unsoldierly_A 1.0773191989054437e-5 +unsolicited_A 1.1850511187959881e-4 +unsolvability_N 3.729715012475897e-6 +unsolved_A 1.0773191989054437e-5 +unsophisticated_A 1.0773191989054437e-5 +unsorted_A 1.0773191989054437e-5 +unsound_A 3.231957596716331e-5 +unsoundable_A 1.0773191989054437e-5 +unsoundness_N 3.729715012475897e-6 +unsoured_A 1.0773191989054437e-5 +unspaced_A 1.0773191989054437e-5 +unsparing_A 1.0773191989054437e-5 +unspeakable_A 2.1546383978108874e-5 +unspecialized_A 1.0773191989054437e-5 +unspecific_A 1.0773191989054437e-5 +unspecifically_Adv 8.668966832532898e-6 +unspecified_A 2.046906477920343e-4 +unspectacular_A 1.0773191989054437e-5 +unspent_A 1.0773191989054437e-5 +unspoiled_A 1.0773191989054437e-5 +unspoilt_A 1.0773191989054437e-5 +unspoken_A 1.0773191989054437e-5 +unsporting_A 1.0773191989054437e-5 +unsportsmanlike_A 1.0773191989054437e-5 +unspotted_A 1.0773191989054437e-5 +unstable_A 6.463915193432663e-5 +unstaged_A 1.0773191989054437e-5 +unstained_A 1.0773191989054437e-5 +unstartling_A 1.0773191989054437e-5 +unstated_A 1.0773191989054437e-5 +unstatesmanlike_A 1.0773191989054437e-5 +unsteadiness_N 3.729715012475897e-6 +unsteady_A 3.231957596716331e-5 +unsterilized_A 1.0773191989054437e-5 +unstilted_A 1.0773191989054437e-5 +unstimulating_A 1.0773191989054437e-5 +unstintingly_Adv 8.668966832532898e-6 +unstirred_A 1.0773191989054437e-5 +unstoppable_A 3.231957596716331e-5 +unstoppered_A 1.0773191989054437e-5 +unstrained_A 1.0773191989054437e-5 +unstratified_A 1.0773191989054437e-5 +unstressed_A 1.0773191989054437e-5 +unstructured_A 1.0773191989054437e-5 +unstrung_A 1.0773191989054437e-5 +unstuck_A 1.0773191989054437e-5 +unstudied_A 1.0773191989054437e-5 +unstudious_A 1.0773191989054437e-5 +unsubdued_A 1.0773191989054437e-5 +unsubtle_A 1.0773191989054437e-5 +unsuccessful_A 3.2319575967163313e-4 +unsugared_A 1.0773191989054437e-5 +unsuitability_N 3.729715012475897e-6 +unsuitable_A 1.0773191989054437e-5 +unsuited_A 1.0773191989054437e-5 +unsullied_A 1.0773191989054437e-5 +unsung_A 1.0773191989054437e-5 +unsupervised_A 1.0773191989054437e-5 +unsupportable_A 1.0773191989054437e-5 +unsupported_A 5.3865959945272184e-5 +unsupportive_A 1.0773191989054437e-5 +unsuppressed_A 1.0773191989054437e-5 +unsure_A 3.231957596716331e-5 +unsurmountable_A 1.0773191989054437e-5 +unsurpassable_A 1.0773191989054437e-5 +unsurpassed_A 2.1546383978108874e-5 +unsurprised_A 1.0773191989054437e-5 +unsurprising_A 1.0773191989054437e-5 +unsusceptibility_N 3.729715012475897e-6 +unsusceptible_A 1.0773191989054437e-5 +unsuspected_A 3.231957596716331e-5 +unsuspecting_A 3.231957596716331e-5 +unsuspicious_A 1.0773191989054437e-5 +unswayed_A 1.0773191989054437e-5 +unsweet_A 1.0773191989054437e-5 +unsweetened_A 1.0773191989054437e-5 +unswept_A 1.0773191989054437e-5 +unswerving_A 1.0773191989054437e-5 +unsworn_A 1.0773191989054437e-5 +unsyllabic_A 1.0773191989054437e-5 +unsyllabled_A 1.0773191989054437e-5 +unsymmetric_A 1.0773191989054437e-5 +unsympathetic_A 2.1546383978108874e-5 +unsympathetically_Adv 8.668966832532898e-6 +unsympathizing_A 1.0773191989054437e-5 +unsystematic_A 1.0773191989054437e-5 +unsystematically_Adv 8.668966832532898e-6 +untainted_A 1.0773191989054437e-5 +untalented_A 1.0773191989054437e-5 +untamed_A 1.0773191989054437e-5 +untangled_A 1.0773191989054437e-5 +untanned_A 1.0773191989054437e-5 +untapped_A 5.3865959945272184e-5 +untarnished_A 1.0773191989054437e-5 +untaxed_A 1.0773191989054437e-5 +untempered_A 1.0773191989054437e-5 +untenable_A 1.0773191989054437e-5 +untenanted_A 1.0773191989054437e-5 +untended_A 1.0773191989054437e-5 +untested_A 3.231957596716331e-5 +untethered_A 1.0773191989054437e-5 +unthawed_A 1.0773191989054437e-5 +untheatrical_A 1.0773191989054437e-5 +unthematic_A 1.0773191989054437e-5 +unthinkable_A 2.1546383978108874e-5 +unthinking_A 1.0773191989054437e-5 +unthought_of_A 1.0773191989054437e-5 +unthoughtfulness_N 3.729715012475897e-6 +untidiness_N 3.729715012475897e-6 +untidy_A 1.0773191989054437e-5 +untie_V 2.2678822515534993e-5 +untie_V2 1.609865254278217e-5 +untied_A 1.0773191989054437e-5 +until_Prep 3.811804620066856e-3 +until_Subj 8.835341365461847e-3 +untilled_A 1.0773191989054437e-5 +untimbered_A 1.0773191989054437e-5 +untimely_A 1.0773191989054437e-5 +untipped_A 1.0773191989054437e-5 +untired_A 1.0773191989054437e-5 +untiring_A 1.0773191989054437e-5 +untitled_A 1.0773191989054437e-5 +unto_Prep 1.9957092251658934e-5 +untoasted_A 1.0773191989054437e-5 +untold_A 3.231957596716331e-5 +untouchable_A 2.1546383978108874e-5 +untouchable_N 3.729715012475897e-6 +untouched_A 1.0773191989054437e-5 +untoward_A 1.0773191989054437e-5 +untraceable_A 1.0773191989054437e-5 +untrained_A 3.231957596716331e-5 +untrammeled_A 1.0773191989054437e-5 +untrammelled_A 1.0773191989054437e-5 +untranslatable_A 1.0773191989054437e-5 +untraveled_A 1.0773191989054437e-5 +untraversable_A 1.0773191989054437e-5 +untraversed_A 1.0773191989054437e-5 +untreated_A 2.1546383978108874e-5 +untried_A 2.1546383978108874e-5 +untrimmed_A 1.0773191989054437e-5 +untroubled_A 1.0773191989054437e-5 +untrue_A 4.309276795621775e-5 +untruly_Adv 8.668966832532898e-6 +untrustworthiness_N 3.729715012475897e-6 +untrustworthy_A 2.1546383978108874e-5 +untruth_N 3.729715012475897e-6 +untruthful_A 1.0773191989054437e-5 +untruthfulness_N 3.729715012475897e-6 +untucked_A 1.0773191989054437e-5 +untufted_A 1.0773191989054437e-5 +unturned_A 1.0773191989054437e-5 +untutored_A 1.0773191989054437e-5 +untwisted_A 1.0773191989054437e-5 +untying_N 3.729715012475897e-6 +untypical_A 1.0773191989054437e-5 +ununbium_N 3.729715012475897e-6 +ununderstood_A 1.0773191989054437e-5 +ununhexium_N 3.729715012475897e-6 +ununpentium_N 3.729715012475897e-6 +ununquadium_N 3.729715012475897e-6 +ununtrium_N 3.729715012475897e-6 +unused_A 8.61855359124355e-5 +unusual_A 9.588140870258449e-4 +unusualness_N 3.729715012475897e-6 +unutterable_A 1.0773191989054437e-5 +unvaccinated_A 1.0773191989054437e-5 +unvaried_A 1.0773191989054437e-5 +unvariedness_N 3.729715012475897e-6 +unvarnished_A 1.0773191989054437e-5 +unvarying_A 2.1546383978108874e-5 +unveil_V 2.9482469270195494e-4 +unveil_V2 4.990582288262473e-4 +unveiling_N 3.729715012475897e-6 +unvented_A 1.0773191989054437e-5 +unventilated_A 1.0773191989054437e-5 +unverified_A 1.0773191989054437e-5 +unversed_A 1.0773191989054437e-5 +unvigilant_A 1.0773191989054437e-5 +unvindictive_A 1.0773191989054437e-5 +unvitrified_A 1.0773191989054437e-5 +unvoiced_A 1.0773191989054437e-5 +unvulcanized_A 1.0773191989054437e-5 +unwanted_A 1.0773191989054437e-4 +unwariness_N 3.729715012475897e-6 +unwarrantably_Adv 8.668966832532898e-6 +unwarranted_A 9.695872790148993e-5 +unwary_A 3.231957596716331e-5 +unwashed_A 2.1546383978108874e-5 +unwavering_A 1.0773191989054437e-5 +unwaxed_A 1.0773191989054437e-5 +unweaned_A 1.0773191989054437e-5 +unwearable_A 1.0773191989054437e-5 +unwearied_A 1.0773191989054437e-5 +unweathered_A 1.0773191989054437e-5 +unwebbed_A 1.0773191989054437e-5 +unwed_A 2.1546383978108874e-5 +unwelcome_A 1.0773191989054437e-4 +unwell_A 1.0773191989054437e-5 +unwholesome_A 2.1546383978108874e-5 +unwholesomeness_N 3.729715012475897e-6 +unwieldiness_N 3.729715012475897e-6 +unwieldy_A 5.3865959945272184e-5 +unwilled_A 1.0773191989054437e-5 +unwilling_A 1.2927830386865325e-4 +unwillingness_N 2.6108005087331277e-5 +unwind_V 6.803646754660499e-5 +unwind_V2 4.8295957628346505e-5 +unwise_A 7.541234392338106e-5 +unwitnessed_A 1.0773191989054437e-5 +unwitting_A 4.309276795621775e-5 +unwomanly_A 1.0773191989054437e-5 +unwonted_A 1.0773191989054437e-5 +unwooded_A 1.0773191989054437e-5 +unworkable_A 3.231957596716331e-5 +unworkmanlike_A 1.0773191989054437e-5 +unworldly_A 1.0773191989054437e-5 +unworn_A 1.0773191989054437e-5 +unworried_A 1.0773191989054437e-5 +unworthiness_N 3.729715012475897e-6 +unworthy_A 2.1546383978108874e-5 +unwounded_A 1.0773191989054437e-5 +unwoven_A 1.0773191989054437e-5 +unwrap_V 2.2678822515534993e-5 +unwrap_V2 1.609865254278217e-5 +unwrinkled_A 1.0773191989054437e-5 +unwritten_A 3.231957596716331e-5 +unyielding_A 1.0773191989054437e-5 +unzip_V2 1.609865254278217e-5 +up_A 1.0773191989054437e-5 +up_Adv 5.59148360698372e-3 +up_Prep 3.4725340517886543e-3 +up_V 2.2678822515534993e-5 +up_V2 4.8295957628346505e-5 +up_and_coming_A 2.1546383978108874e-5 +up_beat_N 3.729715012475897e-6 +up_holland_PN 1.865462821325971e-5 +up_market_A 1.0773191989054437e-5 +up_to_Prep 9.978546125829467e-6 +up_to_date_A 1.0773191989054437e-5 +up_to_the_minute_A 1.0773191989054437e-5 +upbeat_N 3.729715012475897e-6 +upbound_A 1.0773191989054437e-5 +upbraid_V2 1.609865254278217e-5 +upbraider_N 3.729715012475897e-6 +upbraiding_N 3.729715012475897e-6 +upbringing_N 3.729715012475897e-6 +upcast_N 3.729715012475897e-6 +upcountry_A 1.0773191989054437e-5 +upcountry_Adv 8.668966832532898e-6 +upcurved_A 1.0773191989054437e-5 +update_N 3.729715012475897e-6 +update_V2 2.4147978814173252e-4 +updating_N 3.729715012475897e-6 +updraft_N 3.729715012475897e-6 +upended_A 1.0773191989054437e-5 +upfield_A 1.0773191989054437e-5 +upfront_A 1.0773191989054437e-5 +upgrade_N 1.8648575062379485e-5 +upgrade_V2 3.3807170339842556e-4 +upheaval_N 4.475658014971076e-5 +uphill_A 4.309276795621775e-5 +uphill_Adv 1.7337933665065797e-5 +uphill_N 3.729715012475897e-6 +uphold_V2 3.058743983128612e-4 +upholder_N 3.729715012475897e-6 +upholster_V2 1.609865254278217e-5 +upholsterer_N 3.729715012475897e-6 +upholstery_N 1.118914503742769e-5 +upkeep_N 3.729715012475897e-6 +upland_A 1.0773191989054437e-5 +upland_N 3.729715012475897e-6 +uplift_N 3.729715012475897e-6 +uplift_V2 1.609865254278217e-5 +uplifting_N 3.729715012475897e-6 +uplink_N 3.729715012475897e-6 +upmarket_A 1.0773191989054437e-5 +upmost_A 1.0773191989054437e-5 +upon_Prep 4.989273062914733e-4 +upper_A 1.72371071824871e-4 +upper_N 7.459430024951794e-6 +uppercase_A 1.0773191989054437e-5 +uppercut_N 3.729715012475897e-6 +uppermost_A 1.0773191989054437e-5 +uppermost_Adv 8.668966832532898e-6 +uppish_A 1.0773191989054437e-5 +uppishness_N 3.729715012475897e-6 +uppity_A 1.0773191989054437e-5 +uppityness_N 3.729715012475897e-6 +upraised_A 1.0773191989054437e-5 +upright_A 1.0773191989054437e-5 +upright_N 3.729715012475897e-6 +uprightness_N 3.729715012475897e-6 +uprising_N 2.6108005087331277e-5 +upriver_Adv 8.668966832532898e-6 +uproar_N 1.8648575062379485e-5 +uproarious_A 1.0773191989054437e-5 +uproot_V2 3.219730508556434e-5 +upscale_A 1.0773191989054437e-5 +upset_N 1.118914503742769e-5 +upset_V 1.8143058012427994e-4 +upset_V2 2.092824830561682e-4 +upsetter_N 3.729715012475897e-6 +upshot_N 1.4918860049903587e-5 +upside_down_Adv 8.668966832532898e-6 +upsilon_N 3.729715012475897e-6 +upstage_A 1.0773191989054437e-5 +upstage_Adv 8.668966832532898e-6 +upstage_N 3.729715012475897e-6 +upstage_V2 1.609865254278217e-5 +upstager_N 3.729715012475897e-6 +upstairs_A 3.231957596716331e-5 +upstairs_Adv 1.7337933665065797e-5 +upstairs_N 3.729715012475897e-6 +upstanding_A 1.0773191989054437e-5 +upstart_A 3.231957596716331e-5 +upstart_N 1.4918860049903587e-5 +upstate_Adv 8.668966832532898e-6 +upstream_A 1.0773191989054437e-5 +upstream_Adv 2.6006900497598697e-5 +upstroke_N 3.729715012475897e-6 +upsurge_N 1.118914503742769e-5 +uptake_N 3.729715012475897e-6 +uptick_N 3.729715012475897e-6 +uptight_A 2.1546383978108874e-5 +uptime_N 3.729715012475897e-6 +upton_PN 1.865462821325971e-5 +uptown_A 1.0773191989054437e-5 +uptown_Adv 8.668966832532898e-6 +uptown_N 3.729715012475897e-6 +upturn_N 2.237829007485538e-5 +upturned_A 1.0773191989054437e-5 +upward_A 1.1850511187959881e-4 +upward_Adv 1.9071727031572377e-4 +upwards_Adv 8.668966832532898e-6 +upwind_A 1.0773191989054437e-5 +upwind_Adv 8.668966832532898e-6 +uracil_N 3.729715012475897e-6 +uraninite_N 3.729715012475897e-6 +uranium_N 2.237829007485538e-5 +uranoplasty_N 3.729715012475897e-6 +uranus_PN 1.865462821325971e-5 +uranyl_N 3.729715012475897e-6 +urate_N 3.729715012475897e-6 +uratemia_N 3.729715012475897e-6 +uraturia_N 3.729715012475897e-6 +urban_A 3.016493756935242e-4 +urbane_A 1.0773191989054437e-5 +urbanity_N 3.729715012475897e-6 +urbanization_N 3.729715012475897e-6 +urbanize_V2 1.609865254278217e-5 +urceolate_A 1.0773191989054437e-5 +urceole_N 3.729715012475897e-6 +urchin_N 3.729715012475897e-6 +urdu_A 1.0773191989054437e-5 +urdu_N 3.729715012475897e-6 +urea_N 3.729715012475897e-6 +urease_N 3.729715012475897e-6 +uremia_N 3.729715012475897e-6 +ureter_N 3.729715012475897e-6 +ureteritis_N 3.729715012475897e-6 +ureterocele_N 3.729715012475897e-6 +ureterostenosis_N 3.729715012475897e-6 +urethane_N 3.729715012475897e-6 +urethra_N 3.729715012475897e-6 +urethral_A 1.0773191989054437e-5 +urethritis_N 3.729715012475897e-6 +urethrocele_N 3.729715012475897e-6 +urge_N 2.237829007485538e-5 +urge_V2 1.4166814237648309e-3 +urge_V2V 2.805049088359046e-3 +urge_VS 2.8880032345636225e-4 +urge_on_V2 1.609865254278217e-5 +urge_upon_V2 1.609865254278217e-5 +urgency_N 2.9837720099807175e-5 +urgent_A 4.309276795621775e-5 +urging_N 7.459430024951794e-6 +urial_N 3.729715012475897e-6 +uric_A 1.0773191989054437e-5 +uricaciduria_N 3.729715012475897e-6 +uricosuric_A 1.0773191989054437e-5 +urinal_N 3.729715012475897e-6 +urinalysis_N 3.729715012475897e-6 +urinary_A 2.1546383978108874e-5 +urinate_V 2.2678822515534993e-5 +urine_N 7.459430024951794e-6 +urn_N 3.729715012475897e-6 +urobilin_N 3.729715012475897e-6 +urobilinogen_N 3.729715012475897e-6 +urocele_N 3.729715012475897e-6 +urochesia_N 3.729715012475897e-6 +urochord_N 3.729715012475897e-6 +urodele_N 3.729715012475897e-6 +urodynia_N 3.729715012475897e-6 +urogenital_A 1.0773191989054437e-5 +urolith_N 3.729715012475897e-6 +urologist_N 3.729715012475897e-6 +urology_N 3.729715012475897e-6 +uropathy_N 3.729715012475897e-6 +uropygium_N 3.729715012475897e-6 +ursine_A 1.0773191989054437e-5 +ursinia_N 3.729715012475897e-6 +ursula_PN 1.865462821325971e-5 +urtication_N 3.729715012475897e-6 +uruguay_PN 1.865462821325971e-5 +uruguayan_A 1.0773191989054437e-5 +uruguayan_N 3.729715012475897e-6 +urumchi_PN 1.865462821325971e-5 +us_PN 1.865462821325971e-5 +usa_PN 1.865462821325971e-5 +usable_A 1.0773191989054437e-5 +usaf_N 3.729715012475897e-6 +usage_N 2.9837720099807175e-5 +usance_N 3.729715012475897e-6 +use_N 8.317264477821249e-4 +use_V 8.005624347983853e-3 +use_V2 7.147801728995283e-3 +use_V2V 1.168770453482936e-2 +use_VV 3.5556409763597926e-3 +use_up_V 2.2678822515534993e-5 +use_up_V2 1.609865254278217e-5 +useable_A 1.0773191989054437e-5 +useful_A 2.47783415748252e-4 +usefulness_N 1.4918860049903587e-5 +useless_A 3.231957596716331e-5 +uselessness_N 3.729715012475897e-6 +userFem_N 3.729715012475897e-6 +userMasc_N 2.610800508733128e-4 +ushaw_moor_PN 1.865462821325971e-5 +usher_N 7.459430024951794e-6 +usher_V2 1.1269056779947518e-4 +usher_in_V2 1.609865254278217e-5 +usherette_N 3.729715012475897e-6 +usn_N 3.729715012475897e-6 +uss_N 3.729715012475897e-6 +ussr_N 3.729715012475897e-6 +usual_A 2.046906477920343e-3 +usualness_N 3.729715012475897e-6 +usufruct_N 3.729715012475897e-6 +usufructuary_A 1.0773191989054437e-5 +usufructuary_N 3.729715012475897e-6 +usurer_N 3.729715012475897e-6 +usurious_A 1.0773191989054437e-5 +usurp_V2 6.439461017112868e-5 +usurpation_N 7.459430024951794e-6 +usurper_N 3.729715012475897e-6 +usury_N 3.729715012475897e-6 +utah_PN 1.865462821325971e-5 +utahraptor_N 3.729715012475897e-6 +utensil_N 3.729715012475897e-6 +uterine_A 1.0773191989054437e-5 +uterus_N 7.459430024951794e-6 +utilitarian_A 2.1546383978108874e-5 +utilitarian_N 3.729715012475897e-6 +utilitarianism_N 3.729715012475897e-6 +utility_N 4.2518751142225225e-4 +utilizable_A 1.0773191989054437e-5 +utilization_N 5.967544019961435e-5 +utilize_V2 3.219730508556434e-5 +utilizer_N 3.729715012475897e-6 +utmost_A 2.1546383978108874e-5 +utmost_N 7.459430024951794e-6 +utopia_N 7.459430024951794e-6 +utopian_A 3.231957596716331e-5 +utrecht_PN 1.865462821325971e-5 +utricle_N 3.729715012475897e-6 +utter_A 1.2927830386865325e-4 +utter_V2 4.8295957628346505e-5 +utterance_N 1.118914503742769e-5 +utterer_N 3.729715012475897e-6 +uttermost_A 1.0773191989054437e-5 +uttermost_N 3.729715012475897e-6 +uttoxeter_PN 1.865462821325971e-5 +uvea_N 3.729715012475897e-6 +uveal_A 1.0773191989054437e-5 +uveitis_N 3.729715012475897e-6 +uvula_N 3.729715012475897e-6 +uvular_A 1.0773191989054437e-5 +uvulitis_N 3.729715012475897e-6 +uxor_N 3.729715012475897e-6 +uxoricide_N 3.729715012475897e-6 +uxorious_A 1.0773191989054437e-5 +uxoriousness_N 3.729715012475897e-6 +v_and_a_N 4.1026865137234865e-5 +vac_N 3.729715012475897e-6 +vacancy_N 6.713487022456614e-5 +vacant_A 1.8314426381392542e-4 +vacate_V2 2.2538113559895037e-4 +vacation_N 5.967544019961435e-5 +vacation_V 6.803646754660499e-5 +vacationer_N 7.459430024951794e-6 +vacationing_N 3.729715012475897e-6 +vacationist_N 3.729715012475897e-6 +vaccinate_V2 1.609865254278217e-5 +vaccination_N 3.729715012475897e-6 +vaccine_N 7.832401526199384e-5 +vaccinee_N 3.729715012475897e-6 +vaccinia_N 3.729715012475897e-6 +vacillant_A 1.0773191989054437e-5 +vacillate_V 4.5357645031069986e-5 +vacillation_N 7.459430024951794e-6 +vacuity_N 3.729715012475897e-6 +vacuolate_A 1.0773191989054437e-5 +vacuole_N 3.729715012475897e-6 +vacuolization_N 3.729715012475897e-6 +vacuous_A 1.0773191989054437e-5 +vacuousness_N 3.729715012475897e-6 +vacuum_N 2.237829007485538e-5 +vacuum_V2 3.219730508556434e-5 +vacuum_up_V2 1.609865254278217e-5 +vade_mecum_N 3.729715012475897e-6 +vagabond_A 1.0773191989054437e-5 +vagabond_N 1.118914503742769e-5 +vagal_A 1.0773191989054437e-5 +vagary_N 1.118914503742769e-5 +vagile_A 1.0773191989054437e-5 +vagina_N 3.729715012475897e-6 +vaginal_A 3.231957596716331e-5 +vaginismus_N 3.729715012475897e-6 +vaginitis_N 3.729715012475897e-6 +vagrancy_N 3.729715012475897e-6 +vagrant_A 2.1546383978108874e-5 +vagrant_N 3.729715012475897e-6 +vague_A 1.508246878467621e-4 +vagueness_N 3.729715012475897e-6 +vagus_N 3.729715012475897e-6 +vain_A 5.3865959945272184e-5 +vainglorious_A 1.0773191989054437e-5 +vainglory_N 3.729715012475897e-6 +vaisya_N 3.729715012475897e-6 +valance_N 3.729715012475897e-6 +valdecoxib_N 3.729715012475897e-6 +vale_N 3.729715012475897e-6 +valediction_N 3.729715012475897e-6 +valedictorian_N 3.729715012475897e-6 +valedictory_A 1.0773191989054437e-5 +valence_N 3.729715012475897e-6 +valencia_PN 1.865462821325971e-5 +valenciennes_PN 1.865462821325971e-5 +valency_N 3.729715012475897e-6 +valent_A 1.0773191989054437e-5 +valentine_N 3.729715012475897e-6 +valerian_N 3.729715012475897e-6 +valet_N 3.729715012475897e-6 +valet_V2 1.609865254278217e-5 +valetudinarian_A 1.0773191989054437e-5 +valetudinarian_N 3.729715012475897e-6 +valgus_N 3.729715012475897e-6 +valiant_A 2.1546383978108874e-5 +valid_A 1.508246878467621e-4 +validate_V2 3.219730508556434e-5 +validation_N 3.729715012475897e-6 +validity_N 2.237829007485538e-5 +valine_N 3.729715012475897e-6 +valise_N 3.729715012475897e-6 +valladolid_PN 1.865462821325971e-5 +valley_N 1.118914503742769e-5 +valorous_A 1.0773191989054437e-5 +valour_N 3.729715012475897e-6 +valsartan_N 3.729715012475897e-6 +valuable_A 2.585566077373065e-4 +valuable_N 3.729715012475897e-6 +valuation_N 5.967544019961435e-5 +value_N 1.592588310327208e-3 +value_V 2.7214587018641994e-4 +value_V2 1.6903585169921278e-3 +value_added_A 3.231957596716331e-5 +valueless_A 1.0773191989054437e-5 +valuelessness_N 3.729715012475897e-6 +valuer_N 3.729715012475897e-6 +valve_N 1.8648575062379485e-5 +valved_A 1.0773191989054437e-5 +valvotomy_N 3.729715012475897e-6 +valvular_A 1.0773191989054437e-5 +valvule_N 3.729715012475897e-6 +valvulitis_N 3.729715012475897e-6 +vambrace_N 3.729715012475897e-6 +vamoose_V 2.2678822515534993e-5 +vamp_N 3.729715012475897e-6 +vamp_V 2.2678822515534993e-5 +vamp_V2 1.609865254278217e-5 +vamp_up_V2 1.609865254278217e-5 +vampire_N 3.729715012475897e-6 +vampirism_N 3.729715012475897e-6 +van_N 8.578344528694562e-5 +vanadate_N 3.729715012475897e-6 +vanadinite_N 3.729715012475897e-6 +vanadium_N 3.729715012475897e-6 +vancomycin_N 3.729715012475897e-6 +vancouver_PN 1.865462821325971e-5 +vanda_N 3.729715012475897e-6 +vandal_N 3.729715012475897e-6 +vandalism_N 3.729715012475897e-6 +vane_N 7.459430024951794e-6 +vanessa_PN 1.865462821325971e-5 +vanguard_N 7.459430024951794e-6 +vanilla_A 1.0773191989054437e-5 +vanilla_N 1.4918860049903587e-5 +vanillin_N 3.729715012475897e-6 +vanish_V 1.3607293509320997e-4 +vanished_A 1.0773191989054437e-5 +vanisher_N 3.729715012475897e-6 +vanishing_N 3.729715012475897e-6 +vanishingly_Adv 8.668966832532898e-6 +vanity_N 1.4918860049903587e-5 +vanquish_V2 1.609865254278217e-5 +vantage_N 1.118914503742769e-5 +vantage_point_N 3.729715012475897e-6 +vapid_A 1.0773191989054437e-5 +vapidity_N 3.729715012475897e-6 +vapidness_N 3.729715012475897e-6 +vapor_N 3.729715012475897e-6 +vaporific_A 1.0773191989054437e-5 +vaporization_N 3.729715012475897e-6 +vaporize_V 2.2678822515534993e-5 +vaporize_V2 1.609865254278217e-5 +vaporizer_N 3.729715012475897e-6 +vaporous_A 1.0773191989054437e-5 +vapour_N 3.729715012475897e-6 +vapour_bath_N 3.729715012475897e-6 +vaquero_N 3.729715012475897e-6 +vaquita_N 3.729715012475897e-6 +vara_N 3.729715012475897e-6 +varanasi_PN 1.865462821325971e-5 +vardenafil_N 3.729715012475897e-6 +variability_N 3.729715012475897e-6 +variable_A 2.1546383978108874e-5 +variable_N 2.9837720099807175e-5 +variableness_N 3.729715012475897e-6 +variance_N 3.729715012475897e-6 +variant_A 1.0773191989054437e-5 +variant_N 3.729715012475897e-6 +variation_N 5.967544019961435e-5 +varicelliform_A 1.0773191989054437e-5 +varicocele_N 3.729715012475897e-6 +varicolored_A 1.0773191989054437e-5 +varicoloured_A 1.0773191989054437e-5 +varicose_A 1.0773191989054437e-5 +varicosis_N 3.729715012475897e-6 +varicosity_N 3.729715012475897e-6 +variedness_N 3.729715012475897e-6 +variegated_A 1.0773191989054437e-5 +variegation_N 3.729715012475897e-6 +varietal_N 3.729715012475897e-6 +variety_N 1.7529660558636716e-4 +variform_A 1.0773191989054437e-5 +variolar_A 1.0773191989054437e-5 +variolation_N 3.729715012475897e-6 +variometer_N 3.729715012475897e-6 +variorum_A 1.0773191989054437e-5 +variorum_N 3.729715012475897e-6 +various_A 1.1635047348178792e-3 +varix_N 3.729715012475897e-6 +varlet_N 3.729715012475897e-6 +varmint_N 3.729715012475897e-6 +varna_N 3.729715012475897e-6 +varnish_N 3.729715012475897e-6 +varnish_V2 1.609865254278217e-5 +varnisher_N 3.729715012475897e-6 +varsity_N 3.729715012475897e-6 +varus_N 3.729715012475897e-6 +vary_V 8.844740781058648e-4 +vary_V2 1.1269056779947518e-4 +vascular_A 1.0773191989054437e-5 +vascularity_N 3.729715012475897e-6 +vascularization_N 3.729715012475897e-6 +vasculitis_N 3.729715012475897e-6 +vase_N 1.118914503742769e-5 +vasectomy_N 3.729715012475897e-6 +vaseline_N 3.729715012475897e-6 +vasoconstriction_N 3.729715012475897e-6 +vasoconstrictor_N 3.729715012475897e-6 +vasodilation_N 3.729715012475897e-6 +vasodilator_N 3.729715012475897e-6 +vasomotor_A 1.0773191989054437e-5 +vasopressin_N 3.729715012475897e-6 +vasopressor_N 3.729715012475897e-6 +vasotomy_N 3.729715012475897e-6 +vasovasostomy_N 3.729715012475897e-6 +vasovesiculitis_N 3.729715012475897e-6 +vassal_N 7.459430024951794e-6 +vassalage_N 3.729715012475897e-6 +vast_A 3.555153356387964e-4 +vasteras_PN 1.865462821325971e-5 +vastness_N 3.729715012475897e-6 +vat_N 3.729715012475897e-6 +vatican_N 3.729715012475897e-6 +vaudeville_N 7.459430024951794e-6 +vaudevillian_N 3.729715012475897e-6 +vault_N 2.9837720099807175e-5 +vault_V 2.2678822515534993e-5 +vault_V2 3.219730508556434e-5 +vaulter_N 3.729715012475897e-6 +vaulting_N 3.729715012475897e-6 +vaulting_horse_N 3.729715012475897e-6 +vaunt_N 3.729715012475897e-6 +vaunt_V 2.2678822515534993e-5 +vaunt_V2 4.8295957628346505e-5 +vaunter_N 3.729715012475897e-6 +vauntingly_Adv 8.668966832532898e-6 +vc_N 3.729715012475897e-6 +vd_N 3.729715012475897e-6 +veal_N 7.459430024951794e-6 +vector_N 1.118914503742769e-5 +vedalia_N 3.729715012475897e-6 +veer_V 6.803646754660499e-5 +veer_away_from_V2 1.609865254278217e-5 +veer_off_V 2.2678822515534993e-5 +veery_N 3.729715012475897e-6 +veg_out_V 2.2678822515534993e-5 +vegan_N 3.729715012475897e-6 +vegetable_A 1.0773191989054437e-5 +vegetable_N 2.9837720099807175e-5 +vegetal_A 1.0773191989054437e-5 +vegetarian_N 7.459430024951794e-6 +vegetarianism_N 3.729715012475897e-6 +vegetate_V 2.2678822515534993e-5 +vegetation_N 3.729715012475897e-6 +vegetative_A 1.0773191989054437e-5 +vehemence_N 7.459430024951794e-6 +vehement_A 7.541234392338106e-5 +vehicle_N 4.885926666343425e-4 +vehicular_A 1.0773191989054437e-5 +veil_N 3.729715012475897e-6 +veil_V2 4.8295957628346505e-5 +veiling_N 3.729715012475897e-6 +vein_N 1.118914503742769e-5 +veinal_A 1.0773191989054437e-5 +veined_A 1.0773191989054437e-5 +velar_A 1.0773191989054437e-5 +velar_N 3.729715012475897e-6 +veld_N 3.729715012475897e-6 +velleity_N 3.729715012475897e-6 +vellum_N 3.729715012475897e-6 +velocipede_N 3.729715012475897e-6 +velociraptor_N 3.729715012475897e-6 +velocity_N 1.118914503742769e-5 +velodrome_N 3.729715012475897e-6 +velour_N 3.729715012475897e-6 +veloute_N 3.729715012475897e-6 +velvet_A 1.0773191989054437e-5 +velvet_N 1.4918860049903587e-5 +velveteen_N 3.729715012475897e-6 +velvetleaf_N 3.729715012475897e-6 +velvety_A 1.0773191989054437e-5 +venal_A 2.1546383978108874e-5 +venality_N 3.729715012475897e-6 +venation_N 3.729715012475897e-6 +vend_V2 3.219730508556434e-5 +vendee_N 3.729715012475897e-6 +vender_N 3.729715012475897e-6 +vendetta_N 1.118914503742769e-5 +vending_N 3.729715012475897e-6 +vendor_N 5.594572518713845e-5 +veneer_N 3.729715012475897e-6 +veneer_V2 1.609865254278217e-5 +veneering_N 3.729715012475897e-6 +venerability_N 3.729715012475897e-6 +venerable_A 8.61855359124355e-5 +venerate_V2 1.609865254278217e-5 +veneration_N 3.729715012475897e-6 +venerator_N 3.729715012475897e-6 +venereal_A 1.0773191989054437e-5 +venesection_N 3.729715012475897e-6 +venetian_A 1.0773191989054437e-5 +venezia_PN 1.865462821325971e-5 +venezuela_PN 1.865462821325971e-5 +venezuelan_A 4.309276795621775e-5 +venezuelan_N 3.729715012475897e-6 +vengeance_N 1.8648575062379485e-5 +vengeful_A 1.0773191989054437e-5 +venial_A 1.0773191989054437e-5 +venice_PN 1.678916539193374e-4 +venipuncture_N 3.729715012475897e-6 +venison_N 3.729715012475897e-6 +venogram_N 3.729715012475897e-6 +venography_N 3.729715012475897e-6 +venom_N 3.729715012475897e-6 +venomed_A 1.0773191989054437e-5 +venomous_A 1.0773191989054437e-5 +venous_A 1.0773191989054437e-5 +vent_N 3.729715012475897e-6 +vent_V2 4.8295957628346505e-5 +vent_hole_N 3.729715012475897e-6 +venter_N 3.729715012475897e-6 +ventilate_V2 6.439461017112868e-5 +ventilation_N 1.8648575062379485e-5 +ventilator_N 3.729715012475897e-6 +ventilatory_A 1.0773191989054437e-5 +ventnor_PN 1.865462821325971e-5 +ventral_A 1.0773191989054437e-5 +ventricle_N 3.729715012475897e-6 +ventricose_A 1.0773191989054437e-5 +ventricular_A 1.0773191989054437e-5 +ventriloquism_N 3.729715012475897e-6 +ventriloquist_N 3.729715012475897e-6 +venture_N 8.541047378569803e-4 +venture_V 4.5357645031069986e-5 +venture_V2 3.219730508556434e-5 +venture_VS 1.1552012938254491e-4 +venture_forth_V 2.2678822515534993e-5 +venturer_N 3.729715012475897e-6 +venturesome_A 2.1546383978108874e-5 +venturi_N 3.729715012475897e-6 +venturous_A 1.0773191989054437e-5 +venue_N 7.459430024951794e-6 +venule_N 3.729715012475897e-6 +venus_PN 1.865462821325971e-5 +vera_PN 1.865462821325971e-5 +veracious_A 1.0773191989054437e-5 +veracity_N 1.118914503742769e-5 +veranda_N 3.729715012475897e-6 +verandah_N 3.729715012475897e-6 +verapamil_N 3.729715012475897e-6 +verb_N 3.729715012475897e-6 +verbal_A 8.61855359124355e-5 +verbalization_N 3.729715012475897e-6 +verbalize_V2 1.609865254278217e-5 +verbatim_A 4.309276795621775e-5 +verbatim_Adv 1.7337933665065797e-5 +verbena_N 3.729715012475897e-6 +verbiage_N 3.729715012475897e-6 +verbolatry_N 3.729715012475897e-6 +verbose_A 1.0773191989054437e-5 +verboseness_N 3.729715012475897e-6 +verbosity_N 3.729715012475897e-6 +verdancy_N 3.729715012475897e-6 +verdant_A 1.0773191989054437e-5 +verdict_N 5.967544019961435e-5 +verdigris_N 3.729715012475897e-6 +verdin_N 3.729715012475897e-6 +verdure_N 3.729715012475897e-6 +verey_A 1.0773191989054437e-5 +verge_N 2.9837720099807175e-5 +verge_V 4.5357645031069986e-5 +verger_N 3.729715012475897e-6 +veridical_A 1.0773191989054437e-5 +verifiable_A 3.231957596716331e-5 +verification_N 1.4918860049903587e-5 +verify_V2 6.439461017112868e-5 +verily_Adv 8.668966832532898e-6 +verisimilar_A 1.0773191989054437e-5 +verisimilitude_N 3.729715012475897e-6 +veritable_A 3.231957596716331e-5 +verity_N 3.729715012475897e-6 +vermicelli_N 3.729715012475897e-6 +vermicide_N 3.729715012475897e-6 +vermicular_A 1.0773191989054437e-5 +vermiculate_A 1.0773191989054437e-5 +vermiculation_N 3.729715012475897e-6 +vermiculite_N 3.729715012475897e-6 +vermiform_A 1.0773191989054437e-5 +vermifuge_N 3.729715012475897e-6 +vermilion_A 1.0773191989054437e-5 +vermilion_N 3.729715012475897e-6 +vermin_N 3.729715012475897e-6 +verminous_A 1.0773191989054437e-5 +vermis_N 3.729715012475897e-6 +vermont_PN 1.865462821325971e-5 +vermouth_N 3.729715012475897e-6 +vernacular_A 1.0773191989054437e-5 +vernacular_N 7.459430024951794e-6 +vernal_A 1.0773191989054437e-5 +vernation_N 3.729715012475897e-6 +vernix_N 3.729715012475897e-6 +vernon_PN 1.865462821325971e-5 +verona_PN 1.865462821325971e-5 +veronica_N 3.729715012475897e-6 +veronica_PN 1.865462821325971e-5 +verruca_N 3.729715012475897e-6 +verrucose_A 1.0773191989054437e-5 +versatile_A 1.0773191989054437e-5 +versatility_N 3.729715012475897e-6 +verse_N 1.118914503742769e-5 +versed_A 1.0773191989054437e-5 +versicle_N 3.729715012475897e-6 +versification_N 3.729715012475897e-6 +versifier_N 3.729715012475897e-6 +versify_V 2.2678822515534993e-5 +versify_V2 1.609865254278217e-5 +version_N 4.32646941447204e-4 +verso_N 7.459430024951794e-6 +verst_N 3.729715012475897e-6 +versus_Prep 2.99356383774884e-5 +vertebra_N 3.729715012475897e-6 +vertebral_A 1.0773191989054437e-5 +vertebrate_A 1.0773191989054437e-5 +vertebrate_N 3.729715012475897e-6 +vertex_N 3.729715012475897e-6 +vertical_A 6.463915193432663e-5 +vertical_N 3.729715012475897e-6 +verticality_N 3.729715012475897e-6 +verticil_N 3.729715012475897e-6 +verticillate_A 1.0773191989054437e-5 +verticilliosis_N 3.729715012475897e-6 +verticillium_N 3.729715012475897e-6 +vertiginous_A 1.0773191989054437e-5 +vertigo_N 3.729715012475897e-6 +verve_N 7.459430024951794e-6 +vervet_N 3.729715012475897e-6 +very_AdA 0.1359026369168357 +vesical_A 1.0773191989054437e-5 +vesicant_N 3.729715012475897e-6 +vesicatory_A 1.0773191989054437e-5 +vesicle_N 3.729715012475897e-6 +vesicular_A 1.0773191989054437e-5 +vesiculation_N 3.729715012475897e-6 +vesiculitis_N 3.729715012475897e-6 +vesiculovirus_N 3.729715012475897e-6 +vesper_N 3.729715012475897e-6 +vespers_N 3.729715012475897e-6 +vespid_N 3.729715012475897e-6 +vessel_N 6.340515521209024e-5 +vest_N 1.4918860049903587e-5 +vest_V 4.5357645031069986e-5 +vest_V2 1.4488787288503951e-4 +vestal_A 1.0773191989054437e-5 +vestal_N 3.729715012475897e-6 +vestiary_A 1.0773191989054437e-5 +vestibular_A 1.0773191989054437e-5 +vestibule_N 3.729715012475897e-6 +vestige_N 3.729715012475897e-6 +vestigial_A 1.0773191989054437e-5 +vestiture_N 3.729715012475897e-6 +vestment_N 3.729715012475897e-6 +vestmental_A 1.0773191989054437e-5 +vestmented_A 1.0773191989054437e-5 +vestry_N 3.729715012475897e-6 +vestryman_N 3.729715012475897e-6 +vestrywoman_N 3.729715012475897e-6 +vesture_N 3.729715012475897e-6 +vesture_V2 1.609865254278217e-5 +vesuvianite_N 3.729715012475897e-6 +vet_N 7.459430024951794e-6 +vet_V2 1.609865254278217e-5 +vetch_N 3.729715012475897e-6 +vetchling_N 3.729715012475897e-6 +veteran_N 1.08161735361801e-4 +veterinarian_N 3.729715012475897e-6 +veterinary_A 3.231957596716331e-5 +veto_N 3.170257760604512e-4 +veto_V 2.0410940263981494e-4 +veto_V2 4.0246631356955425e-4 +vex_V2 1.609865254278217e-5 +vex_V2V 4.675081813931744e-4 +vexation_N 3.729715012475897e-6 +vexatious_A 1.0773191989054437e-5 +vhf_PN 1.865462821325971e-5 +via_Prep 1.985730679040064e-3 +via_media_N 2.237829007485538e-5 +viability_N 2.6108005087331277e-5 +viable_A 1.6159787983581657e-4 +viaduct_N 1.118914503742769e-5 +vial_N 7.459430024951794e-6 +viand_N 3.729715012475897e-6 +viatical_A 1.0773191989054437e-5 +viatication_N 3.729715012475897e-6 +vibist_N 3.729715012475897e-6 +vibrant_A 3.231957596716331e-5 +vibraphone_N 3.729715012475897e-6 +vibrate_V 4.5357645031069986e-5 +vibrate_V2 1.609865254278217e-5 +vibration_N 3.729715012475897e-6 +vibrational_A 1.0773191989054437e-5 +vibrato_N 3.729715012475897e-6 +vibrator_N 3.729715012475897e-6 +vibratory_A 1.0773191989054437e-5 +vibrio_N 3.729715012475897e-6 +vibrionic_A 1.0773191989054437e-5 +vic_PN 1.865462821325971e-5 +vicar_N 2.9837720099807175e-5 +vicarage_N 3.729715012475897e-6 +vicarial_A 1.0773191989054437e-5 +vicariate_N 3.729715012475897e-6 +vicarious_A 1.0773191989054437e-5 +vice_N 1.7082094757139607e-3 +vice_Prep 9.978546125829467e-6 +vice_versa_Adv 4.33448341626645e-5 +vicegerent_N 3.729715012475897e-6 +vicenary_A 1.0773191989054437e-5 +vicennial_A 1.0773191989054437e-5 +vicenza_PN 1.865462821325971e-5 +viceregal_A 1.0773191989054437e-5 +vicereine_N 3.729715012475897e-6 +viceroy_N 3.729715012475897e-6 +viceroyalty_N 3.729715012475897e-6 +viceroyship_N 3.729715012475897e-6 +vichyssoise_N 3.729715012475897e-6 +vicinal_A 1.0773191989054437e-5 +vicinity_N 7.459430024951794e-6 +vicious_A 1.0773191989054437e-4 +viciousness_N 3.729715012475897e-6 +vicissitude_N 7.459430024951794e-6 +vicky_PN 1.865462821325971e-5 +victim_N 3.543229261852102e-4 +victimization_N 3.729715012475897e-6 +victimize_V2 6.439461017112868e-5 +victimizer_N 3.729715012475897e-6 +victor_N 1.4918860049903587e-5 +victor_PN 1.865462821325971e-5 +victoria_N 3.729715012475897e-6 +victoria_PN 1.865462821325971e-5 +victorian_A 6.463915193432663e-5 +victorian_N 3.729715012475897e-6 +victoriana_N 3.729715012475897e-6 +victorious_A 3.231957596716331e-5 +victory_N 1.7902632059884304e-4 +victual_N 3.729715012475897e-6 +victual_V 2.2678822515534993e-5 +victual_V2 1.609865254278217e-5 +victualer_N 3.729715012475897e-6 +victualler_N 3.729715012475897e-6 +vicuna_N 3.729715012475897e-6 +videlicet_Adv 8.668966832532898e-6 +video_N 1.1562116538675279e-4 +videocassette_N 3.729715012475897e-6 +videodisk_N 3.729715012475897e-6 +videotape_N 2.237829007485538e-5 +videotape_V2 1.609865254278217e-5 +vie_V 2.2678822515534993e-5 +vienna_PN 1.865462821325971e-5 +vietnam_PN 3.357833078386748e-4 +vietnamese_A 1.0773191989054437e-5 +vietnamese_N 3.729715012475897e-6 +view_N 6.004841170086194e-4 +view_V2 1.2717935508797914e-3 +viewable_A 1.0773191989054437e-5 +viewer_N 1.6410746054893946e-4 +viewfinder_N 3.729715012475897e-6 +viewgraph_N 3.729715012475897e-6 +viewless_A 1.0773191989054437e-5 +viewpark_PN 1.865462821325971e-5 +viewpoint_N 3.729715012475897e-5 +vigesimal_A 1.0773191989054437e-5 +vigil_N 7.459430024951794e-6 +vigilance_N 3.729715012475897e-6 +vigilant_A 1.0773191989054437e-5 +vigilante_N 3.729715012475897e-6 +vigilantism_N 3.729715012475897e-6 +vignette_N 1.118914503742769e-5 +vigo_PN 1.865462821325971e-5 +vigor_N 3.729715012475897e-6 +vigorous_A 2.2623703177014317e-4 +vigour_N 3.729715012475897e-6 +viking_N 3.729715012475897e-6 +vile_A 1.0773191989054437e-5 +vileness_N 3.729715012475897e-6 +vilification_N 3.729715012475897e-6 +vilify_V2 1.609865254278217e-5 +villa_N 3.729715012475897e-6 +village_N 3.729715012475897e-5 +villager_N 1.118914503742769e-5 +villain_N 7.459430024951794e-6 +villainess_N 3.729715012475897e-6 +villainous_A 1.0773191989054437e-5 +villainy_N 3.729715012475897e-6 +villein_N 3.729715012475897e-6 +villeinage_N 3.729715012475897e-6 +villus_N 3.729715012475897e-6 +vim_N 3.729715012475897e-6 +vinaceous_A 1.0773191989054437e-5 +vinaigrette_N 3.729715012475897e-6 +vinblastine_N 3.729715012475897e-6 +vince_PN 1.865462821325971e-5 +vincent_PN 1.865462821325971e-5 +vincristine_N 3.729715012475897e-6 +vindicate_V2 3.219730508556434e-5 +vindication_N 1.4918860049903587e-5 +vindictive_A 1.0773191989054437e-5 +vindictiveness_N 3.729715012475897e-6 +vine_N 7.459430024951794e-6 +vinegar_N 3.729715012475897e-6 +vinegariness_N 3.729715012475897e-6 +vinegarroon_N 3.729715012475897e-6 +vinegary_A 1.0773191989054437e-5 +vinery_N 3.729715012475897e-6 +vineyard_N 1.4918860049903587e-5 +vinifera_N 3.729715012475897e-6 +vinification_N 3.729715012475897e-6 +vino_N 3.729715012475897e-6 +vinous_A 1.0773191989054437e-5 +vintage_N 2.6108005087331277e-5 +vintager_N 3.729715012475897e-6 +vintner_N 3.729715012475897e-6 +vinyl_N 1.4918860049903587e-5 +viol_N 3.729715012475897e-6 +viola_N 3.729715012475897e-6 +viola_PN 1.865462821325971e-5 +violable_A 1.0773191989054437e-5 +violate_V2 1.0303137627380588e-3 +violation_N 2.387017607984574e-4 +violator_N 3.729715012475897e-6 +violence_N 7.459430024951794e-5 +violent_A 1.2927830386865325e-4 +violet_N 1.118914503742769e-5 +violet_PN 1.865462821325971e-5 +violin_N 2.6108005087331277e-5 +violinist_N 1.118914503742769e-5 +violist_N 3.729715012475897e-6 +viomycin_N 3.729715012475897e-6 +vip_N 3.729715012475897e-6 +viper_N 3.729715012475897e-6 +virago_N 3.729715012475897e-6 +viral_A 1.0773191989054437e-5 +viremia_N 3.729715012475897e-6 +vireo_N 3.729715012475897e-6 +virga_N 3.729715012475897e-6 +virgin_A 3.231957596716331e-5 +virgin_N 7.459430024951794e-6 +virginal_A 1.0773191989054437e-5 +virginal_N 3.729715012475897e-6 +virginia_N 3.729715012475897e-6 +virginia_PN 2.6116479498563595e-4 +virginia_water_PN 1.865462821325971e-5 +virginity_N 3.729715012475897e-6 +virgo_PN 1.865462821325971e-5 +virgule_N 3.729715012475897e-6 +viricidal_A 1.0773191989054437e-5 +viricide_N 3.729715012475897e-6 +virile_A 1.0773191989054437e-5 +virilism_N 3.729715012475897e-6 +virility_N 7.459430024951794e-6 +virino_N 3.729715012475897e-6 +virion_N 3.729715012475897e-6 +viroid_N 3.729715012475897e-6 +virological_A 1.0773191989054437e-5 +virologist_N 3.729715012475897e-6 +virology_N 3.729715012475897e-6 +virtu_N 3.729715012475897e-6 +virtual_A 7.218038632666473e-4 +virtue_N 2.9837720099807175e-5 +virtuosity_N 7.459430024951794e-6 +virtuoso_N 1.118914503742769e-5 +virtuous_A 1.0773191989054437e-5 +virulence_N 1.8648575062379485e-5 +virulent_A 1.0773191989054437e-5 +virus_N 7.086458523704203e-5 +vis_a_vis_Adv 8.668966832532898e-6 +vis_a_vis_Prep 1.9957092251658934e-5 +visa_N 1.4918860049903587e-5 +visa_V2 1.609865254278217e-5 +visage_N 7.459430024951794e-6 +visaged_A 1.0773191989054437e-5 +viscacha_N 3.729715012475897e-6 +viscera_N 3.729715012475897e-6 +visceral_A 1.0773191989054437e-5 +viscid_A 1.0773191989054437e-5 +viscoelastic_A 1.0773191989054437e-5 +viscometer_N 3.729715012475897e-6 +viscometric_A 1.0773191989054437e-5 +viscometry_N 3.729715012475897e-6 +viscosity_N 3.729715012475897e-6 +viscount_N 3.729715012475897e-6 +viscountcy_N 3.729715012475897e-6 +viscountess_N 3.729715012475897e-6 +viscounty_N 3.729715012475897e-6 +viscous_A 1.0773191989054437e-5 +vise_N 3.729715012475897e-6 +viselike_A 1.0773191989054437e-5 +visibility_N 1.4918860049903587e-5 +visible_A 2.47783415748252e-4 +vision_N 7.086458523704203e-5 +visionary_A 1.0773191989054437e-5 +visionary_N 7.459430024951794e-6 +visit_N 1.7902632059884304e-4 +visit_V 4.989340953417699e-4 +visit_V2 5.151568813690294e-4 +visit_V2V 1.402524544179523e-3 +visitant_N 3.729715012475897e-6 +visitation_N 3.729715012475897e-6 +visiting_N 3.729715012475897e-6 +visitor_N 1.2308059541170458e-4 +visor_N 3.729715012475897e-6 +visored_A 1.0773191989054437e-5 +vista_N 7.459430024951794e-6 +visual_A 1.1850511187959881e-4 +visualization_N 3.729715012475897e-6 +visualize_V2 4.8295957628346505e-5 +visualizer_N 3.729715012475897e-6 +vital_A 1.508246878467621e-4 +vitalism_N 3.729715012475897e-6 +vitalist_N 3.729715012475897e-6 +vitality_N 7.459430024951794e-6 +vitalization_N 3.729715012475897e-6 +vitalize_V2 1.609865254278217e-5 +vitalness_N 3.729715012475897e-6 +vitamin_N 3.729715012475897e-6 +vitiate_V2 3.219730508556434e-5 +vitiation_N 3.729715012475897e-6 +viticulture_N 3.729715012475897e-6 +viticulturist_N 3.729715012475897e-6 +vitiliginous_A 1.0773191989054437e-5 +vitiligo_N 3.729715012475897e-6 +vitoria_PN 1.865462821325971e-5 +vitrectomy_N 3.729715012475897e-6 +vitreous_A 1.0773191989054437e-5 +vitrification_N 3.729715012475897e-6 +vitrify_V 2.2678822515534993e-5 +vitrify_V2 1.609865254278217e-5 +vitriol_N 3.729715012475897e-6 +vitriolic_A 2.1546383978108874e-5 +vituperate_V2 1.609865254278217e-5 +vituperation_N 3.729715012475897e-6 +vituperative_A 1.0773191989054437e-5 +viv_PN 1.865462821325971e-5 +viva_N 3.729715012475897e-6 +viva_voce_A 1.0773191989054437e-5 +viva_voce_Adv 8.668966832532898e-6 +viva_voce_N 3.729715012475897e-6 +vivace_A 1.0773191989054437e-5 +vivace_Adv 8.668966832532898e-6 +vivacious_A 1.0773191989054437e-5 +vivacity_N 3.729715012475897e-6 +vivarium_N 3.729715012475897e-6 +viverrine_N 3.729715012475897e-6 +vivian_PN 1.865462821325971e-5 +vivid_A 1.4005149585770768e-4 +vividness_N 3.729715012475897e-6 +vivien_PN 1.865462821325971e-5 +vivienne_PN 1.865462821325971e-5 +vivification_N 3.729715012475897e-6 +viviparous_A 1.0773191989054437e-5 +vivisect_V2 1.609865254278217e-5 +vivisection_N 3.729715012475897e-6 +vivisectionist_N 3.729715012475897e-6 +vixen_N 3.729715012475897e-6 +vixenish_A 1.0773191989054437e-5 +viz_PN 1.865462821325971e-5 +vizier_N 3.729715012475897e-6 +viziership_N 3.729715012475897e-6 +vizsla_N 3.729715012475897e-6 +vocable_N 3.729715012475897e-6 +vocabulary_N 3.729715012475897e-6 +vocal_A 5.3865959945272184e-5 +vocalic_A 1.0773191989054437e-5 +vocalist_N 7.459430024951794e-6 +vocalize_V2 1.609865254278217e-5 +vocation_N 3.729715012475897e-6 +vocational_A 1.0773191989054437e-5 +vocative_A 1.0773191989054437e-5 +vocative_N 3.729715012475897e-6 +vociferate_V 2.2678822515534993e-5 +vociferate_V2 1.609865254278217e-5 +vociferation_N 3.729715012475897e-6 +vociferator_N 3.729715012475897e-6 +vociferous_A 2.1546383978108874e-5 +vodka_N 2.237829007485538e-5 +vogue_N 1.118914503742769e-5 +voice_N 1.9767489566122252e-4 +voice_V2 1.609865254278217e-4 +voiceless_A 1.0773191989054437e-5 +voicelessness_N 3.729715012475897e-6 +voiceprint_N 3.729715012475897e-6 +voicer_N 3.729715012475897e-6 +voicing_N 3.729715012475897e-6 +void_A 2.1546383978108874e-5 +void_N 1.4918860049903587e-5 +void_V2 6.439461017112868e-5 +voider_N 3.729715012475897e-6 +voile_N 3.729715012475897e-6 +vol_N 3.729715012475897e-6 +volatile_A 6.140719433761029e-4 +volatile_N 3.729715012475897e-6 +volatility_N 4.7367380658443886e-4 +volcanic_A 1.0773191989054437e-5 +volcanically_Adv 8.668966832532898e-6 +volcanism_N 3.729715012475897e-6 +volcano_N 1.118914503742769e-5 +volcanology_N 3.729715012475897e-6 +vole_N 3.729715012475897e-6 +volgograd_PN 1.865462821325971e-5 +volition_N 3.729715012475897e-6 +volitional_A 1.0773191989054437e-5 +volley_N 7.459430024951794e-6 +volley_V 2.2678822515534993e-5 +volley_V2 1.609865254278217e-5 +volleyball_N 3.729715012475897e-6 +volt_N 3.729715012475897e-6 +voltage_N 3.729715012475897e-6 +voltaic_A 1.0773191989054437e-5 +volte_face_N 3.729715012475897e-6 +voltmeter_N 3.729715012475897e-6 +volubility_N 3.729715012475897e-6 +voluble_A 1.0773191989054437e-5 +volume_N 1.230805954117046e-3 +volumed_A 1.0773191989054437e-5 +volumeter_N 3.729715012475897e-6 +volumetric_A 1.0773191989054437e-5 +volumetrically_Adv 8.668966832532898e-6 +voluminous_A 2.1546383978108874e-5 +voluntary_A 3.3396895166068756e-4 +voluntary_N 3.729715012475897e-6 +volunteer_N 7.086458523704203e-5 +volunteer_V 1.3607293509320997e-4 +volunteer_V2 4.8295957628346505e-5 +volunteer_V2V 4.675081813931744e-4 +volunteer_VS 1.1552012938254491e-4 +voluptuary_N 3.729715012475897e-6 +voluptuous_A 3.231957596716331e-5 +voluptuousness_N 3.729715012475897e-6 +volute_N 3.729715012475897e-6 +voluted_A 1.0773191989054437e-5 +volution_N 3.729715012475897e-6 +volva_N 3.729715012475897e-6 +volvulus_N 3.729715012475897e-6 +vomer_N 3.729715012475897e-6 +vomit_N 3.729715012475897e-6 +vomit_V 6.803646754660499e-5 +vomit_V2 1.609865254278217e-5 +vomiter_N 3.729715012475897e-6 +vomitory_N 3.729715012475897e-6 +voodoo_N 3.729715012475897e-6 +voodooism_N 3.729715012475897e-6 +voracious_A 2.1546383978108874e-5 +voracity_N 3.729715012475897e-6 +voronezh_PN 1.865462821325971e-5 +vortex_N 1.118914503742769e-5 +vorticella_N 3.729715012475897e-6 +votary_N 3.729715012475897e-6 +vote_N 5.631869668838604e-4 +vote_V 2.494670476708849e-3 +vote_V2 2.2538113559895037e-4 +vote_VS 2.8880032345636225e-4 +vote_VV 2.6907553334614646e-3 +vote_down_V 2.2678822515534993e-5 +voteless_A 1.0773191989054437e-5 +voter_N 2.648097658857887e-4 +votive_A 1.0773191989054437e-5 +vouch_V 2.2678822515534993e-5 +vouchee_N 3.729715012475897e-6 +voucher_N 1.118914503742769e-5 +vouchsafe_V2 1.609865254278217e-5 +vouge_N 3.729715012475897e-6 +voussoir_N 3.729715012475897e-6 +vow_N 7.459430024951794e-6 +vow_V2 8.049326271391085e-5 +vow_VS 3.4656038814763474e-4 +vow_VV 1.7297712857966558e-3 +vowel_N 3.729715012475897e-6 +vowellike_A 1.0773191989054437e-5 +vower_N 3.729715012475897e-6 +vox_N 3.729715012475897e-6 +vox_populi_N 3.729715012475897e-6 +voyage_N 7.459430024951794e-6 +voyage_V 2.2678822515534993e-5 +voyager_N 3.729715012475897e-6 +voyeur_N 3.729715012475897e-6 +voyeurism_N 7.459430024951794e-6 +voyeuristic_A 1.0773191989054437e-5 +voyeuristically_Adv 8.668966832532898e-6 +vp_N 3.729715012475897e-6 +vroom_N 3.729715012475897e-6 +vs_PN 1.865462821325971e-5 +vs_Prep 1.3969964576161252e-4 +vso_PN 1.865462821325971e-5 +vulcanite_N 3.729715012475897e-6 +vulcanization_N 3.729715012475897e-6 +vulcanize_V2 1.609865254278217e-5 +vulcanizer_N 3.729715012475897e-6 +vulgar_A 1.0773191989054437e-5 +vulgarian_N 3.729715012475897e-6 +vulgarism_N 3.729715012475897e-6 +vulgarity_N 3.729715012475897e-6 +vulgarization_N 3.729715012475897e-6 +vulgarize_V2 1.609865254278217e-5 +vulgarizer_N 3.729715012475897e-6 +vulgate_N 3.729715012475897e-6 +vulnerability_N 2.237829007485538e-5 +vulnerable_A 2.908761837044698e-4 +vulpine_A 1.0773191989054437e-5 +vulture_N 3.729715012475897e-6 +vulva_N 3.729715012475897e-6 +vulvar_A 1.0773191989054437e-5 +vulvectomy_N 3.729715012475897e-6 +vulvitis_N 3.729715012475897e-6 +vulvovaginitis_N 3.729715012475897e-6 +wad_N 2.237829007485538e-5 +wad_V2 1.609865254278217e-5 +wad_VS 1.1552012938254491e-4 +wadding_N 3.729715012475897e-6 +waddle_N 3.729715012475897e-6 +waddle_V 4.5357645031069986e-5 +waddler_N 3.729715012475897e-6 +wade_V 4.5357645031069986e-5 +wade_V2 1.609865254278217e-5 +wade_in_V 2.2678822515534993e-5 +wade_into_V2 1.609865254278217e-5 +wade_through_V2 1.609865254278217e-5 +wader_N 3.729715012475897e-6 +waders_N 3.729715012475897e-6 +wadi_N 3.729715012475897e-6 +wading_N 3.729715012475897e-6 +wafer_N 1.4918860049903587e-5 +waffle_N 1.118914503742769e-5 +waffle_V 4.5357645031069986e-5 +waffle_V2 3.219730508556434e-5 +waffler_N 3.729715012475897e-6 +waft_N 3.729715012475897e-6 +waft_V2 3.219730508556434e-5 +wag_N 1.4918860049903587e-5 +wag_V 2.2678822515534993e-5 +wag_V2 1.609865254278217e-5 +wage_N 4.997818116717702e-4 +wage_V2 8.049326271391085e-5 +wage_claim_N 3.729715012475897e-6 +wage_earner_N 3.729715012475897e-6 +wage_freeze_N 3.729715012475897e-6 +wager_N 3.729715012475897e-6 +wager_V 4.5357645031069986e-5 +wager_V2 1.609865254278217e-5 +wages_N 3.729715012475897e-6 +waggery_N 3.729715012475897e-6 +waggish_A 2.1546383978108874e-5 +waggishness_N 3.729715012475897e-6 +waggle_V 2.2678822515534993e-5 +waggle_V2 1.609865254278217e-5 +waggon_N 3.729715012475897e-6 +waggoner_N 3.729715012475897e-6 +wagon_N 3.729715012475897e-6 +wagon_lit_N 3.729715012475897e-6 +wagoner_N 3.729715012475897e-6 +wagonwright_N 3.729715012475897e-6 +wagtail_N 3.729715012475897e-6 +wahoo_N 3.729715012475897e-6 +waif_N 7.459430024951794e-6 +wail_N 3.729715012475897e-6 +wail_V 6.803646754660499e-5 +wail_V2 1.609865254278217e-5 +wailer_N 3.729715012475897e-6 +wailing_N 3.729715012475897e-6 +wain_N 3.729715012475897e-6 +wainscot_N 3.729715012475897e-6 +wainscoted_A 1.0773191989054437e-5 +wainscoting_N 3.729715012475897e-6 +waist_N 3.729715012475897e-6 +waist_deep_A 1.0773191989054437e-5 +waist_deep_Adv 8.668966832532898e-6 +waist_high_A 1.0773191989054437e-5 +waist_high_Adv 8.668966832532898e-6 +waistband_N 3.729715012475897e-6 +waistcoat_N 3.729715012475897e-6 +waistline_N 3.729715012475897e-6 +wait_N 1.8648575062379485e-5 +wait_V 2.0410940263981495e-3 +wait_V2 1.1269056779947518e-4 +wait_VV 1.8258696905631366e-3 +wait_about_V 2.2678822515534993e-5 +wait_around_V 2.2678822515534993e-5 +wait_behind_V 2.2678822515534993e-5 +wait_in_V 2.2678822515534993e-5 +wait_on_V2 1.609865254278217e-5 +wait_out_V2 1.609865254278217e-5 +wait_up_V 2.2678822515534993e-5 +wait_up_for_V2 1.609865254278217e-5 +wait_upon_V2 1.609865254278217e-5 +waiter_N 1.118914503742769e-5 +waiting_list_N 3.729715012475897e-6 +waiting_room_N 3.729715012475897e-6 +waitress_N 7.459430024951794e-6 +waive_V2 3.219730508556434e-4 +waiver_N 4.848629516218666e-5 +waiver_V 2.2678822515534993e-5 +wake_N 2.1259375571112613e-4 +wake_V 2.2678822515534993e-5 +wake_V2 1.609865254278217e-5 +wake_up_V 9.071529006213997e-5 +wake_up_V2 1.609865254278217e-5 +wakefield_PN 1.865462821325971e-5 +wakeful_A 1.0773191989054437e-5 +wakefulness_N 3.729715012475897e-6 +waken_V 2.2678822515534993e-5 +waken_V2 1.609865254278217e-5 +waker_N 3.729715012475897e-6 +waking_N 3.729715012475897e-6 +wale_N 3.729715012475897e-6 +wales_PN 1.865462821325971e-5 +walk_N 1.4918860049903587e-5 +walk_V 9.071529006213998e-4 +walk_V2 1.7708517797060386e-4 +walk_away_from_V2 1.609865254278217e-5 +walk_away_with_V2 1.609865254278217e-5 +walk_back_from_V2 1.609865254278217e-5 +walk_by_V 2.2678822515534993e-5 +walk_in_V 2.2678822515534993e-5 +walk_in_on_V2 1.609865254278217e-5 +walk_into_V2 1.609865254278217e-5 +walk_off_V2 1.609865254278217e-5 +walk_off_with_V2 1.609865254278217e-5 +walk_on_V 2.2678822515534993e-5 +walk_out_V 2.2678822515534993e-5 +walk_out_on_V2 1.609865254278217e-5 +walk_through_V3 1.5873015873015873e-3 +walk_up_V 2.2678822515534993e-5 +walkabout_N 3.729715012475897e-6 +walkaway_N 3.729715012475897e-6 +walker_N 3.729715012475897e-6 +walkie_talkie_N 3.729715012475897e-6 +walking_N 1.118914503742769e-5 +walkout_N 2.6108005087331277e-5 +walkover_N 3.729715012475897e-6 +wall_N 1.9021546563627073e-4 +wall_V2 3.219730508556434e-5 +wall_eyed_A 1.0773191989054437e-5 +wall_off_V 2.2678822515534993e-5 +wall_painting_N 3.729715012475897e-6 +wall_street_PN 1.865462821325971e-5 +wallaby_N 3.729715012475897e-6 +wallace_PN 1.865462821325971e-5 +wallah_N 3.729715012475897e-6 +wallasey_PN 1.865462821325971e-5 +wallboard_N 3.729715012475897e-6 +wallet_N 2.237829007485538e-5 +walleye_N 3.729715012475897e-6 +walleyed_A 1.0773191989054437e-5 +wallflower_N 3.729715012475897e-6 +wallingford_PN 1.865462821325971e-5 +wallop_N 3.729715012475897e-6 +wallop_V2 1.609865254278217e-5 +walloper_N 3.729715012475897e-6 +walloping_A 1.0773191989054437e-5 +wallow_N 3.729715012475897e-6 +wallow_V 6.803646754660499e-5 +wallpaper_N 1.4918860049903587e-5 +wallpaperer_N 3.729715012475897e-6 +wallsend_PN 1.865462821325971e-5 +wally_N 3.729715012475897e-6 +wally_PN 1.865462821325971e-5 +walnut_N 3.729715012475897e-6 +walrus_N 3.729715012475897e-6 +walsall_PN 1.865462821325971e-5 +walsham_PN 1.865462821325971e-5 +walter_PN 1.865462821325971e-5 +waltham_forest_PN 1.865462821325971e-5 +walton_PN 1.865462821325971e-5 +waltz_N 3.729715012475897e-6 +waltz_V 2.2678822515534993e-5 +waltz_V2 1.609865254278217e-5 +waltz_through_V2 1.609865254278217e-5 +waltzer_N 3.729715012475897e-6 +wampum_N 3.729715012475897e-6 +wan_A 1.0773191989054437e-5 +wand_N 3.729715012475897e-6 +wander_V 1.3607293509320997e-4 +wander_V2 1.609865254278217e-5 +wander_off_V 2.2678822515534993e-5 +wanderer_N 3.729715012475897e-6 +wandering_N 3.729715012475897e-6 +wanderlust_N 3.729715012475897e-6 +wandflower_N 3.729715012475897e-6 +wandsworth_PN 1.865462821325971e-5 +wane_N 3.729715012475897e-6 +wane_V 2.4946704767088494e-4 +wangle_N 3.729715012475897e-6 +wangle_V2 1.609865254278217e-5 +waning_N 3.729715012475897e-6 +wank_N 3.729715012475897e-6 +wank_V 2.2678822515534993e-5 +wanness_N 3.729715012475897e-6 +want_N 7.459430024951794e-6 +want_V 1.1112623032612148e-3 +want_V2 2.1572194407328106e-3 +want_V2V 2.337540906965872e-2 +want_VS 1.906082134811991e-3 +want_VV 3.507591773976552e-2 +want_ad_N 3.729715012475897e-6 +want_in_V 2.2678822515534993e-5 +want_out_V 2.2678822515534993e-5 +wantage_PN 1.865462821325971e-5 +wanter_N 3.729715012475897e-6 +wanton_A 1.0773191989054437e-5 +wanton_N 3.729715012475897e-6 +wanton_V 2.2678822515534993e-5 +wantonness_N 3.729715012475897e-6 +wapiti_N 3.729715012475897e-6 +war_N 4.0653893635987274e-4 +war_V 6.803646754660499e-5 +war_baby_N 3.729715012475897e-6 +war_bride_N 3.729715012475897e-6 +war_cloud_N 3.729715012475897e-6 +war_cry_N 3.729715012475897e-6 +war_dance_N 3.729715012475897e-6 +war_god_N 3.729715012475897e-6 +war_torn_A 1.0773191989054437e-5 +war_widow_N 3.729715012475897e-6 +waratah_N 3.729715012475897e-6 +warble_N 3.729715012475897e-6 +warble_V 2.2678822515534993e-5 +warble_V2 1.609865254278217e-5 +warbler_N 3.729715012475897e-6 +ward_N 7.459430024951794e-6 +ward_V2 8.049326271391085e-5 +ward_off_V 2.2678822515534993e-5 +warden_N 1.118914503742769e-5 +wardenship_N 3.729715012475897e-6 +warder_N 3.729715012475897e-6 +wardership_N 3.729715012475897e-6 +wardress_N 3.729715012475897e-6 +wardrobe_N 7.459430024951794e-6 +wardroom_N 3.729715012475897e-6 +ware_N 7.459430024951794e-6 +ware_PN 1.865462821325971e-5 +ware_V2 1.609865254278217e-5 +warehouse_N 6.340515521209024e-5 +warehouser_N 3.729715012475897e-6 +warehousing_N 7.459430024951794e-6 +warfare_N 1.4918860049903587e-5 +warfarin_N 3.729715012475897e-6 +warhead_N 3.729715012475897e-6 +warhorse_N 3.729715012475897e-6 +wariness_N 3.729715012475897e-6 +warley_PN 1.865462821325971e-5 +warlike_A 1.0773191989054437e-5 +warlock_N 3.729715012475897e-6 +warlord_N 3.729715012475897e-6 +warm_A 1.8314426381392542e-4 +warm_V 5.216129178573049e-4 +warm_V2 1.609865254278217e-5 +warm_blooded_A 1.0773191989054437e-5 +warm_hearted_A 1.0773191989054437e-5 +warm_up_V 2.2678822515534993e-5 +warmer_N 3.729715012475897e-6 +warmhearted_A 1.0773191989054437e-5 +warmheartedness_N 3.729715012475897e-6 +warming_pan_N 3.729715012475897e-6 +warminster_PN 1.865462821325971e-5 +warmonger_N 3.729715012475897e-6 +warmongering_N 3.729715012475897e-6 +warmth_N 3.729715012475897e-6 +warn_V 7.710799655281898e-4 +warn_V2 1.2878922034225736e-4 +warn_V2V 9.350163627863488e-4 +warn_VS 2.9457632992548953e-3 +warner_N 3.729715012475897e-6 +warning_N 1.4545888548655997e-4 +warp_N 3.729715012475897e-6 +warp_V 2.2678822515534993e-5 +warp_V2 3.219730508556434e-5 +warpaint_N 3.729715012475897e-6 +warpath_N 3.729715012475897e-6 +warplane_N 3.729715012475897e-6 +warrant_N 3.2448520608540304e-4 +warrant_V2 1.2878922034225736e-4 +warrant_VS 1.1552012938254491e-4 +warrantee_N 3.729715012475897e-6 +warrantor_N 3.729715012475897e-6 +warranty_N 4.475658014971076e-5 +warren_N 1.118914503742769e-5 +warrener_N 3.729715012475897e-6 +warrigal_N 3.729715012475897e-6 +warrington_PN 1.865462821325971e-5 +warrior_N 1.4918860049903587e-5 +warsaw_PN 3.730925642651942e-5 +warship_N 3.729715012475897e-6 +warsop_PN 1.865462821325971e-5 +wart_N 7.459430024951794e-6 +warthog_N 3.729715012475897e-6 +wartime_N 3.729715012475897e-6 +warwick_PN 1.865462821325971e-5 +warwickshire_PN 1.865462821325971e-5 +wary_A 2.3701022375919762e-4 +wasabi_N 3.729715012475897e-6 +wash_N 1.118914503742769e-5 +wash_V 6.803646754660499e-5 +wash_V2 1.1269056779947518e-4 +wash_away_V2 1.609865254278217e-5 +wash_down_V2 1.609865254278217e-5 +wash_drawing_N 3.729715012475897e-6 +wash_hand_basin_N 3.729715012475897e-6 +wash_hand_stand_N 3.729715012475897e-6 +wash_house_N 3.729715012475897e-6 +wash_leather_N 3.729715012475897e-6 +wash_out_V2 1.609865254278217e-5 +wash_over_V2 1.609865254278217e-5 +wash_up_V 2.2678822515534993e-5 +wash_up_V2 1.609865254278217e-5 +washable_A 2.1546383978108874e-5 +washbasin_N 3.729715012475897e-6 +washboard_N 3.729715012475897e-6 +washbowl_N 3.729715012475897e-6 +washcloth_N 3.729715012475897e-6 +washday_N 3.729715012475897e-6 +washer_N 3.729715012475897e-6 +washerman_N 3.729715012475897e-6 +washerwoman_N 3.729715012475897e-6 +washhouse_N 3.729715012475897e-6 +washing_N 7.459430024951794e-6 +washing_day_N 3.729715012475897e-6 +washing_machine_N 3.729715012475897e-6 +washing_up_N 3.729715012475897e-6 +washington_PN 3.22725068089393e-3 +washington_dc_PN 1.865462821325971e-5 +washout_N 3.729715012475897e-6 +washroom_N 3.729715012475897e-6 +washstand_N 3.729715012475897e-6 +washtub_N 3.729715012475897e-6 +washup_N 3.729715012475897e-6 +washwoman_N 3.729715012475897e-6 +washy_A 1.0773191989054437e-5 +wasp_N 3.729715012475897e-6 +wasp_waisted_A 1.0773191989054437e-5 +waspish_A 1.0773191989054437e-5 +wassail_N 3.729715012475897e-6 +wassailer_N 3.729715012475897e-6 +wastage_N 3.729715012475897e-6 +waste_A 1.0773191989054437e-5 +waste_N 1.268103104241805e-4 +waste_V 9.071529006213997e-5 +waste_V2 1.9318383051338602e-4 +waste_away_V 2.2678822515534993e-5 +waste_paper_basket_N 3.729715012475897e-6 +waste_pipe_N 3.729715012475897e-6 +wastebasket_N 3.729715012475897e-6 +wastebin_N 3.729715012475897e-6 +wasteful_A 4.309276795621775e-5 +wasteland_N 7.459430024951794e-6 +waster_N 3.729715012475897e-6 +wastrel_N 7.459430024951794e-6 +watch_N 9.697259032437332e-5 +watch_V 9.978681906835398e-4 +watch_V2 7.244393644251976e-4 +watch_V2V 5.142589995324918e-3 +watch_VS 5.776006469127245e-4 +watch_chain_N 3.729715012475897e-6 +watch_glass_N 3.729715012475897e-6 +watch_guard_N 3.729715012475897e-6 +watch_key_N 3.729715012475897e-6 +watch_out_V 2.2678822515534993e-5 +watch_out_for_V2 1.609865254278217e-5 +watch_over_V2 1.609865254278217e-5 +watchband_N 3.729715012475897e-6 +watchdog_N 2.237829007485538e-5 +watcherFem_N 3.729715012475897e-6 +watcherMasc_N 4.848629516218666e-5 +watchful_A 2.1546383978108874e-5 +watchfulness_N 3.729715012475897e-6 +watchmaker_N 3.729715012475897e-6 +watchman_N 7.459430024951794e-6 +watchtower_N 3.729715012475897e-6 +watchword_N 7.459430024951794e-6 +water_N 4.2891722643472813e-4 +water_V 9.071529006213997e-5 +water_V2 4.8295957628346505e-5 +water_biscuit_N 3.729715012475897e-6 +water_blister_N 3.729715012475897e-6 +water_bottle_N 3.729715012475897e-6 +water_buffalo_N 3.729715012475897e-6 +water_butt_N 3.729715012475897e-6 +water_cart_N 3.729715012475897e-6 +water_closet_N 3.729715012475897e-6 +water_down_V2 1.609865254278217e-5 +water_finder_N 3.729715012475897e-6 +water_glass_N 3.729715012475897e-6 +water_hole_N 3.729715012475897e-6 +water_ice_N 3.729715012475897e-6 +water_jacket_N 3.729715012475897e-6 +water_level_N 3.729715012475897e-6 +water_lily_N 3.729715012475897e-6 +water_line_N 3.729715012475897e-6 +water_main_N 3.729715012475897e-6 +water_nymph_N 3.729715012475897e-6 +water_polo_N 3.729715012475897e-6 +water_power_N 3.729715012475897e-6 +water_rat_N 3.729715012475897e-6 +water_rate_N 3.729715012475897e-6 +water_skiing_N 3.729715012475897e-6 +water_skin_N 3.729715012475897e-6 +water_softener_N 3.729715012475897e-6 +water_spaniel_N 3.729715012475897e-6 +water_supply_N 3.729715012475897e-6 +water_tower_N 3.729715012475897e-6 +water_vole_N 3.729715012475897e-6 +water_waggon_N 3.729715012475897e-6 +water_wagon_N 3.729715012475897e-6 +water_wheel_N 3.729715012475897e-6 +water_worn_A 1.0773191989054437e-5 +waterbird_N 3.729715012475897e-6 +waterborne_A 1.0773191989054437e-5 +waterbuck_N 3.729715012475897e-6 +watercannon_N 3.729715012475897e-6 +waterchute_N 3.729715012475897e-6 +watercolor_N 3.729715012475897e-6 +watercolorist_N 3.729715012475897e-6 +watercolour_N 3.729715012475897e-6 +watercolourist_N 3.729715012475897e-6 +watercourse_N 3.729715012475897e-6 +watercraft_N 3.729715012475897e-6 +watercress_N 3.729715012475897e-6 +waterdog_N 3.729715012475897e-6 +waterer_N 3.729715012475897e-6 +waterfall_N 1.118914503742769e-5 +waterford_PN 1.865462821325971e-5 +waterfowl_N 3.729715012475897e-6 +waterfront_N 1.118914503742769e-5 +waterhen_N 3.729715012475897e-6 +waterhyacinth_N 3.729715012475897e-6 +wateriness_N 3.729715012475897e-6 +watering_N 3.729715012475897e-6 +watering_can_N 3.729715012475897e-6 +watering_cart_N 3.729715012475897e-6 +waterleaf_N 3.729715012475897e-6 +waterless_A 1.0773191989054437e-5 +waterline_N 3.729715012475897e-6 +waterlogged_A 1.0773191989054437e-5 +waterloo_N 3.729715012475897e-6 +waterloo_PN 1.865462821325971e-5 +waterman_N 3.729715012475897e-6 +watermark_N 3.729715012475897e-6 +watermeal_N 3.729715012475897e-6 +watermelon_N 3.729715012475897e-6 +watermill_N 3.729715012475897e-6 +waterpower_N 3.729715012475897e-6 +waterproof_A 1.0773191989054437e-5 +waterproof_N 3.729715012475897e-6 +waterproof_V2 1.609865254278217e-5 +waterproofing_N 3.729715012475897e-6 +watershed_N 7.459430024951794e-6 +waterside_N 3.729715012475897e-6 +waterskin_N 3.729715012475897e-6 +waterspout_N 3.729715012475897e-6 +watertable_N 3.729715012475897e-6 +watertight_A 1.0773191989054437e-5 +waterway_N 3.729715012475897e-6 +waterweed_N 3.729715012475897e-6 +waterwheel_N 3.729715012475897e-6 +waterworks_N 2.9837720099807175e-5 +waterworn_A 1.0773191989054437e-5 +watery_A 2.1546383978108874e-5 +watford_PN 1.865462821325971e-5 +watt_N 2.6108005087331277e-5 +wattage_N 3.729715012475897e-6 +wattle_N 3.729715012475897e-6 +wattmeter_N 3.729715012475897e-6 +wave_N 2.237829007485538e-4 +wave_V 1.5875175760874494e-4 +wave_V2 4.8295957628346505e-5 +wave_aside_V2 1.609865254278217e-5 +wave_away_V 2.2678822515534993e-5 +wave_down_V2 1.609865254278217e-5 +wave_off_V2 1.609865254278217e-5 +wave_on_V2 1.609865254278217e-5 +waveguide_N 3.729715012475897e-6 +wavelength_N 7.459430024951794e-6 +waver_N 3.729715012475897e-6 +waver_V 1.1339411257767497e-4 +waverer_N 3.729715012475897e-6 +waviness_N 3.729715012475897e-6 +wavy_A 1.0773191989054437e-5 +waw_N 3.729715012475897e-6 +wax_N 3.729715012475897e-6 +wax_V 4.5357645031069986e-5 +wax_V2 1.609865254278217e-5 +wax_chandler_N 3.729715012475897e-6 +wax_paper_N 3.729715012475897e-6 +waxen_A 1.0773191989054437e-5 +waxflower_N 3.729715012475897e-6 +waxiness_N 3.729715012475897e-6 +waxing_N 3.729715012475897e-6 +waxmallow_N 3.729715012475897e-6 +waxwing_N 3.729715012475897e-6 +waxwork_N 3.729715012475897e-6 +waxy_A 1.0773191989054437e-5 +waxycap_N 3.729715012475897e-6 +way_Adv 5.2013800995197394e-5 +way_N 2.129667272123737e-3 +way_out_A 1.0773191989054437e-5 +waybill_N 3.729715012475897e-6 +wayfarer_N 3.729715012475897e-6 +wayfaring_A 1.0773191989054437e-5 +wayfaring_N 3.729715012475897e-6 +waylay_V2 1.609865254278217e-5 +wayne_PN 1.865462821325971e-5 +ways_N 3.729715012475897e-6 +wayside_N 7.459430024951794e-6 +wayward_A 3.231957596716331e-5 +wc_N 3.729715012475897e-6 +we_Pron 7.640391384376917e-2 +weak_A 1.454380918522349e-3 +weak_kneed_A 2.1546383978108874e-5 +weaken_V 1.0659046582301448e-3 +weaken_V2 3.8636766102677204e-4 +weakener_N 3.729715012475897e-6 +weakening_N 3.729715012475897e-6 +weakfish_N 3.729715012475897e-6 +weakling_N 7.459430024951794e-6 +weakly_A 1.0773191989054437e-5 +weakness_N 2.9091777097311995e-4 +weal_N 3.729715012475897e-6 +weald_N 3.729715012475897e-6 +wealth_N 7.832401526199384e-5 +wealthy_A 2.1546383978108874e-4 +wean_V2 3.219730508556434e-5 +wean_off_V2 1.609865254278217e-5 +weaning_N 3.729715012475897e-6 +weapon_N 1.7529660558636716e-4 +weaponless_A 1.0773191989054437e-5 +weaponry_N 3.729715012475897e-6 +wear_N 1.4918860049903587e-5 +wear_PN 1.865462821325971e-5 +wear_V 4.308976277951649e-4 +wear_V2 6.117487966257224e-4 +wear_away_V2 1.609865254278217e-5 +wear_down_V2 1.609865254278217e-5 +wear_off_V 2.2678822515534993e-5 +wear_out_V 2.2678822515534993e-5 +wear_out_V2 1.609865254278217e-5 +wearable_A 1.0773191989054437e-5 +wearer_N 3.729715012475897e-6 +weariness_N 7.459430024951794e-6 +wearisome_A 1.0773191989054437e-5 +weary_A 6.463915193432663e-5 +weary_V 2.2678822515534993e-5 +weary_V2 1.609865254278217e-5 +weasel_N 3.729715012475897e-6 +weather_N 9.697259032437332e-5 +weather_V 6.803646754660499e-5 +weather_V2 8.049326271391085e-5 +weather_beaten_A 1.0773191989054437e-5 +weather_bound_A 1.0773191989054437e-5 +weather_bureau_N 3.729715012475897e-6 +weather_chart_N 3.729715012475897e-6 +weather_glass_N 3.729715012475897e-6 +weather_map_N 3.729715012475897e-6 +weather_ship_N 3.729715012475897e-6 +weather_station_N 3.729715012475897e-6 +weather_vane_N 3.729715012475897e-6 +weatherboarding_N 3.729715012475897e-6 +weathercock_N 3.729715012475897e-6 +weatherglass_N 3.729715012475897e-6 +weatherliness_N 3.729715012475897e-6 +weatherly_A 1.0773191989054437e-5 +weatherman_N 7.459430024951794e-6 +weatherproof_A 1.0773191989054437e-5 +weathervane_N 3.729715012475897e-6 +weave_N 3.729715012475897e-6 +weave_V 4.5357645031069986e-5 +weave_V2 4.8295957628346505e-5 +weaver_N 3.729715012475897e-6 +weaverbird_N 3.729715012475897e-6 +weaving_N 3.729715012475897e-6 +web_N 1.118914503742769e-5 +web_footed_A 1.0773191989054437e-5 +web_toed_A 1.0773191989054437e-5 +webbed_A 1.0773191989054437e-5 +webbing_N 3.729715012475897e-6 +webcam_N 3.729715012475897e-6 +weber_N 3.729715012475897e-6 +webfoot_N 3.729715012475897e-6 +webmaster_N 3.729715012475897e-6 +webworm_N 3.729715012475897e-6 +wed_A 1.0773191989054437e-5 +wed_PN 1.865462821325971e-5 +wed_V 2.2678822515534993e-5 +wed_V2 6.439461017112868e-5 +wedding_N 3.356743511228307e-5 +wedding_cake_N 3.729715012475897e-6 +wedding_ring_N 3.729715012475897e-6 +wedge_N 2.237829007485538e-5 +wedge_V 6.803646754660499e-5 +wedge_V2 4.8295957628346505e-5 +wedgie_N 3.729715012475897e-6 +wedlock_N 3.729715012475897e-6 +wednesday_N 3.729715012475897e-6 +wednesday_PN 1.8468081931127113e-3 +wee_A 1.0773191989054437e-5 +wee_N 3.729715012475897e-6 +wee_V 2.2678822515534993e-5 +wee_wee_N 3.729715012475897e-6 +weed_N 1.118914503742769e-5 +weed_V 2.2678822515534993e-5 +weed_V2 1.609865254278217e-5 +weed_out_V2 1.609865254278217e-5 +weeder_N 3.729715012475897e-6 +weedkiller_N 3.729715012475897e-6 +weedless_A 1.0773191989054437e-5 +weeds_N 3.729715012475897e-6 +weedy_A 1.0773191989054437e-5 +week_N 4.188469959010432e-3 +weekday_N 1.4918860049903587e-5 +weekend_N 3.319446361103548e-4 +weekend_V 2.2678822515534993e-5 +weekender_N 3.729715012475897e-6 +weeklong_A 1.0773191989054437e-5 +weekly_A 5.494327914417762e-4 +weekly_Adv 4.33448341626645e-5 +weekly_N 3.729715012475897e-5 +weeknight_N 3.729715012475897e-6 +weeny_A 1.0773191989054437e-5 +weep_V 6.803646754660499e-5 +weep_V2 1.609865254278217e-5 +weeper_N 3.729715012475897e-6 +weepiness_N 3.729715012475897e-6 +weepy_A 1.0773191989054437e-5 +weevil_N 3.729715012475897e-6 +weft_N 3.729715012475897e-6 +weigela_N 3.729715012475897e-6 +weigh_V 3.628611602485599e-4 +weigh_V2 3.3807170339842556e-4 +weigh_down_on_V2 1.609865254278217e-5 +weigh_in_V 2.2678822515534993e-5 +weigh_in_on_V2 1.609865254278217e-5 +weigh_on_V2 1.609865254278217e-5 +weigh_out_V2 1.609865254278217e-5 +weigh_up_V2 1.609865254278217e-5 +weighbridge_N 3.729715012475897e-6 +weigher_N 3.729715012475897e-6 +weighing_machine_N 3.729715012475897e-6 +weight_N 1.2308059541170458e-4 +weight_V2 1.609865254278217e-4 +weightiness_N 3.729715012475897e-6 +weightless_A 1.0773191989054437e-5 +weightlessness_N 3.729715012475897e-6 +weightlift_N 3.729715012475897e-6 +weightlifter_N 3.729715012475897e-6 +weightlifting_N 3.729715012475897e-6 +weighty_A 2.1546383978108874e-5 +weir_N 3.729715012475897e-6 +weird_A 8.61855359124355e-5 +weird_out_V2 1.609865254278217e-5 +weirdie_N 3.729715012475897e-6 +weirdness_N 3.729715012475897e-6 +weka_N 3.729715012475897e-6 +welcher_N 3.729715012475897e-6 +welcome_A 9.695872790148993e-5 +welcome_N 3.729715012475897e-6 +welcome_V2 4.5076227119790073e-4 +welcoming_A 1.0773191989054437e-5 +weld_N 3.729715012475897e-6 +weld_V 6.803646754660499e-5 +weld_V2 1.609865254278217e-5 +welder_N 3.729715012475897e-6 +welding_N 3.729715012475897e-6 +weldment_N 3.729715012475897e-6 +welfare_N 4.1026865137234865e-5 +welfarist_A 1.0773191989054437e-5 +welkin_N 3.729715012475897e-6 +well_A 3.231957596716331e-5 +well_Interj 9.923664122137404e-2 +well_N 1.1562116538675279e-4 +well_V 2.2678822515534993e-5 +well_adjusted_A 1.0773191989054437e-5 +well_advised_A 1.0773191989054437e-5 +well_appointed_A 1.0773191989054437e-5 +well_balanced_A 4.309276795621775e-5 +well_behaved_A 1.0773191989054437e-5 +well_being_N 3.729715012475897e-6 +well_born_A 2.1546383978108874e-5 +well_bred_A 1.0773191989054437e-5 +well_conducted_A 1.0773191989054437e-5 +well_connected_A 3.231957596716331e-5 +well_disposed_A 1.0773191989054437e-5 +well_doer_N 3.729715012475897e-6 +well_doing_N 3.729715012475897e-6 +well_favoured_A 1.0773191989054437e-5 +well_found_A 1.0773191989054437e-5 +well_founded_A 1.0773191989054437e-5 +well_groomed_A 1.0773191989054437e-5 +well_grounded_A 1.0773191989054437e-5 +well_heeled_A 5.3865959945272184e-5 +well_informed_A 1.0773191989054437e-5 +well_intentioned_A 5.3865959945272184e-5 +well_knit_A 1.0773191989054437e-5 +well_known_A 2.908761837044698e-4 +well_lined_A 1.0773191989054437e-5 +well_marked_A 1.0773191989054437e-5 +well_meaning_A 2.1546383978108874e-5 +well_meant_A 1.0773191989054437e-5 +well_nigh_Adv 8.668966832532898e-6 +well_read_A 1.0773191989054437e-5 +well_rounded_A 1.0773191989054437e-5 +well_set_A 1.0773191989054437e-5 +well_shaven_A 1.0773191989054437e-5 +well_spoken_A 1.0773191989054437e-5 +well_timed_A 1.0773191989054437e-5 +well_to_do_A 3.231957596716331e-5 +well_tried_A 1.0773191989054437e-5 +well_turned_A 1.0773191989054437e-5 +well_up_V 2.2678822515534993e-5 +well_water_N 3.729715012475897e-6 +well_wisher_N 3.729715012475897e-6 +well_worn_A 1.0773191989054437e-5 +wellbeing_N 3.729715012475897e-6 +wellborn_A 1.0773191989054437e-5 +wellerism_N 3.729715012475897e-6 +wellhead_N 3.729715012475897e-6 +wellingborough_PN 1.865462821325971e-5 +wellington_N 3.729715012475897e-6 +wellington_PN 1.865462821325971e-5 +wells_PN 1.865462821325971e-5 +welsh_A 1.0773191989054437e-5 +welsh_N 3.729715012475897e-6 +welsh_V 2.2678822515534993e-5 +welsher_N 3.729715012475897e-6 +welshman_N 3.729715012475897e-6 +welshpool_PN 1.865462821325971e-5 +welt_N 3.729715012475897e-6 +welter_A 1.0773191989054437e-5 +welter_N 7.459430024951794e-6 +welter_V 2.2678822515534993e-5 +welterweight_N 3.729715012475897e-6 +welwitschia_N 3.729715012475897e-6 +welwyn_PN 1.865462821325971e-5 +welwyn_garden_city_PN 1.865462821325971e-5 +wen_N 3.729715012475897e-6 +wench_N 3.729715012475897e-6 +wench_V 2.2678822515534993e-5 +wencher_N 3.729715012475897e-6 +wend_V2 1.609865254278217e-5 +wendover_PN 1.865462821325971e-5 +wendy_PN 1.865462821325971e-5 +werewolf_N 3.729715012475897e-6 +wesleyan_A 1.0773191989054437e-5 +wesleyan_N 3.729715012475897e-6 +west_A 8.187625911681372e-4 +west_Adv 1.7337933665065797e-5 +west_N 6.340515521209024e-5 +west_bromwich_PN 1.865462821325971e-5 +west_country_A 1.0773191989054437e-5 +west_end_A 1.0773191989054437e-5 +westbound_A 1.0773191989054437e-5 +westbury_PN 1.865462821325971e-5 +westerly_A 1.0773191989054437e-5 +westerly_Adv 8.668966832532898e-6 +western_A 1.012680046971117e-3 +western_N 3.729715012475897e-6 +westerner_N 3.729715012475897e-6 +westernization_N 3.729715012475897e-6 +westernize_V2 1.609865254278217e-5 +westernmost_A 1.0773191989054437e-5 +westhoughton_PN 1.865462821325971e-5 +westmeath_PN 1.865462821325971e-5 +westminster_PN 1.865462821325971e-5 +westmoreland_PN 1.865462821325971e-5 +weston_super_mare_PN 1.865462821325971e-5 +westside_A 1.0773191989054437e-5 +westward_A 1.0773191989054437e-5 +westward_Adv 2.6006900497598697e-5 +westwards_Adv 8.668966832532898e-6 +wet_A 3.231957596716331e-5 +wet_N 3.729715012475897e-6 +wet_V2 1.609865254278217e-5 +wet_nurse_N 3.729715012475897e-6 +wether_N 3.729715012475897e-6 +wetherby_PN 1.865462821325971e-5 +wetland_N 3.729715012475897e-6 +wetness_N 3.729715012475897e-6 +wetter_N 3.729715012475897e-6 +wetting_N 3.729715012475897e-6 +wexford_PN 1.865462821325971e-5 +weymouth_PN 1.865462821325971e-5 +whack_N 7.459430024951794e-6 +whack_V2 1.1269056779947518e-4 +whack_off_V 2.2678822515534993e-5 +whacker_N 7.459430024951794e-6 +whacking_Adv 8.668966832532898e-6 +whacking_N 3.729715012475897e-6 +whale_N 1.118914503742769e-5 +whale_V 2.2678822515534993e-5 +whaleboat_N 3.729715012475897e-6 +whalebone_N 3.729715012475897e-6 +whaler_N 3.729715012475897e-6 +whaley_bridge_PN 1.865462821325971e-5 +whaling_gun_N 3.729715012475897e-6 +whammy_N 3.729715012475897e-6 +whang_Adv 8.668966832532898e-6 +whang_N 3.729715012475897e-6 +whang_V2 1.609865254278217e-5 +wharf_N 3.729715012475897e-6 +wharfage_N 3.729715012475897e-6 +whatPl_IP 2.564102564102564e-2 +whatSg_IP 0.717948717948718 +what_for_N 3.729715012475897e-6 +whate'er_A 1.0773191989054437e-5 +whatever_A 1.0773191989054437e-5 +whatnot_N 3.729715012475897e-6 +whatsoe'er_A 1.0773191989054437e-5 +whatsoever_A 1.0773191989054437e-5 +wheat_N 1.118914503742769e-4 +wheatear_N 3.729715012475897e-6 +wheaten_A 1.0773191989054437e-5 +wheatfield_N 3.729715012475897e-6 +wheatflake_N 3.729715012475897e-6 +wheatgrass_N 3.729715012475897e-6 +wheatley_hill_PN 1.865462821325971e-5 +wheatworm_N 3.729715012475897e-6 +wheedle_V2 1.609865254278217e-5 +wheedler_N 3.729715012475897e-6 +wheel_N 3.729715012475897e-5 +wheel_V 6.803646754660499e-5 +wheel_V2 1.609865254278217e-5 +wheel_around_V 2.2678822515534993e-5 +wheel_out_V2 1.609865254278217e-5 +wheel_round_V 2.2678822515534993e-5 +wheel_up_V 2.2678822515534993e-5 +wheelbarrow_N 3.729715012475897e-6 +wheelbase_N 7.459430024951794e-6 +wheelchair_N 1.118914503742769e-5 +wheeler_N 3.729715012475897e-6 +wheelhouse_N 3.729715012475897e-6 +wheeling_N 3.729715012475897e-6 +wheelless_A 1.0773191989054437e-5 +wheelwork_N 3.729715012475897e-6 +wheelwright_N 3.729715012475897e-6 +wheeze_N 3.729715012475897e-6 +wheeze_V 4.5357645031069986e-5 +wheeze_V2 1.609865254278217e-5 +wheeziness_N 3.729715012475897e-6 +wheezy_A 1.0773191989054437e-5 +whelk_N 3.729715012475897e-6 +whelp_N 3.729715012475897e-6 +whelp_V 2.2678822515534993e-5 +when_IAdv 0.18181818181818182 +when_Subj 5.381526104417671e-2 +whence_Adv 8.668966832532898e-6 +whencesoever_A 1.0773191989054437e-5 +whenever_Adv 8.668966832532898e-6 +where_IAdv 0.12727272727272726 +where_Subj 2.1686746987951807e-2 +where_as_Prep 9.978546125829467e-6 +whereabouts_Adv 8.668966832532898e-6 +whereabouts_N 3.729715012475897e-6 +whereas_Prep 5.98712767549768e-5 +whereat_Adv 8.668966832532898e-6 +whereby_Adv 8.668966832532898e-6 +wherefore_Adv 8.668966832532898e-6 +wherein_IAdv 1.818181818181818e-2 +wherein_Subj 8.032128514056225e-4 +whereof_Adv 8.668966832532898e-6 +whereon_Adv 8.668966832532898e-6 +wheresoever_Adv 8.668966832532898e-6 +whereto_Adv 8.668966832532898e-6 +whereunto_Adv 8.668966832532898e-6 +whereupon_Adv 8.668966832532898e-6 +wherever_Adv 8.668966832532898e-6 +wherewith_Adv 8.668966832532898e-6 +wherewithal_Adv 8.668966832532898e-6 +wherewithal_N 3.729715012475897e-6 +wherry_N 3.729715012475897e-6 +whet_V2 1.609865254278217e-5 +whether_Prep 3.1831562141396e-3 +whetstone_N 3.729715012475897e-6 +whey_N 3.729715012475897e-6 +which_IQuant 1.0 +whichever_A 1.0773191989054437e-5 +whichsoever_A 1.0773191989054437e-5 +whiff_N 3.729715012475897e-6 +whiffer_N 3.729715012475897e-6 +whiffletree_N 3.729715012475897e-6 +whig_N 3.729715012475897e-6 +while_N 1.6410746054893946e-4 +while_Subj 3.293172690763052e-2 +while_V2 3.219730508556434e-5 +while_away_V2 1.609865254278217e-5 +whilst_Subj 8.032128514056225e-4 +whim_N 1.118914503742769e-5 +whimper_N 1.4918860049903587e-5 +whimper_V 2.2678822515534993e-5 +whimper_V2 1.609865254278217e-5 +whimsey_N 3.729715012475897e-6 +whimsical_A 5.3865959945272184e-5 +whimsicality_N 3.729715012475897e-6 +whimsy_N 7.459430024951794e-6 +whin_N 3.729715012475897e-6 +whinchat_N 3.729715012475897e-6 +whine_N 3.729715012475897e-6 +whine_V 2.2678822515534993e-5 +whine_V2 1.609865254278217e-5 +whiner_N 7.459430024951794e-6 +whinny_N 3.729715012475897e-6 +whinny_V 2.2678822515534993e-5 +whinstone_N 3.729715012475897e-6 +whip_N 1.4918860049903587e-5 +whip_V 1.1339411257767497e-4 +whip_V2 4.8295957628346505e-5 +whip_into_V2 1.609865254278217e-5 +whip_out_V2 1.609865254278217e-5 +whip_out_of_V2 1.609865254278217e-5 +whip_round_N 3.729715012475897e-6 +whip_through_V2 1.609865254278217e-5 +whip_up_V2 1.609865254278217e-5 +whipcord_N 3.729715012475897e-6 +whiplash_N 3.729715012475897e-6 +whipper_in_N 3.729715012475897e-6 +whippersnapper_N 3.729715012475897e-6 +whippet_N 3.729715012475897e-6 +whipping_N 7.459430024951794e-6 +whipping_boy_N 3.729715012475897e-6 +whipping_post_N 3.729715012475897e-6 +whipping_top_N 3.729715012475897e-6 +whippoorwill_N 3.729715012475897e-6 +whippy_A 1.0773191989054437e-5 +whipsaw_V2 9.659191525669301e-5 +whipstitch_N 3.729715012475897e-6 +whiptail_N 3.729715012475897e-6 +whir_N 3.729715012475897e-6 +whir_V 2.2678822515534993e-5 +whirl_N 7.459430024951794e-6 +whirl_V 4.5357645031069986e-5 +whirl_V2 1.609865254278217e-5 +whirler_N 3.729715012475897e-6 +whirligig_N 3.729715012475897e-6 +whirlpool_N 3.729715012475897e-6 +whirlwind_N 1.118914503742769e-5 +whirr_N 3.729715012475897e-6 +whirr_V 4.5357645031069986e-5 +whisk_N 3.729715012475897e-6 +whisk_V 2.2678822515534993e-5 +whisk_V2 3.219730508556434e-5 +whisk_away_V2 1.609865254278217e-5 +whisker_N 3.729715012475897e-6 +whiskered_A 1.0773191989054437e-5 +whiskey_N 2.6108005087331277e-5 +whisky_N 3.729715012475897e-6 +whisper_N 1.4918860049903587e-5 +whisper_V 6.803646754660499e-5 +whisper_V2 3.219730508556434e-5 +whisperer_N 3.729715012475897e-6 +whispering_N 7.459430024951794e-6 +whispering_gallery_N 3.729715012475897e-6 +whist_N 3.729715012475897e-6 +whist_drive_N 3.729715012475897e-6 +whistle_N 7.459430024951794e-6 +whistle_V 4.5357645031069986e-5 +whistle_V2 4.8295957628346505e-5 +whistle_stop_N 3.729715012475897e-6 +whistler_N 3.729715012475897e-6 +whistling_N 3.729715012475897e-6 +whit_N 3.729715012475897e-6 +whitburn_PN 1.865462821325971e-5 +whitby_PN 1.865462821325971e-5 +whitchurch_PN 1.865462821325971e-5 +white_A 9.480408950367905e-4 +white_N 1.6410746054893946e-4 +white_collar_A 1.2927830386865325e-4 +white_hot_A 1.0773191989054437e-5 +white_lipped_A 1.0773191989054437e-5 +white_livered_A 1.0773191989054437e-5 +white_out_V2 1.609865254278217e-5 +whitebait_N 3.729715012475897e-6 +whitecap_N 3.729715012475897e-6 +whitecup_N 3.729715012475897e-6 +whiteface_N 3.729715012475897e-6 +whitefish_N 3.729715012475897e-6 +whitefly_N 3.729715012475897e-6 +whitehall_PN 1.865462821325971e-5 +whitehaven_PN 1.865462821325971e-5 +whitehead_N 3.729715012475897e-6 +whitelash_N 3.729715012475897e-6 +whiten_V 2.2678822515534993e-5 +whiten_V2 1.609865254278217e-5 +whiteness_N 3.729715012475897e-6 +whitening_N 3.729715012475897e-6 +whiteout_N 3.729715012475897e-6 +whitethorn_N 3.729715012475897e-6 +whitewash_N 1.8648575062379485e-5 +whitewash_V2 1.609865254278217e-5 +whitey_N 3.729715012475897e-6 +whither_Adv 8.668966832532898e-6 +whithersoever_Adv 8.668966832532898e-6 +whiting_N 3.729715012475897e-6 +whitish_A 2.1546383978108874e-5 +whitley_bay_PN 1.865462821325971e-5 +whitlow_N 3.729715012475897e-6 +whitlowwort_N 3.729715012475897e-6 +whitstable_PN 1.865462821325971e-5 +whitsun_N 3.729715012475897e-6 +whitsun_PN 1.865462821325971e-5 +whitsuntide_N 3.729715012475897e-6 +whitsuntide_PN 1.865462821325971e-5 +whittle_V 4.5357645031069986e-5 +whittle_V2 3.219730508556434e-5 +whittle_le_woods_PN 1.865462821325971e-5 +whittler_N 3.729715012475897e-6 +whittlesey_PN 1.865462821325971e-5 +whitworth_PN 1.865462821325971e-5 +whiz_N 7.459430024951794e-6 +whiz_V 2.2678822515534993e-5 +whizbang_N 3.729715012475897e-6 +whizz_kid_N 3.729715012475897e-6 +whoPl_IP 6.41025641025641e-3 +whoSg_IP 8.333333333333333e-2 +who_N 3.729715012475897e-6 +whodunit_N 3.729715012475897e-6 +whole_A 9.049481270805727e-4 +whole_N 9.697259032437332e-5 +whole_wheat_N 3.729715012475897e-6 +wholehearted_A 1.0773191989054437e-5 +wholeheartedness_N 3.729715012475897e-6 +wholemeal_N 3.729715012475897e-6 +wholeness_N 3.729715012475897e-6 +wholesale_A 4.417008715512319e-4 +wholesale_Adv 8.668966832532898e-6 +wholesale_N 7.459430024951794e-6 +wholesale_V2 3.219730508556434e-5 +wholesaler_N 2.6108005087331277e-5 +wholesome_A 3.231957596716331e-5 +wholesomeness_N 3.729715012475897e-6 +wholly_Adv 7.802070149279609e-5 +whoop_N 3.729715012475897e-6 +whoop_V 1.8143058012427994e-4 +whoop_V2 1.609865254278217e-5 +whoopee_Interj 1.5267175572519083e-2 +whooper_N 3.729715012475897e-6 +whooping_cough_N 3.729715012475897e-6 +whop_V2 1.609865254278217e-5 +whopper_N 3.729715012475897e-6 +whopping_A 6.463915193432663e-5 +whopping_Adv 8.668966832532898e-6 +whore_N 3.729715012475897e-6 +whorehouse_N 3.729715012475897e-6 +whoremaster_N 3.729715012475897e-6 +whoremonger_N 3.729715012475897e-6 +whorl_N 3.729715012475897e-6 +whorled_A 1.0773191989054437e-5 +why_IAdv 0.2545454545454545 +why_N 3.729715012475897e-6 +whydah_N 3.729715012475897e-6 +wi_N 3.729715012475897e-6 +wick_N 3.729715012475897e-6 +wick_PN 1.865462821325971e-5 +wicked_A 4.309276795621775e-5 +wickedness_N 3.729715012475897e-6 +wicker_N 1.4918860049903587e-5 +wickerwork_N 3.729715012475897e-6 +wicket_N 3.729715012475897e-6 +wicket_door_N 3.729715012475897e-6 +wicket_gate_N 3.729715012475897e-6 +wicket_keeper_N 3.729715012475897e-6 +wickford_PN 1.865462821325971e-5 +wickiup_N 3.729715012475897e-6 +wicklow_PN 1.865462821325971e-5 +wide_A 1.9391745580297987e-3 +wide_Adv 2.6006900497598697e-5 +wide_awake_A 1.0773191989054437e-5 +widen_V 7.937587880437248e-4 +widen_V2 2.092824830561682e-4 +wideness_N 3.729715012475897e-6 +widening_N 3.729715012475897e-6 +widespread_A 4.632472555293408e-4 +widgeon_N 3.729715012475897e-6 +widnes_PN 1.865462821325971e-5 +widow_N 4.475658014971076e-5 +widowed_A 2.1546383978108874e-5 +widower_N 3.729715012475897e-6 +widowhood_N 3.729715012475897e-6 +width_N 3.729715012475897e-6 +wield_V2 1.4488787288503951e-4 +wieldy_A 1.0773191989054437e-5 +wiesbaden_PN 1.865462821325971e-5 +wiesenboden_N 3.729715012475897e-6 +wife_N 2.275126157610297e-4 +wifelike_A 1.0773191989054437e-5 +wifely_A 1.0773191989054437e-5 +wig_N 1.8648575062379485e-5 +wig_out_V 2.2678822515534993e-5 +wigan_PN 1.865462821325971e-5 +wigged_A 1.0773191989054437e-5 +wigging_N 3.729715012475897e-6 +wiggle_N 1.118914503742769e-5 +wiggle_V 6.803646754660499e-5 +wiggle_V2 3.219730508556434e-5 +wiggle_out_V 2.2678822515534993e-5 +wiggle_out_of_V2 1.609865254278217e-5 +wiggler_N 3.729715012475897e-6 +wiggliness_N 3.729715012475897e-6 +wiggly_A 1.0773191989054437e-5 +wight_N 3.729715012475897e-6 +wight_PN 1.865462821325971e-5 +wigless_A 1.0773191989054437e-5 +wigmaker_N 3.729715012475897e-6 +wigwam_N 3.729715012475897e-6 +wild_A 4.2015448757312305e-4 +wild_Adv 1.7337933665065797e-5 +wild_N 3.729715012475897e-6 +wildcat_A 1.0773191989054437e-5 +wildcat_N 3.729715012475897e-6 +wildcatter_N 3.729715012475897e-6 +wildebeest_N 3.729715012475897e-6 +wilderness_N 1.8648575062379485e-5 +wildfire_N 3.729715012475897e-6 +wildflower_N 3.729715012475897e-6 +wildfowl_N 3.729715012475897e-6 +wilding_N 3.729715012475897e-6 +wildlife_N 3.729715012475897e-6 +wildness_N 3.729715012475897e-6 +wile_N 3.729715012475897e-6 +wilf_PN 1.865462821325971e-5 +wilfrid_PN 1.865462821325971e-5 +wilful_A 1.0773191989054437e-5 +wilfulness_N 3.729715012475897e-6 +wilhelmshaven_PN 1.865462821325971e-5 +will_N 1.3799945546160818e-4 +will_PN 1.865462821325971e-5 +will_V 1.8143058012427994e-4 +will_V2 1.609865254278217e-5 +will_o'_the_wisp_N 3.729715012475897e-6 +willet_N 3.729715012475897e-6 +willful_A 8.61855359124355e-5 +william_PN 1.865462821325971e-5 +willie_PN 1.865462821325971e-5 +willies_N 3.729715012475897e-6 +willing_A 9.588140870258449e-4 +willingness_N 5.2216010174662554e-5 +willington_PN 1.865462821325971e-5 +willow_N 7.459430024951794e-6 +willow_pattern_N 3.729715012475897e-6 +willow_tree_N 3.729715012475897e-6 +willowherb_N 3.729715012475897e-6 +willowware_N 3.729715012475897e-6 +willowy_A 1.0773191989054437e-5 +willpower_N 3.729715012475897e-6 +willy_PN 1.865462821325971e-5 +willy_nilly_Adv 1.7337933665065797e-5 +wilmslow_PN 1.865462821325971e-5 +wilt_N 3.729715012475897e-6 +wilt_V 2.2678822515534993e-5 +wilt_V2 1.609865254278217e-5 +wilton_N 3.729715012475897e-6 +wiltshire_PN 1.865462821325971e-5 +wily_A 2.1546383978108874e-5 +wimbourne_PN 1.865462821325971e-5 +wimbourne_minster_PN 1.865462821325971e-5 +wimp_N 3.729715012475897e-6 +wimp_out_V 2.2678822515534993e-5 +wimpish_A 1.0773191989054437e-5 +wimple_N 3.729715012475897e-6 +win_N 3.356743511228307e-5 +win_V 1.7689481562117295e-3 +win_V2 2.640179017016276e-3 +win_back_V 2.2678822515534993e-5 +win_down_V 2.2678822515534993e-5 +win_over_V 2.2678822515534993e-5 +win_up_V 2.2678822515534993e-5 +wince_N 3.729715012475897e-6 +wince_V2 1.609865254278217e-5 +wincey_N 3.729715012475897e-6 +winceyette_N 3.729715012475897e-6 +winch_N 3.729715012475897e-6 +winch_V2 1.609865254278217e-5 +winchester_PN 1.865462821325971e-5 +wind_N 5.967544019961435e-5 +wind_V 4.082188052796299e-4 +wind_V2 1.609865254278217e-5 +wind_down_V 2.2678822515534993e-5 +wind_down_V2 1.609865254278217e-5 +wind_gauge_N 3.729715012475897e-6 +wind_on_V 2.2678822515534993e-5 +wind_tunnel_N 3.729715012475897e-6 +wind_up_V 2.2678822515534993e-5 +wind_up_V2 1.609865254278217e-5 +windage_N 3.729715012475897e-6 +windbag_N 3.729715012475897e-6 +windblown_A 1.0773191989054437e-5 +windbreak_N 3.729715012475897e-6 +windbreaker_N 3.729715012475897e-6 +windburn_N 3.729715012475897e-6 +windburned_A 1.0773191989054437e-5 +windcheater_N 3.729715012475897e-6 +winder_N 3.729715012475897e-6 +windermere_PN 1.865462821325971e-5 +windfall_N 1.8648575062379485e-5 +windflower_N 3.729715012475897e-6 +windiness_N 3.729715012475897e-6 +winding_sheet_N 3.729715012475897e-6 +windjammer_N 3.729715012475897e-6 +windlass_N 3.729715012475897e-6 +windless_A 1.0773191989054437e-5 +windmill_N 3.729715012475897e-6 +window_N 1.6410746054893946e-4 +window_box_N 3.729715012475897e-6 +window_dressing_N 3.729715012475897e-6 +windowpane_N 3.729715012475897e-6 +windowsill_N 3.729715012475897e-6 +windpipe_N 3.729715012475897e-6 +windscreen_N 3.729715012475897e-6 +windscreen_wiper_N 3.729715012475897e-6 +windshield_N 2.237829007485538e-5 +windsock_N 3.729715012475897e-6 +windsor_PN 1.865462821325971e-5 +windstorm_N 3.729715012475897e-6 +windswept_A 1.0773191989054437e-5 +windward_A 1.0773191989054437e-5 +windward_Adv 8.668966832532898e-6 +windward_N 3.729715012475897e-6 +windy_A 1.0773191989054437e-5 +wine_N 1.7529660558636716e-4 +wine_V2 1.609865254278217e-5 +wineberry_N 3.729715012475897e-6 +wineglass_N 3.729715012475897e-6 +winemaking_N 3.729715012475897e-6 +winepress_N 3.729715012475897e-6 +winery_N 3.729715012475897e-6 +wineskin_N 3.729715012475897e-6 +wing_N 7.086458523704203e-5 +wing_V 2.2678822515534993e-5 +wing_V2 1.609865254278217e-5 +wing_commander_N 3.729715012475897e-6 +wing_nut_N 3.729715012475897e-6 +wing_screw_N 3.729715012475897e-6 +wingate_PN 1.865462821325971e-5 +wingback_N 3.729715012475897e-6 +winger_N 7.459430024951794e-6 +wingless_A 1.0773191989054437e-5 +winglike_A 1.0773191989054437e-5 +wingman_N 3.729715012475897e-6 +wings_N 3.729715012475897e-6 +wingspan_N 3.729715012475897e-6 +wingspread_N 3.729715012475897e-6 +wingstem_N 3.729715012475897e-6 +winifred_PN 1.865462821325971e-5 +wink_N 3.729715012475897e-6 +wink_V 4.5357645031069986e-5 +wink_V2 1.609865254278217e-5 +winker_N 3.729715012475897e-6 +winkle_N 3.729715012475897e-6 +winkle_V2 1.609865254278217e-5 +winkle_out_V2 1.609865254278217e-5 +winless_A 1.0773191989054437e-5 +winner_N 1.305400254366564e-4 +winnie_PN 1.865462821325971e-5 +winning_N 3.729715012475897e-6 +winning_post_N 3.729715012475897e-6 +winnings_N 3.729715012475897e-6 +winnipeg_PN 1.865462821325971e-5 +winnow_N 3.729715012475897e-6 +winnow_V2 1.609865254278217e-5 +winsford_PN 1.865462821325971e-5 +winsome_A 1.0773191989054437e-5 +winsomeness_N 3.729715012475897e-6 +winter_N 1.193508803992287e-4 +winter_V 2.2678822515534993e-5 +wintergreen_N 3.729715012475897e-6 +wintery_A 1.0773191989054437e-5 +wintry_A 1.0773191989054437e-5 +winy_A 1.0773191989054437e-5 +wipe_N 3.729715012475897e-6 +wipe_V 4.308976277951649e-4 +wipe_V2 1.609865254278217e-5 +wipe_out_V 2.2678822515534993e-5 +wipe_out_V2 1.609865254278217e-5 +wipeout_N 3.729715012475897e-6 +wiper_N 3.729715012475897e-6 +wire_N 1.305400254366564e-4 +wire_V 2.2678822515534993e-5 +wire_V2 4.8295957628346505e-5 +wire_haired_A 1.0773191989054437e-5 +wire_up_V2 1.609865254278217e-5 +wirehair_N 3.729715012475897e-6 +wireless_A 1.0773191989054437e-5 +wireless_N 3.729715012475897e-6 +wireman_N 3.729715012475897e-6 +wirepuller_N 3.729715012475897e-6 +wirer_N 3.729715012475897e-6 +wiretap_N 3.729715012475897e-6 +wirework_N 3.729715012475897e-6 +wireworm_N 3.729715012475897e-6 +wiriness_N 3.729715012475897e-6 +wiring_N 1.118914503742769e-5 +wiry_A 3.231957596716331e-5 +wisbech_PN 1.865462821325971e-5 +wisconsin_PN 1.865462821325971e-5 +wisdom_N 6.713487022456614e-5 +wisdom_tooth_N 3.729715012475897e-6 +wise_A 1.2927830386865325e-4 +wise_N 3.729715012475897e-6 +wise_up_V 2.2678822515534993e-5 +wiseacre_N 3.729715012475897e-6 +wisecrack_N 1.118914503742769e-5 +wisecrack_V 2.2678822515534993e-5 +wisent_N 3.729715012475897e-6 +wish_N 4.848629516218666e-5 +wish_V 6.803646754660499e-5 +wish_V2 6.439461017112868e-5 +wish_V2V 1.8700327255726976e-3 +wish_VS 8.664009703690869e-4 +wish_VV 1.0570824524312897e-3 +wishbone_N 3.729715012475897e-6 +wishful_A 2.1546383978108874e-5 +wishfulness_N 3.729715012475897e-6 +wishing_cap_N 3.729715012475897e-6 +wishy_washy_A 1.0773191989054437e-5 +wisp_N 3.729715012475897e-6 +wisplike_A 1.0773191989054437e-5 +wispy_A 1.0773191989054437e-5 +wisteria_N 3.729715012475897e-6 +wistful_A 2.1546383978108874e-5 +wistfulness_N 3.729715012475897e-6 +wit_N 1.8648575062379485e-5 +witch_N 2.6108005087331277e-5 +witch_doctor_N 3.729715012475897e-6 +witch_elm_N 3.729715012475897e-6 +witch_hazel_N 3.729715012475897e-6 +witch_hunt_N 3.729715012475897e-6 +witchcraft_N 7.459430024951794e-6 +witchery_N 3.729715012475897e-6 +witchgrass_N 3.729715012475897e-6 +witching_A 1.0773191989054437e-5 +witching_N 3.729715012475897e-6 +witchlike_A 1.0773191989054437e-5 +with_Prep 5.245721698348551e-2 +with_a_view_to_Prep 9.978546125829467e-6 +with_regard_to_Prep 1.9957092251658934e-5 +with_respect_to_Prep 6.984982288080626e-5 +withal_Adv 8.668966832532898e-6 +witham_PN 1.865462821325971e-5 +withdraw_V 7.937587880437248e-4 +withdraw_V2 4.8295957628346505e-4 +withdrawal_N 1.6783717556141534e-4 +withdrawer_N 3.729715012475897e-6 +withe_N 3.729715012475897e-6 +wither_V 6.803646754660499e-5 +wither_V2 1.609865254278217e-5 +witheringly_Adv 8.668966832532898e-6 +withernsea_PN 1.865462821325971e-5 +withers_N 3.729715012475897e-6 +withhold_V2 2.7367709322729687e-4 +withholder_N 3.729715012475897e-6 +withholding_N 3.729715012475897e-6 +within_Prep 2.4247867085765602e-3 +without_Prep 3.522426782417802e-3 +withstand_V2 2.575784406845147e-4 +withstander_N 3.729715012475897e-6 +withy_N 3.729715012475897e-6 +witless_A 1.0773191989054437e-5 +witness_N 1.4918860049903588e-4 +witness_V 4.5357645031069986e-5 +witness_V2 1.4488787288503951e-4 +witness_box_N 3.729715012475897e-6 +witness_stand_N 3.729715012475897e-6 +witney_PN 1.865462821325971e-5 +wits_N 3.729715012475897e-6 +witticism_N 3.729715012475897e-6 +witting_A 1.0773191989054437e-5 +wittol_N 3.729715012475897e-6 +witty_A 3.231957596716331e-5 +wive_V 2.2678822515534993e-5 +wive_V2 1.609865254278217e-5 +wizard_A 1.0773191989054437e-5 +wizard_N 7.459430024951794e-6 +wizardry_N 3.729715012475897e-6 +wizened_A 1.0773191989054437e-5 +wk_N 3.729715012475897e-6 +woad_N 3.729715012475897e-6 +wobble_N 3.729715012475897e-6 +wobble_V 2.2678822515534993e-5 +wobble_V2 1.609865254278217e-5 +wobbler_N 3.729715012475897e-6 +wobbly_A 3.231957596716331e-5 +woburn_PN 1.865462821325971e-5 +woe_N 4.1026865137234865e-5 +woebegone_A 2.1546383978108874e-5 +woeful_A 1.0773191989054437e-5 +wog_N 3.729715012475897e-6 +wok_N 3.729715012475897e-6 +wokingham_PN 1.865462821325971e-5 +wold_N 3.729715012475897e-6 +wolf's_bane_N 3.729715012475897e-6 +wolf_N 7.459430024951794e-6 +wolf_V2 1.609865254278217e-5 +wolf_cub_N 3.729715012475897e-6 +wolffish_N 3.729715012475897e-6 +wolfhound_N 3.729715012475897e-6 +wolfish_A 1.0773191989054437e-5 +wolflike_A 1.0773191989054437e-5 +wolfram_N 3.729715012475897e-6 +wolframite_N 3.729715012475897e-6 +wolfsbane_N 3.729715012475897e-6 +wollastonite_N 3.729715012475897e-6 +wolverhampton_PN 1.865462821325971e-5 +wolverine_N 3.729715012475897e-6 +wolverton_PN 1.865462821325971e-5 +woman_N 7.683212925700347e-4 +womanhood_N 3.729715012475897e-6 +womanish_A 1.0773191989054437e-5 +womanize_V 6.803646754660499e-5 +womanizer_N 3.729715012475897e-6 +womankind_N 3.729715012475897e-6 +womanlike_A 1.0773191989054437e-5 +womanliness_N 3.729715012475897e-6 +womanly_A 1.0773191989054437e-5 +womb_N 3.729715012475897e-6 +wombat_N 3.729715012475897e-6 +wombourne_PN 1.865462821325971e-5 +wonder_N 5.2216010174662554e-5 +wonder_V 1.3607293509320997e-4 +wonder_V2 1.609865254278217e-5 +wonder_VQ 0.7333333333333333 +wonder_struck_A 1.0773191989054437e-5 +wonderer_N 3.729715012475897e-6 +wonderful_A 1.4005149585770768e-4 +wonderingly_Adv 8.668966832532898e-6 +wonderland_N 7.459430024951794e-6 +wonderment_N 7.459430024951794e-6 +wonderworking_A 1.0773191989054437e-5 +wondrous_A 2.1546383978108874e-5 +wondrous_Adv 8.668966832532898e-6 +wonky_A 1.0773191989054437e-5 +wont_A 1.0773191989054437e-5 +wont_N 3.729715012475897e-6 +wonted_A 1.0773191989054437e-5 +woo_V2 2.8977574577007903e-4 +wood_N 9.697259032437332e-5 +wood_block_N 3.729715012475897e-6 +wood_pulp_N 3.729715012475897e-6 +woodbine_N 3.729715012475897e-6 +woodborer_N 3.729715012475897e-6 +woodbridge_PN 1.865462821325971e-5 +woodcarver_N 3.729715012475897e-6 +woodcarving_N 3.729715012475897e-6 +woodcock_N 3.729715012475897e-6 +woodcraft_N 3.729715012475897e-6 +woodcut_N 3.729715012475897e-6 +woodcutter_N 3.729715012475897e-6 +wooded_A 1.0773191989054437e-5 +wooden_A 7.541234392338106e-5 +woodenheaded_A 1.0773191989054437e-5 +woodenness_N 3.729715012475897e-6 +woodenware_N 3.729715012475897e-6 +woodhewer_N 3.729715012475897e-6 +woodiness_N 3.729715012475897e-6 +woodland_N 3.729715012475897e-6 +woodlouse_N 3.729715012475897e-6 +woodman_N 3.729715012475897e-6 +woodpecker_N 3.729715012475897e-6 +woodpile_N 3.729715012475897e-6 +woodruff_N 3.729715012475897e-6 +woodscrew_N 3.729715012475897e-6 +woodshed_N 3.729715012475897e-6 +woodsia_N 3.729715012475897e-6 +woodsman_N 3.729715012475897e-6 +woodsy_A 1.0773191989054437e-5 +woodwaxen_N 3.729715012475897e-6 +woodwind_N 7.459430024951794e-6 +woodwork_N 3.729715012475897e-6 +woodworker_N 3.729715012475897e-6 +woodworm_N 3.729715012475897e-6 +woody_A 1.0773191989054437e-5 +wooer_N 3.729715012475897e-6 +woof_N 3.729715012475897e-6 +woofer_N 3.729715012475897e-6 +wool_N 1.8648575062379485e-5 +woolen_A 1.0773191989054437e-5 +woolgathering_A 1.0773191989054437e-5 +woolgathering_N 3.729715012475897e-6 +woollen_A 1.0773191989054437e-5 +woolly_A 2.1546383978108874e-5 +wooly_A 1.0773191989054437e-5 +wooly_N 3.729715012475897e-6 +wootton_bassett_PN 1.865462821325971e-5 +wop_N 3.729715012475897e-6 +worcester_PN 1.865462821325971e-5 +word_N 4.69944091571963e-4 +word_V2 6.439461017112868e-5 +word_division_N 3.729715012475897e-6 +word_painter_N 3.729715012475897e-6 +word_perfect_A 1.0773191989054437e-5 +word_picture_N 3.729715012475897e-6 +word_splitting_N 3.729715012475897e-6 +word_up_V2 1.609865254278217e-5 +wordbook_N 3.729715012475897e-6 +wordiness_N 3.729715012475897e-6 +wording_N 1.4918860049903587e-5 +wordless_A 1.0773191989054437e-5 +wordmonger_N 3.729715012475897e-6 +wordnet_N 3.729715012475897e-6 +words_N 3.729715012475897e-6 +wordsmith_N 3.729715012475897e-6 +wordy_A 1.0773191989054437e-5 +work_N 1.3091299693790397e-3 +work_V 8.708667845965438e-3 +work_V2 4.8295957628346505e-4 +work_VV 1.4414760714972132e-3 +work_in_N 3.729715012475897e-6 +work_off_V2 1.609865254278217e-5 +work_on_V2 6.117487966257224e-4 +work_out_N 3.729715012475897e-6 +work_out_V 2.2678822515534993e-5 +work_out_V2 3.219730508556434e-5 +work_over_V2 1.609865254278217e-5 +work_study_N 3.729715012475897e-6 +work_through_V2 1.609865254278217e-5 +work_together_V 2.2678822515534993e-5 +work_up_V 2.2678822515534993e-5 +workable_A 3.231957596716331e-5 +workaday_A 1.0773191989054437e-5 +workaholic_N 3.729715012475897e-6 +workaholism_N 3.729715012475897e-6 +workbag_N 3.729715012475897e-6 +workbasket_N 3.729715012475897e-6 +workbench_N 3.729715012475897e-6 +workboard_N 3.729715012475897e-6 +workbook_N 7.459430024951794e-6 +workbox_N 3.729715012475897e-6 +workday_N 1.118914503742769e-5 +worker_N 1.1039956436928655e-3 +workhorse_N 3.729715012475897e-6 +workhouse_N 3.729715012475897e-6 +working_N 8.578344528694562e-5 +working_class_A 3.231957596716331e-5 +working_out_N 3.729715012475897e-6 +workington_PN 1.865462821325971e-5 +workload_N 3.729715012475897e-6 +workman_N 1.118914503742769e-5 +workmanlike_A 1.0773191989054437e-5 +workmanship_N 3.729715012475897e-6 +workmate_N 3.729715012475897e-6 +workpiece_N 3.729715012475897e-6 +workplace_N 3.729715012475897e-6 +workroom_N 7.459430024951794e-6 +works_N 3.729715012475897e-6 +worksheet_N 3.729715012475897e-6 +workshop_N 3.729715012475897e-6 +workshy_A 1.0773191989054437e-5 +worksop_PN 1.865462821325971e-5 +workspace_N 3.729715012475897e-6 +workstation_N 7.459430024951794e-6 +worktable_N 3.729715012475897e-6 +workwear_N 3.729715012475897e-6 +workweek_N 7.459430024951794e-6 +world_N 1.3128596843915157e-3 +world_weary_A 2.1546383978108874e-5 +worldliness_N 3.729715012475897e-6 +worldling_N 3.729715012475897e-6 +worldly_A 1.0773191989054437e-5 +worldwide_A 1.0773191989054437e-5 +worm_N 6.340515521209024e-5 +worm_V2 1.609865254278217e-5 +worm_eaten_A 1.0773191989054437e-5 +worm_gear_N 3.729715012475897e-6 +wormcast_N 3.729715012475897e-6 +wormhole_N 3.729715012475897e-6 +wormwood_N 3.729715012475897e-6 +wormy_A 1.0773191989054437e-5 +worriedly_Adv 8.668966832532898e-6 +worrier_N 3.729715012475897e-6 +worrisome_A 7.541234392338106e-5 +worry_N 1.0070230533684921e-4 +worry_V 1.3380505284165645e-3 +worry_V2 5.312555339118116e-4 +worry_VS 1.9638421995032632e-3 +worrying_N 3.729715012475897e-6 +worryingly_Adv 8.668966832532898e-6 +worse_A 1.0773191989054437e-5 +worse_Adv 8.668966832532898e-6 +worse_N 3.729715012475897e-6 +worsen_V 3.628611602485599e-4 +worsen_V2 9.659191525669301e-5 +worsening_N 3.729715012475897e-6 +worship_N 1.4918860049903587e-5 +worship_V 2.2678822515534993e-5 +worship_V2 1.609865254278217e-5 +worshiper_N 3.729715012475897e-6 +worshipful_A 1.0773191989054437e-5 +worshipper_N 3.729715012475897e-6 +worst_A 1.0773191989054437e-5 +worst_Adv 8.668966832532898e-6 +worst_N 3.729715012475897e-6 +worst_V2 1.609865254278217e-5 +worsted_N 3.729715012475897e-6 +wort_N 3.729715012475897e-6 +worth_A 7.218038632666473e-4 +worth_N 1.4918860049903588e-4 +worth_Prep 1.0976400738412413e-4 +worthiness_N 1.4918860049903587e-5 +worthing_PN 1.865462821325971e-5 +worthless_A 7.541234392338106e-5 +worthlessness_N 3.729715012475897e-6 +worthwhile_A 7.541234392338106e-5 +worthwhileness_N 3.729715012475897e-6 +worthy_A 1.0773191989054437e-4 +worthy_N 3.729715012475897e-6 +would_be_A 1.508246878467621e-4 +wound_N 2.9837720099807175e-5 +wound_V2 8.049326271391085e-5 +wound_up_V 2.2678822515534993e-5 +wounded_N 3.729715012475897e-6 +woven_A 1.0773191989054437e-5 +wow_Interj 2.2900763358778626e-2 +wow_N 3.729715012475897e-6 +wpb_N 3.729715012475897e-6 +wpm_N 3.729715012475897e-6 +wrac_N 3.729715012475897e-6 +wrack_N 3.729715012475897e-6 +wrack_V2 6.439461017112868e-5 +wraf_N 3.729715012475897e-6 +wraith_N 3.729715012475897e-6 +wrangle_N 3.729715012475897e-6 +wrangle_V 1.3607293509320997e-4 +wrangler_N 3.729715012475897e-6 +wrap_N 1.118914503742769e-5 +wrap_V 2.0410940263981494e-4 +wrap_V2 8.049326271391085e-5 +wrap_around_V2 1.609865254278217e-5 +wrap_up_V 2.2678822515534993e-5 +wrap_up_V2 1.609865254278217e-5 +wraparound_N 3.729715012475897e-6 +wrapper_N 1.118914503742769e-5 +wrapping_N 7.459430024951794e-6 +wrasse_N 3.729715012475897e-6 +wrath_N 1.8648575062379485e-5 +wrathful_A 2.1546383978108874e-5 +wreak_V2 9.659191525669301e-5 +wreath_N 3.729715012475897e-6 +wreathe_V 2.2678822515534993e-5 +wreathe_V2 1.609865254278217e-5 +wreck_N 1.4918860049903587e-5 +wreck_V2 1.4488787288503951e-4 +wreckage_N 1.8648575062379485e-5 +wrecker_N 3.729715012475897e-6 +wren_N 3.729715012475897e-6 +wrench_N 7.459430024951794e-6 +wrench_V2 4.8295957628346505e-5 +wrest_V2 6.439461017112868e-5 +wrester_N 3.729715012475897e-6 +wrestle_N 3.729715012475897e-6 +wrestle_V 1.5875175760874494e-4 +wrestle_V2 4.8295957628346505e-5 +wrestler_N 7.459430024951794e-6 +wrestling_N 3.729715012475897e-6 +wretch_N 3.729715012475897e-6 +wretched_A 1.0773191989054437e-5 +wretchedness_N 3.729715012475897e-6 +wrexham_PN 1.865462821325971e-5 +wrick_N 3.729715012475897e-6 +wrick_V2 1.609865254278217e-5 +wriggle_N 3.729715012475897e-6 +wriggle_V 4.5357645031069986e-5 +wriggle_V2 1.609865254278217e-5 +wriggle_out_of_V2 1.609865254278217e-5 +wriggler_N 3.729715012475897e-6 +wright_N 3.729715012475897e-6 +wring_N 3.729715012475897e-6 +wring_V2 4.8295957628346505e-5 +wringer_N 3.729715012475897e-6 +wrinkle_N 1.4918860049903587e-5 +wrinkle_V 2.2678822515534993e-5 +wrinkle_V2 1.609865254278217e-5 +wrinkly_A 1.0773191989054437e-5 +wrist_N 1.8648575062379485e-5 +wristband_N 3.729715012475897e-6 +wristlet_N 3.729715012475897e-6 +wristwatch_N 3.729715012475897e-6 +writ_N 7.459430024951794e-6 +writ_large_A 1.0773191989054437e-5 +write_V 2.1091304939447543e-3 +write_V2 1.3522868135937022e-3 +write_VS 2.0793623288858083e-3 +write_VV 2.8829521429944266e-4 +write_down_V2 1.609865254278217e-5 +write_in_V 2.2678822515534993e-5 +write_off_N 3.729715012475897e-6 +write_off_V2 3.219730508556434e-5 +write_out_V2 1.609865254278217e-5 +write_up_N 3.729715012475897e-6 +write_up_V2 1.609865254278217e-5 +writer_N 2.0886404069865022e-4 +writhe_V 6.803646754660499e-5 +writing_N 4.848629516218666e-5 +writing_desk_N 3.729715012475897e-6 +writing_ink_N 3.729715012475897e-6 +writing_paper_N 3.729715012475897e-6 +writtle_PN 1.865462821325971e-5 +wrns_N 3.729715012475897e-6 +wroclaw_PN 1.865462821325971e-5 +wrong_A 8.187625911681372e-4 +wrong_Adv 2.6006900497598697e-5 +wrong_N 7.459430024951794e-6 +wrong_V2 3.219730508556434e-5 +wrong_headed_A 1.0773191989054437e-5 +wrongdoer_N 3.729715012475897e-6 +wrongdoing_N 7.086458523704203e-5 +wrongful_A 5.3865959945272184e-5 +wrongheaded_A 1.0773191989054437e-5 +wrongness_N 3.729715012475897e-6 +wroth_A 1.0773191989054437e-5 +wroughton_PN 1.865462821325971e-5 +wry_A 1.0773191989054437e-5 +wryly_Adv 8.668966832532898e-6 +wrymouth_N 3.729715012475897e-6 +wryneck_N 3.729715012475897e-6 +wt_N 3.729715012475897e-6 +wuhan_PN 1.865462821325971e-5 +wulfenite_N 3.729715012475897e-6 +wuppertal_PN 1.865462821325971e-5 +wurtzite_N 3.729715012475897e-6 +wurzburg_PN 1.865462821325971e-5 +wusih_PN 1.865462821325971e-5 +wycombe_PN 1.865462821325971e-5 +wymondham_PN 1.865462821325971e-5 +wyoming_PN 1.4923702570607768e-4 +wythall_PN 1.865462821325971e-5 +wyvern_N 3.729715012475897e-6 +x_ray_N 7.459430024951794e-6 +x_ray_V2 1.609865254278217e-5 +xanthate_N 3.729715012475897e-6 +xanthelasma_N 3.729715012475897e-6 +xanthine_N 3.729715012475897e-6 +xanthoma_N 3.729715012475897e-6 +xanthomatosis_N 3.729715012475897e-6 +xanthomonad_N 3.729715012475897e-6 +xanthophyll_N 3.729715012475897e-6 +xanthopsia_N 3.729715012475897e-6 +xanthosis_N 3.729715012475897e-6 +xenogeneic_A 1.0773191989054437e-5 +xenolith_N 3.729715012475897e-6 +xenon_N 3.729715012475897e-6 +xenophobia_N 3.729715012475897e-6 +xenophobic_A 1.0773191989054437e-5 +xenotime_N 3.729715012475897e-6 +xenotransplant_N 3.729715012475897e-6 +xeranthemum_N 3.729715012475897e-6 +xeric_A 1.0773191989054437e-5 +xeroderma_N 3.729715012475897e-6 +xerographic_A 1.0773191989054437e-5 +xerography_N 3.729715012475897e-6 +xerophthalmia_N 3.729715012475897e-6 +xerophytic_A 1.0773191989054437e-5 +xeroradiography_N 3.729715012475897e-6 +xerostomia_N 3.729715012475897e-6 +xerox_N 3.729715012475897e-6 +xerox_V2 1.609865254278217e-5 +xi_N 3.729715012475897e-6 +xmas_N 3.729715012475897e-6 +xmas_PN 1.865462821325971e-5 +xylem_N 3.729715012475897e-6 +xylene_N 3.729715012475897e-6 +xylophone_N 3.729715012475897e-6 +xylophonist_N 3.729715012475897e-6 +xylosma_N 3.729715012475897e-6 +yacca_N 3.729715012475897e-6 +yacht_N 1.8648575062379485e-5 +yacht_V 2.2678822515534993e-5 +yacht_club_N 3.729715012475897e-6 +yachting_N 7.459430024951794e-6 +yachtsman_N 3.729715012475897e-6 +yack_on_V 2.2678822515534993e-5 +yagi_N 3.729715012475897e-6 +yahoo_N 3.729715012475897e-6 +yak_N 3.729715012475897e-6 +yak_on_V 2.2678822515534993e-5 +yak_on_about_V2 1.609865254278217e-5 +yakuza_N 3.729715012475897e-6 +yam_N 3.729715012475897e-6 +yammer_V 2.2678822515534993e-5 +yammer_on_V 2.2678822515534993e-5 +yammer_on_about_V2 1.609865254278217e-5 +yang_N 3.729715012475897e-6 +yank_N 3.729715012475897e-6 +yank_V2 1.2878922034225736e-4 +yank_out_V 2.2678822515534993e-5 +yankee_N 7.459430024951794e-6 +yanker_N 3.729715012475897e-6 +yap_N 3.729715012475897e-6 +yap_V 2.2678822515534993e-5 +yard_N 6.340515521209024e-5 +yard_measure_N 3.729715012475897e-6 +yardage_N 3.729715012475897e-6 +yardarm_N 3.729715012475897e-6 +yarder_N 3.729715012475897e-6 +yardgrass_N 3.729715012475897e-6 +yardie_N 3.729715012475897e-6 +yardman_N 3.729715012475897e-6 +yardmaster_N 3.729715012475897e-6 +yardstick_N 1.118914503742769e-5 +yarmouth_PN 1.865462821325971e-5 +yarmulke_N 3.729715012475897e-6 +yarn_N 7.459430024951794e-6 +yarn_V 2.2678822515534993e-5 +yaroslavi_PN 1.865462821325971e-5 +yarrow_N 3.729715012475897e-6 +yashmak_N 3.729715012475897e-6 +yataghan_N 3.729715012475897e-6 +yate_PN 1.865462821325971e-5 +yateley_PN 1.865462821325971e-5 +yautia_N 3.729715012475897e-6 +yaw_N 3.729715012475897e-6 +yaw_V 2.2678822515534993e-5 +yawl_N 3.729715012475897e-6 +yawn_N 3.729715012475897e-6 +yawn_V 2.2678822515534993e-5 +yawner_N 3.729715012475897e-6 +yaws_N 3.729715012475897e-6 +yea_Adv 8.668966832532898e-6 +yea_N 3.729715012475897e-6 +yeah_Interj 2.2900763358778626e-2 +year_N 1.563496533229896e-2 +yearbook_N 1.118914503742769e-5 +yearling_N 7.459430024951794e-6 +yearlong_A 3.231957596716331e-5 +yearly_A 1.0773191989054437e-4 +yearly_Adv 1.7337933665065797e-5 +yearn_V 2.2678822515534993e-5 +yearning_N 7.459430024951794e-6 +yearningly_Adv 8.668966832532898e-6 +yeast_N 3.729715012475897e-5 +yeasty_A 1.0773191989054437e-5 +yell_N 3.729715012475897e-6 +yell_V 1.1339411257767497e-4 +yell_V2 3.219730508556434e-5 +yell_out_V 2.2678822515534993e-5 +yelling_N 3.729715012475897e-6 +yellow_A 1.2927830386865325e-4 +yellow_N 1.118914503742769e-5 +yellow_V 2.2678822515534993e-5 +yellow_V2 1.609865254278217e-5 +yellow_bellied_A 1.0773191989054437e-5 +yellow_flag_N 3.729715012475897e-6 +yellowcake_N 3.729715012475897e-6 +yellowfin_N 3.729715012475897e-6 +yellowhammer_N 3.729715012475897e-6 +yellowish_A 1.0773191989054437e-5 +yellowlegs_N 3.729715012475897e-6 +yellowness_N 3.729715012475897e-6 +yellowtail_N 3.729715012475897e-6 +yellowthroat_N 3.729715012475897e-6 +yellowwood_N 3.729715012475897e-6 +yelp_V 2.2678822515534993e-5 +yemen_PN 1.865462821325971e-5 +yemeni_A 1.0773191989054437e-5 +yemeni_N 3.729715012475897e-6 +yen_N 1.476967144940455e-3 +yen_V 2.2678822515534993e-5 +yenta_N 3.729715012475897e-6 +yeoman_N 3.729715012475897e-6 +yeomanry_N 3.729715012475897e-6 +yeovil_PN 1.865462821325971e-5 +yerevan_PN 1.865462821325971e-5 +yes_Interj 0.17557251908396945 +yeshiva_N 3.729715012475897e-6 +yesterday_Adv 3.9010350746398044e-4 +yesterday_N 3.0732851702801388e-3 +yet_AdV 8.185538881309686e-3 +yet_Adv 1.534407129358323e-3 +yeti_N 3.729715012475897e-6 +yew_N 3.729715012475897e-6 +yew_tree_N 3.729715012475897e-6 +yha_N 3.729715012475897e-6 +yiddish_N 3.729715012475897e-6 +yield_N 1.0965362136679136e-3 +yield_V 1.6328752211185195e-3 +yield_V2 3.541703559412077e-3 +yield_to_V2 1.609865254278217e-5 +yield_up_V 2.2678822515534993e-5 +yin_N 3.729715012475897e-6 +yip_N 3.729715012475897e-6 +yips_N 3.729715012475897e-6 +ylem_N 3.729715012475897e-6 +ymca_N 3.729715012475897e-6 +yo_yo_N 3.729715012475897e-6 +yob_N 3.729715012475897e-6 +yobibit_N 3.729715012475897e-6 +yobo_N 3.729715012475897e-6 +yodel_N 3.729715012475897e-6 +yodel_V 2.2678822515534993e-5 +yodel_V2 1.609865254278217e-5 +yodeling_N 3.729715012475897e-6 +yodeller_N 3.729715012475897e-6 +yodh_N 3.729715012475897e-6 +yoga_N 7.459430024951794e-6 +yoghourt_N 3.729715012475897e-6 +yogi_N 3.729715012475897e-6 +yogistic_A 1.0773191989054437e-5 +yoke_N 3.729715012475897e-6 +yoke_V 2.2678822515534993e-5 +yoke_V2 1.609865254278217e-5 +yokel_N 3.729715012475897e-6 +yokohama_PN 3.730925642651942e-5 +yolk_N 3.729715012475897e-6 +yon_A 1.0773191989054437e-5 +yon_Adv 1.7337933665065797e-5 +yonder_A 1.0773191989054437e-5 +yonder_Adv 8.668966832532898e-6 +yore_N 3.729715012475897e-6 +york_PN 1.865462821325971e-5 +yorkley_PN 1.865462821325971e-5 +yorkshire_PN 1.865462821325971e-5 +yottabit_N 3.729715012475897e-6 +yottabyte_N 3.729715012475897e-6 +youPl_Pron 3.8234249362224304e-2 +youSg_Pron 6.458488067943295e-5 +young_A 1.5190200704566757e-3 +young_N 7.459430024951794e-6 +younger_A 1.0773191989054437e-5 +youngish_A 2.1546383978108874e-5 +youngness_N 3.729715012475897e-6 +youngster_N 2.6108005087331277e-5 +yourselfPl_NP 3.2764326201631665e-5 +yourselfSg_NP 2.7303605168026388e-6 +youth_N 1.0443202034932511e-4 +youthful_A 5.3865959945272184e-5 +youthfulness_N 3.729715012475897e-6 +yowl_V 2.2678822515534993e-5 +yr_N 3.729715012475897e-6 +ystradgynlais_PN 1.865462821325971e-5 +ytterbium_N 3.729715012475897e-6 +yttrium_N 3.729715012475897e-6 +yuan_N 3.729715012475897e-6 +yucca_N 3.729715012475897e-6 +yugoslav_A 1.0773191989054437e-5 +yugoslav_N 3.729715012475897e-6 +yugoslavia_PN 1.865462821325971e-5 +yugoslavian_A 1.0773191989054437e-5 +yugoslavian_N 3.729715012475897e-6 +yukon_PN 1.865462821325971e-5 +yule_N 3.729715012475897e-6 +yule_log_N 3.729715012475897e-6 +yuletide_N 3.729715012475897e-6 +yuppie_N 3.729715012475897e-6 +yurt_N 3.729715012475897e-6 +yvonne_PN 1.865462821325971e-5 +ywca_N 3.729715012475897e-6 +zabaglione_N 3.729715012475897e-6 +zagreb_PN 1.865462821325971e-5 +zaire_N 3.729715012475897e-6 +zaire_PN 3.730925642651942e-5 +zairean_A 2.1546383978108874e-5 +zairean_N 3.729715012475897e-6 +zakat_N 3.729715012475897e-6 +zambia_PN 3.730925642651942e-5 +zambian_A 1.0773191989054437e-5 +zambian_N 3.729715012475897e-6 +zamia_N 3.729715012475897e-6 +zany_A 1.0773191989054437e-5 +zany_N 3.729715012475897e-6 +zap_N 3.729715012475897e-6 +zap_V2 3.219730508556434e-5 +zaporozhye_PN 1.865462821325971e-5 +zapper_N 3.729715012475897e-6 +zaragoza_PN 1.865462821325971e-5 +zarf_N 3.729715012475897e-6 +zayin_N 3.729715012475897e-6 +zeal_N 3.729715012475897e-6 +zealand_PN 1.865462821325971e-5 +zealander_A 1.0773191989054437e-5 +zealander_N 3.729715012475897e-6 +zealot_N 7.459430024951794e-6 +zealotry_N 3.729715012475897e-6 +zealous_A 2.1546383978108874e-5 +zeaxanthin_N 3.729715012475897e-6 +zebibit_N 3.729715012475897e-6 +zebra_N 3.729715012475897e-6 +zebrawood_N 3.729715012475897e-6 +zebu_N 3.729715012475897e-6 +zee_N 3.729715012475897e-6 +zen_N 3.729715012475897e-6 +zenith_N 7.459430024951794e-6 +zenithal_A 1.0773191989054437e-5 +zeolite_N 3.729715012475897e-6 +zephyr_N 3.729715012475897e-6 +zeppelin_N 3.729715012475897e-6 +zero_A 1.0773191989054437e-5 +zero_N 4.475658014971076e-5 +zero_V 1.1339411257767497e-4 +zero_in_V 2.2678822515534993e-5 +zero_in_on_V2 1.609865254278217e-5 +zero_out_V2 1.609865254278217e-5 +zeroth_A 1.0773191989054437e-5 +zest_N 3.729715012475897e-6 +zestful_A 2.1546383978108874e-5 +zeta_N 3.729715012475897e-6 +zettabit_N 3.729715012475897e-6 +zettabyte_N 3.729715012475897e-6 +zeugma_N 3.729715012475897e-6 +zidovudine_N 3.729715012475897e-6 +ziggurat_N 3.729715012475897e-6 +zigzag_A 1.0773191989054437e-5 +zigzag_Adv 8.668966832532898e-6 +zigzag_N 7.459430024951794e-6 +zigzag_V 2.2678822515534993e-5 +zill_N 3.729715012475897e-6 +zillion_A 1.0773191989054437e-5 +zimbabwe_PN 5.596388463977913e-5 +zimbabwean_A 2.1546383978108874e-5 +zimbabwean_N 3.729715012475897e-6 +zinc_N 2.237829007485538e-5 +zinfandel_N 3.729715012475897e-6 +zing_N 3.729715012475897e-6 +zinger_N 3.729715012475897e-6 +zinkenite_N 3.729715012475897e-6 +zinnia_N 3.729715012475897e-6 +zinnwaldite_N 3.729715012475897e-6 +zion_N 3.729715012475897e-6 +zionism_N 3.729715012475897e-6 +zionist_A 1.0773191989054437e-5 +zionist_N 3.729715012475897e-6 +zip_N 7.459430024951794e-6 +zip_V2 4.8295957628346505e-5 +zip_around_V2 1.609865254278217e-5 +zip_by_V2 1.609865254278217e-5 +zip_code_N 7.459430024951794e-6 +zip_fastener_N 3.729715012475897e-6 +zip_it_V 2.2678822515534993e-5 +zip_through_V 2.2678822515534993e-5 +zip_up_V 2.2678822515534993e-5 +zipper_N 3.729715012475897e-6 +zircon_N 3.729715012475897e-6 +zirconium_N 3.729715012475897e-6 +zither_N 3.729715012475897e-6 +ziti_N 3.729715012475897e-6 +zizz_N 3.729715012475897e-6 +zloty_N 7.459430024951794e-6 +zoanthropy_N 3.729715012475897e-6 +zodiac_N 3.729715012475897e-6 +zodiacal_A 1.0773191989054437e-5 +zoe_PN 1.865462821325971e-5 +zoic_A 1.0773191989054437e-5 +zombie_N 1.4918860049903587e-5 +zonal_A 1.0773191989054437e-5 +zone_N 4.848629516218666e-5 +zone_V2 4.8295957628346505e-5 +zone_in_V 2.2678822515534993e-5 +zone_in_on_V2 1.609865254278217e-5 +zone_out_V 2.2678822515534993e-5 +zoning_N 1.4918860049903587e-5 +zonk_out_V 2.2678822515534993e-5 +zonule_N 3.729715012475897e-6 +zoo_N 1.118914503742769e-5 +zooid_N 3.729715012475897e-6 +zoolatry_N 3.729715012475897e-6 +zoological_A 1.1257985628561886e-2 +zoologist_N 3.729715012475897e-6 +zoology_N 7.459430024951794e-6 +zoom_N 3.729715012475897e-6 +zoom_V 1.1339411257767497e-4 +zoom_in_V 2.2678822515534993e-5 +zoom_in_on_V2 1.609865254278217e-5 +zoom_off_V 2.2678822515534993e-5 +zoom_out_V 2.2678822515534993e-5 +zoomastigote_N 3.729715012475897e-6 +zoomorphism_N 3.729715012475897e-6 +zoonosis_N 3.729715012475897e-6 +zoonotic_A 1.0773191989054437e-5 +zoophilia_N 3.729715012475897e-6 +zoophobia_N 3.729715012475897e-6 +zoophyte_N 3.729715012475897e-6 +zooplankton_N 3.729715012475897e-6 +zoopsia_N 3.729715012475897e-6 +zoospore_N 3.729715012475897e-6 +zoot_suit_N 3.729715012475897e-6 +zoril_N 3.729715012475897e-6 +zoysia_N 3.729715012475897e-6 +zucchini_N 3.729715012475897e-6 +zurich_PN 2.9847405141215536e-4 +zwieback_N 3.729715012475897e-6 +zydeco_N 3.729715012475897e-6 +zygodactyl_A 1.0773191989054437e-5 +zygoma_N 3.729715012475897e-6 +zygomatic_A 1.0773191989054437e-5 +zygomorphic_A 1.0773191989054437e-5 +zygospore_N 3.729715012475897e-6 +zygote_N 3.729715012475897e-6 +zygotene_N 3.729715012475897e-6 +zygotic_A 1.0773191989054437e-5 +zymase_N 3.729715012475897e-6 +zymoid_A 1.0773191989054437e-5 +zymology_N 3.729715012475897e-6 +zymosis_N 3.729715012475897e-6 +zymotic_A 1.0773191989054437e-5 + +AP_Chunk 3.030247037335075e-3 +AdA_Chunk 9.109495956621799e-4 +AdV_Chunk 4.7404486565341235e-3 +Adv_Chunk 5.328685581035249e-3 +S_Chunk 0.12420511332822734 +SSlash_Chunk 0.012420511332822734 +QS_Chunk 0.12420511332822734 +CN_Pl_Chunk 0.012420511332822734 +CN_Sg_Chunk 0.012420511332822734 +CN_Pl_Gen_Chunk 0.0012420511332822734 +CN_Sg_Gen_Chunk 0.0012420511332822734 +Conj_Chunk 1.153607720713571e-2 +IAdv_Chunk 2.5406809209644978e-5 +IP_Chunk 7.206294975826576e-5 +NP_Nom_Chunk 0.06918717612092532 +NP_Acc_Chunk 0.06918717612092532 +NP_Gen_Chunk 0.016918717612092532 +Num_Nom_Chunk 7.879021089499412e-2 +Num_Gen_Chunk 7.879021089499412e-3 +Ord_Nom_Chunk 7.825297236570654e-4 +Ord_Gen_Chunk 7.825297236570654e-5 +Predet_Chunk 2.7716519137794524e-4 +Prep_Chunk 4.62935160899013e-2 +RP_Nom_Chunk 3.649803628461909e-3 +RP_Gen_Chunk 3.649803628461909e-4 +RP_Acc_Chunk 3.649803628461909e-4 +Subj_Chunk 5.751177721092363e-4 +PConj_Chunk 5.751177721092363e-4 +VPS_Chunk 0.1 +VPI_Chunk 0.01 +V2_V 0.01 +VA_V 0.01 +VQ_V 0.01 +VS_V 0.01 +VV_V 0.01 +V3_V 0.01 +V2A_V 0.01 +V2Q_V 0.01 +V2S_V 0.01 +V2V_V 0.01 +PhrUtt 0.9 +PhrChunk 1.0e-6 +OneChunk 0.8 +PlusChunk 0.2 +refl_SgP1_Chunk 5.751177721092363e-4 +refl_SgP2_Chunk 5.751177721092363e-4 +refl_SgP3_Chunk 5.751177721092363e-4 +refl_PlP1_Chunk 5.751177721092363e-4 +refl_PlP2_Chunk 5.751177721092363e-4 +refl_PlP3_Chunk 5.751177721092363e-4 +neg_Chunk 5.751177721092363e-4 +copula_Chunk 5.751177721092363e-4 +copula_neg_Chunk 5.751177721092363e-4 +copula_inf_Chunk 5.751177721092363e-4 +past_copula_Chunk 5.751177721092363e-4 +past_copula_neg_Chunk 5.751177721092363e-4 +future_Chunk 5.751177721092363e-4 +future_neg_Chunk 5.751177721092363e-4 +cond_Chunk 5.751177721092363e-4 +cond_neg_Chunk 5.751177721092363e-4 +perfect_Chunk 5.751177721092363e-4 +perfect_neg_Chunk 5.751177721092363e-4 +past_perfect_Chunk 5.751177721092363e-4 +past_perfect_neg_Chunk 5.751177721092363e-4 +SFullstop 0.9 +SQuestmark 0.06 +SExclmark 0.01 +SUnmarked 0.03 + + +