From: Pierre Date: Fri, 1 Feb 2013 21:46:58 +0000 (+0100) Subject: ... X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=commitdiff_plain;h=ea81472844df73875a9b2ba9122d487361fd88ac ... --- diff --git a/KeyFrame.py b/KeyFrame.py index 2c40909..ffa625b 100755 --- a/KeyFrame.py +++ b/KeyFrame.py @@ -4,7 +4,7 @@ #Lisense: GNU/GPL import wx -from functions import sortedby +from functions import sortedby, DoConf # begin wxGlade: extracode # end wxGlade @@ -43,7 +43,7 @@ class AlcOptFrame(wx.Dialog): 'nr' : [wx.NewId(),wx.NewId(),u"Formes non reconnues"], } self.parent=parent - self.KeyConf=self.parent.KeyConf + self.keys=self.parent.parent.keys self.listlabel=[] self.listspin=[] self.listbutton=[] @@ -58,7 +58,7 @@ class AlcOptFrame(wx.Dialog): for line in self.listcleori: cle,ids,idb,label=line self.listlabel.append(wx.StaticText(self, -1, label)) - self.listspin.append(wx.SpinCtrl(self, ids,self.KeyConf.get('KEYS',cle), min=0, max=2)) + self.listspin.append(wx.SpinCtrl(self, ids,`self.keys[cle]`, min=0, max=2)) #if cle != 'nr' and cle!= 'num' : self.listbutton.append(wx.Button(self, idb, u"voir liste")) self.listids.append(ids) @@ -73,7 +73,7 @@ class AlcOptFrame(wx.Dialog): self.Bind(wx.EVT_BUTTON, self.OnApply, self.button_val) - self.dico=self.parent.parent.lexique#'dictionnaires/lexique.txt') + self.dico=self.parent.parent.parent.lexique#'dictionnaires/lexique.txt') self.__set_properties() self.__do_layout() @@ -133,7 +133,8 @@ class AlcOptFrame(wx.Dialog): def OnApply(self,evt): for i in range(0,len(self.listlabel)): - self.KeyConf.set('KEYS',self.listcle[i],`self.listspin[i].GetValue()`) + self.keys[self.listcle[i]] = self.listspin[i].GetValue() + DoConf().makeoptions(['KEY'], [self.keys], outfile = self.parent.parent.ira.ConfigPath['key']) self.Destroy() diff --git a/ProfList.py b/ProfList.py index 09b30a2..d7d288d 100644 --- a/ProfList.py +++ b/ProfList.py @@ -478,7 +478,7 @@ class ProfListctrlPanel(wx.ListCtrl, listmix.ListCtrlAutoWidthMixin, listmix.Col 'lem' : self.Source.parametres['lem'], 'tmpchi' : self.tmpchi} #try : - self.parent.SimiFromCluster(self.parent, self.Source.corpus, self.la, self.cl - 1, parametres = parametres, dlg = progressbar(self, 4)) + self.parent.SimiFromCluster(self.parent, self.Source.corpus, self.la, self.lfreq, self.lchi, self.cl - 1, parametres = parametres, dlg = progressbar(self, 4)) #except : # print 'not acitve' @@ -492,7 +492,7 @@ class ProfListctrlPanel(wx.ListCtrl, listmix.ListCtrlAutoWidthMixin, listmix.Col 'lem' : self.Source.parametres['lem'], 'tmpchi' : self.tmpchi} - self.parent.SimiFromCluster(self.parent, self.Source.corpus, self.la, self.cl - 1, parametres = parametres, dlg = progressbar(self, 4)) + self.parent.SimiFromCluster(self.parent, self.Source.corpus, self.la, self.lfreq, self.lchi, self.cl - 1, parametres = parametres, dlg = progressbar(self, 4)) #dlg = progressbar(self, 2) #corpus = self.Source.corpus #uces = corpus.lc[self.cl-1] diff --git a/Rscripts/chdtxt.R b/Rscripts/chdtxt.R index 436d0ba..13077f0 100644 --- a/Rscripts/chdtxt.R +++ b/Rscripts/chdtxt.R @@ -157,6 +157,7 @@ Rchdtxt<-function(uceout, chd1, chd2 = NULL, mincl=0, classif_mode=0, nbt = 9) { # croise # } croise <- croiseeff( matrix(ncol=tcl,nrow=tcl), classeuce1, classeuce2) + print(croise) if (classif_mode == 0) {ind <- (nbcl * 2)} else {ind <- nbcl} if (mincl==0){ mincl<-round(nrow(classeuce1)/ind) @@ -384,8 +385,8 @@ Rchdtxt<-function(uceout, chd1, chd2 = NULL, mincl=0, classif_mode=0, nbt = 9) { chi <- NULL uce <- NULL for (j in 1:nrow(listcoordok[[i]])) { - chi<-c(chi,croise[(listcoordok[[i]][j,1]-1),(listcoordok[[i]][j,2]-1)]) - uce<-c(uce,chicroiseori[(listcoordok[[i]][j,1]-1),(listcoordok[[i]][j,2]-1)]) + chi<-c(chi,chicroiseori[(listcoordok[[i]][j,1]-1),(listcoordok[[i]][j,2]-1)]) + uce<-c(uce,croise[(listcoordok[[i]][j,1]-1),(listcoordok[[i]][j,2]-1)]) } if (maxchi < sum(chi)) { maxchi <- sum(chi) diff --git a/Rscripts/simi.R b/Rscripts/simi.R index a582ec2..da3aa90 100644 --- a/Rscripts/simi.R +++ b/Rscripts/simi.R @@ -314,6 +314,7 @@ plot.simi <- function(graph.simi, p.type = 'tkplot',filename=NULL, communities = lo <- layout.norm(lo, -10, 10, -10, 10, -10, 10) rglplot(g.toplot,vertex.label='', edge.width=we.width/10, vertex.size=0.01, vertex.color=vertex.col, vertex.label.color="black", edge.color = edge.col, layout=lo, rescale = FALSE) #los <- layout.norm(lo, -1, 1, -1, 1, -1, 1) + print(v.label) text3d(lo[,1], lo[,2], lo[,3], vire.nonascii(v.label), col = vertex.label.color, alpha = 1, cex = vertex.label.cex) rgl.spheres(lo, col = vertex.col, radius = vertex.size/100, alpha = alpha) rgl.bg(color = c('white','black')) @@ -339,9 +340,4 @@ graph.word <- function(mat.simi, index) { nm[,index] <- mat.simi[,index] nm[index,] <- mat.simi[index,] nm -# cs <- colSums(nm) -# if (cs) nm <- nm[,-which(cs==0)] -# rs <- rowSums(nm) -# if (rs) nm <- nm[-which(rs==0),] -# nm } diff --git a/analysetxt.py b/analysetxt.py index 2811a7e..ad37d58 100644 --- a/analysetxt.py +++ b/analysetxt.py @@ -28,6 +28,7 @@ class AnalyseText : self.parametres = parametres self.lemdial = lemdial self.val = False + self.keys = DoConf(self.ira.ConfigPath['key']).getoptions() if not 'pathout' in self.parametres : self.pathout = PathOut(corpus.parametres['originalpath'], analyse_type = parametres['type'], dirout = corpus.parametres['pathout']) else : @@ -38,8 +39,8 @@ class AnalyseText : log.info(self.pathout.dirout) if self.parametres is not None : self.keys = DoConf(self.ira.ConfigPath['key']).getoptions() - gramact = [k for k in keys if keys[k] == 1] - gramsup = [k for k in keys if keys[k] == 2] + gramact = [k for k in self.keys if self.keys[k] == 1] + gramsup = [k for k in self.keys if self.keys[k] == 2] self.parametres['pathout'] = self.pathout.mkdirout() self.pathout = PathOut(dirout = self.parametres['pathout']) self.pathout.createdir(self.parametres['pathout']) @@ -212,34 +213,34 @@ class Alceste(AnalyseText) : PrintRapport(self, self.corpus, self.parametres) -keys = {'art_def' : 2, - 'pre' : 2, - 'adj_dem' : 2, - 'ono' : 2, - 'pro_per' : 2, - 'ver_sup' : 2, - 'adv' : 1, - 'ver' : 1, - 'adj_ind' : 2, - 'adj_pos' : 2, - 'aux' : 2, - 'adj_int' : 2, - 'pro_ind' : 2, - 'adj' : 1, - 'pro_dem' : 2, - 'nom' : 1, - 'art_ind' : 2, - 'pro_pos' : 2, - 'nom_sup' : 2, - 'adv_sup' : 2, - 'adj_sup' : 2, - 'adj_num' : 2, - 'pro_rel' : 2, - 'con' : 2, - 'num' : 2, - 'nr' : 1, - 'sw' : 2, -} - -gramact = [k for k in keys if keys[k] == 1] -gramsup = [k for k in keys if keys[k] == 2] +#keys = {'art_def' : 2, +# 'pre' : 2, +# 'adj_dem' : 2, +# 'ono' : 2, +# 'pro_per' : 2, +# 'ver_sup' : 2, +# 'adv' : 1, +# 'ver' : 1, +# 'adj_ind' : 2, +# 'adj_pos' : 2, +# 'aux' : 2, +# 'adj_int' : 2, +# 'pro_ind' : 2, +# 'adj' : 1, +# 'pro_dem' : 2, +# 'nom' : 1, +# 'art_ind' : 2, +# 'pro_pos' : 2, +# 'nom_sup' : 2, +# 'adv_sup' : 2, +# 'adj_sup' : 2, +# 'adj_num' : 2, +# 'pro_rel' : 2, +# 'con' : 2, +# 'num' : 2, +# 'nr' : 1, +# 'sw' : 2, +#} +# +#gramact = [k for k in keys if keys[k] == 1] +#gramsup = [k for k in keys if keys[k] == 2] diff --git a/app.fil b/app.fil index 43f8e8d..6bc2801 100644 --- a/app.fil +++ b/app.fil @@ -1,54 +1,67 @@ -./corpusNG.py -./Liste.py -./analysetxt.py -./KeyFrame.py -./ttparser.py -./tabverges.py -./listlex.py -./textdist.py -./textafcuci.py -./iramuteq.py -./checkversion.py -./tabrsimple.py -./textaslexico.py -./corpus.py -./tabchddist.py -./extract.py -./dialog.py -./openanalyse.py -./tableau.py -./search_tools.py -./PrintRScript.py -./tabstudent.py -./textstat.py -./guifunct.py -./layout.py -./usecorpusNG.py -./textsimi.py -./textcheckcorpus.py -./OptionAlceste.py -./tabsimi.py -./iracmd.py -./textclassechd.py -./newsimi.py -./chemins.py -./ProfList.py -./word_stat.py -./tree.py -./textwordcloud.py -./guiparam3d.py -./parse_factiva_xml.py -./textchdalc.py -./colors.py -./parse_factiva_txt2.py -./functions.py -./sheet.py -./profile_segment.py -./checkinstall.py -./parse_factiva_html.py -./search_list.py -./tabchdalc.py -./parse_factiva_txt.py -./tabfrequence.py -./tabchi2.py -./tabafcm.py +analysematrix.py +analysetxt.py +bestsvg.py +build_dictionnaries.py +cable.py +checkinstall.py +checkversion.py +chemins.py +colors.py +configparser_helpers.py +configparser.py +corpus.py +dialog.py +extract.py +functions.py +guifunct.py +guiparam3d.py +HTML.py +iracmd.py +iramuteq.py +iraopen.py +KeyFrame.py +layout.py +Liste.py +listlex.py +mki18n.py +newsimi.py +ooolib.py +openanalyse.py +OptionAlceste.py +parse_factiva_html.py +parse_factiva_mail.py +parse_factiva_txt.py +parse_factiva_xml.py +PrintRScript.py +profile_segment.py +ProfList.py +putcorpusindb.py +search_list.py +search_tools.py +setup.py +setup.py.win +sheet.py +tabafcm.py +tabchdalc.py +tabchddist.py +tabchi2.py +tabfrequence.py +tableau.py +tabrsimple.py +tabsimi.py +tabstudent.py +tabverges.py +textafcuci.py +textaslexico.py +textchdalc.py +textcheckcorpus.py +textclassechd.py +textdist.py +textsimi.py +textstat.py +textwordcloud.py +tools.py +tree.py +ttparser.py +usecorpusNG.py +word_stat.py diff --git a/corpus.py b/corpus.py index ec27764..3864812 100644 --- a/corpus.py +++ b/corpus.py @@ -1216,7 +1216,10 @@ class Builder : parametres['originalpath'] = parent.filename PathOut().createdir(parametres['pathout']) ReadLexique(self.parent, lang = parametres['lang']) - self.parent.expressions = ReadDicoAsDico(self.parent.DictPath.get(parametres['lang']+'_exp', 'french_exp')) + if parametres['lang'] != 'other' and os.path.exists(self.parent.DictPath.get(parametres['lang']+'_exp', 'french_exp')): + self.parent.expressions = ReadDicoAsDico(self.parent.DictPath.get(parametres['lang']+'_exp', 'french_exp')) + else : + self.parent.expressions = {} self.parametres = parametres else : if self.dlg is not None : diff --git a/dialog.py b/dialog.py index d918538..56183ff 100755 --- a/dialog.py +++ b/dialog.py @@ -1076,18 +1076,8 @@ class StatDialog(wx.Dialog): wx.Dialog.__init__(self, *args, **kwds) self.fileout = "" self.parent = parent - #box = wx.BoxSizer(wx.HORIZONTAL) self.label_lem = wx.StaticText(self, -1, u"Lemmatisation") self.radio_lem = wx.RadioBox(self, -1, u"", choices=['oui', 'non'], majorDimension=0, style=wx.RA_SPECIFY_ROWS) - #sizer.Add(box, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALIGN_RIGHT, 5) - #box2 = wx.BoxSizer(wx.HORIZONTAL) - #self.txt_exp = wx.StaticText(self, -1, u"Utiliser le Dict. des expressions") - #self.exp = wx.RadioBox(self, -1, u"", choices=['oui', 'non'], majorDimension=0, style=wx.RA_SPECIFY_ROWS) - #self.label_uce = wx.StaticText(self, -1, u"Construire des UCE") - #self.check_uce = wx.CheckBox(self, -1) - #txt = """Nombre d'occurrences par uce""" - #self.label_occuce = wx.StaticText(self, -1, txt) - #self.spin_ctrl_4 = wx.SpinCtrl(self, -1, "",size = (100,30), min=10, max=1000, initial = 35) #txt = u"""Fréquence minimum d'une forme #analysée (0 = non utilisé)""" #self.label_8 = wx.StaticText(self, -1, txt) @@ -1139,31 +1129,9 @@ class StatDialog(wx.Dialog): def __set_properties(self) : self.SetTitle(u'Préférences') - #self.spin_ctrl_4.Enable(False) - #self.spin_ctrl_5.Enable(False) - #self.spin_max_actives.Enable(False) - -# def OnCheckUce(self, evt) : -# if self.check_uce.GetValue() : -# self.spin_ctrl_4.Enable(True) -# self.spin_ctrl_5.Enable(True) -# if self.spin_ctrl_5.GetValue() > 0 : -# self.spin_max_actives.Enable(False) -# else : -# self.spin_max_actives.Enable(True) -# else : -# self.spin_ctrl_4.Enable(False) -# self.spin_ctrl_5.Enable(False) -# self.spin_max_actives.Enable(False) - -# def OnSpin(self, evt) : -# if self.spin_ctrl_5.GetValue() > 0 : -# self.spin_max_actives.Enable(False) -# else : -# self.spin_max_actives.Enable(True) def OnKeys(self, evt): - dial = AlcOptFrame(self.parent, self) + dial = AlcOptFrame(self, self.parent.parent) dial.CenterOnParent() val = dial.ShowModal() diff --git a/dictionnaires/About b/dictionnaires/About index 673a4b8..7f030d0 100644 --- a/dictionnaires/About +++ b/dictionnaires/About @@ -1 +1 @@ -dictionnaire construit à partir de Lexique 3 : www.lexique.org +dictionnaire français construit à partir de Lexique 3 : www.lexique.org diff --git a/dictionnaires/expression.txt.old b/dictionnaires/expression.txt.old deleted file mode 100644 index 5d227ac..0000000 --- a/dictionnaires/expression.txt.old +++ /dev/null @@ -1,4608 +0,0 @@ -a capella a_capella ADV 0.04 0.07 0.04 0.07 -a cappella a_cappella ADV 0.04 0.07 0.04 0.07 -a contrario a_contrario ADV 0.00 0.27 0.00 0.27 -a fortiori a_fortiori ADV 0.04 0.88 0.04 0.88 -a giorno a_giorno ADV 0.00 0.27 0.00 0.27 -a jeun à_jeun ADV 1.45 3.85 0.18 0.00 -a l'instar a_l_instar PRE 0.26 0.00 0.26 0.00 -a posteriori a_posteriori ADV 0.05 0.20 0.01 0.14 -a priori a_priori ADV 1.04 3.85 0.63 2.57 -ab absurdo ab_absurdo ADV 0.00 0.07 0.00 0.07 -ab initio ab_initio ADV 0.01 0.07 0.01 0.07 -ab ovo ab_ovo ADV 0.00 0.27 0.00 0.27 -abaisse-langue abaisse_langue NOM m 0.04 0.14 0.04 0.14 -abat-jour abat_jour NOM m 0.51 8.24 0.51 8.24 -abat-son abat_son NOM m 0.00 0.27 0.00 0.27 -abri-refuge abri_refuge NOM m s 0.00 0.07 0.00 0.07 -accroche-coeur accroche_coeur NOM m s 0.00 0.74 0.00 0.34 -accroche-coeurs accroche_coeur NOM m p 0.00 0.74 0.00 0.41 -acid jazz acid_jazz NOM m s 0.03 0.00 0.03 0.00 -acqua-toffana acqua_toffana NOM f s 0.00 0.07 0.00 0.07 -action painting action_painting NOM f s 0.00 0.07 0.00 0.07 -ad hoc ad_hoc ADJ 0.11 0.81 0.11 0.81 -ad infinitum ad_infinitum ADV 0.05 0.00 0.05 0.00 -ad libitum ad_libitum ADV 0.00 0.14 0.00 0.14 -ad limina ad_limina ADV 0.00 0.07 0.00 0.07 -ad majorem dei gloriam ad_majorem_dei_gloriam ADV 0.00 0.14 0.00 0.14 -ad nutum ad_nutum ADV 0.00 0.07 0.00 0.07 -ad patres ad_patres ADV 0.02 0.27 0.02 0.27 -ad vitam aeternam ad_vitam_aeternam ADV 0.00 0.20 0.00 0.20 -adjudant-chef adjudant_chef NOM m s 2.57 2.70 2.57 2.57 -adjudant-major adjudant_major NOM m s 0.05 0.00 0.05 0.00 -adjudants-chefs adjudant_chef NOM m p 2.57 2.70 0.00 0.14 -afin d afin_d PRE 0.04 0.07 0.04 0.07 -afin de afin_de PRE 15.64 43.18 15.64 43.18 -afin qu afin_qu CON 0.05 0.00 0.05 0.00 -afin que afin_que CON 9.63 14.93 9.63 14.93 -afro-américain afro_américain NOM m s 0.95 0.00 0.48 0.00 -afro-américaine afro_américain ADJ f s 0.67 0.00 0.23 0.00 -afro-américains afro_américain NOM m p 0.95 0.00 0.39 0.00 -afro-asiatique afro_asiatique ADJ f s 0.01 0.00 0.01 0.00 -afro-brésilienne afro_brésilien ADJ f s 0.01 0.00 0.01 0.00 -afro-cubain afro_cubain ADJ m s 0.03 0.07 0.01 0.00 -afro-cubaine afro_cubain ADJ f s 0.03 0.07 0.02 0.00 -afro-cubains afro_cubain ADJ m p 0.03 0.07 0.00 0.07 -after-shave after_shave NOM m 0.51 0.68 0.47 0.61 -after shave after_shave NOM m 0.51 0.68 0.03 0.07 -agar-agar agar_agar NOM m s 0.00 0.07 0.00 0.07 -agit-prop agit_prop NOM f 0.10 0.00 0.10 0.00 -agnus-dei agnus_dei NOM m 0.00 0.07 0.00 0.07 -agnus dei agnus_dei NOM m 0.47 0.14 0.47 0.14 -agro-alimentaire agro_alimentaire ADJ f s 0.15 0.00 0.15 0.00 -aide-bourreau aide_bourreau NOM s 0.00 0.14 0.00 0.14 -aide-comptable aide_comptable NOM m s 0.04 0.07 0.04 0.07 -aide-cuisinier aide_cuisinier NOM m s 0.02 0.14 0.02 0.14 -aide-infirmier aide_infirmier NOM s 0.04 0.00 0.04 0.00 -aide-jardinier aide_jardinier NOM m s 0.01 0.07 0.01 0.07 -aide-major aide_major NOM m 0.00 0.14 0.00 0.14 -aide-mémoire aide_mémoire NOM m 0.04 0.41 0.04 0.41 -aide-ménagère aide_ménagère NOM f s 0.00 0.27 0.00 0.27 -aide-pharmacien aide_pharmacien NOM s 0.00 0.07 0.00 0.07 -aide-soignant aide_soignant NOM m s 0.40 0.27 0.20 0.00 -aide-soignante aide_soignant NOM f s 0.40 0.27 0.12 0.14 -aides-soignantes aide_soignant NOM f p 0.40 0.27 0.00 0.14 -aides-soignants aide_soignant NOM m p 0.40 0.27 0.08 0.00 -aigre-douce aigre_doux ADJ f s 0.29 1.08 0.08 0.54 -aigre-doux aigre_doux ADJ m 0.29 1.08 0.20 0.34 -aigres-douces aigre_douce ADJ f p 0.01 0.20 0.01 0.20 -aigres-doux aigre_doux ADJ m p 0.29 1.08 0.01 0.20 -aigue-marine aigue_marine NOM f s 0.00 0.81 0.00 0.47 -aigues-marines aigue_marine NOM f p 0.00 0.81 0.00 0.34 -air-air air_air ADJ m 0.09 0.00 0.09 0.00 -air-mer air_mer ADJ 0.02 0.00 0.02 0.00 -air-sol air_sol ADJ m p 0.13 0.00 0.13 0.00 -air bag air_bag NOM m s 0.02 0.00 0.02 0.00 -al dente al_dente ADV 0.40 0.14 0.40 0.14 -alea jacta est alea_jacta_est ADV 0.30 0.07 0.30 0.07 -all right all_right ADV 1.53 0.20 1.53 0.20 -aller-retour aller_retour NOM m s 2.33 2.43 1.83 2.36 -allers-retours aller_retour NOM m p 2.33 2.43 0.50 0.07 -allume-cigare allume_cigare NOM m s 0.19 0.14 0.19 0.14 -allume-cigares allume_cigares NOM m 0.14 0.14 0.14 0.14 -allume-feu allume_feu NOM m 0.04 0.27 0.04 0.27 -allume-gaz allume_gaz NOM m 0.20 0.14 0.20 0.14 -alter ego alter_ego NOM m 0.30 0.54 0.30 0.54 -am stram gram am_stram_gram ONO 0.08 0.14 0.08 0.14 -amour-goût amour_goût NOM m s 0.00 0.07 0.00 0.07 -amour-passion amour_passion NOM m s 0.00 0.41 0.00 0.41 -amour-propre amour_propre NOM m s 2.54 6.89 2.54 6.76 -amours-propres amour_propre NOM m p 2.54 6.89 0.00 0.14 -ampli-tuner ampli_tuner NOM m s 0.01 0.00 0.01 0.00 -américano-britannique américano_britannique ADJ s 0.01 0.00 0.01 0.00 -américano-japonaise américano_japonais ADJ f s 0.01 0.00 0.01 0.00 -américano-russe américano_russe ADJ f s 0.01 0.00 0.01 0.00 -américano-soviétique américano_soviétique ADJ m s 0.03 0.00 0.03 0.00 -américano-suédoise américano_suédois ADJ f s 0.01 0.00 0.01 0.00 -amuse-bouche amuse_bouche NOM m 0.05 0.00 0.03 0.00 -amuse-bouches amuse_bouche NOM m p 0.05 0.00 0.02 0.00 -amuse-gueule amuse_gueule NOM m 1.23 0.81 0.53 0.81 -amuse-gueules amuse_gueule NOM m p 1.23 0.81 0.70 0.00 -anarcho-syndicalisme anarcho_syndicalisme NOM m s 0.00 0.07 0.00 0.07 -anarcho-syndicaliste anarcho_syndicaliste ADJ s 0.00 0.14 0.00 0.07 -anarcho-syndicalistes anarcho_syndicaliste ADJ m p 0.00 0.14 0.00 0.07 -anch'io son pittore anch_io_son_pittore ADV 0.00 0.07 0.00 0.07 -anglo-albanais anglo_albanais ADJ m s 0.00 0.07 0.00 0.07 -anglo-allemand anglo_allemand ADJ m s 0.01 0.00 0.01 0.00 -anglo-américain anglo_américain ADJ m s 0.05 0.20 0.01 0.07 -anglo-américaine anglo_américain ADJ f s 0.05 0.20 0.02 0.07 -anglo-américaines anglo_américain ADJ f p 0.05 0.20 0.00 0.07 -anglo-américains anglo_américain ADJ m p 0.05 0.20 0.02 0.00 -anglo-arabe anglo_arabe ADJ s 0.00 0.27 0.00 0.14 -anglo-arabes anglo_arabe ADJ m p 0.00 0.27 0.00 0.14 -anglo-chinois anglo_chinois ADJ m s 0.01 0.00 0.01 0.00 -anglo-français anglo_français ADJ m s 0.02 0.14 0.01 0.07 -anglo-française anglo_français ADJ f s 0.02 0.14 0.01 0.07 -anglo-hellénique anglo_hellénique ADJ f s 0.00 0.07 0.00 0.07 -anglo-irlandais anglo_irlandais ADJ m s 0.00 0.27 0.00 0.27 -anglo-normand anglo_normand ADJ m s 0.04 0.34 0.00 0.14 -anglo-normande anglo_normand ADJ f s 0.04 0.34 0.00 0.20 -anglo-normandes anglo_normand ADJ f p 0.04 0.34 0.04 0.00 -anglo-russe anglo_russe ADJ m s 0.02 0.00 0.01 0.00 -anglo-russes anglo_russe ADJ f p 0.02 0.00 0.01 0.00 -anglo-saxon anglo_saxon ADJ m s 0.48 4.12 0.23 1.08 -anglo-saxonne anglo_saxon ADJ f s 0.48 4.12 0.04 0.74 -anglo-saxonnes anglo_saxon ADJ f p 0.48 4.12 0.18 0.88 -anglo-saxons anglo_saxon ADJ m p 0.48 4.12 0.03 1.42 -anglo-soviétique anglo_soviétique ADJ s 0.02 0.07 0.02 0.07 -anglo-égyptien anglo_égyptien ADJ m s 0.01 0.41 0.00 0.20 -anglo-égyptienne anglo_égyptien ADJ f s 0.01 0.41 0.01 0.20 -anglo-éthiopien anglo_éthiopien ADJ m s 0.00 0.07 0.00 0.07 -animal-roi animal_roi NOM m s 0.00 0.07 0.00 0.07 -animaux-espions animaux_espions NOM m p 0.01 0.00 0.01 0.00 -année-lumière année_lumière NOM f s 1.16 1.01 0.03 0.07 -années-homme année_homme NOM f p 0.01 0.00 0.01 0.00 -années-lumière année_lumière NOM f p 1.16 1.01 1.13 0.95 -anti-acné anti_acné NOM f s 0.02 0.00 0.02 0.00 -anti-agression anti_agression NOM f s 0.03 0.07 0.03 0.07 -anti-allergie anti_allergie NOM f s 0.01 0.00 0.01 0.00 -anti-anatomique anti_anatomique ADJ s 0.01 0.00 0.01 0.00 -anti-apartheid anti_apartheid NOM m s 0.00 0.07 0.00 0.07 -anti-aphrodisiaque anti_aphrodisiaque ADJ f s 0.00 0.07 0.00 0.07 -anti-asthmatique anti_asthmatique NOM s 0.01 0.00 0.01 0.00 -anti-atomique anti_atomique ADJ m s 0.06 0.07 0.05 0.00 -anti-atomiques anti_atomique ADJ m p 0.06 0.07 0.01 0.07 -anti-aérien anti_aérien ADJ m s 0.41 0.27 0.20 0.07 -anti-aérienne anti_aérien ADJ f s 0.41 0.27 0.17 0.07 -anti-aériens anti_aérien ADJ m p 0.41 0.27 0.04 0.14 -anti-avortement anti_avortement NOM m s 0.12 0.00 0.12 0.00 -anti-beauf anti_beauf NOM m s 0.01 0.00 0.01 0.00 -anti-bison anti_bison NOM m s 0.00 0.07 0.00 0.07 -anti-blindage anti_blindage NOM m s 0.04 0.00 0.04 0.00 -anti-blouson anti_blouson NOM m s 0.00 0.07 0.00 0.07 -anti-bombe anti_bombe NOM f s 0.10 0.07 0.09 0.00 -anti-bombes anti_bombe NOM f p 0.10 0.07 0.01 0.07 -anti-bosons anti_boson NOM m p 0.04 0.00 0.04 0.00 -anti-braquage anti_braquage NOM m s 0.01 0.00 0.01 0.00 -anti-brouillard anti_brouillard ADJ s 0.12 0.00 0.12 0.00 -anti-bruit anti_bruit NOM m s 0.16 0.00 0.16 0.00 -anti-calciques anti_calcique ADJ f p 0.01 0.00 0.01 0.00 -anti-cancer anti_cancer NOM m s 0.04 0.00 0.04 0.00 -anti-capitaliste anti_capitaliste ADJ m s 0.03 0.00 0.03 0.00 -anti-castriste anti_castriste ADJ s 0.02 0.00 0.02 0.00 -anti-castristes anti_castriste NOM p 0.01 0.00 0.01 0.00 -anti-cellulite anti_cellulite NOM f s 0.01 0.00 0.01 0.00 -anti-chambre anti_chambre NOM f s 0.00 0.14 0.00 0.07 -anti-chambres anti_chambre NOM f p 0.00 0.14 0.00 0.07 -anti-char anti_char NOM m s 0.12 0.20 0.00 0.14 -anti-chars anti_char NOM m p 0.12 0.20 0.12 0.07 -anti-chiens anti_chien NOM m p 0.00 0.07 0.00 0.07 -anti-cité anti_cité NOM f s 0.00 0.07 0.00 0.07 -anti-civilisation anti_civilisation NOM f s 0.00 0.07 0.00 0.07 -anti-club anti_club NOM m s 0.02 0.00 0.02 0.00 -anti-cocos anti_coco NOM p 0.01 0.00 0.01 0.00 -anti-colère anti_colère NOM f s 0.01 0.00 0.01 0.00 -anti-communisme anti_communisme NOM m s 0.00 0.14 0.00 0.14 -anti-communiste anti_communiste ADJ s 0.03 0.07 0.03 0.07 -anti-conformisme anti_conformisme NOM m s 0.01 0.14 0.01 0.14 -anti-conformiste anti_conformiste NOM s 0.01 0.00 0.01 0.00 -anti-conglutinatif anti_conglutinatif ADJ m s 0.00 0.07 0.00 0.07 -anti-corps anti_corps NOM m 0.08 0.00 0.08 0.00 -anti-corruption anti_corruption NOM f s 0.04 0.00 0.04 0.00 -anti-crash anti_crash NOM m s 0.01 0.00 0.01 0.00 -anti-crime anti_crime NOM m s 0.03 0.00 0.03 0.00 -anti-criminalité anti_criminalité NOM f s 0.01 0.00 0.01 0.00 -anti-célibataires anti_célibataire ADJ f p 0.01 0.00 0.01 0.00 -anti-dauphins anti_dauphin NOM m p 0.01 0.00 0.01 0.00 -anti-desperado anti_desperado NOM m s 0.01 0.00 0.01 0.00 -anti-dieu anti_dieu NOM m s 0.03 0.00 0.03 0.00 -anti-discrimination anti_discrimination NOM f s 0.02 0.00 0.02 0.00 -anti-dopage anti_dopage NOM m s 0.06 0.00 0.06 0.00 -anti-douleur anti_douleur NOM f s 0.46 0.00 0.30 0.00 -anti-douleurs anti_douleur NOM f p 0.46 0.00 0.15 0.00 -anti-drague anti_drague NOM f s 0.01 0.00 0.01 0.00 -anti-dramatique anti_dramatique ADJ s 0.00 0.07 0.00 0.07 -anti-drogue anti_drogue NOM f s 0.42 0.00 0.35 0.00 -anti-drogues anti_drogue NOM f p 0.42 0.00 0.07 0.00 -anti-débauche anti_débauche NOM f s 0.00 0.07 0.00 0.07 -anti-démocratique anti_démocratique ADJ f s 0.14 0.07 0.14 0.07 -anti-démocratiques anti_démocratique ADJ f p 0.14 0.07 0.01 0.00 -anti-démon anti_démon NOM m s 0.04 0.00 0.04 0.00 -anti-espionnes anti_espionne NOM f p 0.01 0.00 0.01 0.00 -anti-establishment anti_establishment NOM m s 0.02 0.00 0.02 0.00 -anti-existence anti_existence NOM f s 0.00 0.07 0.00 0.07 -anti-explosion anti_explosion NOM f s 0.04 0.00 0.04 0.00 -anti-fantômes anti_fantôme NOM m p 0.02 0.00 0.02 0.00 -anti-fasciste anti_fasciste ADJ f s 0.02 0.00 0.02 0.00 -anti-femme anti_femme NOM f s 0.01 0.00 0.01 0.00 -anti-flingage anti_flingage NOM m s 0.00 0.07 0.00 0.07 -anti-flip anti_flip NOM m s 0.00 0.07 0.00 0.07 -anti-frigo anti_frigo NOM m s 0.00 0.07 0.00 0.07 -anti-féministe anti_féministe NOM s 0.03 0.07 0.03 0.07 -anti-fusionnel anti_fusionnel ADJ m s 0.01 0.00 0.01 0.00 -anti-fusées anti_fusée NOM f p 0.00 0.20 0.00 0.20 -anti-g anti_g ADJ f p 0.01 0.00 0.01 0.00 -anti-gang anti_gang NOM m s 0.33 0.00 0.33 0.00 -anti-gel anti_gel NOM m s 0.05 0.00 0.05 0.00 -anti-gerce anti_gerce NOM f s 0.01 0.00 0.01 0.00 -anti-gouvernement anti_gouvernement NOM m s 0.10 0.00 0.10 0.00 -anti-graffiti anti_graffiti NOM m 0.01 0.00 0.01 0.00 -anti-gravité anti_gravité NOM f s 0.06 0.00 0.06 0.00 -anti-grimaces anti_grimace NOM f p 0.01 0.00 0.01 0.00 -anti-gros anti_gros ADJ m 0.01 0.00 0.01 0.00 -anti-hannetons anti_hanneton NOM m p 0.00 0.07 0.00 0.07 -anti-hypertenseur anti_hypertenseur ADJ m s 0.01 0.00 0.01 0.00 -anti-immigration anti_immigration NOM f s 0.02 0.00 0.02 0.00 -anti-immigrés anti_immigré ADJ p 0.00 0.07 0.00 0.07 -anti-impérialiste anti_impérialiste ADJ s 0.11 0.07 0.11 0.07 -anti-incendie anti_incendie NOM m s 0.16 0.00 0.16 0.00 -anti-inertie anti_inertie NOM f s 0.01 0.00 0.01 0.00 -anti-infectieux anti_infectieux ADJ m p 0.01 0.00 0.01 0.00 -anti-inflammatoire anti_inflammatoire NOM m s 0.07 0.07 0.07 0.07 -anti-insecte anti_insecte NOM m s 0.03 0.07 0.01 0.00 -anti-insectes anti_insecte NOM m p 0.03 0.07 0.02 0.07 -anti-instinct anti_instinct NOM m s 0.00 0.07 0.00 0.07 -anti-insurrectionnel anti_insurrectionnel ADJ m s 0.01 0.00 0.01 0.00 -anti-intimité anti_intimité NOM f s 0.04 0.00 0.04 0.00 -anti-japon anti_japon NOM m s 0.00 0.07 0.00 0.07 -anti-jeunes anti_jeunes ADJ m s 0.00 0.07 0.00 0.07 -anti-mafia anti_mafia NOM f s 0.01 0.07 0.01 0.07 -anti-maison anti_maison NOM f s 0.00 0.14 0.00 0.14 -anti-manipulation anti_manipulation NOM f s 0.01 0.00 0.01 0.00 -anti-manoir anti_manoir NOM m s 0.00 0.07 0.00 0.07 -anti-mariage anti_mariage NOM m s 0.03 0.00 0.03 0.00 -anti-matière anti_matière NOM f s 0.09 0.00 0.08 0.00 -anti-matières anti_matière NOM f p 0.09 0.00 0.01 0.00 -anti-mecs anti_mec NOM m p 0.02 0.00 0.02 0.00 -anti-militariste anti_militariste NOM s 0.01 0.00 0.01 0.00 -anti-missiles anti_missile NOM m p 0.03 0.00 0.03 0.00 -anti-mite anti_mite NOM f s 0.10 0.14 0.03 0.07 -anti-mites anti_mite NOM f p 0.10 0.14 0.08 0.07 -anti-monde anti_monde NOM m s 0.00 0.07 0.00 0.07 -anti-monstres anti_monstre ADJ f p 0.01 0.00 0.01 0.00 -anti-moustique anti_moustique NOM m s 0.58 0.07 0.41 0.00 -anti-moustiques anti_moustique NOM m p 0.58 0.07 0.17 0.07 -anti-médicaments anti_médicament NOM m p 0.01 0.00 0.01 0.00 -anti-métaphysique anti_métaphysique ADJ m s 0.00 0.07 0.00 0.07 -anti-météorites anti_météorite NOM f p 0.20 0.00 0.20 0.00 -anti-nausée anti_nausée NOM f s 0.01 0.00 0.01 0.00 -anti-navire anti_navire NOM m s 0.01 0.00 0.01 0.00 -anti-nucléaire anti_nucléaire ADJ m s 0.06 0.00 0.05 0.00 -anti-nucléaires anti_nucléaire ADJ p 0.06 0.00 0.01 0.00 -anti-nucléaires anti_nucléaire NOM m p 0.01 0.00 0.01 0.00 -anti-odeur anti_odeur NOM f s 0.02 0.14 0.01 0.07 -anti-odeurs anti_odeur NOM f p 0.02 0.14 0.01 0.07 -anti-odorants anti_odorant ADJ m p 0.00 0.07 0.00 0.07 -anti-âge anti_âge ADJ 0.04 0.74 0.04 0.74 -anti-origine anti_origine NOM f s 0.00 0.07 0.00 0.07 -anti-panache anti_panache NOM m s 0.00 0.07 0.00 0.07 -anti-particule anti_particule NOM f s 0.01 0.00 0.01 0.00 -anti-pasteur anti_pasteur NOM m s 0.00 0.07 0.00 0.07 -anti-patriote anti_patriote NOM s 0.01 0.00 0.01 0.00 -anti-patriotique anti_patriotique ADJ f s 0.06 0.00 0.06 0.00 -anti-pelliculaire anti_pelliculaire ADJ m s 0.13 0.07 0.13 0.07 -anti-piratage anti_piratage NOM m s 0.01 0.00 0.01 0.00 -anti-pirate anti_pirate ADJ s 0.01 0.00 0.01 0.00 -anti-poison anti_poison NOM m s 0.04 0.14 0.04 0.14 -anti-poisse anti_poisse NOM f s 0.05 0.07 0.05 0.07 -anti-pollution anti_pollution NOM f s 0.04 0.00 0.04 0.00 -anti-poux anti_poux NOM m p 0.04 0.00 0.04 0.00 -anti-progressistes anti_progressiste NOM p 0.00 0.07 0.00 0.07 -anti-psychotique anti_psychotique ADJ s 0.01 0.00 0.01 0.00 -anti-pub anti_pub NOM s 0.00 0.07 0.00 0.07 -anti-puces anti_puce NOM f p 0.14 0.00 0.14 0.00 -anti-pédérastiques anti_pédérastique ADJ p 0.00 0.07 0.00 0.07 -anti-racket anti_racket NOM m s 0.06 0.00 0.06 0.00 -anti-radiations anti_radiation NOM f p 0.08 0.00 0.08 0.00 -anti-rapt anti_rapt NOM m s 0.00 0.07 0.00 0.07 -anti-reflets anti_reflet NOM m p 0.00 0.07 0.00 0.07 -anti-rejet anti_rejet NOM m s 0.20 0.00 0.20 0.00 -anti-religion anti_religion NOM f s 0.01 0.00 0.01 0.00 -anti-rhume anti_rhume NOM m s 0.02 0.00 0.02 0.00 -anti-rides anti_ride NOM f p 0.06 0.00 0.06 0.00 -anti-romain anti_romain NOM m s 0.00 0.07 0.00 0.07 -anti-romantique anti_romantique ADJ s 0.01 0.00 0.01 0.00 -anti-rouille anti_rouille NOM f s 0.01 0.00 0.01 0.00 -anti-russe anti_russe ADJ m s 0.11 0.00 0.11 0.00 -anti-sida anti_sida NOM m s 0.02 0.00 0.02 0.00 -anti-socialistes anti_socialiste ADJ p 0.01 0.00 0.01 0.00 -anti-sociaux anti_sociaux ADJ m p 0.04 0.00 0.04 0.00 -anti-société anti_société NOM f s 0.00 0.07 0.00 0.07 -anti-somnolence anti_somnolence NOM f s 0.01 0.00 0.01 0.00 -anti-souffle anti_souffle NOM m s 0.03 0.00 0.03 0.00 -anti-sous-marin anti_sous_marin ADJ m s 0.02 0.00 0.02 0.00 -anti-soviétique anti_soviétique ADJ f s 0.00 0.07 0.00 0.07 -anti-sèche anti_sèche ADJ f s 0.01 0.07 0.01 0.00 -anti-sèches anti_sèche ADJ f p 0.01 0.07 0.00 0.07 -anti-stress anti_stress NOM m 0.35 0.00 0.35 0.00 -anti-sémite anti_sémite ADJ s 0.04 0.00 0.02 0.00 -anti-sémites anti_sémite ADJ f p 0.04 0.00 0.02 0.00 -anti-sémitisme anti_sémitisme NOM m s 0.08 0.00 0.08 0.00 -anti-syndical anti_syndical ADJ m s 0.01 0.00 0.01 0.00 -anti-tabac anti_tabac ADJ s 0.17 0.00 0.17 0.00 -anti-taches anti_tache NOM f p 0.15 0.00 0.15 0.00 -anti-tank anti_tank NOM m s 0.03 0.00 0.03 0.00 -anti-tapisserie anti_tapisserie NOM f s 0.00 0.07 0.00 0.07 -anti-temps anti_temps NOM m 0.00 0.27 0.00 0.27 -anti-tension anti_tension NOM f s 0.01 0.00 0.01 0.00 -anti-terrorisme anti_terrorisme NOM m s 0.53 0.00 0.53 0.00 -anti-terroriste anti_terroriste ADJ s 0.26 0.00 0.26 0.00 -anti-tornades anti_tornade NOM f p 0.01 0.00 0.01 0.00 -anti-toux anti_toux NOM f 0.01 0.00 0.01 0.00 -anti-truie anti_truie NOM f s 0.01 0.00 0.01 0.00 -anti-trusts anti_trust NOM m p 0.02 0.00 0.02 0.00 -anti-émeute anti_émeute ADJ s 0.15 0.00 0.10 0.00 -anti-émeutes anti_émeute ADJ p 0.15 0.00 0.05 0.00 -anti-émotionnelle anti_émotionnelle ADJ f s 0.00 0.07 0.00 0.07 -anti-évasion anti_évasion NOM f s 0.01 0.00 0.01 0.00 -anti-venin anti_venin NOM m s 0.18 0.00 0.18 0.00 -anti-vieillissement anti_vieillissement NOM m s 0.04 0.00 0.04 0.00 -anti-viol anti_viol NOM m s 0.09 0.00 0.09 0.00 -anti-violence anti_violence NOM f s 0.01 0.00 0.01 0.00 -anti-viral anti_viral ADJ m s 0.13 0.00 0.13 0.00 -anti-virus anti_virus NOM m 0.09 0.00 0.09 0.00 -anti-vol anti_vol NOM m s 0.36 0.27 0.35 0.27 -anti-vols anti_vol NOM m p 0.36 0.27 0.01 0.00 -appareil-photo appareil_photo NOM m s 0.32 0.27 0.32 0.27 -appartement-roi appartement_roi NOM m s 0.00 0.07 0.00 0.07 -apprenti-pilote apprenti_pilote NOM m s 0.02 0.00 0.02 0.00 -apprenti-sorcier apprenti_sorcier NOM m s 0.00 0.14 0.00 0.14 -appui-main appui_main NOM m s 0.00 0.14 0.00 0.14 -appui-tête appui_tête NOM m s 0.01 0.00 0.01 0.00 -appuie-tête appuie_tête NOM m 0.05 0.14 0.05 0.14 -après-coup après_coup NOM m s 0.02 0.00 0.02 0.00 -après-dîner après_dîner NOM m s 0.02 0.74 0.02 0.61 -après-dîners après_dîner NOM m p 0.02 0.74 0.00 0.14 -après-demain après_demain ADV 11.77 6.76 11.77 6.76 -après-déjeuner après_déjeuner VER 0.00 0.14 0.00 0.14 inf; -après-guerre après_guerre NOM s 0.73 3.24 0.73 3.24 -après-mort après_mort NOM f s 0.00 0.07 0.00 0.07 -après-rasage après_rasage NOM m s 0.45 0.00 0.45 0.00 -après-repas après_repas NOM m 0.01 0.07 0.01 0.07 -après-shampoing après_shampoing NOM m s 0.04 0.00 0.04 0.00 -après-shampooing après_shampooing NOM m s 0.04 0.07 0.04 0.07 -après-ski après_ski NOM m s 0.06 0.20 0.06 0.20 -après-vente après_vente ADJ s 0.05 0.00 0.05 0.00 -araignée-crabe araignée_crabe NOM f s 0.00 0.07 0.00 0.07 -arbres-refuges arbres_refuge NOM m p 0.00 0.07 0.00 0.07 -arc-bouta arc_bouter VER 0.17 5.00 0.00 0.47 ind:pas:3s; -arc-boutais arc_bouter VER 0.17 5.00 0.04 0.27 ind:imp:1s;ind:imp:2s; -arc-boutait arc_bouter VER 0.17 5.00 0.00 0.34 ind:imp:3s; -arc-boutant arc_boutant NOM m s 0.14 0.54 0.14 0.20 -arc-boutants arc_boutant NOM m p 0.14 0.54 0.01 0.00 -arc-boute arc_bouter VER 0.17 5.00 0.10 0.88 ind:pre:1s;ind:pre:3s; -arc-boutement arc_boutement NOM m s 0.00 0.07 0.00 0.07 -arc-boutent arc_bouter VER 0.17 5.00 0.01 0.20 ind:pre:3p; -arc-bouter arc_bouter VER 0.17 5.00 0.00 0.07 inf; -arc-boutera arc_bouter VER 0.17 5.00 0.01 0.00 ind:fut:3s; -arc-boutèrent arc_bouter VER 0.17 5.00 0.00 0.07 ind:pas:3p; -arc-bouté arc_bouter VER m s 0.17 5.00 0.01 1.15 par:pas; -arc-boutée arc_bouter VER f s 0.17 5.00 0.00 0.41 par:pas; -arc-boutées arc_bouter VER f p 0.17 5.00 0.00 0.27 par:pas; -arc-boutés arc_bouter VER m p 0.17 5.00 0.00 0.27 par:pas; -arc-en-ciel arc_en_ciel NOM m s 3.00 4.46 2.56 3.92 -archi-blet archi_blet ADJ m s 0.00 0.07 0.00 0.07 -archi-chiants archi_chiant ADJ m p 0.01 0.00 0.01 0.00 -archi-connu archi_connu ADJ m s 0.01 0.07 0.01 0.00 -archi-connus archi_connu ADJ m p 0.01 0.07 0.00 0.07 -archi-duchesse archiduc NOM f s 0.48 4.46 0.01 0.00 -archi-dégueu archi_dégueu ADJ s 0.00 0.07 0.00 0.07 -archi-faux archi_faux ADJ m 0.05 0.00 0.05 0.00 -archi-libre archi_libre ADJ f s 0.00 0.07 0.00 0.07 -archi-mortels archi_mortels NOM m 0.01 0.00 0.01 0.00 -archi-morts archi_mort NOM f p 0.00 0.07 0.00 0.07 -archi-méfiance archi_méfiance NOM f s 0.00 0.07 0.00 0.07 -archi-nul archi_nul NOM m s 0.01 0.00 0.01 0.00 -archi-nuls archi_nuls NOM m 0.23 0.00 0.23 0.00 -archi-plein archi_plein NOM m s 0.00 0.07 0.00 0.07 -archi-prouvé archi_prouvé ADJ m s 0.00 0.07 0.00 0.07 -archi-prudent archi_prudent NOM m s 0.00 0.07 0.00 0.07 -archi-ringard archi_ringard NOM m s 0.00 0.07 0.00 0.07 -archi-sophistiquée archi_sophistiqué ADJ f s 0.01 0.00 0.01 0.00 -archi-sèches archi_sèche ADJ f p 0.01 0.00 0.01 0.00 -archi-usé archi_usé ADJ m s 0.01 0.00 0.01 0.00 -archi-vieux archi_vieux ADJ m 0.00 0.07 0.00 0.07 -archiviste-paléographe archiviste_paléographe NOM s 0.00 0.14 0.00 0.07 -archivistes-paléographes archiviste_paléographe NOM p 0.00 0.14 0.00 0.07 -arcs-boutants arc_boutant NOM m p 0.14 0.54 0.00 0.34 -arcs-en-ciel arc_en_ciel NOM m p 3.00 4.46 0.44 0.54 -arme-miracle arme_miracle NOM f s 0.10 0.00 0.10 0.00 -arrache-clou arrache_clou NOM m s 0.00 0.07 0.00 0.07 -arrière-automne arrière_automne NOM m 0.00 0.14 0.00 0.14 -arrière-ban arrière_ban NOM m s 0.00 0.20 0.00 0.20 -arrière-boutique arrière_boutique NOM f s 0.31 6.35 0.31 5.95 -arrière-boutiques arrière_boutique NOM f p 0.31 6.35 0.00 0.41 -arrière-cabinets arrière_cabinet NOM m p 0.00 0.07 0.00 0.07 -arrière-cour arrière_cour NOM f s 0.45 1.35 0.41 1.01 -arrière-cours arrière_cour NOM f p 0.45 1.35 0.03 0.34 -arrière-cousin arrière_cousin NOM m s 0.12 0.00 0.12 0.00 -arrière-cuisine arrière_cuisine NOM f s 0.02 0.14 0.02 0.07 -arrière-cuisines arrière_cuisine NOM f p 0.02 0.14 0.00 0.07 -arrière-fond arrière_fond NOM m s 0.04 0.95 0.04 0.95 -arrière-garde arrière_garde NOM f s 0.47 2.03 0.47 1.69 -arrière-gardes arrière_garde NOM f p 0.47 2.03 0.00 0.34 -arrière-goût arrière_goût NOM m s 0.55 1.28 0.55 1.22 -arrière-goûts arrière_goût NOM m p 0.55 1.28 0.00 0.07 -arrière-gorge arrière_gorge NOM f s 0.00 0.27 0.00 0.27 -arrière-grand-mère arrière_grand_mère NOM f s 0.85 2.57 0.83 2.30 -arrière-grand-mères arrière_grand_mère NOM f p 0.85 2.57 0.00 0.20 -arrière-grand-oncle arrière_grand_oncle NOM m s 0.04 0.41 0.04 0.41 -arrière-grand-père arrière_grand_père NOM m s 1.48 4.12 1.48 3.78 -arrière-grand-tante arrière_grand_tante NOM f s 0.00 0.20 0.00 0.14 -arrière-grand-tantes arrière_grand_tante NOM f p 0.00 0.20 0.00 0.07 -arrière-grands-mères arrière_grand_mère NOM f p 0.85 2.57 0.02 0.07 -arrière-grands-parents arrière_grand_parent NOM m p 0.16 1.08 0.16 1.08 -arrière-grands-pères arrière_grand_père NOM m p 1.48 4.12 0.00 0.34 -arrière-loge arrière_loge NOM m s 0.00 0.07 0.00 0.07 -arrière-magasin arrière_magasin NOM m 0.00 0.07 0.00 0.07 -arrière-main arrière_main NOM s 0.00 0.07 0.00 0.07 -arrière-monde arrière_monde NOM m s 0.00 0.14 0.00 0.14 -arrière-neveux arrière_neveux NOM m p 0.00 0.07 0.00 0.07 -arrière-pays arrière_pays NOM m 0.37 1.15 0.37 1.15 -arrière-pensée arrière_pensée NOM f s 0.91 5.95 0.79 3.58 -arrière-pensées arrière_pensée NOM f p 0.91 5.95 0.13 2.36 -arrière-petit-fils arrière_petit_fils NOM m 0.14 0.61 0.14 0.61 -arrière-petit-neveu arrière_petit_neveu NOM m s 0.01 0.27 0.01 0.27 -arrière-petite-fille arrière_petite_fille NOM f s 0.13 0.81 0.13 0.47 -arrière-petite-nièce arrière_petite_nièce NOM f s 0.00 0.14 0.00 0.07 -arrière-petites-filles arrière_petite_fille NOM f p 0.13 0.81 0.00 0.34 -arrière-petites-nièces arrière_petite_nièce NOM f p 0.00 0.14 0.00 0.07 -arrière-petits-enfants arrière_petit_enfant NOM m p 0.36 0.27 0.36 0.27 -arrière-petits-fils arrière_petits_fils NOM m p 0.00 0.41 0.00 0.41 -arrière-petits-neveux arrière_petits_neveux NOM m p 0.00 0.07 0.00 0.07 -arrière-plan arrière_plan NOM m s 0.94 2.70 0.91 2.03 -arrière-plans arrière_plan NOM m p 0.94 2.70 0.02 0.68 -arrière-saison arrière_saison NOM f s 0.00 1.22 0.00 1.22 -arrière-salle arrière_salle NOM f s 0.28 2.36 0.24 2.16 -arrière-salles arrière_salle NOM f p 0.28 2.36 0.04 0.20 -arrière-train arrière_train NOM m s 0.66 1.69 0.64 1.62 -arrière-trains arrière_train NOM m p 0.66 1.69 0.03 0.07 -arrêt-buffet arrêt_buffet NOM m s 0.01 0.07 0.00 0.07 -arrête-boeuf arrête_boeuf NOM m s 0.00 0.07 0.00 0.07 -arrêts-buffet arrêt_buffet NOM m p 0.01 0.07 0.01 0.00 -article-choc article_choc NOM m s 0.00 0.07 0.00 0.07 -artiste-peintre artiste_peintre NOM s 0.02 0.14 0.02 0.14 -as-rois as_rois NOM m 0.01 0.00 0.01 0.00 -aspirateurs-traîneaux aspirateurs_traîneaux NOM m p 0.00 0.07 0.00 0.07 -assa-foetida assa_foetida NOM f s 0.27 0.00 0.27 0.00 -assurance-accidents assurance_accidents NOM f s 0.10 0.00 0.10 0.00 -assurance-chômage assurance_chômage NOM f s 0.01 0.00 0.01 0.00 -assurance-maladie assurance_maladie NOM f s 0.04 0.07 0.04 0.07 -assurance-vie assurance_vie NOM f s 1.32 0.27 1.26 0.27 -assurances-vie assurance_vie NOM f p 1.32 0.27 0.06 0.00 -assureur-conseil assureur_conseil NOM m s 0.00 0.07 0.00 0.07 -attaché-case attaché_case NOM m s 0.01 0.54 0.00 0.54 -attachés-cases attaché_case NOM m p 0.01 0.54 0.01 0.00 -attraction-vedette attraction_vedette NOM f s 0.01 0.00 0.01 0.00 -attrape-couillon attrape_couillon NOM m s 0.04 0.07 0.03 0.00 -attrape-couillons attrape_couillon NOM m p 0.04 0.07 0.01 0.07 -attrape-mouche attrape_mouche NOM m s 0.04 0.07 0.01 0.00 -attrape-mouches attrape_mouche NOM m p 0.04 0.07 0.03 0.07 -attrape-nigaud attrape_nigaud NOM m s 0.10 0.20 0.10 0.20 -au-dedans au_dedans ADV 0.92 4.86 0.92 4.86 -au-dehors au_dehors ADV 0.91 11.42 0.91 11.42 -au-delà au_delà ADV 21.77 52.91 21.77 52.91 -au-dessous au_dessous ADV 2.98 24.59 2.98 24.59 -au-dessus au_dessus PRE 0.02 0.07 0.02 0.07 -au-devant au_devant ADV 0.98 11.08 0.98 11.08 -audio-visuel audio_visuel ADJ m s 0.06 0.20 0.06 0.20 -audio-visuelle audiovisuel ADJ f s 0.88 0.27 0.00 0.14 -aujourd'hui aujourd_hui ADV 360.17 158.38 360.17 158.38 -aéro-club aéro_club NOM m s 0.01 0.07 0.01 0.07 -austro-hongrois austro_hongrois ADJ m s 0.05 0.41 0.05 0.27 -austro-hongroises austro_hongrois ADJ f p 0.05 0.41 0.00 0.14 -auto-adhésive auto_adhésif ADJ f s 0.00 0.07 0.00 0.07 -auto-analyse auto_analyse NOM f s 0.02 0.07 0.02 0.07 -auto-immun auto_immun ADJ m s 0.12 0.00 0.01 0.00 -auto-immune auto_immun ADJ f s 0.12 0.00 0.10 0.00 -auto-intoxication auto_intoxication NOM f s 0.00 0.14 0.00 0.14 -auto-pilote auto_pilote NOM s 0.10 0.00 0.10 0.00 -auto-stop auto_stop NOM m s 1.06 0.74 1.06 0.74 -auto-stoppeur auto_stoppeur NOM m s 0.63 0.20 0.28 0.00 -auto-stoppeurs auto_stoppeur NOM m p 0.63 0.20 0.27 0.00 -auto-stoppeuse auto_stoppeur NOM f s 0.63 0.20 0.08 0.07 -auto-stoppeuses auto_stoppeuse NOM f p 0.04 0.00 0.04 0.00 -auto-tamponneuse auto_tamponneuse NOM f s 0.26 0.00 0.04 0.00 -auto-tamponneuses auto_tamponneuse NOM f p 0.26 0.00 0.22 0.00 -auto-école auto_école NOM f s 0.58 0.07 0.58 0.07 -auto-érotisme auto_érotisme NOM m s 0.02 0.00 0.02 0.00 -automobile-club automobile_club NOM f s 0.03 0.00 0.03 0.00 -aux aguets aux_aguets ADV 0.87 5.88 0.87 5.88 -avant-avant-dernier avant_avant_dernier NOM m s 0.00 0.07 0.00 0.07 -avant-bec avant_bec NOM m s 0.01 0.00 0.01 0.00 -avant-bras avant_bras NOM m 0.84 12.70 0.84 12.70 -avant-centre avant_centre NOM m s 0.28 0.20 0.28 0.20 -avant-clous avant_clou NOM m p 0.00 0.07 0.00 0.07 -avant-corps avant_corps NOM m 0.00 0.07 0.00 0.07 -avant-coureur avant_coureur ADJ m s 0.32 1.62 0.02 0.74 -avant-coureurs avant_coureur ADJ m p 0.32 1.62 0.29 0.88 -avant-courrière avant_courrier ADJ f s 0.00 0.07 0.00 0.07 -avant-courrières avant_courrier NOM f p 0.00 0.07 0.00 0.07 -avant-cours avant_cour NOM f p 0.00 0.07 0.00 0.07 -avant-dîner avant_dîner NOM m 0.00 0.07 0.00 0.07 -avant-dernier avant_dernier ADJ m s 0.45 1.96 0.11 0.88 -avant-dernière avant_dernier ADJ f s 0.45 1.96 0.34 1.08 -avant-garde avant_garde NOM f s 1.52 7.91 1.52 7.09 -avant-gardes avant_garde NOM f p 1.52 7.91 0.00 0.81 -avant-gardiste avant_gardiste ADJ s 0.23 0.20 0.21 0.14 -avant-gardistes avant_gardiste ADJ m p 0.23 0.20 0.03 0.07 -avant-gauche avant_gauche ADJ 0.10 0.00 0.10 0.00 -avant-goût avant_goût NOM m s 1.25 1.62 1.25 1.62 -avant-guerre avant_guerre NOM s 0.65 7.16 0.65 7.16 -avant-hier avant_hier ADV 6.69 8.78 6.69 8.78 -avant-monts avant_mont NOM m p 0.01 0.00 0.01 0.00 -avant-papier avant_papier NOM m s 0.00 0.20 0.00 0.20 -avant-plan avant_plan NOM m s 0.02 0.07 0.02 0.07 -avant-port avant_port NOM m s 0.00 0.07 0.00 0.07 -avant-poste avant_poste NOM m s 2.15 3.72 1.52 0.27 -avant-postes avant_poste NOM m p 2.15 3.72 0.62 3.45 -avant-première avant_première NOM f s 0.50 0.41 0.45 0.41 -avant-premières avant_première NOM f p 0.50 0.41 0.05 0.00 -avant-printemps avant_printemps NOM m 0.00 0.07 0.00 0.07 -avant-projet avant_projet NOM m s 0.04 0.00 0.04 0.00 -avant-propos avant_propos NOM m 0.05 0.41 0.05 0.41 -avant-scène avant_scène NOM f s 0.73 0.88 0.73 0.68 -avant-scènes avant_scène NOM f p 0.73 0.88 0.00 0.20 -avant-toit avant_toit NOM m s 0.03 0.27 0.01 0.27 -avant-toits avant_toit NOM m p 0.03 0.27 0.02 0.00 -avant-train avant_train NOM m s 0.02 0.34 0.01 0.20 -avant-trains avant_train NOM m p 0.02 0.34 0.01 0.14 -avant-trou avant_trou NOM m s 0.01 0.00 0.01 0.00 -avant-veille avant_veille NOM f s 0.01 3.65 0.01 3.65 -aveugle-né aveugle_né NOM m s 0.00 0.14 0.00 0.07 -aveugle-née aveugle_né NOM f s 0.00 0.14 0.00 0.07 -avion-cargo avion_cargo NOM m s 0.20 0.14 0.20 0.00 -avion-citerne avion_citerne NOM m s 0.03 0.00 0.03 0.00 -avion-suicide avion_suicide NOM m s 0.01 0.07 0.01 0.07 -avion-école avion_école NOM m s 0.01 0.00 0.01 0.00 -avions-cargos avion_cargo NOM m p 0.20 0.14 0.00 0.14 -avions-espions avions_espions NOM m p 0.01 0.00 0.01 0.00 -avocat-conseil avocat_conseil NOM m s 0.08 0.00 0.08 0.00 -ayants droit ayants_droit NOM m p 0.01 0.14 0.01 0.14 -aye-aye aye_aye NOM m s 0.01 0.00 0.01 0.00 -baby-boom baby_boom NOM m s 0.05 0.00 0.05 0.00 -baby-foot baby_foot NOM m 0.55 0.74 0.55 0.74 -baby-sitter baby_sitter NOM f s 7.85 0.20 7.00 0.14 -baby-sitters baby_sitter NOM f p 7.85 0.20 0.85 0.07 -baby-sitting baby_sitting NOM m s 1.63 0.41 1.63 0.41 -bachi-bouzouk bachi_bouzouk NOM m s 0.00 0.07 0.00 0.07 -back up back_up NOM m s 0.09 0.00 0.09 0.00 -bain-marie bain_marie NOM m s 0.08 0.95 0.08 0.88 -bains-marie bain_marie NOM m p 0.08 0.95 0.00 0.07 -baise-en-ville baise_en_ville NOM m s 0.03 0.20 0.03 0.20 -balai-brosse balai_brosse NOM m s 0.40 0.61 0.29 0.34 -balais-brosses balai_brosse NOM m p 0.40 0.61 0.11 0.27 -ball-trap ball_trap NOM m s 0.20 0.14 0.20 0.14 -balle-peau balle_peau ONO 0.00 0.07 0.00 0.07 -ballon-sonde ballon_sonde NOM m s 0.14 0.00 0.14 0.00 -banc-titre banc_titre NOM m s 0.14 0.00 0.14 0.00 -bande-annonce bande_annonce NOM f s 0.51 0.00 0.41 0.00 -bande-son bande_son NOM f s 0.09 0.27 0.09 0.27 -bandes-annonces bande_annonce NOM f p 0.51 0.00 0.10 0.00 -bank-note bank_note NOM f s 0.00 0.20 0.00 0.07 -bank-notes bank_note NOM f p 0.00 0.20 0.00 0.14 -bar-hôtel bar_hôtel NOM m s 0.01 0.00 0.01 0.00 -bar-mitsva bar_mitsva NOM f 0.41 0.07 0.41 0.07 -bar-restaurant bar_restaurant NOM m s 0.00 0.07 0.00 0.07 -bar-tabac bar_tabac NOM m s 0.03 0.61 0.03 0.61 -barbe-de-capucin barbe_de_capucin NOM f s 0.00 0.07 0.00 0.07 -bas-bleu bas_bleu NOM m s 0.01 0.47 0.01 0.34 -bas-bleus bas_bleu NOM m p 0.01 0.47 0.00 0.14 -bas-côté bas_côté NOM m s 0.60 5.34 0.58 3.58 -bas-côtés bas_côté NOM m p 0.60 5.34 0.02 1.76 -bas-empire bas_empire NOM m 0.00 0.07 0.00 0.07 -bas-flanc bas_flanc NOM m 0.00 0.14 0.00 0.14 -bas-fond bas_fond NOM m s 1.05 3.72 0.02 1.62 -bas-fonds bas_fond NOM m p 1.05 3.72 1.03 2.09 -bas-relief bas_relief NOM m s 0.09 1.22 0.08 0.34 -bas-reliefs bas_relief NOM m p 0.09 1.22 0.01 0.88 -bas-ventre bas_ventre NOM m s 0.23 2.30 0.23 2.30 -base-ball base_ball NOM m s 10.12 1.28 10.12 1.28 -basket-ball basket_ball NOM m s 1.38 0.34 1.38 0.34 -basse-cour basse_cour NOM f s 0.81 3.85 0.57 3.65 -basse-fosse basse_fosse NOM f s 0.01 0.20 0.01 0.14 -basse-taille basse_taille NOM f s 0.00 0.14 0.00 0.14 -basses-cours basse_cour NOM f p 0.81 3.85 0.23 0.20 -basses-fosses basse_fosse NOM f p 0.01 0.20 0.00 0.07 -bat-flanc bat_flanc NOM m 0.00 2.84 0.00 2.84 -bat-l'eau bat_l_eau NOM m s 0.00 0.07 0.00 0.07 -bateau-citerne bateau_citerne NOM m s 0.03 0.00 0.03 0.00 -bateau-lavoir bateau_lavoir NOM m s 0.00 0.20 0.00 0.14 -bateau-mouche bateau_mouche NOM m s 0.01 0.74 0.01 0.34 -bateau-pilote bateau_pilote NOM m s 0.01 0.00 0.01 0.00 -bateau-pompe bateau_pompe NOM m s 0.00 0.07 0.00 0.07 -bateaux-lavoirs bateau_lavoir NOM m p 0.00 0.20 0.00 0.07 -bateaux-mouches bateau_mouche NOM m p 0.01 0.74 0.00 0.41 -battle-dress battle_dress NOM m 0.00 0.14 0.00 0.14 -be-bop be_bop NOM m 0.31 0.34 0.31 0.34 -beat generation beat_generation NOM f s 0.00 0.14 0.00 0.14 -beau-fils beau_fils NOM m 1.29 1.01 1.27 1.01 -beau-frère beau_frère NOM m s 13.14 15.68 9.13 8.65 -beau-papa beau_papa NOM m s 0.23 0.14 0.23 0.14 -beau-parent beau_parent NOM m s 0.01 0.00 0.01 0.00 -beau-père beau_père NOM m s 16.54 14.05 9.29 7.09 -beaux-arts beaux_arts NOM m p 2.19 3.38 2.19 3.38 -beaux-enfants beaux_enfants NOM m p 0.06 0.00 0.06 0.00 -beaux-fils beau_fils NOM m p 1.29 1.01 0.03 0.00 -beaux-frères beau_frère NOM m p 13.14 15.68 0.62 1.01 -beaux-parents beaux_parents NOM m p 1.52 1.22 1.52 1.22 -bec-de-cane bec_de_cane NOM m s 0.01 1.42 0.01 1.42 -bec-de-lièvre bec_de_lièvre NOM m s 0.10 0.61 0.10 0.61 -bel canto bel_canto NOM m 0.26 0.41 0.26 0.41 -belle-doche belle_doche NOM f s 0.05 0.07 0.05 0.07 -belle-famille belle_famille NOM f s 0.71 1.22 0.71 1.15 -belle-fille belle_fille NOM f s 3.32 2.57 3.29 2.50 -belle-maman belle_maman NOM f s 0.85 0.34 0.85 0.34 -belle-mère beau_père NOM f s 16.54 14.05 7.17 6.82 -belle-à-voir belle_à_voir NOM f s 0.00 0.27 0.00 0.27 -belle-soeur beau_frère NOM f s 13.14 15.68 3.36 5.47 -belle lurette belle_lurette NOM f s 0.75 2.64 0.75 2.64 -belles-de-jour belle_de_jour NOM f p 0.00 0.07 0.00 0.07 -belles-de-nuit belle_de_nuit NOM f p 0.00 0.34 0.00 0.34 -belles-familles belle_famille NOM f p 0.71 1.22 0.00 0.07 -belles-filles belle_fille NOM f p 3.32 2.57 0.04 0.07 -belles-lettres belle_lettre NOM f p 0.00 0.41 0.00 0.41 -belles-mères beau_père NOM f p 16.54 14.05 0.08 0.14 -belles-soeurs beau_frère NOM f p 13.14 15.68 0.04 0.54 -bernard-l'ermite bernard_l_ermite NOM m 0.00 0.34 0.00 0.34 -bernard-l'hermite bernard_l_hermite NOM m 0.01 0.14 0.01 0.14 -best-seller best_seller NOM m s 1.09 0.81 0.82 0.54 -best-sellers best_seller NOM m p 1.09 0.81 0.27 0.27 -best of best_of NOM m s 0.17 0.00 0.17 0.00 -bien-aimé bien_aimé NOM m s 8.50 4.66 4.51 1.89 -bien-aimée bien_aimé NOM f s 8.50 4.66 3.76 2.43 -bien-aimées bien_aimé ADJ f p 8.19 4.39 0.04 0.20 -bien-aimés bien_aimé ADJ m p 8.19 4.39 0.68 0.54 -bien-disants bien_disant ADJ m p 0.00 0.07 0.00 0.07 -bien-fonds bien_fonds NOM m 0.00 0.07 0.00 0.07 -bien-fondé bien_fondé NOM m s 0.31 0.81 0.31 0.81 -bien-manger bien_manger NOM m 0.00 0.14 0.00 0.14 -bien-pensant bien_pensant ADJ m s 0.06 2.16 0.01 1.28 -bien-pensante bien_pensant ADJ f s 0.06 2.16 0.02 0.47 -bien-pensants bien_pensant ADJ m p 0.06 2.16 0.03 0.41 -bien-portant bien_portant ADJ m s 0.03 0.41 0.00 0.14 -bien-portants bien_portant ADJ m p 0.03 0.41 0.03 0.27 -bien-être bien_être NOM m 4.28 8.78 4.28 8.78 -big-bang big_bang NOM m 0.03 0.41 0.03 0.41 -big band big_band NOM m 0.05 0.00 0.05 0.00 -big bang big_bang NOM m 0.38 1.62 0.38 1.62 -bin's bin_s NOM m 0.03 0.00 0.03 0.00 -binet-simon binet_simon NOM m s 0.00 0.07 0.00 0.07 -bip-bip bip_bip NOM m s 0.47 0.00 0.47 0.00 -birth control birth_control NOM m 0.01 0.14 0.01 0.14 -bisou-éclair bisou_éclair NOM m s 0.01 0.00 0.01 0.00 -bla-bla-bla bla_bla_bla NOM m 0.41 0.34 0.41 0.34 -bla-bla bla_bla NOM m 1.51 1.49 1.11 1.49 -bla bla bla_bla NOM m 1.51 1.49 0.40 0.00 -black-bass black_bass NOM m 0.00 0.07 0.00 0.07 -black-jack black_jack NOM m s 0.75 0.00 0.75 0.00 -black-out black_out NOM m 1.00 0.88 1.00 0.88 -blanc-bec blanc_bec NOM m s 1.50 0.61 1.39 0.47 -blanc-bleu blanc_bleu NOM m s 0.16 0.41 0.16 0.41 -blanc-gris blanc_gris ADJ m s 0.00 0.07 0.00 0.07 -blanc-seing blanc_seing NOM m s 0.01 0.27 0.01 0.27 -blancs-becs blanc_bec NOM m p 1.50 0.61 0.12 0.14 -blancs-manteaux blancs_manteaux ADJ m p 0.00 0.07 0.00 0.07 -bleu-ciel bleu_ciel ADJ m s 0.00 0.07 0.00 0.07 -bleu-noir bleu_noir ADJ 0.01 1.01 0.01 1.01 -bleu-roi bleu_roi NOM m s 0.02 0.00 0.02 0.00 -bleu-vert bleu_vert ADJ 0.13 0.47 0.13 0.47 -bloc-cylindres bloc_cylindres NOM m 0.01 0.00 0.01 0.00 -bloc-moteur bloc_moteur NOM m s 0.01 0.00 0.01 0.00 -bloc-notes bloc_notes NOM m 0.47 0.61 0.47 0.61 -blocs-notes blocs_notes NOM m p 0.07 0.07 0.07 0.07 -bloody mary bloody_mary NOM m s 1.32 0.20 1.32 0.20 -blue-jean blue_jean NOM m s 0.17 2.03 0.05 1.08 -blue-jeans blue_jean NOM m p 0.17 2.03 0.10 0.95 -blue jeans blue_jean NOM m p 0.17 2.03 0.01 0.00 -blue note blue_note NOM f s 0.02 0.00 0.02 0.00 -boîtes-repas boîtes_repas NOM f p 0.00 0.07 0.00 0.07 -boat people boat_people NOM m 0.02 0.07 0.02 0.07 -body-building body_building NOM m s 0.01 0.00 0.01 0.00 -bombes-test bombes_test NOM f p 0.01 0.00 0.01 0.00 -bon-papa bon_papa NOM m s 0.07 1.55 0.07 1.55 -bonheur-du-jour bonheur_du_jour NOM m s 0.02 0.14 0.02 0.07 -bonheurs-du-jour bonheur_du_jour NOM m p 0.02 0.14 0.00 0.07 -bonne-maman bonne_maman NOM f s 0.14 2.03 0.14 2.03 -bons-cadeaux bon_cadeaux ADV 0.01 0.00 0.01 0.00 -bons-chrétiens bon_chrétien NOM m p 0.00 0.07 0.00 0.07 -boogie-woogie boogie_woogie NOM m s 0.28 0.07 0.28 0.07 -borne-fontaine borne_fontaine NOM f s 0.00 0.20 0.00 0.07 -bornes-fontaines borne_fontaine NOM f p 0.00 0.20 0.00 0.14 -bossa-nova bossa_nova NOM f s 0.12 0.07 0.12 0.07 -bouche-à-bouche bouche_à_bouche NOM m 0.00 0.20 0.00 0.20 -bouche-à-oreille bouche_à_oreille NOM m s 0.00 0.07 0.00 0.07 -bouche-trou bouche_trou NOM m s 0.25 0.07 0.22 0.07 -bouche-trous bouche_trou NOM m p 0.25 0.07 0.03 0.00 -boui-boui boui_boui NOM m s 0.39 0.27 0.35 0.27 -bouis-bouis boui_boui NOM m p 0.39 0.27 0.04 0.00 -boulanger-pâtissier boulanger_pâtissier NOM m s 0.00 0.14 0.00 0.14 -boule-de-neige boule_de_neige NOM f s 0.07 0.00 0.07 0.00 -boulot-refuge boulot_refuge ADJ m s 0.00 0.07 0.00 0.07 -bourre-mou bourre_mou NOM m s 0.01 0.00 0.01 0.00 -bourre-pif bourre_pif NOM m s 0.04 0.07 0.04 0.07 -bout-dehors bout_dehors NOM m 0.00 0.20 0.00 0.20 -bout-rimé bout_rimé NOM m s 0.14 0.07 0.14 0.00 -boute-en-train boute_en_train NOM m 0.39 0.74 0.39 0.74 -boutique-cadeaux boutique_cadeaux NOM f s 0.02 0.00 0.02 0.00 -bouton-d'or bouton_d_or NOM m s 0.01 0.20 0.00 0.14 -bouton-pression bouton_pression NOM m s 0.04 0.14 0.02 0.07 -boutons-d'or bouton_d_or NOM m p 0.01 0.20 0.01 0.07 -boutons-pression bouton_pression NOM m p 0.04 0.14 0.02 0.07 -bouts-rimés bout_rimé NOM m p 0.14 0.07 0.00 0.07 -bow-window bow_window NOM m s 0.00 0.54 0.00 0.27 -bow-windows bow_window NOM m p 0.00 0.54 0.00 0.27 -box-calf box_calf NOM m s 0.00 0.27 0.00 0.27 -box-office box_office NOM m s 0.35 0.20 0.35 0.14 -box-offices box_office NOM m p 0.35 0.20 0.00 0.07 -boxer-short boxer_short NOM m s 0.05 0.07 0.05 0.07 -boy-friend boy_friend NOM m s 0.00 0.14 0.00 0.14 -boy-scout boy_scout NOM m s 2.09 1.62 0.86 0.68 -boy-scoutesque boy_scoutesque ADJ f s 0.00 0.07 0.00 0.07 -boy-scouts boy_scout NOM m p 2.09 1.62 1.22 0.95 -brûle-gueule brûle_gueule NOM m s 0.00 0.41 0.00 0.41 -bracelet-montre bracelet_montre NOM m s 0.00 2.70 0.00 1.76 -bracelets-montres bracelet_montre NOM m p 0.00 2.70 0.00 0.95 -brain-trust brain_trust NOM m s 0.03 0.07 0.03 0.07 -branle-bas branle_bas NOM m 0.29 1.82 0.29 1.82 -brasserie-hôtel brasserie_hôtel NOM f s 0.00 0.07 0.00 0.07 -break-down break_down NOM m 0.00 0.14 0.00 0.14 -bric-à-brac bric_à_brac NOM m 0.00 3.24 0.00 3.24 -bric et de broc bric_et_de_broc ADV 0.03 0.47 0.03 0.47 -brigadier-chef brigadier_chef NOM m s 0.01 1.96 0.01 1.82 -brigadiers-chefs brigadier_chef NOM m p 0.01 1.96 0.00 0.14 -brise-bise brise_bise NOM m 0.00 0.41 0.00 0.41 -brise-fer brise_fer NOM m 0.01 0.00 0.01 0.00 -brise-glace brise_glace NOM m 0.07 0.20 0.07 0.20 -brise-jet brise_jet NOM m 0.00 0.07 0.00 0.07 -brise-lame brise_lame NOM m s 0.00 0.14 0.00 0.14 -brise-vent brise_vent NOM m 0.01 0.00 0.01 0.00 -broncho-pneumonie broncho_pneumonie NOM f s 0.00 0.41 0.00 0.41 -broncho-pneumopathie broncho_pneumopathie NOM f s 0.01 0.07 0.01 0.07 -brown sugar brown_sugar NOM m 0.00 0.07 0.00 0.07 -brèche-dents brèche_dent NOM p 0.00 0.07 0.00 0.07 -bubble-gum bubble_gum NOM m s 0.08 0.07 0.07 0.07 -bubble gum bubble_gum NOM m s 0.08 0.07 0.01 0.00 -bébés-éprouvette bébé_éprouvette NOM m p 0.01 0.00 0.01 0.00 -bucco-génital bucco_génital ADJ m s 0.11 0.00 0.06 0.00 -bucco-génitales bucco_génital ADJ f p 0.11 0.00 0.02 0.00 -bucco-génitaux bucco_génital ADJ m p 0.11 0.00 0.02 0.00 -buen retiro buen_retiro NOM m 0.00 0.14 0.00 0.14 -buisson-ardent buisson_ardent NOM m s 0.01 0.00 0.01 0.00 -bull-dog bull_dog NOM m s 0.01 0.68 0.01 0.61 -bull-dogs bull_dog NOM m p 0.01 0.68 0.00 0.07 -bull-finch bull_finch NOM m s 0.00 0.14 0.00 0.14 -bull-terrier bull_terrier NOM m s 0.02 0.00 0.02 0.00 -by-pass by_pass NOM m 0.03 0.00 0.03 0.00 -by night by_night ADJ m s 0.25 0.41 0.25 0.41 -bye-bye bye_bye ONO 2.36 0.34 2.36 0.34 -c'est-à-dire c_est_à_dire ADV 0.00 52.03 0.00 52.03 -côtes-du-rhône côtes_du_rhône NOM m s 0.00 0.47 0.00 0.47 -cache-brassière cache_brassière NOM m 0.00 0.07 0.00 0.07 -cache-cache cache_cache NOM m 3.42 2.70 3.42 2.70 -cache-coeur cache_coeur NOM s 0.00 0.14 0.00 0.14 -cache-col cache_col NOM m 0.01 1.35 0.01 1.35 -cache-corset cache_corset NOM m 0.00 0.14 0.00 0.14 -cache-nez cache_nez NOM m 0.15 2.09 0.15 2.09 -cache-pot cache_pot NOM m s 0.16 0.81 0.16 0.41 -cache-pots cache_pot NOM m p 0.16 0.81 0.00 0.41 -cache-poussière cache_poussière NOM m 0.01 0.20 0.01 0.20 -cache-sexe cache_sexe NOM m 0.03 0.27 0.03 0.27 -cache-tampon cache_tampon NOM m 0.00 0.20 0.00 0.20 -café-concert café_concert NOM m s 0.00 0.47 0.00 0.34 -café-crème café_crème NOM m s 0.00 0.95 0.00 0.95 -café-hôtel café_hôtel NOM m s 0.00 0.07 0.00 0.07 -café-restaurant café_restaurant NOM m s 0.00 0.41 0.00 0.41 -café-tabac café_tabac NOM m s 0.00 1.22 0.00 1.22 -café-théâtre café_théâtre NOM m s 0.00 0.27 0.00 0.27 -cafés-concerts café_concert NOM m p 0.00 0.47 0.00 0.14 -cahin-caha cahin_caha ADV 0.00 1.08 0.00 1.08 -cake-walk cake_walk NOM m s 0.03 0.00 0.03 0.00 -cale-pied cale_pied NOM m s 0.00 0.34 0.00 0.07 -cale-pieds cale_pied NOM m p 0.00 0.34 0.00 0.27 -call-girl call_girl NOM f s 1.36 0.14 0.98 0.14 -call-girls call_girl NOM f p 1.36 0.14 0.09 0.00 -call girl call_girl NOM f s 1.36 0.14 0.25 0.00 -call girls call_girl NOM f p 1.36 0.14 0.03 0.00 -camion-benne camion_benne NOM m s 0.06 0.14 0.03 0.00 -camion-citerne camion_citerne NOM m s 0.70 0.47 0.62 0.34 -camion-grue camion_grue NOM m s 0.00 0.14 0.00 0.14 -camions-bennes camion_benne NOM m p 0.06 0.14 0.03 0.14 -camions-citernes camion_citerne NOM m p 0.70 0.47 0.08 0.14 -camping-car camping_car NOM m s 1.06 0.00 1.01 0.00 -camping-cars camping_car NOM m p 1.06 0.00 0.05 0.00 -camping-gaz camping_gaz NOM m 0.00 0.47 0.00 0.47 -caméra-espion caméra_espion NOM f s 0.01 0.00 0.01 0.00 -canadian river canadian_river NOM s 0.00 0.07 0.00 0.07 -canapé-lit canapé_lit NOM m s 0.02 1.15 0.00 1.15 -canapés-lits canapé_lit NOM m p 0.02 1.15 0.02 0.00 -canne-épée canne_épée NOM f s 0.01 0.54 0.01 0.34 -cannes-épées canne_épée NOM f p 0.01 0.54 0.00 0.20 -cap-hornier cap_hornier NOM m s 0.00 0.07 0.00 0.07 -capital-risque capital_risque NOM m s 0.04 0.00 0.04 0.00 -caporal-chef caporal_chef NOM m s 0.52 0.54 0.52 0.54 -caput mortuum caput_mortuum NOM m s 0.00 0.07 0.00 0.07 -cardinal-archevêque cardinal_archevêque NOM m s 0.02 0.07 0.02 0.07 -cardinal-légat cardinal_légat NOM m s 0.00 0.07 0.00 0.07 -cardio-pulmonaire cardio_pulmonaire ADJ s 0.07 0.00 0.07 0.00 -cardio-respiratoire cardio_respiratoire ADJ f s 0.10 0.00 0.10 0.00 -cardio-vasculaire cardio_vasculaire ADJ s 0.14 0.07 0.14 0.07 -carte-clé carte_clé NOM f s 0.03 0.00 0.03 0.00 -carte-lettre carte_lettre NOM f s 0.00 0.41 0.00 0.34 -cartes-lettres carte_lettre NOM f p 0.00 0.41 0.00 0.07 -carton-pâte carton_pâte NOM m s 0.17 1.28 0.17 1.28 -carême-prenant carême_prenant NOM m s 0.00 0.07 0.00 0.07 -casse-bonbons casse_bonbon NOM m p 0.10 0.00 0.10 0.00 -casse-burnes casse_burnes NOM m 0.05 0.00 0.05 0.00 -casse-cou casse_cou ADJ s 0.35 0.54 0.35 0.54 -casse-couilles casse_couilles NOM m 1.47 0.20 1.47 0.20 -casse-croûte casse_croûte NOM m s 1.54 4.46 1.52 4.32 -casse-croûtes casse_croûte NOM m p 1.54 4.46 0.02 0.14 -casse-cul casse_cul ADJ 0.01 0.00 0.01 0.00 -casse-dalle casse_dalle NOM m 0.29 0.95 0.28 0.81 -casse-dalles casse_dalle NOM m p 0.29 0.95 0.01 0.14 -casse-graine casse_graine NOM m 0.00 0.95 0.00 0.95 -casse-gueule casse_gueule NOM m 0.10 0.07 0.10 0.07 -casse-noisette casse_noisette NOM m s 0.22 0.41 0.22 0.41 -casse-noisettes casse_noisettes NOM m 0.13 0.27 0.13 0.27 -casse-noix casse_noix NOM m 0.12 0.20 0.12 0.20 -casse-pattes casse_pattes NOM m 0.03 0.20 0.03 0.20 -casse-pieds casse_pieds ADJ s 0.87 1.22 0.87 1.22 -casse-pipe casse_pipe NOM m s 0.50 0.74 0.50 0.74 -casse-pipes casse_pipes NOM m 0.02 0.20 0.02 0.20 -casse-tête casse_tête NOM m 0.69 0.88 0.69 0.88 -casus belli casus_belli NOM m 0.05 0.00 0.05 0.00 -celle-ci celle_ci PRO:dem f s 38.71 57.57 38.71 57.57 -celle-là celle_là PRO:dem f s 52.63 28.65 52.63 28.65 -celles-ci celles_ci PRO:dem f p 6.64 9.39 6.64 9.39 -celles-là celles_là PRO:dem f p 5.90 6.08 5.90 6.08 -celui-ci celui_ci PRO:dem m s 45.97 71.76 45.97 71.76 -celui-là celui_là PRO:dem m s 78.13 56.89 78.13 56.89 -centre-ville centre_ville NOM m s 2.87 0.54 2.87 0.54 -cerf-roi cerf_roi NOM m s 0.01 0.00 0.01 0.00 -cerf-volant cerf_volant NOM m s 1.85 1.82 1.40 1.22 -cerfs-volants cerf_volant NOM m p 1.85 1.82 0.46 0.61 -cessez-le-feu cessez_le_feu NOM m 1.54 0.41 1.54 0.41 -ceux-ci ceux_ci PRO:dem m p 4.26 20.95 4.26 20.95 -ceux-là ceux_là PRO:dem m p 14.65 25.81 14.65 25.81 -ch'timi ch_timi ADJ s 0.27 0.07 0.27 0.00 -ch'timis ch_timi NOM p 0.14 0.20 0.00 0.07 -cha-cha-cha cha_cha_cha NOM m s 0.61 0.20 0.61 0.20 -chalutier-patrouilleur chalutier_patrouilleur NOM m s 0.00 0.07 0.00 0.07 -chambre-salon chambre_salon NOM f s 0.00 0.07 0.00 0.07 -champ' champ NOM m s 57.22 106.49 0.04 1.76 -champs élysées champs_élysées NOM m p 0.00 0.14 0.00 0.14 -chanteuse-vedette chanteuse_vedette NOM f s 0.00 0.07 0.00 0.07 -chapiteaux-dortoirs chapiteau_dortoir NOM m p 0.00 0.07 0.00 0.07 -chasse-d'eau chasse_d_eau NOM f s 0.00 0.07 0.00 0.07 -chasse-goupilles chasse_goupille NOM f p 0.00 0.20 0.00 0.20 -chasse-mouche chasse_mouche NOM m s 0.00 0.14 0.00 0.14 -chasse-mouches chasse_mouches NOM m 0.12 0.61 0.12 0.61 -chasse-neige chasse_neige NOM m 0.58 0.54 0.58 0.54 -chasse-pierres chasse_pierres NOM m 0.01 0.00 0.01 0.00 -chassé-croisé chassé_croisé NOM m s 0.02 1.01 0.00 0.68 -chassés-croisés chassé_croisé NOM m p 0.02 1.01 0.02 0.34 -chat-huant chat_huant NOM m s 0.00 0.27 0.00 0.27 -chat-tigre chat_tigre NOM m s 0.00 0.14 0.00 0.14 -chaud-froid chaud_froid NOM m s 0.00 0.41 0.00 0.34 -chaude-pisse chaude_pisse NOM f s 0.15 0.34 0.15 0.27 -chaudes-pisses chaude_pisse NOM f p 0.15 0.34 0.00 0.07 -chauds-froids chaud_froid NOM m p 0.00 0.41 0.00 0.07 -chauffe-biberon chauffe_biberon NOM m s 0.10 0.00 0.10 0.00 -chauffe-eau chauffe_eau NOM m 0.63 0.61 0.63 0.61 -chauffe-plats chauffe_plats NOM m 0.00 0.14 0.00 0.14 -chauffeur-livreur chauffeur_livreur NOM m s 0.00 0.14 0.00 0.14 -chausse-pied chausse_pied NOM m s 0.24 0.14 0.24 0.14 -chausse-trape chausse_trape NOM f s 0.00 0.20 0.00 0.07 -chausse-trapes chausse_trape NOM f p 0.00 0.20 0.00 0.14 -chausse-trappe chausse_trappe NOM f s 0.00 0.07 0.00 0.07 -chauve-souris chauve_souris NOM f s 7.16 4.66 5.43 2.23 -chauves-souris chauve_souris NOM f p 7.16 4.66 1.73 2.43 -check-list check_list NOM f s 0.22 0.00 0.22 0.00 -check-up check_up NOM m 0.69 0.00 0.68 0.00 -check up check_up NOM m 0.69 0.00 0.01 0.00 -cheese-cake cheese_cake NOM m s 0.32 0.00 0.28 0.00 -cheese-cakes cheese_cake NOM m p 0.32 0.00 0.05 0.00 -chef-adjoint chef_adjoint NOM s 0.04 0.00 0.04 0.00 -chef-d'oeuvre chef_d_oeuvre NOM m s 3.34 12.77 2.56 8.51 -chef-d'oeuvres chef_d_oeuvres NOM s 0.11 0.00 0.11 0.00 -chef-lieu chef_lieu NOM m s 0.19 1.82 0.19 1.82 -chefs-d'oeuvre chef_d_oeuvre NOM m p 3.34 12.77 0.77 4.26 -chefs-lieux chefs_lieux NOM m p 0.00 0.27 0.00 0.27 -cherche-midi cherche_midi NOM m 0.01 0.27 0.01 0.27 -cheval-vapeur cheval_vapeur NOM m s 0.03 0.20 0.02 0.07 -chevau-léger chevau_léger NOM m s 0.01 0.14 0.01 0.14 -chevaux-vapeur cheval_vapeur NOM m p 0.03 0.20 0.01 0.14 -chewing-gum chewing_gum NOM m s 0.01 3.58 0.00 3.11 -chewing-gums chewing_gum NOM m p 0.01 3.58 0.01 0.41 -chewing gum chewing_gum NOM m s 0.01 3.58 0.00 0.07 -chez-soi chez_soi NOM m 0.31 0.41 0.31 0.41 -chic-type chic_type ADJ m s 0.01 0.00 0.01 0.00 -chiche-kebab chiche_kebab NOM m s 0.24 0.07 0.24 0.07 -chien-assis chien_assis NOM m 0.00 0.07 0.00 0.07 -chien-loup chien_loup NOM m s 0.27 1.08 0.14 1.08 -chien-robot chien_robot NOM m s 0.01 0.00 0.01 0.00 -chien-étoile chien_étoile NOM m s 0.00 0.07 0.00 0.07 -chiens-loups chien_loup NOM m p 0.27 1.08 0.12 0.00 -chiffres-clés chiffres_clé NOM m p 0.00 0.07 0.00 0.07 -chirurgien-dentiste chirurgien_dentiste NOM s 0.02 0.27 0.02 0.27 -chop suey chop_suey NOM m s 0.13 0.00 0.13 0.00 -château-fort château_fort NOM m s 0.00 0.07 0.00 0.07 -chou-fleur chou_fleur NOM m s 0.54 1.01 0.54 1.01 -chou-palmiste chou_palmiste NOM m s 0.00 0.07 0.00 0.07 -chou-rave chou_rave NOM m s 0.00 0.20 0.00 0.20 -choux-fleurs choux_fleurs NOM m p 0.57 1.28 0.57 1.28 -choux-raves choux_raves NOM m p 0.00 0.07 0.00 0.07 -chrétien-démocrate chrétien_démocrate ADJ m s 0.16 0.00 0.01 0.00 -chrétiens-démocrates chrétien_démocrate ADJ m p 0.16 0.00 0.14 0.00 -chèque-cadeau chèque_cadeau NOM m s 0.05 0.00 0.05 0.00 -chèvre-pied chèvre_pied NOM s 0.00 0.14 0.00 0.14 -chêne-liège chêne_liège NOM m s 0.00 0.95 0.00 0.14 -chênes-lièges chêne_liège NOM m p 0.00 0.95 0.00 0.81 -ci-après ci_après ADV 0.15 0.61 0.15 0.61 -ci-contre ci_contre ADV 0.00 0.07 0.00 0.07 -ci-dessous ci_dessous ADV 0.13 0.61 0.13 0.61 -ci-dessus ci_dessus ADV 0.20 1.28 0.20 1.28 -ci-gît ci_gît ADV 0.70 0.34 0.70 0.34 -ci-inclus ci_inclus ADJ m 0.03 0.14 0.01 0.07 -ci-incluse ci_inclus ADJ f s 0.03 0.14 0.01 0.07 -ci-incluses ci_inclus ADJ f p 0.03 0.14 0.01 0.00 -ci-joint ci_joint ADJ m s 0.62 1.89 0.59 1.69 -ci-jointe ci_joint ADJ f s 0.62 1.89 0.04 0.14 -ci-joints ci_joint ADJ m p 0.62 1.89 0.00 0.07 -cinquante-cinq cinquante_cinq ADJ:num 0.20 2.50 0.20 2.50 -cinquante-deux cinquante_deux ADJ:num 0.21 1.42 0.21 1.42 -cinquante-huit cinquante_huit ADJ:num 0.06 0.88 0.06 0.88 -cinquante-huitième cinquante_huitième ADJ 0.00 0.07 0.00 0.07 -cinquante-neuf cinquante_neuf ADJ:num 0.03 0.34 0.03 0.34 -cinquante-neuvième cinquante_neuvième ADJ 0.00 0.07 0.00 0.07 -cinquante-quatre cinquante_quatre ADJ:num 0.13 0.68 0.13 0.68 -cinquante-sept cinquante_sept ADJ:num 0.08 0.95 0.08 0.95 -cinquante-septième cinquante_septième ADJ 0.03 0.07 0.03 0.07 -cinquante-six cinquante_six ADJ:num 0.18 0.68 0.18 0.68 -cinquante-sixième cinquante_sixième ADJ 0.00 0.14 0.00 0.14 -cinquante-trois cinquante_trois ADJ:num 0.15 0.81 0.15 0.81 -cinquante-troisième cinquante_troisième ADJ 0.00 0.14 0.00 0.14 -ciné-club ciné_club NOM m s 0.00 0.74 0.00 0.54 -ciné-clubs ciné_club NOM m p 0.00 0.74 0.00 0.20 -ciné-roman ciné_roman NOM m s 0.00 0.14 0.00 0.14 -cinéma-vérité cinéma_vérité NOM m s 0.20 0.07 0.20 0.07 -circonscriptions-clés circonscriptions_clé NOM f p 0.01 0.00 0.01 0.00 -citizen band citizen_band NOM f s 0.01 0.00 0.01 0.00 -cité-dortoir cité_dortoir NOM f s 0.00 0.27 0.00 0.14 -cité-jardin cité_jardin NOM f s 0.00 0.20 0.00 0.20 -cités-dortoirs cité_dortoir NOM f p 0.00 0.27 0.00 0.14 -clair-obscur clair_obscur NOM m s 0.02 1.96 0.02 1.62 -claire-voie claire_voie NOM f s 0.01 2.43 0.01 1.96 -claires-voies claire_voie NOM f p 0.01 2.43 0.00 0.47 -clairs-obscurs clair_obscur NOM m p 0.02 1.96 0.00 0.34 -claque-merde claque_merde NOM m s 0.19 0.27 0.19 0.27 -clic-clac clic_clac ONO 0.10 0.07 0.10 0.07 -client-roi client_roi NOM m s 0.00 0.07 0.00 0.07 -clin-d'oeil clin_d_oeil NOM m s 0.01 0.00 0.01 0.00 -cloche-pied cloche_pied NOM f s 0.01 0.14 0.01 0.14 -clopin-clopant clopin_clopant ADV 0.00 0.14 0.00 0.14 -close-combat close_combat NOM m s 0.04 0.07 0.04 0.07 -close-up close_up NOM m s 0.01 0.07 0.01 0.07 -club-house club_house NOM m s 0.05 0.07 0.05 0.07 -co-animateur co_animateur NOM m s 0.03 0.00 0.03 0.00 -co-auteur co_auteur NOM m s 0.46 0.00 0.46 0.00 -co-avocat co_avocat NOM m s 0.01 0.00 0.01 0.00 -co-capitaine co_capitaine NOM m s 0.09 0.00 0.09 0.00 -co-dépendance co_dépendance NOM f s 0.01 0.00 0.01 0.00 -co-dépendante co_dépendant ADJ f s 0.01 0.00 0.01 0.00 -co-existence co_existence NOM f s 0.00 0.07 0.00 0.07 -co-exister co_exister VER 0.05 0.00 0.05 0.00 inf; -co-habiter co_habiter VER 0.02 0.00 0.02 0.00 inf; -co-locataire co_locataire NOM s 0.22 0.00 0.22 0.00 -co-pilote co_pilote NOM s 0.49 0.00 0.49 0.00 -co-pilotes co_pilote ADJ p 0.28 0.00 0.01 0.00 -co-production co_production NOM f s 0.11 0.00 0.01 0.00 -co-productions co_production NOM f p 0.11 0.00 0.10 0.00 -co-proprio co_proprio NOM m s 0.01 0.07 0.01 0.00 -co-proprios co_proprio NOM m p 0.01 0.07 0.00 0.07 -co-propriétaire co_propriétaire NOM s 0.19 0.27 0.05 0.00 -co-propriétaires co_propriétaire NOM p 0.19 0.27 0.14 0.27 -co-propriété co_propriété NOM f s 0.00 0.34 0.00 0.34 -co-président co_président NOM m s 0.02 0.07 0.02 0.07 -co-responsable co_responsable ADJ s 0.01 0.07 0.01 0.07 -co-signer co_signer VER 0.07 0.00 0.07 0.00 inf; -co-signons cosigner VER 0.32 0.00 0.01 0.00 ind:pre:1p; -co-tuteur co_tuteur NOM m s 0.00 0.07 0.00 0.07 -co-éducative co_éducatif ADJ f s 0.01 0.00 0.01 0.00 -co-équipier co_équipier NOM m s 0.21 0.00 0.21 0.00 -co-équipière coéquipier NOM f s 4.20 0.47 0.06 0.00 -co-vedette co_vedette NOM f s 0.02 0.00 0.02 0.00 -co-voiturage co_voiturage NOM m s 0.07 0.00 0.07 0.00 -coca-cola coca_cola NOM m 0.41 1.01 0.41 1.01 -cocotte-minute cocotte_minute NOM f s 0.07 0.34 0.07 0.34 -code-barre code_barre NOM m s 0.07 0.00 0.07 0.00 -code-barres code_barres NOM m 0.18 0.00 0.18 0.00 -code-clé code_clé NOM m s 0.01 0.00 0.01 0.00 -codes-clés codes_clé NOM m p 0.01 0.00 0.01 0.00 -coeur-poumons coeur_poumon NOM m p 0.03 0.07 0.03 0.07 -coffee shop coffee_shop NOM m s 0.10 0.00 0.10 0.00 -coffre-fort coffre_fort NOM m s 4.62 3.92 4.17 3.24 -coffres-forts coffre_fort NOM m p 4.62 3.92 0.45 0.68 -coin-coin coin_coin NOM m s 0.19 0.34 0.19 0.34 -coin-repas coin_repas NOM m s 0.02 0.00 0.02 0.00 -col-de-cygne col_de_cygne NOM m s 0.01 0.00 0.01 0.00 -col-vert col_vert NOM m s 0.12 0.14 0.12 0.07 -cold-cream cold_cream NOM m s 0.03 0.07 0.03 0.07 -colin-maillard colin_maillard NOM m s 0.93 0.95 0.93 0.95 -colis-cadeau colis_cadeau NOM m 0.02 0.00 0.02 0.00 -colis-repas colis_repas NOM m 0.00 0.07 0.00 0.07 -cols-de-cygne cols_de_cygne NOM m p 0.00 0.07 0.00 0.07 -cols-verts col_vert NOM m p 0.12 0.14 0.00 0.07 -comic book comic_book NOM m s 0.08 0.07 0.01 0.00 -comic books comic_book NOM m p 0.08 0.07 0.07 0.07 -commandos-suicide commando_suicide NOM m p 0.01 0.00 0.01 0.00 -commedia dell'arte commedia_dell_arte NOM f s 0.02 0.14 0.02 0.14 -commis-voyageur commis_voyageur NOM m s 0.05 0.41 0.05 0.20 -commis-voyageurs commis_voyageur NOM m p 0.05 0.41 0.00 0.20 -commissaire-adjoint commissaire_adjoint NOM s 0.02 0.07 0.02 0.07 -commissaire-priseur commissaire_priseur NOM m s 0.06 0.81 0.06 0.61 -commissaires-priseurs commissaire_priseur NOM m p 0.06 0.81 0.00 0.20 -commode-toilette commode_toilette NOM f s 0.00 0.14 0.00 0.14 -complet-veston complet_veston NOM m s 0.00 0.54 0.00 0.54 -compte-fils compte_fils NOM m 0.00 0.34 0.00 0.34 -compte-gouttes compte_gouttes NOM m 0.45 1.42 0.45 1.42 -compte-rendu compte_rendu NOM m s 2.21 0.14 2.06 0.07 -compte-tours compte_tours NOM m 0.04 0.41 0.04 0.41 -comptes-rendus compte_rendu NOM m p 2.21 0.14 0.16 0.07 -conduite-intérieure conduite_intérieure NOM f s 0.00 0.27 0.00 0.27 -conférences-débats conférences_débat NOM f p 0.00 0.07 0.00 0.07 -contrat-type contrat_type NOM m s 0.01 0.07 0.01 0.07 -contre-accusations contre_accusation NOM f p 0.01 0.00 0.01 0.00 -contre-alizés contre_alizé NOM m p 0.00 0.07 0.00 0.07 -contre-allée contre_allée NOM f s 0.05 0.34 0.04 0.20 -contre-allées contre_allée NOM f p 0.05 0.34 0.01 0.14 -contre-amiral contre_amiral NOM m s 0.19 0.07 0.19 0.07 -contre-appel contre_appel NOM m s 0.00 0.07 0.00 0.07 -contre-assurance contre_assurance NOM f s 0.00 0.07 0.00 0.07 -contre-attaqua contre_attaquer VER 0.71 1.96 0.01 0.07 ind:pas:3s; -contre-attaquaient contre_attaquer VER 0.71 1.96 0.00 0.20 ind:imp:3p; -contre-attaquait contre_attaquer VER 0.71 1.96 0.00 0.07 ind:imp:3s; -contre-attaquant contre_attaquer VER 0.71 1.96 0.00 0.07 par:pre; -contre-attaque contre_attaque NOM f s 1.46 2.16 1.35 1.69 -contre-attaquent contre_attaquer VER 0.71 1.96 0.07 0.20 ind:pre:3p; -contre-attaquer contre_attaquer VER 0.71 1.96 0.37 0.95 inf; -contre-attaquera contre_attaquer VER 0.71 1.96 0.01 0.00 ind:fut:3s; -contre-attaquerons contre_attaquer VER 0.71 1.96 0.03 0.07 ind:fut:1p; -contre-attaques contre_attaque NOM f p 1.46 2.16 0.11 0.47 -contre-attaquons contre_attaquer VER 0.71 1.96 0.03 0.07 ind:pre:1p; -contre-attaquèrent contre_attaquer VER 0.71 1.96 0.03 0.07 ind:pas:3p; -contre-attaqué contre_attaquer VER m s 0.71 1.96 0.07 0.07 par:pas; -contre-champ contre_champ NOM m s 0.00 0.07 0.00 0.07 -contre-chant contre_chant NOM m s 0.00 0.14 0.00 0.14 -contre-chocs contre_choc NOM m p 0.00 0.07 0.00 0.07 -contre-clés contre_clé NOM f p 0.00 0.07 0.00 0.07 -contre-courant contre_courant NOM m s 0.59 1.96 0.59 1.96 -contre-culture contre_culture NOM f s 0.03 0.00 0.03 0.00 -contre-emploi contre_emploi NOM m s 0.01 0.00 0.01 0.00 -contre-espionnage contre_espionnage NOM m s 0.67 0.34 0.67 0.34 -contre-exemple contre_exemple NOM m s 0.00 0.07 0.00 0.07 -contre-expertise contre_expertise NOM f s 0.52 0.27 0.51 0.20 -contre-expertises contre_expertise NOM f p 0.52 0.27 0.01 0.07 -contre-feu contre_feu NOM m s 0.07 0.00 0.07 0.00 -contre-feux contre_feux NOM m p 0.00 0.07 0.00 0.07 -contre-fiches contre_fiche NOM f p 0.00 0.07 0.00 0.07 -contre-fil contre_fil NOM m s 0.00 0.07 0.00 0.07 -contre-gré contre_gré NOM m s 0.00 0.14 0.00 0.14 -contre-indication contre_indication NOM f s 0.07 0.00 0.04 0.00 -contre-indications contre_indication NOM f p 0.07 0.00 0.04 0.00 -contre-indiqué contre_indiquer VER m s 0.06 0.14 0.06 0.14 par:pas; -contre-interrogatoire contre_interrogatoire NOM m s 0.48 0.00 0.46 0.00 -contre-interrogatoires contre_interrogatoire NOM m p 0.48 0.00 0.02 0.00 -contre-jour contre_jour NOM m s 0.39 6.01 0.39 6.01 -contre-la-montre contre_la_montre NOM m s 0.80 0.00 0.80 0.00 -contre-lame contre_lame NOM f s 0.00 0.07 0.00 0.07 -contre-lettre contre_lettre NOM f s 0.00 0.14 0.00 0.14 -contre-manifestants contre_manifestant NOM m p 0.00 0.14 0.00 0.14 -contre-manifestent contre_manifester VER 0.00 0.07 0.00 0.07 ind:pre:3p; -contre-mesure contre_mesure NOM f s 0.42 0.00 0.04 0.00 -contre-mesures contre_mesure NOM f p 0.42 0.00 0.39 0.00 -contre-mine contre_mine NOM f s 0.00 0.14 0.00 0.07 -contre-mines contre_mine NOM f p 0.00 0.14 0.00 0.07 -contre-miné contre_miner VER m s 0.00 0.07 0.00 0.07 par:pas; -contre-nature contre_nature ADJ s 0.41 0.14 0.41 0.14 -contre-offensive contre_offensive NOM f s 0.29 0.41 0.18 0.41 -contre-offensives contre_offensive NOM f p 0.29 0.41 0.11 0.00 -contre-ordre contre_ordre NOM m s 0.47 0.95 0.46 0.81 -contre-ordres contre_ordre NOM m p 0.47 0.95 0.01 0.14 -contre-pente contre_pente NOM f s 0.00 0.34 0.00 0.34 -contre-performance contre_performance NOM f s 0.14 0.07 0.14 0.00 -contre-performances contre_performance NOM f p 0.14 0.07 0.00 0.07 -contre-pied contre_pied NOM m s 0.04 0.61 0.04 0.54 -contre-pieds contre_pied NOM m p 0.04 0.61 0.00 0.07 -contre-plaqué contre_plaqué NOM m s 0.10 0.54 0.10 0.54 -contre-plongée contre_plongée NOM f s 0.23 0.47 0.23 0.47 -contre-pouvoirs contre_pouvoir NOM m p 0.00 0.07 0.00 0.07 -contre-pression contre_pression NOM f s 0.02 0.00 0.02 0.00 -contre-productif contre_productif ADJ m s 0.10 0.00 0.09 0.00 -contre-productive contre_productif ADJ f s 0.10 0.00 0.01 0.00 -contre-propagande contre_propagande NOM f s 0.02 0.07 0.02 0.07 -contre-proposition contre_proposition NOM f s 0.40 0.07 0.39 0.07 -contre-propositions contre_proposition NOM f p 0.40 0.07 0.01 0.00 -contre-réaction contre_réaction NOM f s 0.01 0.00 0.01 0.00 -contre-réforme contre_réforme NOM f s 0.00 0.61 0.00 0.61 -contre-révolution contre_révolution NOM f s 0.37 0.34 0.37 0.34 -contre-révolutionnaire contre_révolutionnaire ADJ s 0.14 0.27 0.03 0.00 -contre-révolutionnaires contre_révolutionnaire ADJ p 0.14 0.27 0.11 0.27 -contre-terrorisme contre_terrorisme NOM m s 0.07 0.00 0.07 0.00 -contre-terroriste contre_terroriste ADJ f s 0.00 0.07 0.00 0.07 -contre-test contre_test NOM m s 0.00 0.07 0.00 0.07 -contre-torpilleur contre_torpilleur NOM m s 0.20 1.22 0.08 0.61 -contre-torpilleurs contre_torpilleur NOM m p 0.20 1.22 0.12 0.61 -contre-transfert contre_transfert NOM m s 0.01 0.00 0.01 0.00 -contre-épreuve contre_épreuve NOM f s 0.01 0.07 0.00 0.07 -contre-épreuves contre_épreuve NOM f p 0.01 0.07 0.01 0.00 -contre-ut contre_ut NOM m 0.04 0.07 0.04 0.07 -contre-voie contre_voie NOM f s 0.00 0.27 0.00 0.27 -contre-vérité contre_vérité NOM f s 0.02 0.07 0.02 0.07 -coolie-pousse coolie_pousse NOM m s 0.01 0.00 0.01 0.00 -coq-à-l'âne coq_à_l_âne NOM m 0.00 0.14 0.00 0.14 -cordon-bleu cordon_bleu NOM m s 0.27 0.14 0.26 0.07 -cordons-bleus cordon_bleu NOM m p 0.27 0.14 0.01 0.07 -corn-flakes corn_flakes NOM m p 0.22 0.00 0.22 0.00 -corn flakes corn_flakes NOM f p 0.14 0.07 0.14 0.07 -corps-mort corps_mort NOM m s 0.00 0.07 0.00 0.07 -corpus delicti corpus_delicti NOM m s 0.03 0.00 0.03 0.00 -cosy-corner cosy_corner NOM m s 0.00 0.54 0.00 0.47 -cosy-corners cosy_corner NOM m p 0.00 0.54 0.00 0.07 -cot cot codec cot_cot_codec ONO 0.14 0.07 0.14 0.07 -coton-tige coton_tige NOM m s 0.43 0.07 0.20 0.00 -cotons-tiges coton_tige NOM m p 0.43 0.07 0.23 0.07 -cou-de-pied cou_de_pied NOM m s 0.01 0.27 0.01 0.27 -couche-culotte couche_culotte NOM f s 0.22 0.27 0.11 0.07 -couches-culottes couche_culotte NOM f p 0.22 0.27 0.11 0.20 -couci-couça couci_couça ADV 0.60 0.20 0.60 0.20 -couloir-symbole couloir_symbole NOM m s 0.00 0.07 0.00 0.07 -coup-de-poing coup_de_poing NOM m s 0.13 0.00 0.13 0.00 -coupe-chou coupe_chou NOM m s 0.05 0.34 0.05 0.34 -coupe-choux coupe_choux NOM m 0.14 0.27 0.14 0.27 -coupe-cigare coupe_cigare NOM m s 0.02 0.20 0.02 0.07 -coupe-cigares coupe_cigare NOM m p 0.02 0.20 0.00 0.14 -coupe-circuit coupe_circuit NOM m s 0.13 0.34 0.11 0.27 -coupe-circuits coupe_circuit NOM m p 0.13 0.34 0.02 0.07 -coupe-coupe coupe_coupe NOM m 0.10 0.68 0.10 0.68 -coupe-faim coupe_faim NOM m s 0.09 0.07 0.08 0.07 -coupe-faims coupe_faim NOM m p 0.09 0.07 0.01 0.00 -coupe-feu coupe_feu NOM m s 0.12 0.14 0.12 0.14 -coupe-file coupe_file NOM m s 0.03 0.00 0.03 0.00 -coupe-gorge coupe_gorge NOM m 0.28 0.61 0.28 0.61 -coupe-jarret coupe_jarret NOM m s 0.03 0.00 0.02 0.00 -coupe-jarrets coupe_jarret NOM m p 0.03 0.00 0.01 0.00 -coupe-ongle coupe_ongle NOM m s 0.05 0.00 0.05 0.00 -coupe-ongles coupe_ongles NOM m 0.26 0.14 0.26 0.14 -coupe-papier coupe_papier NOM m 0.36 0.95 0.36 0.95 -coupe-pâte coupe_pâte NOM m s 0.00 0.07 0.00 0.07 -coupe-racines coupe_racine NOM m p 0.00 0.07 0.00 0.07 -coupe-vent coupe_vent NOM m s 0.31 0.34 0.31 0.34 -coupon-cadeau coupon_cadeau NOM m s 0.01 0.00 0.01 0.00 -coups-de-poing coups_de_poing NOM m p 0.00 0.14 0.00 0.14 -cour-jardin cour_jardin NOM f s 0.00 0.07 0.00 0.07 -course-poursuite course_poursuite NOM f s 0.34 0.00 0.34 0.00 -court-bouillon court_bouillon NOM m s 0.29 0.68 0.29 0.68 -court-circuit court_circuit NOM m s 1.53 1.76 1.47 1.55 -court-circuitait court_circuiter VER 0.83 0.54 0.00 0.07 ind:imp:3s; -court-circuitant court_circuiter VER 0.83 0.54 0.00 0.07 par:pre; -court-circuite court_circuiter VER 0.83 0.54 0.14 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; -court-circuiter court_circuiter VER 0.83 0.54 0.29 0.20 inf; -court-circuits court_circuit VER 0.01 0.00 0.01 0.00 ind:pre:3s; -court-circuits court_circuits NOM m s 0.02 0.00 0.02 0.00 -court-circuité court_circuiter VER m s 0.83 0.54 0.28 0.07 par:pas; -court-circuitée court_circuiter VER f s 0.83 0.54 0.02 0.07 par:pas; -court-circuitées court_circuiter VER f p 0.83 0.54 0.10 0.00 par:pas; -court-courrier court_courrier NOM m s 0.01 0.00 0.01 0.00 -court-jus court_jus NOM m 0.03 0.00 0.03 0.00 -court-métrage court_métrage NOM m s 0.17 0.00 0.17 0.00 -court-vêtue court_vêtu ADJ f s 0.01 0.14 0.01 0.00 -court-vêtues court_vêtu ADJ f p 0.01 0.14 0.00 0.14 -courts-circuits court_circuit NOM m p 1.53 1.76 0.07 0.20 -cous-de-pied cous_de_pied NOM m p 0.00 0.07 0.00 0.07 -couteau-scie couteau_scie NOM m s 0.01 0.07 0.01 0.07 -couvre-chef couvre_chef NOM m s 0.58 1.55 0.42 1.35 -couvre-chefs couvre_chef NOM m p 0.58 1.55 0.16 0.20 -couvre-feu couvre_feu NOM m s 3.63 3.11 3.63 3.11 -couvre-feux couvre_feux NOM m p 0.04 0.00 0.04 0.00 -couvre-lit couvre_lit NOM m s 0.33 2.77 0.30 2.70 -couvre-lits couvre_lit NOM m p 0.33 2.77 0.03 0.07 -couvre-pied couvre_pied NOM m s 0.01 0.47 0.01 0.47 -couvre-pieds couvre_pieds NOM m 0.01 0.47 0.01 0.47 -cover-girl cover_girl NOM f s 0.14 0.47 0.14 0.20 -cover-girls cover_girl NOM f p 0.14 0.47 0.00 0.27 -cow-boy cow_boy NOM m s 0.01 5.27 0.00 3.11 -cow-boys cow_boy NOM m p 0.01 5.27 0.01 2.16 -crapaud-buffle crapaud_buffle NOM m s 0.01 0.14 0.01 0.00 -crapauds-buffles crapaud_buffle NOM m p 0.01 0.14 0.00 0.14 -crash-test crash_test NOM m s 0.02 0.00 0.02 0.00 -crayon-encre crayon_encre NOM m s 0.00 0.27 0.00 0.27 -crayons-feutres crayon_feutre NOM m p 0.00 0.14 0.00 0.14 -cric-crac cric_crac ONO 0.00 0.07 0.00 0.07 -cris-craft cris_craft NOM m s 0.00 0.07 0.00 0.07 -croa-croa croa_croa ADV 0.00 0.41 0.00 0.27 -croa croa croa_croa ADV 0.00 0.41 0.00 0.14 -croc-en-jambe croc_en_jambe NOM m s 0.16 0.61 0.16 0.61 -croche-patte croche_patte NOM m s 0.17 0.34 0.17 0.34 -croche-pied croche_pied NOM m s 0.56 0.68 0.43 0.41 -croche-pieds croche_pied NOM m p 0.56 0.68 0.14 0.27 -crocs-en-jambe crocs_en_jambe NOM m p 0.00 0.20 0.00 0.20 -croque-madame croque_madame NOM m s 0.03 0.00 0.03 0.00 -croque-mitaine croque_mitaine NOM m s 0.61 0.20 0.61 0.20 -croque-monsieur croque_monsieur NOM m 0.28 0.14 0.28 0.14 -croque-mort croque_mort NOM m s 2.20 3.31 1.81 1.28 -croque-morts croque_mort NOM m p 2.20 3.31 0.39 2.03 -croquis-minute croquis_minute NOM m 0.00 0.07 0.00 0.07 -cross-country cross_country NOM m s 0.05 0.34 0.05 0.34 -crédit-bail crédit_bail NOM m s 0.02 0.00 0.02 0.00 -crêtes-de-coq crêtes_de_coq NOM f p 0.03 0.07 0.03 0.07 -cui-cui cui_cui NOM m 0.15 0.34 0.15 0.34 -cuisse-madame cuisse_madame NOM f s 0.00 0.07 0.00 0.07 -cul-blanc cul_blanc NOM m s 0.16 0.20 0.01 0.14 -cul-bénit cul_bénit NOM m s 0.08 0.20 0.02 0.07 -cul-cul cul_cul ADJ 0.04 0.00 0.04 0.00 -cul-de-basse-fosse cul_de_basse_fosse NOM m s 0.01 0.41 0.01 0.41 -cul-de-four cul_de_four NOM m s 0.00 0.20 0.00 0.20 -cul-de-jatte cul_de_jatte NOM m s 0.54 1.42 0.42 1.08 -cul-de-lampe cul_de_lampe NOM m s 0.01 0.20 0.01 0.14 -cul-de-plomb cul_de_plomb NOM m s 0.00 0.07 0.00 0.07 -cul-de-porc cul_de_porc NOM m s 0.02 0.00 0.02 0.00 -cul-de-poule cul_de_poule NOM m s 0.00 0.14 0.00 0.14 -cul-de-sac cul_de_sac NOM m s 0.80 1.55 0.75 1.22 -cul-terreux cul_terreux NOM m 2.23 1.28 1.60 0.41 -culs-blancs cul_blanc NOM m p 0.16 0.20 0.14 0.07 -culs-bénits cul_bénit NOM m p 0.08 0.20 0.06 0.14 -culs-de-basse-fosse culs_de_basse_fosse NOM m p 0.00 0.27 0.00 0.27 -culs-de-jatte cul_de_jatte NOM m p 0.54 1.42 0.12 0.34 -culs-de-lampe cul_de_lampe NOM m p 0.01 0.20 0.00 0.07 -culs-de-sac cul_de_sac NOM m p 0.80 1.55 0.05 0.34 -culs-terreux cul_terreux NOM m p 2.23 1.28 0.63 0.88 -cumulo-nimbus cumulo_nimbus NOM m 0.02 0.14 0.02 0.14 -céphalo-rachidien céphalo_rachidien ADJ m s 0.30 0.00 0.30 0.00 -cure-dent cure_dent NOM m s 1.39 0.88 0.60 0.14 -cure-dents cure_dent NOM m p 1.39 0.88 0.78 0.74 -cure-pipe cure_pipe NOM m s 0.07 0.00 0.05 0.00 -cure-pipes cure_pipe NOM m p 0.07 0.00 0.02 0.00 -curriculum vitae curriculum_vitae NOM m 0.13 0.74 0.13 0.74 -cérébro-spinale cérébro_spinal ADJ f s 0.03 0.14 0.03 0.14 -cuti-réaction cuti_réaction NOM f s 0.00 0.07 0.00 0.07 -cyclo-cross cyclo_cross NOM m 0.00 0.07 0.00 0.07 -cyclo-pousse cyclo_pousse NOM m 0.05 0.00 0.05 0.00 -d'abord d_abord ADV 175.45 169.32 175.45 169.32 -d'autres d_autres ADJ:ind p 133.34 119.73 133.34 119.73 -d'emblée d_emblée ADV 1.31 8.38 1.31 8.38 -d'ores et déjà d_ores_et_déjà ADV 0.26 1.28 0.26 1.28 -dalaï-lama dalaï_lama NOM m s 0.00 0.20 0.00 0.20 -dame-jeanne dame_jeanne NOM f s 0.01 0.20 0.01 0.07 -dames-jeannes dame_jeanne NOM f p 0.01 0.20 0.00 0.14 -dare-dare dare_dare ADV 0.21 1.55 0.17 1.28 -dare dare dare_dare ADV 0.21 1.55 0.04 0.27 -de amicis de_amicis NOM m s 0.00 0.07 0.00 0.07 -de auditu de_auditu ADV 0.00 0.07 0.00 0.07 -de facto de_facto ADV 0.16 0.07 0.16 0.07 -de guingois de_guingois ADV 0.01 2.64 0.01 2.64 -de plano de_plano ADV 0.04 0.00 0.04 0.00 -de profundis de_profundis NOM m 0.06 0.41 0.06 0.41 -de santis de_santis NOM m s 0.10 0.00 0.10 0.00 -de traviole de_traviole ADV 0.43 1.28 0.43 1.28 -de visu de_visu ADV 1.02 0.54 1.02 0.54 -delirium tremens delirium_tremens NOM m 0.07 0.27 0.07 0.27 -della francesca della_francesca NOM m s 0.34 0.20 0.34 0.20 -della porta della_porta NOM m s 0.00 0.07 0.00 0.07 -della robbia della_robbia NOM m s 0.00 0.07 0.00 0.07 -delta-plane delta_plane NOM m s 0.03 0.07 0.03 0.07 -demi-barbare demi_barbare NOM s 0.00 0.07 0.00 0.07 -demi-bas demi_bas NOM m 0.01 0.14 0.01 0.14 -demi-bonheur demi_bonheur NOM m s 0.00 0.07 0.00 0.07 -demi-bottes demi_botte NOM f p 0.00 0.14 0.00 0.14 -demi-bouteille demi_bouteille NOM f s 0.41 0.47 0.41 0.47 -demi-brigade demi_brigade NOM f s 0.00 0.68 0.00 0.61 -demi-brigades demi_brigade NOM f p 0.00 0.68 0.00 0.07 -demi-cent demi_cent NOM m s 0.01 0.07 0.01 0.07 -demi-centimètre demi_centimètre NOM m s 0.02 0.20 0.02 0.20 -demi-centre demi_centre NOM m s 0.00 0.07 0.00 0.07 -demi-cercle demi_cercle NOM m s 0.12 4.80 0.11 4.46 -demi-cercles demi_cercle NOM m p 0.12 4.80 0.01 0.34 -demi-chagrin demi_chagrin NOM m s 0.00 0.07 0.00 0.07 -demi-clair demi_clair NOM m s 0.00 0.07 0.00 0.07 -demi-clarté demi_clarté NOM f s 0.00 0.20 0.00 0.20 -demi-cloison demi_cloison NOM f s 0.00 0.20 0.00 0.20 -demi-coma demi_coma NOM m s 0.01 0.27 0.01 0.27 -demi-confidence demi_confidence NOM f s 0.00 0.07 0.00 0.07 -demi-conscience demi_conscience NOM f s 0.00 0.20 0.00 0.20 -demi-cylindre demi_cylindre NOM m s 0.00 0.14 0.00 0.14 -demi-degré demi_degré NOM m s 0.01 0.00 0.01 0.00 -demi-deuil demi_deuil NOM m s 0.00 0.34 0.00 0.34 -demi-dieu demi_dieu NOM m s 0.47 0.47 0.47 0.47 -demi-dieux demi_dieux NOM m p 0.16 0.47 0.16 0.47 -demi-dose demi_dose NOM f s 0.03 0.00 0.03 0.00 -demi-douzaine demi_douzaine NOM f s 1.34 6.55 1.34 6.55 -demi-dévêtu demi_dévêtu ADJ m s 0.00 0.14 0.00 0.07 -demi-dévêtue demi_dévêtu ADJ f s 0.00 0.14 0.00 0.07 -demi-figure demi_figure NOM f s 0.00 0.07 0.00 0.07 -demi-finale demi_finale NOM f s 1.13 0.00 0.87 0.00 -demi-finales demi_finale NOM f p 1.13 0.00 0.26 0.00 -demi-finaliste demi_finaliste NOM s 0.01 0.00 0.01 0.00 -demi-fond demi_fond NOM m s 0.21 0.14 0.21 0.14 -demi-fou demi_fou NOM m s 0.14 0.14 0.14 0.00 -demi-fous demi_fou NOM m p 0.14 0.14 0.00 0.14 -demi-frère demi_frère NOM m s 2.70 2.91 2.17 2.91 -demi-frères demi_frère NOM m p 2.70 2.91 0.53 0.00 -demi-gros demi_gros NOM m 0.01 0.47 0.01 0.47 -demi-heure demi_heure NOM f s 26.65 23.18 26.65 22.43 -demi-heures heur NOM f p 0.28 1.15 0.22 0.07 -demi-jour demi_jour NOM m s 0.02 1.28 0.02 1.28 -demi-journée demi_journée NOM f s 1.65 1.08 1.60 1.01 -demi-journées demi_journée NOM f p 1.65 1.08 0.05 0.07 -demi-juif demi_juif NOM m s 0.01 0.00 0.01 0.00 -demi-kilomètre demi_kilomètre NOM m s 0.14 0.14 0.14 0.14 -demi-liberté demi_liberté NOM f s 0.00 0.07 0.00 0.07 -demi-lieue demi_lieue NOM f s 0.30 0.41 0.30 0.41 -demi-litre demi_litre NOM m s 0.67 0.81 0.67 0.81 -demi-livre demi_livre NOM f s 0.12 0.34 0.12 0.34 -demi-longueur demi_longueur NOM f s 0.06 0.00 0.06 0.00 -demi-louis demi_louis NOM m 0.00 0.07 0.00 0.07 -demi-lueur demi_lueur NOM f s 0.00 0.07 0.00 0.07 -demi-lumière demi_lumière NOM f s 0.00 0.07 0.00 0.07 -demi-lune demi_lune NOM f s 1.03 2.36 0.92 2.23 -demi-lunes demi_lune NOM f p 1.03 2.36 0.11 0.14 -demi-luxe demi_luxe NOM m s 0.00 0.07 0.00 0.07 -demi-mal demi_mal NOM m s 0.00 0.07 0.00 0.07 -demi-mensonge demi_mensonge NOM m s 0.01 0.07 0.01 0.07 -demi-mesure demi_mesure NOM f s 0.39 0.54 0.14 0.14 -demi-mesures demi_mesure NOM f p 0.39 0.54 0.25 0.41 -demi-mille demi_mille NOM m 0.00 0.07 0.00 0.07 -demi-milliard demi_milliard NOM m s 0.87 0.07 0.87 0.07 -demi-millimètre demi_millimètre NOM m s 0.00 0.07 0.00 0.07 -demi-million demi_million NOM m s 3.08 0.41 3.08 0.41 -demi-minute demi_minute NOM f s 0.04 0.07 0.04 0.07 -demi-mois demi_mois NOM m 0.15 0.00 0.15 0.00 -demi-mondaine demi_mondain NOM f s 0.00 0.74 0.00 0.27 -demi-mondaines demi_mondain NOM f p 0.00 0.74 0.00 0.47 -demi-monde demi_monde NOM m s 0.01 0.14 0.01 0.14 -demi-mort demi_mort NOM m s 0.26 0.27 0.11 0.20 -demi-morte demi_mort NOM f s 0.26 0.27 0.04 0.07 -demi-morts demi_mort NOM m p 0.26 0.27 0.10 0.00 -demi-mot demi_mot NOM m s 0.19 1.49 0.19 1.49 -demi-mètre demi_mètre NOM m s 0.00 0.54 0.00 0.54 -demi-muid demi_muid NOM m s 0.00 0.07 0.00 0.07 -demi-nu demi_nu ADV 0.14 0.00 0.14 0.00 -demi-nuit demi_nuit NOM f s 0.02 0.27 0.02 0.27 -demi-obscurité demi_obscurité NOM f s 0.00 1.96 0.00 1.96 -demi-ouverte demi_ouvert ADJ f s 0.00 0.07 0.00 0.07 -demi-ouvrier demi_ouvrier NOM m s 0.00 0.07 0.00 0.07 -demi-page demi_page NOM f s 0.05 0.41 0.05 0.41 -demi-paralysé demi_paralysé ADJ m s 0.10 0.00 0.10 0.00 -demi-part demi_part NOM f s 0.01 0.00 0.01 0.00 -demi-pas demi_pas NOM m 0.21 0.27 0.21 0.27 -demi-pension demi_pension NOM f s 0.00 0.41 0.00 0.41 -demi-pensionnaire demi_pensionnaire NOM s 0.00 0.41 0.00 0.20 -demi-pensionnaires demi_pensionnaire NOM p 0.00 0.41 0.00 0.20 -demi-personne demi_personne ADJ m s 0.00 0.07 0.00 0.07 -demi-pied demi_pied NOM m s 0.00 0.07 0.00 0.07 -demi-pinte demi_pinte NOM f s 0.07 0.07 0.07 0.07 -demi-pièce demi_pièce NOM f s 0.00 0.07 0.00 0.07 -demi-place demi_place NOM f s 0.11 0.00 0.11 0.00 -demi-plein demi_plein ADJ m s 0.01 0.00 0.01 0.00 -demi-point demi_point NOM m s 0.14 0.00 0.14 0.00 -demi-pointes demi_pointe NOM f p 0.00 0.07 0.00 0.07 -demi-porte demi_porte NOM f s 0.00 0.14 0.00 0.14 -demi-portion demi_portion NOM f s 1.23 0.20 1.18 0.00 -demi-portions demi_portion NOM f p 1.23 0.20 0.05 0.20 -demi-pouce demi_pouce ADJ m s 0.01 0.00 0.01 0.00 -demi-quart demi_quart NOM m s 0.00 0.07 0.00 0.07 -demi-queue demi_queue NOM m s 0.01 0.20 0.01 0.20 -demi-ronde demi_rond NOM f s 0.00 0.34 0.00 0.34 -demi-réussite demi_réussite NOM f s 0.00 0.14 0.00 0.14 -demi-rêve demi_rêve NOM m s 0.00 0.20 0.00 0.20 -demi-révérence demi_révérence NOM f s 0.00 0.07 0.00 0.07 -demi-saison demi_saison NOM f s 0.00 0.95 0.00 0.81 -demi-saisons demi_saison NOM f p 0.00 0.95 0.00 0.14 -demi-sang demi_sang NOM m s 0.04 0.54 0.04 0.47 -demi-sangs demi_sang NOM m p 0.04 0.54 0.00 0.07 -demi-seconde demi_seconde NOM f s 0.13 1.01 0.13 1.01 -demi-section demi_section NOM f s 0.00 0.41 0.00 0.41 -demi-sel demi_sel NOM m 0.04 0.47 0.03 0.27 -demi-sels demi_sel NOM m p 0.04 0.47 0.01 0.20 -demi-siècle demi_siècle NOM m s 0.17 5.95 0.17 5.81 -demi-siècles demi_siècle NOM m p 0.17 5.95 0.00 0.14 -demi-soeur demi_soeur NOM f s 0.50 9.05 0.42 8.92 -demi-soeurs demi_soeur NOM f p 0.50 9.05 0.07 0.14 -demi-solde demi_solde NOM f s 0.01 0.14 0.01 0.07 -demi-soldes demi_solde NOM f p 0.01 0.14 0.00 0.07 -demi-sommeil demi_sommeil NOM m s 0.25 2.50 0.25 2.43 -demi-sommeils demi_sommeil NOM m p 0.25 2.50 0.00 0.07 -demi-somnolence demi_somnolence NOM f s 0.00 0.14 0.00 0.14 -demi-sourire demi_sourire NOM m s 0.00 2.84 0.00 2.77 -demi-sourires demi_sourire NOM m p 0.00 2.84 0.00 0.07 -demi-succès demi_succès NOM m 0.00 0.20 0.00 0.20 -demi-suicide demi_suicide NOM m s 0.00 0.07 0.00 0.07 -demi-talent demi_talent NOM m s 0.05 0.00 0.05 0.00 -demi-tarif demi_tarif NOM m s 0.56 0.14 0.56 0.14 -demi-tasse demi_tasse NOM f s 0.08 0.07 0.08 0.07 -demi-teinte demi_teinte NOM f s 0.06 0.95 0.04 0.47 -demi-teintes demi_teinte NOM f p 0.06 0.95 0.02 0.47 -demi-ton demi_ton NOM m s 0.34 0.61 0.00 0.34 -demi-tonne demi_ton NOM f s 0.34 0.61 0.21 0.07 -demi-tonneau demi_tonneau NOM m s 0.00 0.07 0.00 0.07 -demi-tons demi_ton NOM m p 0.34 0.61 0.14 0.20 -demi-tour demi_tour NOM m s 19.27 16.08 19.25 15.88 -demi-tours demi_tour NOM m p 19.27 16.08 0.02 0.20 -demi-tête demi_tête NOM f s 0.11 0.14 0.11 0.14 -demi-échec demi_échec NOM m s 0.00 0.07 0.00 0.07 -demi-verre demi_verre NOM m s 0.30 1.22 0.30 1.22 -demi-vertu demi_vertu NOM f s 0.00 0.07 0.00 0.07 -demi-vie demi_vie NOM f s 0.11 0.00 0.08 0.00 -demi-vierge demi_vierge NOM f s 0.02 0.20 0.02 0.07 -demi-vierges demi_vierge NOM f p 0.02 0.20 0.00 0.14 -demi-vies demi_vie NOM f p 0.11 0.00 0.02 0.00 -demi-volte demi_volte NOM f s 0.01 0.07 0.01 0.00 -demi-voltes demi_volte NOM f p 0.01 0.07 0.00 0.07 -demi-volée demi_volée NOM f s 0.00 0.07 0.00 0.07 -demi-volume demi_volume NOM m s 0.00 0.07 0.00 0.07 -demi-vérité demi_vérité NOM f s 0.32 0.07 0.32 0.07 -dent-de-lion dent_de_lion NOM f s 0.03 0.07 0.03 0.07 -deo gratias deo_gratias NOM m 0.01 0.20 0.01 0.20 -dernier-né dernier_né NOM m s 0.05 1.01 0.05 0.88 -derniers-nés dernier_né NOM m p 0.05 1.01 0.00 0.14 -dernière-née dernière_née NOM f s 0.01 0.20 0.01 0.20 -dessous-de-bras dessous_de_bras NOM m 0.01 0.07 0.01 0.07 -dessous-de-plat dessous_de_plat NOM m 0.20 0.54 0.20 0.54 -dessous-de-table dessous_de_table NOM m 0.21 0.00 0.21 0.00 -dessous-de-verre dessous_de_verre NOM m 0.01 0.00 0.01 0.00 -dessus-de-lit dessus_de_lit NOM m 0.09 1.08 0.09 1.08 -deus ex machina deus_ex_machina NOM m 0.16 0.47 0.16 0.47 -deutsche mark deutsche_mark ADJ m s 0.02 0.00 0.02 0.00 -deux-chevaux deux_chevaux NOM f 0.00 1.22 0.00 1.22 -deux-deux deux_deux NOM m 0.02 0.00 0.02 0.00 -deux-mâts deux_mâts NOM m 0.14 0.07 0.14 0.07 -deux-pièces deux_pièces NOM m 0.27 1.82 0.27 1.82 -deux-points deux_points NOM m 0.01 0.00 0.01 0.00 -deux-ponts deux_ponts NOM m 0.00 0.07 0.00 0.07 -deux-quatre deux_quatre NOM m 0.03 0.00 0.03 0.00 -deux-roues deux_roues NOM m 0.11 0.00 0.11 0.00 -dies irae dies_irae NOM m 0.54 0.14 0.54 0.14 -dieu-roi dieu_roi NOM m s 0.01 0.07 0.01 0.07 -dignus est intrare dignus_est_intrare ADV 0.00 0.07 0.00 0.07 -directeur-adjoint directeur_adjoint NOM m s 0.14 0.00 0.14 0.00 -disc-jockey disc_jockey NOM m s 0.18 0.07 0.16 0.00 -disc-jockeys disc_jockey NOM m p 0.18 0.07 0.03 0.07 -disciple-roi disciple_roi NOM s 0.00 0.07 0.00 0.07 -disque-jockey disque_jockey NOM m s 0.01 0.07 0.01 0.07 -dix-cors dix_cors NOM m 0.03 0.88 0.03 0.88 -dix-huit dix_huit ADJ:num 4.44 31.69 4.44 31.69 -dix-huitième dix_huitième NOM s 0.16 0.27 0.16 0.27 -dix-neuf dix_neuf ADJ:num 2.11 10.54 2.11 10.54 -dix-neuvième dix_neuvième ADJ 0.15 1.22 0.15 1.22 -dix-sept dix_sept ADJ:num 3.69 19.59 3.69 19.59 -dix-septième dix_septième ADJ 0.22 1.22 0.22 1.22 -dog-cart dog_cart NOM m s 0.04 0.00 0.04 0.00 -dommages-intérêts dommages_intérêts NOM m p 0.04 0.00 0.04 0.00 -donnant-donnant donnant_donnant ADV 0.73 0.41 0.73 0.41 -dos-d'âne dos_d_âne NOM m 0.01 0.34 0.01 0.34 -double-cliquer double_cliquer VER 0.09 0.00 0.01 0.00 inf; -double-cliqué double_cliquer VER m s 0.09 0.00 0.07 0.00 par:pas; -double-croche double_croche NOM f s 0.01 0.00 0.01 0.00 -double-décimètre double_décimètre NOM m s 0.00 0.07 0.00 0.07 -double-fond double_fond NOM m s 0.01 0.00 0.01 0.00 -double-six double_six NOM m s 0.14 0.20 0.14 0.20 -douce-amère douce_amère ADJ f s 0.06 0.27 0.06 0.27 -douces-amères douce_amère NOM f p 0.00 0.14 0.00 0.07 -doux-amer doux_amer ADJ m s 0.04 0.00 0.04 0.00 -downing street downing_street NOM f s 0.00 0.34 0.00 0.34 -dream team dream_team NOM f s 0.07 0.00 0.07 0.00 -dressing-room dressing_room NOM m s 0.01 0.00 0.01 0.00 -drive-in drive_in NOM m s 0.94 0.00 0.94 0.00 -droit-fil droit_fil NOM m s 0.00 0.07 0.00 0.07 -drone-espion drone_espion NOM m s 0.02 0.00 0.02 0.00 -décision-clé décision_clé NOM f s 0.01 0.00 0.01 0.00 -décret-loi décret_loi NOM m s 0.03 0.07 0.03 0.07 -décrochez-moi-ça décrochez_moi_ça NOM m 0.00 0.07 0.00 0.07 -ducs-d'albe duc_d_albe NOM m p 0.00 0.07 0.00 0.07 -duffel-coat duffel_coat NOM m s 0.01 0.07 0.01 0.07 -duffle-coat duffle_coat NOM m s 0.00 0.34 0.00 0.27 -duffle-coats duffle_coat NOM m p 0.00 0.34 0.00 0.07 -déjà-vu déjà_vu NOM m 0.01 0.34 0.01 0.34 -délégué-général délégué_général ADJ m s 0.00 0.14 0.00 0.14 -délégué-général délégué_général NOM m s 0.00 0.14 0.00 0.14 -dum-dum dum_dum ADJ 0.20 0.27 0.20 0.27 -démocrate-chrétien démocrate_chrétien ADJ m s 0.21 0.14 0.21 0.07 -démocrates-chrétiens démocrate_chrétien NOM p 0.10 0.27 0.10 0.27 -démonte-pneu démonte_pneu NOM m s 0.26 0.20 0.25 0.07 -démonte-pneus démonte_pneu NOM m p 0.26 0.20 0.01 0.14 -dépôt-vente dépôt_vente NOM m s 0.03 0.00 0.03 0.00 -député-maire député_maire NOM m s 0.00 0.34 0.00 0.34 -dure-mère dure_mère NOM f s 0.02 0.07 0.02 0.07 -déshabillage-éclair déshabillage_éclair NOM m s 0.00 0.07 0.00 0.07 -détective-conseil détective_conseil NOM s 0.01 0.00 0.01 0.00 -détectives-conseils détectives_conseil NOM p 0.01 0.00 0.01 0.00 -e-commerce e_commerce NOM m s 0.03 0.00 0.03 0.00 -e-mail e_mail NOM m s 6.47 0.00 4.16 0.00 -e-mails e_mail NOM m p 6.47 0.00 2.32 0.00 -east river east_river NOM f s 0.00 0.07 0.00 0.07 -eau-de-vie eau_de_vie NOM f s 3.17 4.73 3.05 4.73 -eau-forte eau_forte NOM f s 0.30 0.27 0.30 0.27 -eau-minute eau_minute NOM f s 0.01 0.00 0.01 0.00 -eaux-de-vie eau_de_vie NOM f p 3.17 4.73 0.12 0.00 -eaux-fortes eaux_fortes NOM f p 0.00 0.14 0.00 0.14 -ecce homo ecce_homo ADV 0.20 0.20 0.20 0.20 -elle-même elle_même PRO:per f s 17.88 113.51 17.88 113.51 -elles-mêmes elles_mêmes PRO:per f p 2.21 14.86 2.21 14.86 -emporte-pièce emporte_pièce NOM m 0.00 0.95 0.00 0.95 -en-avant en_avant NOM m 0.01 0.07 0.01 0.07 -en-but en_but NOM m 0.32 0.00 0.32 0.00 -en-cas en_cas NOM m 1.44 1.08 1.44 1.08 -en-cours en_cours NOM m 0.01 0.00 0.01 0.00 -en-dehors en_dehors NOM m 0.36 0.07 0.36 0.07 -en-tête en_tête NOM m s 0.44 2.77 0.39 2.64 -en-têtes en_tête NOM m p 0.44 2.77 0.05 0.14 -en catimini en_catimini ADV 0.12 1.42 0.12 1.42 -en loucedé en_loucedé ADV 0.16 0.47 0.16 0.47 -en tapinois en_tapinois ADV 0.25 0.68 0.25 0.68 -enfant-robot enfant_robot NOM s 0.16 0.00 0.16 0.00 -enfant-roi enfant_roi NOM s 0.02 0.14 0.02 0.14 -enfants-robots enfants_robot NOM m p 0.01 0.00 0.01 0.00 -enfants-rois enfants_roi NOM m p 0.00 0.07 0.00 0.07 -enquêtes-minute enquêtes_minut NOM f p 0.00 0.07 0.00 0.07 -enseignant-robot enseignant_robot NOM m s 0.00 0.07 0.00 0.07 -entr'acte entr_acte NOM m s 0.27 0.00 0.14 0.00 -entr'actes entr_acte NOM m p 0.27 0.00 0.14 0.00 -entr'aimer entr_aimer VER 0.00 0.07 0.00 0.07 inf; -entr'apercevoir entr_apercevoir VER 0.03 1.08 0.01 0.27 inf; -entr'aperçu entr_apercevoir VER m s 0.03 1.08 0.00 0.14 par:pas; -entr'aperçue entr_apercevoir VER f s 0.03 1.08 0.02 0.34 par:pas; -entr'aperçues entr_apercevoir VER f p 0.03 1.08 0.00 0.07 par:pas; -entr'aperçus entr_apercevoir VER m p 0.03 1.08 0.00 0.27 ind:pas:1s;par:pas; -entr'appellent entr_appeler VER 0.00 0.07 0.00 0.07 ind:pre:3p; -entr'ouvert entr_ouvert ADJ m s 0.01 1.49 0.00 0.41 -entr'ouverte entr_ouvert ADJ f s 0.01 1.49 0.01 0.74 -entr'ouvertes entr_ouvert ADJ f p 0.01 1.49 0.00 0.27 -entr'ouverts entr_ouvert ADJ m p 0.01 1.49 0.00 0.07 -entr'égorgent entr_égorger VER 0.00 0.20 0.00 0.07 ind:pre:3p; -entr'égorger entr_égorger VER 0.00 0.20 0.00 0.07 inf; -entr'égorgèrent entr_égorger VER 0.00 0.20 0.00 0.07 ind:pas:3p; -entre-deux-guerres entre_deux_guerres NOM m 0.10 0.74 0.10 0.74 -entre-deux entre_deux NOM m 0.34 0.81 0.34 0.81 -entre-déchiraient entre_déchirer VER 0.04 0.61 0.02 0.14 ind:imp:3p; -entre-déchirait entre_déchirer VER 0.04 0.61 0.00 0.07 ind:imp:3s; -entre-déchire entre_déchirer VER 0.04 0.61 0.01 0.00 ind:pre:3s; -entre-déchirent entre_déchirer VER 0.04 0.61 0.00 0.14 ind:pre:3p; -entre-déchirer entre_déchirer VER 0.04 0.61 0.01 0.20 inf; -entre-déchirèrent entre_déchirer VER 0.04 0.61 0.00 0.07 ind:pas:3p; -entre-dévorant entre_dévorer VER 0.30 0.34 0.01 0.07 par:pre; -entre-dévorent entre_dévorer VER 0.30 0.34 0.25 0.07 ind:pre:3p; -entre-dévorer entre_dévorer VER 0.30 0.34 0.05 0.14 inf; -entre-dévorèrent entre_dévorer VER 0.30 0.34 0.00 0.07 ind:pas:3p; -entre-jambe entre_jambe NOM m s 0.03 0.07 0.03 0.07 -entre-jambes entre_jambes NOM m 0.07 0.07 0.07 0.07 -entre-rail entre_rail NOM m s 0.01 0.00 0.01 0.00 -entre-regardait entre_regarder VER 0.00 0.34 0.00 0.07 ind:imp:3s; -entre-regardent entre_regarder VER 0.00 0.34 0.00 0.07 ind:pre:3p; -entre-regardèrent entre_regarder VER 0.00 0.34 0.00 0.14 ind:pas:3p; -entre-regardés entre_regarder VER m p 0.00 0.34 0.00 0.07 par:pas; -entre-temps entre_temps ADV 4.04 7.97 4.04 7.97 -entre-tuaient entre_tuer VER 2.63 1.01 0.01 0.00 ind:imp:3p; -entre-tuait entre_tuer VER 2.63 1.01 0.00 0.14 ind:imp:3s; -entre-tue entre_tuer VER 2.63 1.01 0.23 0.07 ind:pre:3s; -entre-tuent entre_tuer VER 2.63 1.01 0.55 0.07 ind:pre:3p; -entre-tuer entre_tuer VER 2.63 1.01 1.33 0.68 inf; -entre-tueront entre_tuer VER 2.63 1.01 0.14 0.00 ind:fut:3p; -entre-tuez entre_tuer VER 2.63 1.01 0.03 0.00 imp:pre:2p;ind:pre:2p; -entre-tuions entre_tuer VER 2.63 1.01 0.01 0.00 ind:imp:1p; -entre-tués entre_tuer VER m p 2.63 1.01 0.34 0.07 par:pas; -entrée-sortie entrée_sortie NOM f s 0.01 0.00 0.01 0.00 -espace-temps espace_temps NOM m 1.63 0.07 1.63 0.07 -esprit-de-sel esprit_de_sel NOM m s 0.00 0.07 0.00 0.07 -esprit-de-vin esprit_de_vin NOM m s 0.01 0.20 0.01 0.20 -essuie-glace essuie_glace NOM m s 1.00 2.91 0.38 1.01 -essuie-glaces essuie_glace NOM m p 1.00 2.91 0.62 1.89 -essuie-mains essuie_mains NOM m 0.23 0.27 0.23 0.27 -essuie-tout essuie_tout NOM m 0.11 0.14 0.11 0.14 -est-africain est_africain ADJ m s 0.01 0.00 0.01 0.00 -est-allemand est_allemand ADJ m s 0.67 0.00 0.31 0.00 -est-allemande est_allemand ADJ f s 0.67 0.00 0.23 0.00 -est-allemands est_allemand ADJ m p 0.67 0.00 0.13 0.00 -est-ce-que est_ce_que ADV 1.34 0.20 1.34 0.20 -est-ce qu est_ce_qu ADV 3.41 0.07 3.41 0.07 -est-ce que est_ce_que ADV 1159.41 322.23 1159.41 322.23 -est-ce est_ce ADV 0.05 0.20 0.05 0.20 -est-ouest est_ouest ADJ 0.38 0.41 0.38 0.41 -et caetera et_caetera ADV 0.72 0.88 0.72 0.88 -et cetera et_cetera ADV 1.14 0.74 1.14 0.74 -et seq et_seq ADV 0.00 0.07 0.00 0.07 -eunuques-espions eunuques_espion NOM m p 0.00 0.14 0.00 0.14 -euro-africaines euro_africain ADJ f p 0.00 0.07 0.00 0.07 -eux-mêmes eux_mêmes PRO:per m p 9.96 48.04 9.96 48.04 -ex-abbé ex_abbé NOM m s 0.00 0.07 0.00 0.07 -ex-acteur ex_acteur NOM m s 0.00 0.07 0.00 0.07 -ex-adjudant ex_adjudant NOM m s 0.00 0.14 0.00 0.14 -ex-agent ex_agent NOM m s 0.09 0.00 0.09 0.00 -ex-alcoolo ex_alcoolo NOM s 0.01 0.00 0.01 0.00 -ex-allée ex_allée NOM f s 0.00 0.07 0.00 0.07 -ex-amant ex_amant NOM m s 0.19 0.34 0.17 0.07 -ex-amante ex_amant NOM f s 0.19 0.34 0.01 0.27 -ex-amants ex_amant NOM m p 0.19 0.34 0.01 0.00 -ex-ambassadeur ex_ambassadeur NOM m s 0.01 0.00 0.01 0.00 -ex-amour ex_amour NOM m s 0.01 0.00 0.01 0.00 -ex-appartement ex_appartement NOM m s 0.00 0.07 0.00 0.07 -ex-apprenti ex_apprenti NOM m s 0.00 0.07 0.00 0.07 -ex-arriviste ex_arriviste NOM s 0.00 0.07 0.00 0.07 -ex-artiste ex_artiste NOM s 0.00 0.07 0.00 0.07 -ex-assistant ex_assistant NOM m s 0.07 0.00 0.02 0.00 -ex-assistante ex_assistant NOM f s 0.07 0.00 0.04 0.00 -ex-associé ex_associé NOM m s 0.13 0.07 0.08 0.07 -ex-associés ex_associé NOM m p 0.13 0.07 0.05 0.00 -ex-ballerine ex_ballerine NOM f s 0.01 0.00 0.01 0.00 -ex-banquier ex_banquier NOM m s 0.01 0.00 0.01 0.00 -ex-barman ex_barman NOM m s 0.01 0.07 0.01 0.07 -ex-basketteur ex_basketteur NOM m s 0.00 0.07 0.00 0.07 -ex-batteur ex_batteur NOM m s 0.00 0.07 0.00 0.07 -ex-beatnik ex_beatnik NOM s 0.00 0.07 0.00 0.07 -ex-belle-mère ex_belle_mère NOM f s 0.05 0.00 0.05 0.00 -ex-bibliothécaire ex_bibliothécaire NOM s 0.00 0.07 0.00 0.07 -ex-boss ex_boss NOM m 0.01 0.00 0.01 0.00 -ex-boxeur ex_boxeur NOM m s 0.16 0.00 0.16 0.00 -ex-branleurs ex_branleur NOM m p 0.00 0.07 0.00 0.07 -ex-buteur ex_buteur NOM m s 0.01 0.00 0.01 0.00 -ex-caïd ex_caïd NOM m s 0.01 0.00 0.01 0.00 -ex-camarades ex_camarade NOM p 0.01 0.00 0.01 0.00 -ex-capitaine ex_capitaine NOM m s 0.04 0.00 0.04 0.00 -ex-champion ex_champion NOM m s 0.75 0.14 0.71 0.14 -ex-championne ex_champion NOM f s 0.75 0.14 0.01 0.00 -ex-champions ex_champion NOM m p 0.75 0.14 0.03 0.00 -ex-chanteur ex_chanteur NOM m s 0.02 0.07 0.00 0.07 -ex-chanteuse ex_chanteur NOM f s 0.02 0.07 0.02 0.00 -ex-chauffeur ex_chauffeur NOM m s 0.14 0.07 0.14 0.07 -ex-chef ex_chef NOM s 0.20 0.14 0.20 0.14 -ex-chiropracteur ex_chiropracteur NOM m s 0.01 0.00 0.01 0.00 -ex-citation ex_citation NOM f s 0.01 0.00 0.01 0.00 -ex-citoyen ex_citoyen NOM m s 0.01 0.00 0.01 0.00 -ex-civils ex_civil NOM m p 0.01 0.00 0.01 0.00 -ex-collabo ex_collabo NOM s 0.00 0.07 0.00 0.07 -ex-collègue ex_collègue NOM s 0.30 0.14 0.03 0.14 -ex-collègues ex_collègue NOM p 0.30 0.14 0.27 0.00 -ex-colonel ex_colonel NOM m s 0.01 0.14 0.01 0.14 -ex-commando ex_commando NOM m s 0.05 0.00 0.05 0.00 -ex-concierge ex_concierge NOM s 0.00 0.07 0.00 0.07 -ex-contrebandier ex_contrebandier NOM m s 0.02 0.00 0.02 0.00 -ex-copain ex_copain NOM m s 0.28 0.00 0.26 0.00 -ex-copains ex_copain NOM m p 0.28 0.00 0.02 0.00 -ex-copine ex_copine NOM f s 0.71 0.00 0.54 0.00 -ex-copines ex_copine NOM f p 0.71 0.00 0.18 0.00 -ex-corps ex_corps NOM m 0.01 0.00 0.01 0.00 -ex-couple ex_couple NOM m s 0.01 0.00 0.01 0.00 -ex-danseuse ex_danseur NOM f s 0.01 0.14 0.01 0.14 -ex-dealer ex_dealer NOM m s 0.02 0.00 0.02 0.00 -ex-dieu ex_dieu NOM m s 0.01 0.00 0.01 0.00 -ex-diva ex_diva NOM f s 0.00 0.07 0.00 0.07 -ex-drôlesse ex_drôlesse NOM f s 0.00 0.07 0.00 0.07 -ex-drifter ex_drifter NOM m s 0.00 0.07 0.00 0.07 -ex-dulcinée ex_dulcinée NOM f s 0.00 0.07 0.00 0.07 -ex-démon ex_démon NOM m s 0.10 0.00 0.09 0.00 -ex-démons ex_démon NOM m p 0.10 0.00 0.01 0.00 -ex-enseigne ex_enseigne NOM m s 0.00 0.07 0.00 0.07 -ex-enzymes ex_enzyme NOM f p 0.00 0.07 0.00 0.07 -ex-esclavagistes ex_esclavagiste NOM p 0.01 0.00 0.01 0.00 -ex-femme ex_femme NOM f s 6.75 1.62 6.32 1.62 -ex-femmes ex_femme NOM f p 6.75 1.62 0.43 0.00 -ex-fiancé ex_fiancé NOM m s 0.18 0.07 0.10 0.00 -ex-fiancée ex_fiancé NOM f s 0.18 0.07 0.08 0.07 -ex-fils ex_fils NOM m 0.00 0.07 0.00 0.07 -ex-flic ex_flic NOM m s 0.27 0.07 0.24 0.07 -ex-flics ex_flic NOM m p 0.27 0.07 0.03 0.00 -ex-forçats ex_forçat NOM m p 0.01 0.00 0.01 0.00 -ex-fusilleurs ex_fusilleur NOM m p 0.00 0.07 0.00 0.07 -ex-gang ex_gang NOM m s 0.00 0.07 0.00 0.07 -ex-garde ex_garde NOM f s 0.14 0.20 0.00 0.14 -ex-gardes ex_garde NOM f p 0.14 0.20 0.14 0.07 -ex-gauchiste ex_gauchiste ADJ m s 0.00 0.07 0.00 0.07 -ex-gauchiste ex_gauchiste NOM s 0.00 0.07 0.00 0.07 -ex-gendre ex_gendre NOM m s 0.01 0.00 0.01 0.00 -ex-gonzesse ex_gonzesse NOM f s 0.00 0.14 0.00 0.14 -ex-gouverneur ex_gouverneur NOM m s 0.06 0.14 0.06 0.14 -ex-gravosse ex_gravosse NOM f s 0.00 0.07 0.00 0.07 -ex-griot ex_griot NOM m s 0.00 0.07 0.00 0.07 -ex-griveton ex_griveton NOM m s 0.00 0.07 0.00 0.07 -ex-grognasse ex_grognasse NOM f s 0.00 0.07 0.00 0.07 -ex-groupe ex_groupe NOM m s 0.00 0.07 0.00 0.07 -ex-guenilles ex_guenille NOM f p 0.00 0.07 0.00 0.07 -ex-guitariste ex_guitariste NOM s 0.00 0.07 0.00 0.07 -ex-génie ex_génie NOM m s 0.00 0.07 0.00 0.07 -ex-hôpital ex_hôpital NOM m s 0.00 0.07 0.00 0.07 -ex-hippies ex_hippie NOM p 0.02 0.00 0.02 0.00 -ex-homme-grenouille ex_homme_grenouille NOM m s 0.01 0.00 0.01 0.00 -ex-homme ex_homme NOM m s 0.06 0.00 0.06 0.00 -ex-immeuble ex_immeuble NOM m s 0.00 0.07 0.00 0.07 -ex-inspecteur ex_inspecteur NOM m s 0.03 0.00 0.02 0.00 -ex-inspecteurs ex_inspecteur NOM m p 0.03 0.00 0.01 0.00 -ex-journaliste ex_journaliste NOM s 0.02 0.07 0.02 0.07 -ex-junkie ex_junkie NOM m s 0.03 0.00 0.03 0.00 -ex-kid ex_kid NOM m s 0.00 0.27 0.00 0.27 -ex-leader ex_leader NOM m s 0.02 0.00 0.02 0.00 -ex-libris ex_libris NOM m 0.00 0.14 0.00 0.14 -ex-lieutenant ex_lieutenant NOM m s 0.01 0.00 0.01 0.00 -ex-lit ex_lit NOM m s 0.00 0.07 0.00 0.07 -ex-légionnaire ex_légionnaire NOM m s 0.00 0.07 0.00 0.07 -ex-lycée ex_lycée NOM m s 0.00 0.07 0.00 0.07 -ex-maître ex_maître NOM m s 0.00 0.07 0.00 0.07 -ex-madame ex_madame NOM f 0.03 0.07 0.03 0.07 -ex-maire ex_maire NOM m s 0.01 0.00 0.01 0.00 -ex-mari ex_mari NOM m s 5.05 1.08 4.87 1.08 -ex-marine ex_marine NOM f s 0.07 0.00 0.07 0.00 -ex-maris ex_mari NOM m p 5.05 1.08 0.19 0.00 -ex-mecs ex_mec NOM m p 0.10 0.00 0.10 0.00 -ex-membre ex_membre NOM m s 0.03 0.00 0.03 0.00 -ex-mercenaires ex_mercenaire NOM p 0.01 0.00 0.01 0.00 -ex-militaire ex_militaire NOM s 0.08 0.00 0.05 0.00 -ex-militaires ex_militaire NOM p 0.08 0.00 0.03 0.00 -ex-ministre ex_ministre NOM m s 0.06 0.41 0.04 0.41 -ex-ministres ex_ministre NOM m p 0.06 0.41 0.01 0.00 -ex-miss ex_miss NOM f 0.05 0.00 0.05 0.00 -ex-monteur ex_monteur NOM m s 0.02 0.00 0.02 0.00 -ex-motard ex_motard NOM m s 0.01 0.00 0.01 0.00 -ex-nana ex_nana NOM f s 0.12 0.00 0.12 0.00 -ex-officier ex_officier NOM m s 0.05 0.14 0.05 0.14 -ex-opérateur ex_opérateur NOM m s 0.00 0.07 0.00 0.07 -ex-palmes ex_palme NOM f p 0.14 0.00 0.14 0.00 -ex-para ex_para NOM m s 0.02 0.14 0.02 0.14 -ex-partenaire ex_partenaire NOM s 0.18 0.00 0.18 0.00 -ex-patron ex_patron NOM m s 0.20 0.00 0.20 0.00 -ex-pensionnaires ex_pensionnaire NOM p 0.00 0.07 0.00 0.07 -ex-perroquet ex_perroquet NOM m s 0.01 0.00 0.01 0.00 -ex-petit ex_petit NOM m s 0.68 0.00 0.38 0.00 -ex-petite ex_petit NOM f s 0.68 0.00 0.28 0.00 -ex-petits ex_petit NOM m p 0.68 0.00 0.03 0.00 -ex-pharmaciennes ex_pharmacien NOM f p 0.00 0.07 0.00 0.07 -ex-pilote ex_pilote ADJ m s 0.00 0.14 0.00 0.14 -ex-planète ex_planète NOM f s 0.01 0.00 0.01 0.00 -ex-planton ex_planton NOM m s 0.00 0.07 0.00 0.07 -ex-plaquée ex_plaqué ADJ f s 0.00 0.07 0.00 0.07 -ex-plâtrier ex_plâtrier NOM m s 0.00 0.07 0.00 0.07 -ex-poivrots ex_poivrot NOM m p 0.01 0.00 0.01 0.00 -ex-premier ex_premier ADJ m s 0.01 0.00 0.01 0.00 -ex-premier ex_premier NOM m s 0.01 0.00 0.01 0.00 -ex-primaire ex_primaire NOM s 0.00 0.07 0.00 0.07 -ex-prison ex_prison NOM f s 0.01 0.00 0.01 0.00 -ex-procureur ex_procureur NOM m s 0.03 0.00 0.03 0.00 -ex-profession ex_profession NOM f s 0.00 0.07 0.00 0.07 -ex-profileur ex_profileur NOM m s 0.01 0.00 0.01 0.00 -ex-promoteur ex_promoteur NOM m s 0.01 0.00 0.01 0.00 -ex-propriétaire ex_propriétaire NOM s 0.04 0.07 0.04 0.07 -ex-présentateur ex_présentateur NOM m s 0.00 0.07 0.00 0.07 -ex-président ex_président NOM m s 0.71 0.00 0.60 0.00 -ex-présidents ex_président NOM m p 0.71 0.00 0.11 0.00 -ex-prêtre ex_prêtre NOM m s 0.01 0.00 0.01 0.00 -ex-putain ex_putain NOM f s 0.00 0.07 0.00 0.07 -ex-putes ex_pute NOM f p 0.01 0.00 0.01 0.00 -ex-quincaillerie ex_quincaillerie NOM f s 0.00 0.14 0.00 0.14 -ex-quincaillier ex_quincaillier NOM m s 0.00 0.27 0.00 0.27 -ex-rebelle ex_rebelle ADJ s 0.00 0.07 0.00 0.07 -ex-reine ex_reine NOM f s 0.02 0.00 0.02 0.00 -ex-roi ex_roi NOM m s 0.01 0.20 0.01 0.20 -ex-républiques ex_république NOM f p 0.01 0.00 0.01 0.00 -ex-résidence ex_résidence NOM f s 0.01 0.00 0.01 0.00 -ex-révolutionnaire ex_révolutionnaire NOM s 0.00 0.07 0.00 0.07 -ex-sacs ex_sac NOM m p 0.00 0.07 0.00 0.07 -ex-secrétaire ex_secrétaire NOM s 0.07 0.00 0.07 0.00 -ex-sergent ex_sergent NOM m s 0.02 0.14 0.02 0.07 -ex-sergents ex_sergent NOM m p 0.02 0.14 0.00 0.07 -ex-soldats ex_soldat NOM m p 0.00 0.07 0.00 0.07 -ex-solistes ex_soliste NOM p 0.00 0.07 0.00 0.07 -ex-standardiste ex_standardiste NOM s 0.00 0.07 0.00 0.07 -ex-star ex_star NOM f s 0.14 0.00 0.14 0.00 -ex-strip-teaseuse ex_strip_teaseur NOM f s 0.00 0.07 0.00 0.07 -ex-séminariste ex_séminariste NOM s 0.00 0.07 0.00 0.07 -ex-sénateur ex_sénateur NOM m s 0.00 0.14 0.00 0.14 -ex-super ex_super ADJ m s 0.14 0.00 0.14 0.00 -ex-sévère ex_sévère ADJ f s 0.00 0.07 0.00 0.07 -ex-taulard ex_taulard NOM m s 0.38 0.14 0.28 0.07 -ex-taulards ex_taulard NOM m p 0.38 0.14 0.10 0.07 -ex-teinturier ex_teinturier NOM m s 0.01 0.00 0.01 0.00 -ex-tirailleur ex_tirailleur NOM m s 0.00 0.07 0.00 0.07 -ex-tueur ex_tueur NOM m s 0.01 0.00 0.01 0.00 -ex-tuteur ex_tuteur NOM m s 0.01 0.00 0.01 0.00 -ex-élève ex_élève NOM s 0.02 0.07 0.02 0.07 -ex-union ex_union NOM f s 0.00 0.07 0.00 0.07 -ex-épouse ex_épouse NOM f s 0.30 0.27 0.28 0.27 -ex-épouses ex_épouse NOM f p 0.30 0.27 0.02 0.00 -ex-équipier ex_équipier NOM m s 0.07 0.00 0.07 0.00 -ex-usine ex_usine NOM f s 0.01 0.00 0.01 0.00 -ex-vedette ex_vedette NOM f s 0.11 0.07 0.11 0.07 -ex-violeurs ex_violeur NOM m p 0.01 0.00 0.01 0.00 -ex-voto ex_voto NOM m 0.48 1.69 0.48 1.69 -ex abrupto ex_abrupto ADV 0.00 0.07 0.00 0.07 -ex nihilo ex_nihilo ADV 0.00 0.14 0.00 0.14 -expert-comptable expert_comptable NOM m s 0.23 0.20 0.23 0.20 -extra-dry extra_dry NOM m 0.00 0.07 0.00 0.07 -extra-fin extra_fin ADJ m s 0.00 0.34 0.00 0.27 -extra-fins extra_fin ADJ m p 0.00 0.34 0.00 0.07 -extra-fort extra_fort ADJ m s 0.11 0.20 0.04 0.07 -extra-forte extra_fort ADJ f s 0.11 0.20 0.08 0.14 -extra-lucide extra_lucide ADJ f s 0.05 0.20 0.04 0.14 -extra-lucides extra_lucide ADJ p 0.05 0.20 0.01 0.07 -extra-muros extra_muros ADJ f p 0.00 0.07 0.00 0.07 -extra-muros extra_muros ADV 0.00 0.07 0.00 0.07 -extra-sensoriel extra_sensoriel ADJ m s 0.06 0.00 0.02 0.00 -extra-sensorielle extra_sensoriel ADJ f s 0.06 0.00 0.04 0.00 -extra-souples extra_souple ADJ f p 0.00 0.07 0.00 0.07 -extra-terrestre extra_terrestre NOM s 3.71 0.34 1.35 0.27 -extra-terrestres extra_terrestre NOM p 3.71 0.34 2.36 0.07 -extra-utérin extra_utérin ADJ m s 0.10 0.00 0.03 0.00 -extra-utérine extra_utérin ADJ f s 0.10 0.00 0.07 0.00 -extrême-onction extrême_onction NOM f s 0.42 1.62 0.42 1.55 -extrême-orient extrême_orient NOM m s 0.00 0.07 0.00 0.07 -extrême-orientale extrême_oriental ADJ f s 0.00 0.07 0.00 0.07 -extrêmes-onctions extrême_onction NOM f p 0.42 1.62 0.00 0.07 -eye-liner eye_liner NOM m s 0.22 0.27 0.22 0.27 -faîtes-la-moi faîtes_la_moi NOM m p 0.01 0.00 0.01 0.00 -fac-similé fac_similé NOM m s 0.03 0.34 0.02 0.27 -fac-similés fac_similé NOM m p 0.03 0.34 0.01 0.07 -face-à-face face_à_face NOM m 0.00 0.47 0.00 0.47 -face-à-main face_à_main NOM m s 0.00 0.54 0.00 0.54 -faces-à-main faces_à_main NOM m p 0.00 0.07 0.00 0.07 -fair-play fair_play NOM m 0.60 0.14 0.60 0.14 -faire-part faire_part NOM m 0.65 3.04 0.65 3.04 -faire-valoir faire_valoir NOM m 0.20 0.68 0.20 0.68 -fait-divers fait_divers NOM m 0.00 0.20 0.00 0.20 -fait-tout fait_tout NOM m 0.01 0.74 0.01 0.74 -faits-divers faits_divers NOM m p 0.00 0.07 0.00 0.07 -fan-club fan_club NOM m s 0.28 0.14 0.28 0.14 -far-west far_west NOM m s 0.01 0.07 0.01 0.07 -fast-food fast_food NOM m s 2.34 0.47 1.56 0.34 -fast-foods fast_food NOM m p 2.34 0.47 0.34 0.07 -fast food fast_food NOM m s 2.34 0.47 0.43 0.07 -fausse-couche fausse_couche NOM f s 0.07 0.20 0.07 0.20 -fauteuil-club fauteuil_club NOM m s 0.00 0.27 0.00 0.27 -fauteuils-club fauteuils_club NOM m p 0.00 0.07 0.00 0.07 -faux-bond faux_bond NOM m 0.01 0.07 0.01 0.07 -faux-bourdon faux_bourdon NOM m s 0.02 0.07 0.02 0.07 -faux-col faux_col NOM m s 0.02 0.34 0.02 0.34 -faux-cul faux_cul NOM m s 0.41 0.07 0.41 0.07 -faux-filet faux_filet NOM m s 0.04 0.34 0.04 0.34 -faux-frère faux_frère ADJ m s 0.01 0.00 0.01 0.00 -faux-fuyant faux_fuyant NOM m s 0.22 1.22 0.02 0.47 -faux-fuyants faux_fuyant NOM m p 0.22 1.22 0.20 0.74 -faux-monnayeur faux_monnayeur NOM m s 0.26 0.61 0.01 0.14 -faux-monnayeurs faux_monnayeur NOM m p 0.26 0.61 0.25 0.47 -faux-pas faux_pas NOM m 0.38 0.14 0.38 0.14 -faux-pont faux_pont NOM m s 0.01 0.00 0.01 0.00 -faux-sauniers faux_saunier NOM m p 0.00 0.07 0.00 0.07 -faux-semblant faux_semblant NOM m s 0.46 1.49 0.37 0.74 -faux-semblants faux_semblant NOM m p 0.46 1.49 0.09 0.74 -feed-back feed_back NOM m 0.04 0.00 0.04 0.00 -feld-maréchal feld_maréchal NOM m s 0.32 0.27 0.32 0.27 -femme-enfant femme_enfant NOM f s 0.35 0.27 0.35 0.27 -femme-fleur femme_fleur NOM f s 0.00 0.07 0.00 0.07 -femme-objet femme_objet NOM f s 0.03 0.07 0.03 0.07 -femme-refuge femme_refuge NOM f s 0.00 0.07 0.00 0.07 -femme-robot femme_robot NOM f s 0.07 0.00 0.07 0.00 -fer-blanc fer_blanc NOM m s 0.08 2.84 0.08 2.84 -fermes-hôtels fermes_hôtel NOM f p 0.00 0.07 0.00 0.07 -ferry-boat ferry_boat NOM m s 0.14 0.20 0.14 0.20 -fesse-mathieu fesse_mathieu NOM m s 0.00 0.07 0.00 0.07 -feuille-morte feuille_morte ADJ f s 0.00 0.07 0.00 0.07 -fier-à-bras fier_à_bras NOM m 0.00 0.14 0.00 0.14 -fiers-à-bras fiers_à_bras NOM m p 0.00 0.27 0.00 0.27 -fifty-fifty fifty_fifty ADV 0.66 0.14 0.66 0.14 -fil-à-fil fil_à_fil NOM m 0.00 0.34 0.00 0.34 -file-la-moi file_la_moi NOM f s 0.01 0.00 0.01 0.00 -fille-mère fille_mère NOM f s 0.39 0.41 0.39 0.41 -film-livre film_livre NOM m s 0.00 0.07 0.00 0.07 -films-annonces films_annonce NOM m p 0.00 0.07 0.00 0.07 -five o'clock five_o_clock NOM m 0.01 0.14 0.01 0.14 -fixe-chaussettes fixe_chaussette NOM f p 0.13 0.20 0.13 0.20 -flanc-garde flanc_garde NOM f s 0.04 0.27 0.00 0.14 -flancs-gardes flanc_garde NOM f p 0.04 0.27 0.04 0.14 -flash-back flash_back NOM m 0.33 0.74 0.33 0.74 -flatus vocis flatus_vocis NOM m 0.00 0.07 0.00 0.07 -flip-flap flip_flap NOM m 0.00 0.14 0.00 0.14 -flip-flop flip_flop NOM m 0.07 0.00 0.07 0.00 -footballeur-vedette footballeur_vedette NOM m s 0.01 0.00 0.01 0.00 -foreign office foreign_office NOM m s 0.00 2.50 0.00 2.50 -fou-fou fou_fou ADJ m s 0.08 0.00 0.08 0.00 -fou-rire fou_rire NOM m s 0.02 0.14 0.02 0.14 -fourmi-lion fourmi_lion NOM m s 0.00 0.14 0.00 0.07 -fourmis-lions fourmi_lion NOM m p 0.00 0.14 0.00 0.07 -fourre-tout fourre_tout NOM m 0.28 0.54 0.28 0.54 -fox-terrier fox_terrier NOM m s 0.04 0.47 0.04 0.41 -fox-terriers fox_terrier NOM m p 0.04 0.47 0.00 0.07 -fox-trot fox_trot NOM m 0.50 1.62 0.50 1.62 -fraiseur-outilleur fraiseur_outilleur NOM m s 0.00 0.07 0.00 0.07 -franc-comtois franc_comtois NOM m 0.00 0.07 0.00 0.07 -franc-comtoise franc_comtois ADJ f s 0.00 0.07 0.00 0.07 -franc-jeu franc_jeu NOM m s 0.56 0.00 0.56 0.00 -franc-maçon franc_maçon NOM m s 0.94 2.09 0.38 0.54 -franc-maçonne franc_maçon NOM f s 0.94 2.09 0.00 0.27 -franc-maçonnerie franc_maçonnerie NOM f s 0.17 0.81 0.17 0.81 -franc-parler franc_parler NOM m s 0.53 0.27 0.53 0.27 -franc-tireur franc_tireur NOM m s 0.64 2.30 0.10 0.81 -franco-africain franco_africain ADJ m s 0.14 0.07 0.14 0.07 -franco-algérienne franco_algérien ADJ f s 0.00 0.07 0.00 0.07 -franco-allemand franco_allemand ADJ m s 0.11 0.61 0.00 0.14 -franco-allemande franco_allemand ADJ f s 0.11 0.61 0.11 0.34 -franco-allemandes franco_allemand ADJ f p 0.11 0.61 0.00 0.14 -franco-américain franco_américain ADJ m s 0.04 0.68 0.01 0.07 -franco-américaine franco_américain ADJ f s 0.04 0.68 0.03 0.27 -franco-américaines franco_américain ADJ f p 0.04 0.68 0.00 0.20 -franco-américains franco_américain ADJ m p 0.04 0.68 0.00 0.14 -franco-anglais franco_anglais ADJ m s 0.01 0.74 0.01 0.27 -franco-anglaise franco_anglais ADJ f s 0.01 0.74 0.00 0.41 -franco-anglaises franco_anglais NOM f p 0.01 0.00 0.01 0.00 -franco-belge franco_belge ADJ f s 0.00 0.14 0.00 0.14 -franco-britannique franco_britannique ADJ f s 0.14 2.43 0.00 1.35 -franco-britanniques franco_britannique ADJ p 0.14 2.43 0.14 1.08 -franco-canadien franco_canadien NOM m s 0.01 0.00 0.01 0.00 -franco-chinoises franco_chinois ADJ f p 0.00 0.07 0.00 0.07 -franco-italienne franco_italienne ADJ f s 0.01 0.00 0.01 0.00 -franco-japonaise franco_japonais ADJ f s 0.01 0.00 0.01 0.00 -franco-libanais franco_libanais ADJ m p 0.00 0.14 0.00 0.14 -franco-mongole franco_mongol ADJ f s 0.00 0.14 0.00 0.14 -franco-polonaise franco_polonais ADJ f s 0.00 0.07 0.00 0.07 -franco-russe franco_russe ADJ s 0.00 1.42 0.00 1.42 -franco-russes franco_russe NOM p 0.00 0.20 0.00 0.07 -franco-soviétique franco_soviétique ADJ s 0.00 0.14 0.00 0.14 -franco-syrien franco_syrien ADJ m s 0.00 0.14 0.00 0.14 -franco-turque franco_turque ADJ f s 0.00 0.14 0.00 0.14 -franco-vietnamien franco_vietnamien ADJ m s 0.00 0.07 0.00 0.07 -francs-bourgeois francs_bourgeois NOM m p 0.00 0.20 0.00 0.20 -francs-maçons franc_maçon NOM m p 0.94 2.09 0.57 1.28 -francs-tireurs franc_tireur NOM m p 0.64 2.30 0.54 1.49 -free-jazz free_jazz NOM m 0.00 0.07 0.00 0.07 -free-lance free_lance NOM s 0.20 0.07 0.20 0.07 -free jazz free_jazz NOM m 0.00 0.07 0.00 0.07 -fric-frac fric_frac NOM m 0.25 0.41 0.25 0.41 -frise-poulet frise_poulet NOM m s 0.01 0.00 0.01 0.00 -frotti-frotta frotti_frotta NOM m 0.04 0.20 0.04 0.20 -frou-frou frou_frou NOM m s 0.23 0.47 0.09 0.41 -frous-frous frou_frou NOM m p 0.23 0.47 0.14 0.07 -fuel-oil fuel_oil NOM m s 0.00 0.07 0.00 0.07 -full-contact full_contact NOM m s 0.04 0.00 0.04 0.00 -fume-cigarette fume_cigarette NOM m s 0.27 2.09 0.17 1.82 -fume-cigarettes fume_cigarette NOM m p 0.27 2.09 0.10 0.27 -fur et à mesure fur_et_à_mesure NOM m s 1.62 17.84 1.62 17.84 -fusil-mitrailleur fusil_mitrailleur NOM m s 0.37 0.41 0.37 0.34 -fusiliers-marins fusilier_marin NOM m p 0.04 1.08 0.04 1.08 -fusils-mitrailleurs fusil_mitrailleur NOM m p 0.37 0.41 0.00 0.07 -fête-dieu fête_dieu NOM f s 0.14 0.54 0.14 0.54 -gagne-pain gagne_pain NOM m 2.01 1.82 2.01 1.82 -gagne-petit gagne_petit NOM m 0.16 0.68 0.16 0.68 -gaine-culotte gaine_culotte NOM f s 0.01 0.07 0.01 0.07 -galerie-refuge galerie_refuge NOM f s 0.00 0.07 0.00 0.07 -galeries-refuges galeries_refuge NOM f p 0.00 0.07 0.00 0.07 -gallo-romain gallo_romain ADJ m s 0.00 0.14 0.00 0.07 -gallo-romains gallo_romain ADJ m p 0.00 0.14 0.00 0.07 -garde-barrière garde_barrière NOM m s 0.00 0.95 0.00 0.95 -garde-boue garde_boue NOM m 0.05 1.08 0.05 1.08 -garde-côte garde_côte NOM m s 1.90 0.14 0.54 0.07 -garde-côtes garde_côte NOM m p 1.90 0.14 1.36 0.07 -garde-champêtre garde_champêtre NOM m s 0.00 0.54 0.00 0.47 -garde-chasse garde_chasse NOM m s 0.22 1.42 0.22 1.42 -garde-chiourme garde_chiourme NOM m s 0.11 0.74 0.06 0.54 -garde-corps garde_corps NOM m 0.01 0.34 0.01 0.34 -garde-feu garde_feu NOM m 0.05 0.00 0.05 0.00 -garde-forestier garde_forestier NOM s 0.16 0.14 0.16 0.14 -garde-fou garde_fou NOM m s 0.30 1.89 0.25 1.49 -garde-fous garde_fou NOM m p 0.30 1.89 0.05 0.41 -garde-frontière garde_frontière NOM m s 0.16 0.00 0.16 0.00 -garde-malade garde_malade NOM s 0.44 1.15 0.44 1.15 -garde-manger garde_manger NOM m 0.68 2.77 0.68 2.77 -garde-meuble garde_meuble NOM m 0.34 0.20 0.34 0.20 -garde-meubles garde_meubles NOM m 0.16 0.34 0.16 0.34 -garde-à-vous garde_à_vous NOM m 0.00 5.88 0.00 5.88 -garde-pêche garde_pêche NOM m s 0.01 0.07 0.01 0.07 -garde-robe garde_robe NOM f s 2.19 2.77 2.17 2.70 -garde-robes garde_robe NOM f p 2.19 2.77 0.03 0.07 -garde-voie garde_voie NOM m s 0.00 0.07 0.00 0.07 -garde-vue garde_vue NOM m 0.25 0.00 0.25 0.00 -garden-party garden_party NOM f s 0.22 0.34 0.22 0.34 -gardes-barrières gardes_barrière NOM p 0.00 0.14 0.00 0.14 -gardes-côtes gardes_côte NOM m p 0.31 0.00 0.31 0.00 -gardes-champêtres garde_champêtre NOM m p 0.00 0.54 0.00 0.07 -gardes-chasse gardes_chasse NOM m s 0.03 0.41 0.03 0.41 -gardes-chiourme garde_chiourme NOM m p 0.11 0.74 0.04 0.20 -gardes-chiourmes gardes_chiourme NOM p 0.03 0.14 0.03 0.14 -gardes-françaises garde_française NOM m p 0.00 0.07 0.00 0.07 -gardes-frontières gardes_frontière NOM m p 0.03 0.41 0.03 0.41 -gardes-voies gardes_voie NOM m p 0.00 0.07 0.00 0.07 -gardien-chef gardien_chef NOM m s 0.22 0.27 0.22 0.27 -gas-oil gas_oil NOM m s 0.02 0.27 0.02 0.27 -gastro-entérite gastro_entérite NOM f s 0.04 0.07 0.04 0.07 -gastro-entérologue gastro_entérologue NOM s 0.04 0.14 0.04 0.07 -gastro-entérologues gastro_entérologue NOM p 0.04 0.14 0.00 0.07 -gastro-intestinal gastro_intestinal ADJ m s 0.12 0.00 0.04 0.00 -gastro-intestinale gastro_intestinal ADJ f s 0.12 0.00 0.02 0.00 -gastro-intestinaux gastro_intestinal ADJ m p 0.12 0.00 0.05 0.00 -gengis khan gengis_khan NOM m s 0.00 0.14 0.00 0.14 -gentleman-farmer gentleman_farmer NOM m s 0.14 0.27 0.14 0.20 -gentlemen-farmers gentleman_farmer NOM m p 0.14 0.27 0.00 0.07 -germano-anglaises germano_anglais ADJ f p 0.00 0.07 0.00 0.07 -germano-belge germano_belge ADJ f s 0.01 0.00 0.01 0.00 -germano-irlandais germano_irlandais ADJ m 0.03 0.00 0.03 0.00 -germano-russe germano_russe ADJ m s 0.00 0.27 0.00 0.27 -germano-soviétique germano_soviétique ADJ s 0.00 1.82 0.00 1.82 -gin-fizz gin_fizz NOM m 0.04 1.01 0.04 1.01 -gin-rami gin_rami NOM m s 0.04 0.07 0.04 0.07 -gin-rummy gin_rummy NOM m s 0.05 0.14 0.05 0.14 -girl-scout girl_scout NOM f s 0.06 0.14 0.06 0.14 -girl friend girl_friend NOM f s 0.14 0.00 0.14 0.00 -gla-gla gla_gla ADJ m s 0.00 0.14 0.00 0.14 -glisse-la-moi glisse_la_moi NOM f s 0.10 0.00 0.10 0.00 -globe-trotter globe_trotter NOM m s 0.22 0.41 0.20 0.27 -globe-trotters globe_trotter NOM m p 0.22 0.41 0.02 0.14 -gna gna gna_gna ONO 0.14 0.14 0.14 0.14 -gnian-gnian gnian_gnian NOM m s 0.01 0.00 0.01 0.00 -gobe-mouches gobe_mouches NOM m 0.02 0.14 0.02 0.14 -golf-club golf_club NOM m s 0.01 0.07 0.01 0.07 -gorge-de-pigeon gorge_de_pigeon ADJ m s 0.01 0.14 0.01 0.14 -gâte-bois gâte_bois NOM m 0.00 0.07 0.00 0.07 -gâte-sauce gâte_sauce NOM m s 0.00 0.14 0.00 0.14 -gouzi-gouzi gouzi_gouzi NOM m 0.06 0.07 0.06 0.07 -grand-angle grand_angle NOM m s 0.06 0.00 0.06 0.00 -grand-chose grand_chose PRO:ind m s 28.01 36.08 28.01 36.08 -grand-duc grand_duc NOM m s 2.03 1.76 1.90 0.88 -grand-ducale grand_ducal ADJ f s 0.00 0.07 0.00 0.07 -grand-duché grand_duché NOM m s 0.01 0.07 0.01 0.07 -grand-faim grand_faim ADV 0.00 0.20 0.00 0.20 -grand-guignol grand_guignol NOM m s 0.01 0.00 0.01 0.00 -grand-guignolesque grand_guignolesque ADJ s 0.01 0.00 0.01 0.00 -grand-hôtel grand_hôtel NOM m s 0.00 0.07 0.00 0.07 -grand-hâte grand_hâte ADV 0.00 0.07 0.00 0.07 -grand-maître grand_maître NOM m s 0.10 0.07 0.10 0.07 -grand-maman grand_papa NOM f s 2.35 0.95 0.84 0.27 -grand-messe grand_messe NOM f s 0.29 1.28 0.29 1.28 -grand-mère grand_mère NOM f s 73.22 94.59 72.39 91.76 -grand-mères grand_mère NOM f p 73.22 94.59 0.53 2.16 -grand-neige grand_neige NOM m s 0.00 0.07 0.00 0.07 -grand-officier grand_officier NOM m s 0.00 0.07 0.00 0.07 -grand-oncle grand_oncle NOM m s 0.45 4.26 0.45 3.65 -grand-papa grand_papa NOM m s 2.35 0.95 1.50 0.68 -grand-peine grand_peine ADV 0.25 4.86 0.25 4.86 -grand-peur grand_peur ADV 0.00 0.20 0.00 0.20 -grand-place grand_place NOM f s 0.12 1.35 0.12 1.35 -grand-prêtre grand_prêtre NOM m s 0.11 0.20 0.11 0.20 -grand-père grand_père NOM m s 75.64 96.49 75.19 95.20 -grand-quartier grand_quartier NOM m s 0.00 0.34 0.00 0.34 -grand-route grand_route NOM f s 0.27 3.65 0.27 3.58 -grand-routes grand_route NOM f p 0.27 3.65 0.00 0.07 -grand-rue grand_rue NOM f s 0.64 2.36 0.64 2.36 -grand-salle grand_salle NOM f s 0.00 0.20 0.00 0.20 -grand-tante grand_tante NOM f s 1.17 1.76 1.17 1.22 -grand-tantes grand_tante NOM f p 1.17 1.76 0.00 0.47 -grand-vergue grand_vergue NOM f s 0.05 0.00 0.05 0.00 -grand-voile grand_voile NOM f s 0.23 0.27 0.23 0.27 -grande-duchesse grand_duc NOM f s 2.03 1.76 0.09 0.34 -grandes-duchesses grande_duchesse NOM f p 0.01 0.14 0.01 0.14 -grands-croix grand_croix NOM m p 0.00 0.07 0.00 0.07 -grands-ducs grand_duc NOM m p 2.03 1.76 0.05 0.54 -grands-mères grand_mère NOM f p 73.22 94.59 0.30 0.68 -grands-oncles grand_oncle NOM m p 0.45 4.26 0.00 0.61 -grands-parents grands_parents NOM m p 4.59 9.19 4.59 9.19 -grands-pères grand_père NOM m p 75.64 96.49 0.45 1.28 -grands-tantes grand_tante NOM f p 1.17 1.76 0.00 0.07 -grape-fruit grape_fruit NOM m s 0.00 0.27 0.00 0.27 -gras-double gras_double NOM m s 0.22 1.08 0.22 1.01 -gras-doubles gras_double NOM m p 0.22 1.08 0.00 0.07 -gratis pro deo gratis_pro_deo ADV 0.00 0.14 0.00 0.14 -gratte-ciel gratte_ciel NOM m 1.40 3.04 1.14 3.04 -gratte-ciels gratte_ciel NOM m p 1.40 3.04 0.26 0.00 -gratte-cul gratte_cul NOM m 0.00 0.14 0.00 0.14 -gratte-dos gratte_dos NOM m 0.11 0.00 0.11 0.00 -gratte-papier gratte_papier NOM m 0.67 0.54 0.45 0.54 -gratte-papiers gratte_papier NOM m p 0.67 0.54 0.22 0.00 -gratte-pieds gratte_pieds NOM m 0.00 0.20 0.00 0.20 -grenouille-taureau grenouille_taureau NOM f s 0.01 0.00 0.01 0.00 -gri-gri gri_gri NOM m s 0.21 0.14 0.21 0.14 -grill-room grill_room NOM m s 0.00 0.27 0.00 0.27 -grille-pain grille_pain NOM m 2.90 0.27 2.90 0.27 -grimace-éclair grimace_éclair NOM f s 0.01 0.00 0.01 0.00 -grippe-sou grippe_sou NOM m s 0.25 0.14 0.13 0.07 -grippe-sous grippe_sou NOM m p 0.25 0.14 0.12 0.07 -gris-blanc gris_blanc ADJ m s 0.00 0.20 0.00 0.20 -gris-bleu gris_bleu ADJ m s 0.30 1.69 0.30 1.69 -gris-gris gris_gris NOM m 0.22 0.74 0.22 0.74 -gris-jaune gris_jaune ADJ m s 0.00 0.20 0.00 0.20 -gris-perle gris_perle ADJ m s 0.01 0.14 0.01 0.14 -gris-rose gris_rose ADJ 0.00 0.41 0.00 0.41 -gris-vert gris_vert ADJ m s 0.01 1.55 0.01 1.55 -gros-bec gros_bec NOM m s 0.06 0.07 0.06 0.00 -gros-becs gros_bec NOM m p 0.06 0.07 0.00 0.07 -gros-cul gros_cul NOM m s 0.04 0.14 0.04 0.14 -gros-grain gros_grain NOM m s 0.00 0.41 0.00 0.41 -gros-porteur gros_porteur NOM m s 0.02 0.00 0.02 0.00 -grosso modo grosso_modo ADV 0.44 1.89 0.44 1.89 -gréco-latine gréco_latin ADJ f s 0.00 0.34 0.00 0.27 -gréco-latines gréco_latin ADJ f p 0.00 0.34 0.00 0.07 -gréco-romain gréco_romain ADJ m s 0.46 0.68 0.03 0.14 -gréco-romaine gréco_romain ADJ f s 0.46 0.68 0.42 0.34 -gréco-romaines gréco_romain ADJ f p 0.46 0.68 0.01 0.14 -gréco-romains gréco_romain ADJ m p 0.46 0.68 0.00 0.07 -guerre-éclair guerre_éclair NOM f s 0.01 0.14 0.01 0.14 -guet-apens guet_apens NOM m 0.68 0.74 0.68 0.74 -guets-apens guets_apens NOM m p 0.00 0.07 0.00 0.07 -gueule-de-loup gueule_de_loup NOM f s 0.03 0.07 0.03 0.07 -gueules-de-loup gueules_de_loup NOM f p 0.00 0.14 0.00 0.14 -guide-interprète guide_interprète NOM s 0.00 0.07 0.00 0.07 -guili-guili guili_guili NOM m 0.16 0.14 0.16 0.14 -gélatino-bromure gélatino_bromure NOM m s 0.00 0.07 0.00 0.07 -gutta-percha gutta_percha NOM f s 0.03 0.00 0.03 0.00 -hôtel-dieu hôtel_dieu NOM m s 0.01 0.81 0.01 0.81 -hôtel-restaurant hôtel_restaurant NOM m s 0.00 0.14 0.00 0.14 -hache-paille hache_paille NOM m p 0.00 0.14 0.00 0.14 -half-track half_track NOM m s 0.05 0.14 0.04 0.14 -half-tracks half_track NOM m p 0.05 0.14 0.01 0.00 -halte-garderie halte_garderie NOM f s 0.02 0.00 0.02 0.00 -hand-ball hand_ball NOM m s 0.08 0.00 0.08 0.00 -happy end happy_end NOM m s 0.51 0.27 0.45 0.27 -happy ends happy_end NOM m p 0.51 0.27 0.05 0.00 -happy few happy_few NOM m p 0.00 0.14 0.00 0.14 -hara-kiri hara_kiri NOM m s 0.29 0.41 0.29 0.41 -hard-top hard_top NOM m s 0.01 0.00 0.01 0.00 -hard edge hard_edge NOM m s 0.01 0.00 0.01 0.00 -has been has_been NOM m 0.18 0.20 0.18 0.20 -haut-commandement haut_commandement NOM m s 0.00 1.22 0.00 1.22 -haut-commissaire haut_commissaire NOM m s 0.03 7.97 0.03 7.57 -haut-commissariat haut_commissariat NOM m s 0.02 0.81 0.02 0.81 -haut-de-chausse haut_de_chausse NOM f s 0.15 0.07 0.14 0.07 -haut-de-chausses haut_de_chausses NOM m 0.00 0.20 0.00 0.20 -haut-de-forme haut_de_forme NOM m s 0.45 1.62 0.30 1.42 -haut-fond haut_fond NOM m s 0.08 1.08 0.02 0.61 -haut-le-coeur haut_le_coeur NOM m 0.04 1.01 0.04 1.01 -haut-le-corps haut_le_corps NOM m 0.00 1.76 0.00 1.76 -haut-parleur haut_parleur NOM m s 3.65 7.36 2.61 3.99 -haut-parleurs haut_parleur NOM m p 3.65 7.36 1.04 3.38 -haut-relief haut_relief NOM m s 0.00 0.20 0.00 0.20 -haute-fidélité haute_fidélité NOM f s 0.03 0.07 0.03 0.07 -hauts-commissaires haut_commissaire NOM m p 0.03 7.97 0.00 0.41 -hauts-de-chausses haut_de_chausse NOM m p 0.15 0.07 0.01 0.00 -hauts-de-forme haut_de_forme NOM m p 0.45 1.62 0.14 0.20 -hauts-fonds haut_fond NOM m p 0.08 1.08 0.06 0.47 -hauts-fourneaux haut_fourneau NOM m p 0.01 0.27 0.01 0.27 -hi-fi hi_fi NOM f s 0.87 0.81 0.87 0.81 -hi-han hi_han ONO 0.20 0.14 0.20 0.14 -hic et nunc hic_et_nunc ADV 0.00 0.41 0.00 0.41 -high-life high_life NOM m s 0.27 0.14 0.27 0.14 -high-tech high_tech ADJ 0.32 0.14 0.29 0.07 -high life high_life NOM m s 0.04 0.41 0.04 0.41 -high tech high_tech ADJ s 0.32 0.14 0.04 0.07 -hip-hop hip_hop NOM m s 1.74 0.00 1.74 0.00 -hispano-américain hispano_américain NOM m s 0.01 0.00 0.01 0.00 -hispano-américaine hispano_américain ADJ f s 0.03 0.27 0.03 0.20 -hispano-cubain hispano_cubain ADJ m s 0.00 0.07 0.00 0.07 -hispano-mauresque hispano_mauresque ADJ m s 0.00 0.07 0.00 0.07 -historico-culturelle historico_culturel ADJ f s 0.00 0.07 0.00 0.07 -hit-parade hit_parade NOM m s 0.73 0.68 0.69 0.68 -hit-parades hit_parade NOM m p 0.73 0.68 0.04 0.00 -hold-up hold_up NOM m 7.78 3.38 7.59 3.38 -hold up hold_up NOM m 7.78 3.38 0.20 0.00 -home-trainer home_trainer NOM m s 0.01 0.00 0.01 0.00 -homme-chien homme_chien NOM m s 0.09 0.14 0.09 0.14 -homme-clé homme_clé NOM m s 0.04 0.00 0.04 0.00 -homme-femme homme_femme NOM m s 0.36 0.07 0.36 0.07 -homme-grenouille homme_grenouille NOM m s 0.35 0.20 0.20 0.07 -homme-loup homme_loup NOM m s 0.05 0.00 0.05 0.00 -homme-machine homme_machine NOM m s 0.04 0.00 0.04 0.00 -homme-oiseau homme_oiseau NOM m s 0.05 0.00 0.05 0.00 -homme-orchestre homme_orchestre NOM m s 0.03 0.07 0.03 0.07 -homme-poisson homme_poisson NOM m s 0.06 0.00 0.06 0.00 -homme-robot homme_robot NOM m s 0.07 0.00 0.07 0.00 -homme-sandwich homme_sandwich NOM m s 0.00 0.41 0.00 0.41 -homme-serpent homme_serpent NOM m s 0.02 0.27 0.02 0.27 -hommes-grenouilles homme_grenouille NOM m p 0.35 0.20 0.16 0.14 -homo erectus homo_erectus NOM m 0.04 0.00 0.04 0.00 -homo habilis homo_habilis NOM m 0.00 0.07 0.00 0.07 -hong kong hong_kong NOM s 0.03 0.00 0.03 0.00 -honoris causa honoris_causa ADV 0.16 0.27 0.16 0.27 -hors-bord hors_bord NOM m p 0.45 0.61 0.45 0.61 -hors-cote hors_cote ADJ 0.01 0.00 0.01 0.00 -hors-d'oeuvre hors_d_oeuvre NOM m 0.56 1.96 0.56 1.96 -hors-jeu hors_jeu ADJ 1.13 0.20 1.13 0.20 -hors-la-loi hors_la_loi NOM m p 3.21 1.49 3.21 1.49 -hors-piste hors_piste NOM m p 0.45 0.00 0.45 0.00 -hors-série hors_série ADJ f s 0.01 0.20 0.01 0.20 -horse-guard horse_guard NOM m s 0.02 0.14 0.00 0.07 -horse-guards horse_guard NOM m p 0.02 0.14 0.02 0.07 -hot-dog hot_dog NOM m s 6.09 0.27 3.12 0.07 -hot-dogs hot_dog NOM m p 6.09 0.27 2.98 0.20 -hot dog hot_dog NOM m s 2.69 0.14 1.31 0.14 -hot dogs hot_dog NOM m p 2.69 0.14 1.38 0.00 -house-boat house_boat NOM m s 0.04 0.07 0.02 0.00 -house-boats house_boat NOM m p 0.04 0.07 0.01 0.07 -house music house_music NOM f s 0.01 0.00 0.01 0.00 -huit-reflets huit_reflets NOM m 0.00 0.27 0.00 0.27 -humain-robot humain_robot ADJ m s 0.03 0.00 0.03 0.00 -hydro-électrique hydro_électrique ADJ s 0.00 0.07 0.00 0.07 -ice-cream ice_cream NOM m s 0.02 0.34 0.00 0.27 -ice-creams ice_cream NOM m p 0.02 0.34 0.00 0.07 -ice cream ice_cream NOM m s 0.02 0.34 0.02 0.00 -ici-bas ici_bas ADV 3.58 2.97 3.58 2.97 -idée-clé idée_clé NOM f s 0.01 0.00 0.01 0.00 -idée-force idée_force NOM f s 0.01 0.20 0.01 0.07 -idées-forces idée_force NOM f p 0.01 0.20 0.00 0.14 -import-export import_export NOM m s 0.47 0.41 0.47 0.41 -in-bord in_bord ADJ m s 0.01 0.00 0.01 0.00 -in-bord in_bord NOM m s 0.01 0.00 0.01 0.00 -in-folio in_folio NOM m 0.00 0.61 0.00 0.61 -in-folios in_folios NOM m 0.00 0.20 0.00 0.20 -in-octavo in_octavo NOM m 0.01 0.34 0.01 0.34 -in-octavos in_octavos NOM m 0.00 0.07 0.00 0.07 -in-quarto in_quarto ADJ 0.00 0.07 0.00 0.07 -in-quarto in_quarto NOM m 0.00 0.07 0.00 0.07 -in-seize in_seize NOM m 0.00 0.07 0.00 0.07 -in absentia in_absentia ADV 0.02 0.00 0.02 0.00 -in abstracto in_abstracto ADV 0.00 0.20 0.00 0.20 -in anima vili in_anima_vili ADV 0.00 0.07 0.00 0.07 -in cauda venenum in_cauda_venenum ADV 0.00 0.14 0.00 0.14 -in extenso in_extenso ADV 0.00 0.54 0.00 0.54 -in extremis in_extremis ADV 0.07 2.64 0.07 2.64 -in memoriam in_memoriam ADV 0.15 0.00 0.15 0.00 -in pace in_pace NOM m 0.16 0.07 0.16 0.07 -in petto in_petto ADV 0.00 1.22 0.00 1.22 -in utero in_utero ADJ f p 0.05 0.00 0.05 0.00 -in utero in_utero ADV 0.05 0.00 0.05 0.00 -in vino veritas in_vino_veritas ADV 0.05 0.00 0.05 0.00 -in vitro in_vitro ADJ 0.22 0.34 0.22 0.34 -in vivo in_vivo ADV 0.00 0.07 0.00 0.07 -inch allah inch_allah ONO 0.27 0.47 0.27 0.47 -indemnités-repas indemnités_repas NOM f p 0.01 0.00 0.01 0.00 -indo-européen indo_européen ADJ m s 0.11 0.27 0.10 0.00 -indo-européenne indo_européen ADJ f s 0.11 0.27 0.01 0.07 -indo-européennes indo_européen ADJ f p 0.11 0.27 0.00 0.14 -indo-européens indo_européen ADJ m p 0.11 0.27 0.00 0.07 -industrie-clé industrie_clé NOM f s 0.01 0.00 0.01 0.00 -infirmière-major infirmière_major NOM f s 0.14 0.14 0.14 0.14 -ingénieur-chimiste ingénieur_chimiste NOM m s 0.00 0.07 0.00 0.07 -ingénieur-conseil ingénieur_conseil NOM m s 0.00 0.14 0.00 0.14 -intellectuel-phare intellectuel_phare NOM m s 0.00 0.07 0.00 0.07 -inter-écoles inter_école NOM f p 0.03 0.00 0.03 0.00 -intra-atomique intra_atomique ADJ s 0.00 0.07 0.00 0.07 -intra-muros intra_muros ADV 0.01 0.07 0.01 0.07 -intra-rachidienne rachidien ADJ f s 0.23 0.14 0.01 0.00 -intra-utérine intra_utérin ADJ f s 0.14 0.07 0.04 0.00 -intra-utérines intra_utérin ADJ f p 0.14 0.07 0.10 0.07 -intra muros intra_muros ADV 0.01 0.07 0.01 0.07 -invisible piston invisible_piston NOM m s 0.00 0.07 0.00 0.07 -ipso facto ipso_facto ADV 0.21 0.61 0.21 0.61 -irish coffee irish_coffee NOM m s 0.16 0.14 0.16 0.14 -israélo-arabe israélo_arabe ADJ f s 0.01 0.00 0.01 0.00 -israélo-syrienne israélo_syrien ADJ f s 0.14 0.00 0.14 0.00 -italo-allemande italo_allemand ADJ f s 0.00 0.20 0.00 0.07 -italo-allemandes italo_allemand ADJ f p 0.00 0.20 0.00 0.14 -italo-américain italo_américain ADJ m s 0.20 0.00 0.15 0.00 -italo-américaine italo_américain ADJ f s 0.20 0.00 0.04 0.00 -italo-brésilien italo_brésilien ADJ m s 0.00 0.07 0.00 0.07 -italo-français italo_français ADJ m 0.00 0.14 0.00 0.07 -italo-françaises italo_français ADJ f p 0.00 0.14 0.00 0.07 -italo-irlandais italo_irlandais ADJ m 0.01 0.00 0.01 0.00 -italo-polonais italo_polonais ADJ m 0.00 0.07 0.00 0.07 -italo-égyptien italo_égyptien ADJ m s 0.00 0.07 0.00 0.07 -ite missa est ite_missa_est NOM m 0.00 0.14 0.00 0.14 -jam-session jam_session NOM f s 0.16 0.00 0.14 0.00 -jam-sessions jam_session NOM f p 0.16 0.00 0.01 0.00 -jamais-vu jamais_vu NOM m 0.00 0.07 0.00 0.07 -jaune-vert jaune_vert ADJ s 0.01 0.20 0.01 0.20 -jazz-band jazz_band NOM m s 0.02 0.20 0.02 0.20 -jazz-rock jazz_rock NOM m 0.14 0.07 0.14 0.07 -je-m'en-fichiste je_m_en_fichiste ADJ f s 0.01 0.00 0.01 0.00 -je-m'en-foutisme je_m_en_foutisme NOM m s 0.01 0.14 0.01 0.14 -je-m'en-foutiste je_m_en_foutiste ADJ s 0.01 0.00 0.01 0.00 -je-m'en-foutistes je_m_en_foutiste NOM p 0.03 0.07 0.03 0.07 -je-ne-sais-quoi je_ne_sais_quoi NOM m 0.34 0.47 0.34 0.47 -jean-foutre jean_foutre NOM m 0.41 1.28 0.41 1.28 -jean-le-blanc jean_le_blanc NOM m 0.00 0.07 0.00 0.07 -jet-set jet_set NOM m s 0.42 0.07 0.42 0.07 -jet-stream jet_stream NOM m s 0.01 0.00 0.01 0.00 -jet society jet_society NOM f s 0.00 0.07 0.00 0.07 -jeu-concours jeu_concours NOM m 0.10 0.14 0.10 0.14 -jeune-homme jeune_homme ADJ s 0.10 0.00 0.10 0.00 -jiu-jitsu jiu_jitsu NOM m 0.35 0.14 0.35 0.14 -joint-venture joint_venture NOM f s 0.16 0.00 0.16 0.00 -joli-coeur joli_coeur ADJ m s 0.01 0.00 0.01 0.00 -joli-joli joli_joli ADJ m s 0.26 0.41 0.26 0.41 -judéo-christianisme judéo_christianisme NOM m s 0.01 0.00 0.01 0.00 -judéo-chrétienne judéo_chrétien ADJ f s 0.06 0.20 0.04 0.07 -judéo-chrétiennes judéo_chrétien ADJ f p 0.06 0.20 0.01 0.07 -judéo-chrétiens judéo_chrétien ADJ m p 0.06 0.20 0.00 0.07 -juke-box juke_box NOM m 1.61 1.89 1.58 1.69 -juke-boxes juke_box NOM m p 1.61 1.89 0.03 0.20 -jupe-culotte jupe_culotte NOM f s 0.02 0.34 0.02 0.27 -jupes-culottes jupe_culotte NOM m p 0.02 0.34 0.00 0.07 -jusqu'au jusqu_au PRE 0.34 0.07 0.34 0.07 -jusqu'à jusqu_à PRE 0.81 0.27 0.81 0.27 -jusque-là jusque_là ADV 7.81 29.53 7.81 29.53 -juste-milieu juste_milieu NOM m 0.00 0.07 0.00 0.07 -k-o k_o ADJ 0.02 0.07 0.02 0.07 -k-way k_way NOM m s 0.06 0.20 0.06 0.20 -kala-azar kala_azar NOM m s 0.00 0.07 0.00 0.07 -kif-kif kif_kif ADJ s 0.20 0.81 0.20 0.81 -kilomètres-heure kilomètre_heure NOM m p 0.14 0.41 0.14 0.41 -king-charles king_charles NOM m 0.00 0.07 0.00 0.07 -knock-out knock_out ADJ m s 0.19 0.20 0.19 0.20 -kung-fu kung_fu NOM m s 1.12 0.00 1.01 0.00 -kung fu kung_fu NOM m s 1.12 0.00 0.10 0.00 -kyrie eleison kyrie_eleison NOM m 0.41 0.07 0.41 0.07 -l'un l_un PRO:ind 127.72 208.92 127.72 208.92 -l'une l_une PRO:ind f 36.12 93.58 36.12 93.58 -l-dopa l_dopa NOM f s 0.05 0.00 0.05 0.00 -la-la-la la_la_la ART:def f s 0.14 0.07 0.14 0.07 -la plata la_plata NOM s 0.01 0.14 0.01 0.14 -la plupart de la_plupart_de ADJ:ind 3.94 7.30 3.94 7.30 -la plupart des la_plupart_des ADJ:ind 23.41 29.26 23.41 29.26 -la plupart du la_plupart_du ADJ:ind 5.07 7.91 5.07 7.91 -la plupart la_plupart PRO:ind p 14.72 23.24 14.72 23.24 -lacrima-christi lacrima_christi NOM m 0.00 0.07 0.00 0.07 -lacryma-christi lacryma_christi NOM m s 0.00 0.34 0.00 0.20 -lacryma christi lacryma_christi NOM m s 0.00 0.34 0.00 0.14 -laisse-la-moi laisse_la_moi NOM f s 0.14 0.00 0.14 0.00 -laisser-aller laisser_aller NOM m 0.75 3.38 0.75 3.38 -laisser-faire laisser_faire NOM m 0.01 0.07 0.01 0.07 -laissez-faire laissez_faire NOM m 0.01 0.00 0.01 0.00 -laissez-passer laissez_passer NOM m 4.00 1.96 4.00 1.96 -laissé-pour-compte laissé_pour_compte NOM m s 0.00 0.07 0.00 0.07 -laissés-pour-compte laissés_pour_compte NOM m p 0.23 0.07 0.23 0.07 -lampe-phare lampe_phare NOM f s 0.00 0.07 0.00 0.07 -lampe-tempête lampe_tempête NOM f s 0.00 0.95 0.00 0.68 -lampes-tempête lampe_tempête NOM f p 0.00 0.95 0.00 0.27 -lance-engins lance_engins NOM m 0.02 0.00 0.02 0.00 -lance-flamme lance_flamme NOM m s 0.06 0.00 0.06 0.00 -lance-flammes lance_flammes NOM m 1.06 0.61 1.06 0.61 -lance-fusée lance_fusée NOM m s 0.01 0.00 0.01 0.00 -lance-fusées lance_fusées NOM m 0.12 0.61 0.12 0.61 -lance-grenade lance_grenade NOM m s 0.02 0.00 0.02 0.00 -lance-grenades lance_grenades NOM m 0.34 0.00 0.34 0.00 -lance-missiles lance_missiles NOM m 0.26 0.07 0.26 0.07 -lance-pierre lance_pierre NOM m s 0.25 0.07 0.25 0.07 -lance-pierres lance_pierres NOM m 0.39 1.42 0.39 1.42 -lance-roquette lance_roquette NOM m s 0.06 0.00 0.06 0.00 -lance-roquettes lance_roquettes NOM m 0.72 0.14 0.72 0.14 -lance-torpille lance_torpille NOM m s 0.00 0.07 0.00 0.07 -lance-torpilles lance_torpilles NOM m 0.03 0.41 0.03 0.41 -lanterne-tempête lanterne_tempête NOM f s 0.00 0.07 0.00 0.07 -lapis-lazuli lapis_lazuli NOM m 0.01 0.41 0.01 0.41 -latino-américain latino_américain NOM m s 0.10 0.07 0.03 0.07 -latino-américaine latino_américain NOM f s 0.10 0.07 0.03 0.00 -latino-américains latino_américain NOM m p 0.10 0.07 0.04 0.00 -laurier-cerise laurier_cerise NOM m s 0.00 0.20 0.00 0.07 -laurier-rose laurier_rose NOM m s 0.14 1.69 0.04 0.20 -lauriers-cerises laurier_cerise NOM m p 0.00 0.20 0.00 0.14 -lauriers-roses laurier_rose NOM m p 0.14 1.69 0.10 1.49 -lave-auto lave_auto NOM m s 0.06 0.00 0.06 0.00 -lave-glace lave_glace NOM m s 0.03 0.20 0.03 0.20 -lave-linge lave_linge NOM m 0.83 0.00 0.83 0.00 -lave-mains lave_mains NOM m 0.00 0.07 0.00 0.07 -lave-pont lave_pont NOM m s 0.00 0.14 0.00 0.07 -lave-ponts lave_pont NOM m p 0.00 0.14 0.00 0.07 -lave-vaisselle lave_vaisselle NOM m 0.88 0.20 0.88 0.20 -lettre-clé lettre_clé NOM f s 0.14 0.00 0.14 0.00 -librairie-papeterie librairie_papeterie NOM f s 0.00 0.20 0.00 0.20 -libre-arbitre libre_arbitre NOM m s 0.12 0.14 0.12 0.14 -libre-penseur libre_penseur NOM m s 0.04 0.14 0.04 0.14 -libre-penseuse libre_penseur NOM f s 0.04 0.14 0.01 0.00 -libre-service libre_service NOM m s 0.04 0.34 0.04 0.34 -libre-échange libre_échange NOM m 0.32 0.14 0.32 0.14 -libre-échangiste libre_échangiste NOM s 0.03 0.00 0.03 0.00 -lie-de-vin lie_de_vin ADJ 0.00 1.08 0.00 1.08 -lieu-dit lieu_dit NOM m s 0.00 0.88 0.00 0.88 -lieutenant-colonel lieutenant_colonel NOM m s 1.74 1.42 1.73 1.42 -lieutenant-pilote lieutenant_pilote NOM m s 0.00 0.07 0.00 0.07 -lieutenants-colonels lieutenant_colonel NOM m p 1.74 1.42 0.01 0.00 -lieux-dits lieux_dits NOM m p 0.00 0.41 0.00 0.41 -lit-bateau lit_bateau NOM m s 0.00 0.81 0.00 0.81 -lit-cage lit_cage NOM m s 0.01 1.62 0.01 1.15 -lit-divan lit_divan NOM m s 0.00 0.20 0.00 0.20 -lits-cages lit_cage NOM m p 0.01 1.62 0.00 0.47 -living-room living_room NOM m s 0.23 2.23 0.23 2.23 -livre-cassette livre_cassette NOM m s 0.03 0.00 0.03 0.00 -livres-club livres_club NOM m p 0.00 0.07 0.00 0.07 -là-bas là_bas ADV 263.15 117.70 263.15 117.70 -là-dedans là_dedans ADV 74.00 23.58 74.00 23.58 -là-dehors là_dehors ADV 1.30 0.00 1.30 0.00 -là-derrière là_derrière ADV 1.14 0.14 1.14 0.14 -là-dessous là_dessous ADV 7.12 4.32 7.12 4.32 -là-dessus là_dessus ADV 30.89 32.50 30.89 32.50 -là-devant là_devant ADV 0.00 0.14 0.00 0.14 -là-haut là_haut ADV 67.78 42.70 67.78 42.70 -lock-out lock_out NOM m 0.11 0.00 0.11 0.00 -lock-outés lock_outer VER m p 0.00 0.07 0.00 0.07 par:pas; -long-courrier long_courrier NOM m s 0.26 0.61 0.25 0.47 -long-courriers long_courrier NOM m p 0.26 0.61 0.01 0.14 -long-métrage long_métrage NOM m s 0.06 0.00 0.06 0.00 -longue-vue longue_vue NOM f s 0.30 2.64 0.29 2.50 -longues-vues longue_vue NOM f p 0.30 2.64 0.01 0.14 -lord-maire lord_maire NOM m s 0.02 0.07 0.02 0.07 -louis-philippard louis_philippard ADJ m s 0.00 0.34 0.00 0.07 -louis-philipparde louis_philippard ADJ f s 0.00 0.34 0.00 0.14 -louis-philippards louis_philippard ADJ m p 0.00 0.34 0.00 0.14 -louise-bonne louise_bonne NOM f s 0.00 0.07 0.00 0.07 -loup-cervier loup_cervier NOM m s 0.00 0.14 0.00 0.07 -loup-garou loup_garou NOM m s 3.98 1.22 3.35 0.88 -loups-cerviers loup_cervier NOM m p 0.00 0.14 0.00 0.07 -loups-garous loup_garou NOM m p 3.98 1.22 0.63 0.34 -lèche-botte lèche_botte NOM m s 0.11 0.00 0.11 0.00 -lèche-bottes lèche_bottes NOM m 0.68 0.34 0.68 0.34 -lèche-cul lèche_cul NOM m s 1.29 0.61 1.29 0.61 -lèche-vitrine lèche_vitrine NOM m s 0.26 0.07 0.26 0.07 -lèche-vitrines lèche_vitrines NOM m 0.07 0.20 0.07 0.20 -lèse-majesté lèse_majesté NOM f 0.03 0.27 0.03 0.27 -lui-même lui_même PRO:per m s 46.58 202.30 46.58 202.30 -m'as-tu-vu m_as_tu_vu ADJ s 0.03 0.00 0.03 0.00 -ma-jong ma_jong NOM m s 0.02 0.07 0.02 0.07 -maître-assistant maître_assistant NOM m s 0.00 0.07 0.00 0.07 -maître-autel maître_autel NOM m s 0.00 0.61 0.00 0.61 -maître-chanteur maître_chanteur NOM m s 0.21 0.20 0.21 0.20 -maître-chien maître_chien NOM m s 0.11 0.00 0.11 0.00 -maître-coq maître_coq NOM m s 0.01 0.00 0.01 0.00 -maître-nageur maître_nageur NOM m s 0.45 0.27 0.45 0.27 -maître-à-danser maître_à_danser NOM m s 0.00 0.07 0.00 0.07 -maître queux maître_queux NOM m s 0.00 0.14 0.00 0.14 -machine-outil machine_outil NOM f s 0.11 0.47 0.00 0.07 -machines-outils machine_outil NOM f p 0.11 0.47 0.11 0.41 -made in made_in ADV 1.06 0.88 1.06 0.88 -madre de dios madre_de_dios NOM s 0.00 0.07 0.00 0.07 -mah-jong mah_jong NOM m s 1.54 0.20 1.54 0.20 -mail-coach mail_coach NOM m s 0.00 0.14 0.00 0.14 -main-courante main_courante NOM f s 0.01 0.07 0.01 0.07 -main-d'oeuvre main_d_oeuvre NOM f s 0.89 1.62 0.89 1.62 -main-forte main_forte NOM f 0.36 0.41 0.36 0.41 -maison-mère maison_mère NOM f s 0.12 0.14 0.12 0.14 -major-général major_général NOM s 0.02 0.34 0.02 0.34 -mal-aimé mal_aimé NOM m s 0.21 0.07 0.03 0.00 -mal-aimée mal_aimé NOM f s 0.21 0.07 0.01 0.07 -mal-aimés mal_aimé NOM m p 0.21 0.07 0.17 0.00 -mal-baisé mal_baisé NOM m s 0.00 0.20 0.00 0.07 -mal-baisée mal_baisé NOM f s 0.00 0.20 0.00 0.14 -mal-pensante mal_pensant ADJ f s 0.00 0.07 0.00 0.07 -mal-pensants mal_pensant NOM m p 0.14 0.07 0.14 0.07 -mal-être mal_être NOM m s 0.34 0.20 0.34 0.20 -mam'selle mam_selle NOM f s 0.11 0.07 0.11 0.07 -mam'zelle mam_zelle NOM f s 0.03 0.00 0.03 0.00 -mandat-carte mandat_carte NOM m s 0.01 0.00 0.01 0.00 -mandat-lettre mandat_lettre NOM m s 0.00 0.07 0.00 0.07 -mandat-poste mandat_poste NOM m s 0.03 0.07 0.03 0.07 -mange-disque mange_disque NOM m s 0.11 0.07 0.10 0.00 -mange-disques mange_disque NOM m p 0.11 0.07 0.01 0.07 -mange-tout mange_tout NOM m 0.01 0.07 0.01 0.07 -maniaco-dépressif maniaco_dépressif ADJ m s 0.38 0.14 0.17 0.00 -maniaco-dépressifs maniaco_dépressif ADJ m p 0.38 0.14 0.08 0.14 -maniaco-dépressive maniaco_dépressif ADJ f s 0.38 0.14 0.13 0.00 -manu militari manu_militari ADV 0.16 0.20 0.16 0.20 -marie-couche-toi-là marie_couche_toi_là NOM f 0.06 0.27 0.06 0.27 -marie-jeanne marie_jeanne NOM f s 0.26 0.07 0.26 0.07 -marie-louise marie_louise NOM f s 0.00 0.07 0.00 0.07 -marie-salope marie_salope NOM f s 0.00 0.07 0.00 0.07 -marin-pêcheur marin_pêcheur NOM m s 0.01 0.14 0.01 0.14 -marque-page marque_page NOM m s 0.25 0.14 0.24 0.07 -marque-pages marque_page NOM m p 0.25 0.14 0.01 0.07 -marteau-pilon marteau_pilon NOM m s 0.07 0.41 0.07 0.34 -marteau-piqueur marteau_piqueur NOM m s 0.42 0.07 0.42 0.07 -marteaux-pilons marteau_pilon NOM m p 0.07 0.41 0.00 0.07 -martin-pêcheur martin_pêcheur NOM m s 0.02 0.41 0.01 0.27 -martins-pêcheurs martin_pêcheur NOM m p 0.02 0.41 0.01 0.14 -maréchal-ferrant maréchal_ferrant NOM m s 0.22 1.96 0.22 1.96 -maréchaux-ferrants maréchaux_ferrants NOM m p 0.00 0.41 0.00 0.41 -marxisme-léninisme marxisme_léninisme NOM m s 0.50 0.68 0.50 0.68 -marxiste-léniniste marxiste_léniniste ADJ s 0.41 0.41 0.27 0.41 -marxistes-léninistes marxiste_léniniste ADJ p 0.41 0.41 0.14 0.00 -masque-espion masque_espion NOM m s 0.01 0.00 0.01 0.00 -mass media mass_media NOM m p 0.17 0.07 0.17 0.07 -mat' mat NOM m s 6.84 4.32 1.95 0.88 -mater dolorosa mater_dolorosa NOM f 0.00 0.47 0.00 0.47 -maxillo-facial maxillo_facial ADJ m s 0.01 0.00 0.01 0.00 -mea-culpa mea_culpa NOM m 0.07 0.14 0.07 0.14 -mea culpa mea_culpa NOM m 0.70 0.68 0.70 0.68 -medicine-ball medicine_ball NOM m s 0.00 0.07 0.00 0.07 -melting-pot melting_pot NOM m s 0.14 0.07 0.13 0.00 -melting pot melting_pot NOM m s 0.14 0.07 0.01 0.07 -mer-air mer_air ADJ f s 0.01 0.00 0.01 0.00 -messieurs-dames messieurs_dames NOM m p 0.48 0.68 0.48 0.68 -mets-la-toi mets_la_toi NOM m 0.01 0.00 0.01 0.00 -meurtre-suicide meurtre_suicide NOM m s 0.04 0.00 0.04 0.00 -mezza-voce mezza_voce ADV 0.00 0.07 0.00 0.07 -mezza voce mezza_voce ADV 0.00 0.20 0.00 0.20 -mezzo-soprano mezzo_soprano NOM s 0.20 0.00 0.20 0.00 -mi-accablé mi_accablé ADJ m s 0.00 0.07 0.00 0.07 -mi-africains mi_africains NOM m 0.00 0.07 0.00 0.07 -mi-airain mi_airain NOM m s 0.00 0.07 0.00 0.07 -mi-allemand mi_allemand NOM m 0.00 0.07 0.00 0.07 -mi-allongé mi_allongé ADJ m s 0.00 0.07 0.00 0.07 -mi-américaine mi_américaine NOM m 0.02 0.00 0.02 0.00 -mi-ange mi_ange NOM m s 0.01 0.00 0.01 0.00 -mi-angevins mi_angevins NOM m 0.00 0.07 0.00 0.07 -mi-animal mi_animal ADJ m s 0.05 0.00 0.05 0.00 -mi-animaux mi_animaux ADJ m 0.00 0.07 0.00 0.07 -mi-août mi_août NOM f s 0.00 0.20 0.00 0.20 -mi-appointées mi_appointé ADJ f p 0.00 0.07 0.00 0.07 -mi-appréhension mi_appréhension NOM f s 0.00 0.07 0.00 0.07 -mi-arabe mi_arabe ADJ s 0.00 0.07 0.00 0.07 -mi-artisan mi_artisan NOM m s 0.00 0.07 0.00 0.07 -mi-automne mi_automne NOM f s 0.00 0.14 0.00 0.14 -mi-bandit mi_bandit NOM m s 0.00 0.07 0.00 0.07 -mi-bas mi_bas NOM m 0.14 0.14 0.14 0.14 -mi-biblique mi_biblique ADJ f s 0.00 0.07 0.00 0.07 -mi-black mi_black ADJ m s 0.14 0.00 0.14 0.00 -mi-blanc mi_blanc NOM m 0.00 0.14 0.00 0.14 -mi-blancs mi_blancs NOM m 0.00 0.07 0.00 0.07 -mi-bleu mi_bleu ADJ 0.00 0.07 0.00 0.07 -mi-bois mi_bois NOM m 0.00 0.07 0.00 0.07 -mi-bordel mi_bordel NOM m s 0.00 0.07 0.00 0.07 -mi-bourgeois mi_bourgeois ADJ m s 0.00 0.07 0.00 0.07 -mi-bovins mi_bovins NOM m 0.00 0.07 0.00 0.07 -mi-braconniers mi_braconnier NOM m p 0.00 0.07 0.00 0.07 -mi-bras mi_bras NOM m 0.00 0.14 0.00 0.14 -mi-britannique mi_britannique ADJ s 0.00 0.07 0.00 0.07 -mi-building mi_building NOM m s 0.00 0.07 0.00 0.07 -mi-bureaucrates mi_bureaucrate ADJ m p 0.00 0.07 0.00 0.07 -mi-bête mi_bête ADJ m s 0.04 0.00 0.04 0.00 -mi-côte mi_côte NOM f s 0.00 0.20 0.00 0.20 -mi-café mi_café ADJ 0.00 0.07 0.00 0.07 -mi-café mi_café NOM m s 0.00 0.07 0.00 0.07 -mi-campagnarde mi_campagnarde NOM m 0.00 0.07 0.00 0.07 -mi-canard mi_canard NOM m s 0.00 0.07 0.00 0.07 -mi-capacité mi_capacité NOM f s 0.02 0.00 0.02 0.00 -mi-carrière mi_carrier NOM f s 0.01 0.00 0.01 0.00 -mi-carême mi_carême NOM f s 0.01 0.61 0.01 0.61 -mi-chair mi_chair ADJ m s 0.00 0.20 0.00 0.20 -mi-chat mi_chat NOM m s 0.00 0.07 0.00 0.07 -mi-chatte mi_chatte NOM f s 0.01 0.00 0.01 0.00 -mi-chauve mi_chauve ADJ s 0.00 0.07 0.00 0.07 -mi-chemin mi_chemin NOM m s 3.72 6.35 3.72 6.35 -mi-châtaigniers mi_châtaignier NOM m p 0.00 0.07 0.00 0.07 -mi-chou mi_chou NOM m s 0.00 0.07 0.00 0.07 -mi-chourineur mi_chourineur NOM m s 0.00 0.07 0.00 0.07 -mi-chèvre mi_chèvre NOM f s 0.00 0.07 0.00 0.07 -mi-chênes mi_chêne NOM m p 0.00 0.07 0.00 0.07 -mi-clair mi_clair ADJ m s 0.00 0.07 0.00 0.07 -mi-cloître mi_cloître NOM m s 0.00 0.07 0.00 0.07 -mi-clos mi_clos ADJ m 0.21 7.16 0.11 6.08 -mi-close mi_clos ADJ f s 0.21 7.16 0.00 0.20 -mi-closes mi_clos ADJ f p 0.21 7.16 0.10 0.88 -mi-comique mi_comique ADJ m s 0.00 0.14 0.00 0.14 -mi-complices mi_complice ADJ m p 0.00 0.07 0.00 0.07 -mi-compote mi_compote NOM f s 0.00 0.07 0.00 0.07 -mi-confit mi_confit NOM m 0.00 0.07 0.00 0.07 -mi-confondus mi_confondu ADJ m p 0.00 0.07 0.00 0.07 -mi-connue mi_connu ADJ f s 0.01 0.00 0.01 0.00 -mi-consterné mi_consterné ADJ m s 0.00 0.07 0.00 0.07 -mi-contrariés mi_contrarié ADJ m p 0.00 0.07 0.00 0.07 -mi-corbeaux mi_corbeaux NOM m p 0.00 0.07 0.00 0.07 -mi-corps mi_corps NOM m 0.01 1.55 0.01 1.55 -mi-course mi_course NOM f s 0.08 0.27 0.08 0.27 -mi-courtois mi_courtois ADJ m 0.00 0.07 0.00 0.07 -mi-cousine mi_cousin NOM f s 0.00 0.14 0.00 0.07 -mi-cousins mi_cousin NOM m p 0.00 0.14 0.00 0.07 -mi-coutume mi_coutume NOM f s 0.00 0.07 0.00 0.07 -mi-crabe mi_crabe NOM m s 0.00 0.07 0.00 0.07 -mi-croyant mi_croyant NOM m 0.00 0.07 0.00 0.07 -mi-créature mi_créature NOM f s 0.00 0.07 0.00 0.07 -mi-cruel mi_cruel ADJ m s 0.00 0.07 0.00 0.07 -mi-cuisse mi_cuisse NOM f s 0.06 1.35 0.04 0.81 -mi-cuisses mi_cuisse NOM f p 0.06 1.35 0.01 0.54 -mi-céleste mi_céleste ADJ m s 0.00 0.07 0.00 0.07 -mi-curieux mi_curieux ADJ m p 0.00 0.14 0.00 0.14 -mi-cérémonieux mi_cérémonieux ADJ m 0.00 0.07 0.00 0.07 -mi-dentelle mi_dentelle NOM f s 0.00 0.07 0.00 0.07 -mi-didactique mi_didactique ADJ s 0.00 0.07 0.00 0.07 -mi-distance mi_distance NOM f s 0.04 0.34 0.04 0.34 -mi-douce mi_douce ADJ f s 0.00 0.07 0.00 0.07 -mi-décadents mi_décadents NOM m 0.00 0.07 0.00 0.07 -mi-décembre mi_décembre NOM m 0.01 0.27 0.01 0.27 -mi-démon mi_démon NOM m s 0.02 0.00 0.02 0.00 -mi-désir mi_désir NOM m s 0.00 0.07 0.00 0.07 -mi-effrayée mi_effrayé ADJ f s 0.00 0.20 0.00 0.07 -mi-effrayés mi_effrayé ADJ m p 0.00 0.20 0.00 0.14 -mi-effrontée mi_effrontée NOM m 0.00 0.07 0.00 0.07 -mi-enfant mi_enfant NOM s 0.01 0.07 0.01 0.07 -mi-enjouée mi_enjoué ADJ f s 0.00 0.07 0.00 0.07 -mi-enterré mi_enterré ADJ m s 0.00 0.07 0.00 0.07 -mi-envieux mi_envieux ADJ m p 0.00 0.07 0.00 0.07 -mi-espagnol mi_espagnol NOM m 0.00 0.07 0.00 0.07 -mi-européen mi_européen NOM m 0.00 0.14 0.00 0.14 -mi-excitation mi_excitation NOM f s 0.00 0.07 0.00 0.07 -mi-farceur mi_farceur NOM m 0.00 0.07 0.00 0.07 -mi-faux mi_faux ADJ m 0.00 0.07 0.00 0.07 -mi-femme mi_femme NOM f s 0.12 0.07 0.12 0.07 -mi-fermiers mi_fermiers NOM m 0.00 0.07 0.00 0.07 -mi-fiel mi_fiel NOM m s 0.00 0.07 0.00 0.07 -mi-figue mi_figue NOM f s 0.02 0.54 0.02 0.54 -mi-flanc mi_flanc NOM m s 0.00 0.14 0.00 0.14 -mi-fleuve mi_fleuve NOM m s 0.08 0.00 0.08 0.00 -mi-français mi_français NOM m 0.00 0.14 0.00 0.14 -mi-furieux mi_furieux ADJ m s 0.00 0.07 0.00 0.07 -mi-février mi_février NOM f s 0.01 0.07 0.01 0.07 -mi-garçon mi_garçon NOM m s 0.00 0.07 0.00 0.07 -mi-geste mi_geste NOM m s 0.00 0.07 0.00 0.07 -mi-gigolpince mi_gigolpince NOM m s 0.00 0.07 0.00 0.07 -mi-gnon mi_gnon NOM m s 0.00 0.07 0.00 0.07 -mi-goguenarde mi_goguenard ADJ f s 0.00 0.07 0.00 0.07 -mi-gonzesse mi_gonzesse NOM f s 0.00 0.07 0.00 0.07 -mi-goélands mi_goéland NOM m p 0.00 0.07 0.00 0.07 -mi-graves mi_grave ADJ p 0.00 0.07 0.00 0.07 -mi-grenier mi_grenier NOM m s 0.00 0.07 0.00 0.07 -mi-grognon mi_grognon NOM m 0.00 0.07 0.00 0.07 -mi-grondeur mi_grondeur ADJ m s 0.00 0.07 0.00 0.07 -mi-grossières mi_grossier ADJ f p 0.00 0.07 0.00 0.07 -mi-haute mi_haute ADJ f s 0.00 0.07 0.00 0.07 -mi-hauteur mi_hauteur NOM f s 0.17 2.91 0.17 2.91 -mi-historiques mi_historique ADJ f p 0.00 0.07 0.00 0.07 -mi-homme mi_homme NOM m s 0.44 0.14 0.44 0.14 -mi-humain mi_humain NOM m 0.08 0.00 0.08 0.00 -mi-humaine mi_humaine NOM m 0.01 0.07 0.01 0.07 -mi-humains mi_humains NOM m 0.01 0.07 0.01 0.07 -mi-hésitant mi_hésitant ADJ m s 0.00 0.07 0.00 0.07 -mi-idiotes mi_idiotes NOM m 0.00 0.07 0.00 0.07 -mi-images mi_image NOM f p 0.00 0.14 0.00 0.14 -mi-indien mi_indien NOM m 0.01 0.07 0.01 0.07 -mi-indifférente mi_indifférente NOM m 0.00 0.07 0.00 0.07 -mi-indignée mi_indigné ADJ f s 0.00 0.07 0.00 0.07 -mi-indigène mi_indigène ADJ s 0.00 0.07 0.00 0.07 -mi-indulgent mi_indulgent ADJ m s 0.00 0.14 0.00 0.14 -mi-inquiète mi_inquiet ADJ f s 0.00 0.14 0.00 0.14 -mi-ironique mi_ironique ADJ m s 0.00 0.41 0.00 0.27 -mi-ironiques mi_ironique ADJ p 0.00 0.41 0.00 0.14 -mi-jambe mi_jambe NOM f s 0.00 0.74 0.00 0.47 -mi-jambes mi_jambe NOM f p 0.00 0.74 0.00 0.27 -mi-janvier mi_janvier NOM f s 0.12 0.20 0.12 0.20 -mi-jaune mi_jaune ADJ s 0.00 0.14 0.00 0.07 -mi-jaunes mi_jaune ADJ p 0.00 0.14 0.00 0.07 -mi-jersey mi_jersey NOM m s 0.00 0.14 0.00 0.14 -mi-joue mi_joue NOM f s 0.00 0.07 0.00 0.07 -mi-jour mi_jour NOM m s 0.00 0.07 0.00 0.07 -mi-journée mi_journée NOM f s 0.20 0.27 0.20 0.27 -mi-juif mi_juif NOM m 0.00 0.07 0.00 0.07 -mi-juillet mi_juillet NOM f s 0.02 0.41 0.02 0.41 -mi-juin mi_juin NOM f s 0.01 0.07 0.01 0.07 -mi-laiton mi_laiton NOM m s 0.00 0.07 0.00 0.07 -mi-lent mi_lent ADJ m s 0.01 0.00 0.01 0.00 -mi-londrès mi_londrès NOM m 0.00 0.07 0.00 0.07 -mi-longs mi_longs NOM m 0.15 0.34 0.15 0.34 -mi-longueur mi_longueur NOM f s 0.00 0.07 0.00 0.07 -mi-lourd mi_lourd ADJ m s 0.17 0.14 0.17 0.14 -mi-machine mi_machine NOM f s 0.07 0.00 0.06 0.00 -mi-machines mi_machine NOM f p 0.07 0.00 0.01 0.00 -mi-mai mi_mai NOM f s 0.01 0.00 0.01 0.00 -mi-mao mi_mao NOM s 0.00 0.07 0.00 0.07 -mi-marchande mi_marchande NOM m 0.00 0.07 0.00 0.07 -mi-mars mi_mars NOM f s 0.04 0.20 0.04 0.20 -mi-marécages mi_marécage NOM m p 0.00 0.07 0.00 0.07 -mi-menaçante mi_menaçant ADJ f s 0.00 0.07 0.00 0.07 -mi-meublé mi_meublé NOM m 0.00 0.07 0.00 0.07 -mi-mexicain mi_mexicain NOM m 0.01 0.00 0.01 0.00 -mi-miel mi_miel ADJ m s 0.00 0.07 0.00 0.07 -mi-mollet mi_mollet NOM m 0.01 0.20 0.01 0.20 -mi-mollets mi_mollets NOM m 0.00 0.27 0.00 0.27 -mi-mondaine mi_mondaine NOM m 0.00 0.07 0.00 0.07 -mi-moqueur mi_moqueur NOM m 0.00 0.14 0.00 0.14 -mi-mot mi_mot NOM m s 0.03 0.27 0.03 0.20 -mi-mots mi_mot NOM m p 0.03 0.27 0.00 0.07 -mi-mouton mi_mouton NOM m s 0.00 0.07 0.00 0.07 -mi-moyen mi_moyen ADJ m s 0.10 0.07 0.08 0.00 -mi-moyens mi_moyen ADJ m p 0.10 0.07 0.02 0.07 -mi-métal mi_métal NOM m s 0.00 0.07 0.00 0.07 -mi-narquoise mi_narquoise ADJ f s 0.00 0.07 0.00 0.07 -mi-noir mi_noir NOM m 0.00 0.07 0.00 0.07 -mi-novembre mi_novembre NOM f s 0.13 0.27 0.13 0.27 -mi-nuit mi_nuit NOM f s 0.00 0.07 0.00 0.07 -mi-obscure mi_obscur ADJ f s 0.00 0.07 0.00 0.07 -mi-octobre mi_octobre NOM f s 0.02 0.14 0.02 0.14 -mi-officiel mi_officiel NOM m 0.00 0.14 0.00 0.14 -mi-ogre mi_ogre NOM m s 0.00 0.07 0.00 0.07 -mi-oiseau mi_oiseau NOM m s 0.10 0.00 0.10 0.00 -mi-oriental mi_oriental NOM m 0.00 0.07 0.00 0.07 -mi-parcours mi_parcours NOM m 0.25 0.34 0.25 0.34 -mi-partie mi_parti ADJ f s 0.00 0.61 0.00 0.61 -mi-pathétique mi_pathétique ADJ s 0.00 0.07 0.00 0.07 -mi-patio mi_patio NOM m s 0.00 0.07 0.00 0.07 -mi-patois mi_patois NOM m 0.00 0.07 0.00 0.07 -mi-peau mi_peau NOM f s 0.00 0.07 0.00 0.07 -mi-pelouse mi_pelouse NOM f s 0.00 0.07 0.00 0.07 -mi-pensées mi_pensée NOM f p 0.00 0.14 0.00 0.14 -mi-pente mi_pente NOM f s 0.02 0.81 0.02 0.81 -mi-pierre mi_pierre NOM f s 0.00 0.07 0.00 0.07 -mi-pincé mi_pincé ADJ m s 0.00 0.07 0.00 0.07 -mi-plaintif mi_plaintif ADJ m s 0.00 0.20 0.00 0.20 -mi-plaisant mi_plaisant NOM m 0.00 0.07 0.00 0.07 -mi-pleurant mi_pleurant NOM m 0.00 0.07 0.00 0.07 -mi-pleurnichard mi_pleurnichard NOM m 0.00 0.07 0.00 0.07 -mi-plombiers mi_plombier NOM m p 0.00 0.07 0.00 0.07 -mi-poisson mi_poisson NOM m s 0.00 0.14 0.00 0.14 -mi-poitrine mi_poitrine NOM f s 0.00 0.07 0.00 0.07 -mi-porcine mi_porcine NOM m 0.00 0.07 0.00 0.07 -mi-porté mi_porté NOM m 0.00 0.07 0.00 0.07 -mi-portugaise mi_portugaise NOM m 0.00 0.07 0.00 0.07 -mi-poucet mi_poucet NOM m s 0.00 0.07 0.00 0.07 -mi-poulet mi_poulet NOM m s 0.00 0.07 0.00 0.07 -mi-prestidigitateur mi_prestidigitateur NOM m s 0.00 0.07 0.00 0.07 -mi-promenoir mi_promenoir NOM m s 0.00 0.07 0.00 0.07 -mi-protecteur mi_protecteur NOM m 0.00 0.14 0.00 0.14 -mi-pêcheurs mi_pêcheur NOM m p 0.00 0.07 0.00 0.07 -mi-putain mi_putain NOM f s 0.00 0.07 0.00 0.07 -mi-rageur mi_rageur ADJ m s 0.00 0.07 0.00 0.07 -mi-raide mi_raide ADJ f s 0.00 0.07 0.00 0.07 -mi-railleur mi_railleur NOM m 0.00 0.14 0.00 0.14 -mi-raisin mi_raisin NOM m s 0.02 0.61 0.02 0.61 -mi-renaissance mi_renaissance NOM f s 0.00 0.07 0.00 0.07 -mi-respectueuse mi_respectueux ADJ f s 0.00 0.07 0.00 0.07 -mi-riant mi_riant ADJ m s 0.00 0.27 0.00 0.27 -mi-rose mi_rose NOM s 0.00 0.07 0.00 0.07 -mi-roulotte mi_roulotte NOM f s 0.00 0.07 0.00 0.07 -mi-route mi_route NOM f s 0.00 0.07 0.00 0.07 -mi-réalité mi_réalité NOM f s 0.00 0.07 0.00 0.07 -mi-régime mi_régime NOM m s 0.00 0.07 0.00 0.07 -mi-réprobateur mi_réprobateur ADJ m s 0.00 0.07 0.00 0.07 -mi-résigné mi_résigné NOM m 0.00 0.07 0.00 0.07 -mi-russe mi_russe ADJ m s 0.14 0.07 0.14 0.07 -mi-saison mi_saison NOM f s 0.14 0.00 0.14 0.00 -mi-salade mi_salade NOM f s 0.01 0.00 0.01 0.00 -mi-salaire mi_salaire NOM m s 0.01 0.00 0.01 0.00 -mi-samoan mi_samoan ADJ m s 0.01 0.00 0.01 0.00 -mi-sanglotant mi_sanglotant ADJ m s 0.00 0.07 0.00 0.07 -mi-satin mi_satin NOM m s 0.00 0.07 0.00 0.07 -mi-satisfait mi_satisfait ADJ m s 0.00 0.07 0.00 0.07 -mi-sceptique mi_sceptique ADJ m s 0.00 0.07 0.00 0.07 -mi-scientifiques mi_scientifique ADJ f p 0.00 0.07 0.00 0.07 -mi-secours mi_secours NOM m 0.00 0.07 0.00 0.07 -mi-seigneur mi_seigneur NOM m s 0.00 0.07 0.00 0.07 -mi-sel mi_sel NOM m s 0.00 0.07 0.00 0.07 -mi-septembre mi_septembre NOM f s 0.03 0.27 0.03 0.27 -mi-sidérée mi_sidéré ADJ f s 0.00 0.07 0.00 0.07 -mi-singe mi_singe NOM m s 0.01 0.00 0.01 0.00 -mi-sombre mi_sombre ADJ m s 0.00 0.07 0.00 0.07 -mi-sommet mi_sommet NOM m s 0.00 0.07 0.00 0.07 -mi-songe mi_songe NOM m s 0.00 0.07 0.00 0.07 -mi-souriant mi_souriant ADJ m s 0.00 0.14 0.00 0.07 -mi-souriante mi_souriant ADJ f s 0.00 0.14 0.00 0.07 -mi-suisse mi_suisse ADJ s 0.00 0.07 0.00 0.07 -mi-série mi_série NOM f s 0.01 0.00 0.01 0.00 -mi-sérieux mi_sérieux ADJ m 0.00 0.20 0.00 0.20 -mi-tantouse mi_tantouse NOM f s 0.00 0.07 0.00 0.07 -mi-tendre mi_tendre NOM m 0.00 0.14 0.00 0.14 -mi-terrorisé mi_terrorisé ADJ m s 0.00 0.07 0.00 0.07 -mi-timide mi_timide ADJ s 0.00 0.07 0.00 0.07 -mi-tortue mi_tortue ADJ f s 0.00 0.07 0.00 0.07 -mi-tour mi_tour NOM s 0.00 0.07 0.00 0.07 -mi-tout mi_tout NOM m 0.00 0.07 0.00 0.07 -mi-tragique mi_tragique ADJ m s 0.00 0.07 0.00 0.07 -mi-trimestre mi_trimestre NOM m s 0.01 0.00 0.01 0.00 -mi-épaule mi_épaule NOM f s 0.00 0.07 0.00 0.07 -mi-étage mi_étage NOM m s 0.00 0.47 0.00 0.47 -mi-étendue mi_étendue NOM f s 0.00 0.07 0.00 0.07 -mi-étonné mi_étonné ADJ m s 0.00 0.14 0.00 0.14 -mi-été mi_été NOM m 0.00 0.27 0.00 0.27 -mi-étudiant mi_étudiant NOM m 0.00 0.07 0.00 0.07 -mi-éveillée mi_éveillé ADJ f s 0.00 0.14 0.00 0.14 -mi-velours mi_velours NOM m 0.00 0.07 0.00 0.07 -mi-verre mi_verre NOM m s 0.00 0.14 0.00 0.14 -mi-vie mi_vie NOM f s 0.00 0.07 0.00 0.07 -mi-voix mi_voix NOM f 0.31 14.39 0.31 14.39 -mi-voluptueux mi_voluptueux ADJ m 0.00 0.07 0.00 0.07 -mi-vrais mi_vrais NOM m 0.00 0.07 0.00 0.07 -mi-végétal mi_végétal NOM m 0.01 0.00 0.01 0.00 -mi-vénitien mi_vénitien NOM m 0.00 0.07 0.00 0.07 -miam-miam miam_miam ONO 0.56 0.68 0.56 0.68 -micro-cravate micro_cravate NOM m s 0.01 0.00 0.01 0.00 -micro-onde micro_onde NOM f s 0.38 0.00 0.38 0.00 -micro-ondes micro_ondes NOM m 2.45 0.14 2.45 0.14 -micro-ordinateur micro_ordinateur NOM m s 0.01 0.14 0.01 0.07 -micro-ordinateurs micro_ordinateur NOM m p 0.01 0.14 0.00 0.07 -micro-organisme micro_organisme NOM m s 0.08 0.00 0.08 0.00 -micro-trottoir micro_trottoir NOM m s 0.01 0.00 0.01 0.00 -middle-west middle_west NOM m s 0.05 0.14 0.05 0.14 -middle class middle_class NOM f s 0.00 0.07 0.00 0.07 -mieux-être mieux_être NOM m 0.12 0.20 0.12 0.20 -mieux-vivre mieux_vivre NOM m s 0.00 0.07 0.00 0.07 -militaro-industriel militaro_industriel ADJ m s 0.06 0.00 0.05 0.00 -militaro-industrielle militaro_industriel ADJ f s 0.06 0.00 0.01 0.00 -milk-bar milk_bar NOM m s 0.03 0.20 0.03 0.14 -milk-bars milk_bar NOM m p 0.03 0.20 0.00 0.07 -milk-shake milk_shake NOM m s 1.85 0.14 1.27 0.14 -milk-shakes milk_shake NOM m p 1.85 0.14 0.45 0.00 -milk shake milk_shake NOM m s 1.85 0.14 0.13 0.00 -mille-feuille mille_feuille NOM m s 0.03 1.08 0.02 0.20 -mille-feuilles mille_feuille NOM m p 0.03 1.08 0.01 0.88 -mille-pattes mille_pattes NOM m 0.39 2.09 0.39 2.09 -mini-chaîne mini_chaîne NOM f s 0.14 0.07 0.14 0.07 -mini-jupe mini_jupe NOM f s 0.62 0.54 0.56 0.34 -mini-jupes mini_jupe NOM f p 0.62 0.54 0.06 0.20 -mini-ordinateur mini_ordinateur NOM m s 0.02 0.00 0.02 0.00 -minus habens minus_habens NOM m 0.00 0.14 0.00 0.14 -mission-suicide mission_suicide NOM f s 0.03 0.07 0.03 0.07 -mobil-home mobil_home NOM m s 0.07 0.00 0.07 0.00 -modern-style modern_style NOM m s 0.00 0.27 0.00 0.27 -modern style modern_style NOM m 0.01 0.00 0.01 0.00 -modus operandi modus_operandi NOM m s 0.32 0.00 0.32 0.00 -modus vivendi modus_vivendi NOM m 0.01 0.47 0.01 0.47 -moi-moi-moi moi_moi_moi NOM m 0.00 0.07 0.00 0.07 -moi-même moi_même PRO:per s 83.25 107.30 83.25 107.30 -moissonneuse-batteuse moissonneuse_batteuse NOM f s 0.04 0.47 0.04 0.27 -moissonneuse-lieuse moissonneuse_lieuse NOM f s 0.00 0.14 0.00 0.07 -moissonneuses-batteuses moissonneuse_batteuse NOM f p 0.04 0.47 0.00 0.20 -moissonneuses-lieuses moissonneuse_lieuse NOM f p 0.00 0.14 0.00 0.07 -moitié-moitié moitié_moitié ADV 0.00 0.14 0.00 0.14 -moment-clé moment_clé NOM m s 0.04 0.00 0.04 0.00 -moments-clés moments_clé NOM m p 0.01 0.00 0.01 0.00 -monnaie-du-pape monnaie_du_pape NOM f s 0.00 0.07 0.00 0.07 -monnaies-du-pape monnaies_du_pape NOM f p 0.00 0.07 0.00 0.07 -mont-blanc mont_blanc NOM m s 1.84 0.47 1.64 0.41 -mont-de-piété mont_de_piété NOM m s 0.98 0.81 0.98 0.81 -monte-charge monte_charge NOM m 0.51 0.54 0.51 0.54 -monte-charges monte_charges NOM m 0.01 0.07 0.01 0.07 -monte-en-l'air monte_en_l_air NOM m 0.12 0.20 0.12 0.20 -monte-plat monte_plat NOM m s 0.01 0.00 0.01 0.00 -monte-plats monte_plats NOM m 0.04 0.07 0.04 0.07 -montre-bracelet montre_bracelet NOM f s 0.08 2.09 0.07 1.82 -montre-gousset montre_gousset NOM f s 0.01 0.07 0.01 0.07 -montre-la-moi montre_la_moi NOM f s 0.14 0.00 0.14 0.00 -montres-bracelets montre_bracelet NOM f p 0.08 2.09 0.01 0.27 -monts-blancs mont_blanc NOM m p 1.84 0.47 0.20 0.07 -mort-aux-rats mort_aux_rats NOM f 0.61 0.47 0.61 0.47 -mort-né mort_né ADJ m s 0.80 0.61 0.53 0.34 -mort-née mort_né ADJ f s 0.80 0.61 0.23 0.00 -mort-nées mort_né ADJ f p 0.80 0.61 0.00 0.07 -mort-nés mort_né ADJ m p 0.80 0.61 0.04 0.20 -mort-vivant mort_vivant NOM m s 1.46 0.81 0.41 0.27 -morte-saison morte_saison NOM f s 0.01 1.08 0.01 1.01 -mortes-eaux mortes_eaux NOM f p 0.00 0.07 0.00 0.07 -mortes-saisons morte_saison NOM f p 0.01 1.08 0.00 0.07 -morts-vivants mort_vivant NOM m p 1.46 0.81 1.05 0.54 -mot-clé mot_clé NOM m s 0.58 0.34 0.41 0.14 -mot-valise mot_valise NOM m s 0.01 0.00 0.01 0.00 -moteur-fusée moteur_fusée NOM m s 0.04 0.00 0.01 0.00 -moteurs-fusées moteur_fusée NOM m p 0.04 0.00 0.04 0.00 -moto-club moto_club NOM f s 0.00 0.14 0.00 0.14 -moto-cross moto_cross NOM m 0.04 0.07 0.04 0.07 -mots-clefs mot_clef NOM m p 0.00 0.07 0.00 0.07 -mots-clés mot_clé NOM m p 0.58 0.34 0.17 0.20 -mots-croisés mots_croisés NOM m p 0.07 0.00 0.07 0.00 -motu proprio motu_proprio ADV 0.00 0.07 0.00 0.07 -moulin-à-vent moulin_à_vent NOM m 0.00 0.14 0.00 0.14 -moyen-âge moyen_âge NOM m s 1.15 0.20 1.15 0.20 -moyen-oriental moyen_oriental ADJ m s 0.03 0.00 0.03 0.00 -moyen-orientaux moyen_orientaux ADJ m p 0.01 0.00 0.01 0.00 -mère-grand mère_grand NOM f s 0.89 0.34 0.89 0.34 -mère-patrie mère_patrie NOM f s 0.04 0.41 0.04 0.41 -médecin-chef médecin_chef NOM m s 0.56 2.09 0.56 2.09 -médecin-conseil médecin_conseil NOM m s 0.01 0.00 0.01 0.00 -médecin-général médecin_général NOM m s 0.01 0.20 0.01 0.20 -médecin-major médecin_major NOM m s 0.70 0.14 0.70 0.14 -médecine-ball médecine_ball NOM m s 0.01 0.00 0.01 0.00 -médico-légal médico_légal ADJ m s 1.06 0.54 0.63 0.41 -médico-légale médico_légal ADJ f s 1.06 0.54 0.25 0.14 -médico-légales médico_légal ADJ f p 1.06 0.54 0.13 0.00 -médico-légaux médico_légal ADJ m p 1.06 0.54 0.05 0.00 -médico-psychologique médico_psychologique ADJ m s 0.01 0.00 0.01 0.00 -médico-social médico_social ADJ m s 0.01 0.07 0.01 0.07 -mêle-tout mêle_tout NOM m 0.01 0.00 0.01 0.00 -méli-mélo méli_mélo NOM m s 0.39 0.81 0.39 0.68 -mélis-mélos méli_mélo NOM m p 0.39 0.81 0.00 0.14 -multi-tâches multi_tâches ADJ f s 0.05 0.00 0.05 0.00 -mêlé-cass mêlé_cass NOM m 0.00 0.20 0.00 0.20 -mêlé-casse mêlé_casse NOM m 0.00 0.14 0.00 0.14 -musettes-repas musettes_repa NOM f p 0.00 0.07 0.00 0.07 -music-hall music_hall NOM m s 1.85 4.32 1.70 3.78 -music-halls music_hall NOM m p 1.85 4.32 0.13 0.54 -music hall music_hall NOM m s 1.85 4.32 0.02 0.00 -mutatis mutandis mutatis_mutandis ADV 0.00 0.07 0.00 0.07 -n'est-ce pas n_est_ce_pas ADV 0.10 0.00 0.10 0.00 -narco-analyse narco_analyse NOM f s 0.01 0.00 0.01 0.00 -national-socialisme national_socialisme NOM m s 0.58 2.03 0.58 2.03 -national-socialiste national_socialiste ADJ m s 0.23 0.14 0.23 0.14 -nationale-socialiste nationale_socialiste ADJ f s 0.00 0.14 0.00 0.14 -nationaux-socialistes nationaux_socialistes ADJ p 0.00 0.14 0.00 0.14 -navire-citerne navire_citerne NOM m s 0.14 0.00 0.01 0.00 -navire-hôpital navire_hôpital NOM m s 0.04 0.14 0.04 0.14 -navires-citernes navire_citerne NOM m p 0.14 0.00 0.14 0.00 -navires-écoles navire_école NOM m p 0.00 0.07 0.00 0.07 -ne varietur ne_varietur ADV 0.00 0.14 0.00 0.14 -negro spiritual negro_spiritual NOM m s 0.01 0.14 0.01 0.07 -negro spirituals negro_spiritual NOM m p 0.01 0.14 0.00 0.07 -new-yorkais new_yorkais ADJ m 0.00 1.42 0.00 0.95 -new-yorkaise new_yorkais ADJ f s 0.00 1.42 0.00 0.34 -new-yorkaises new_yorkais ADJ f p 0.00 1.42 0.00 0.14 -new wave new_wave NOM f 0.00 0.07 0.00 0.07 -nid-de-poule nid_de_poule NOM m s 0.20 0.20 0.14 0.07 -nids-de-poule nid_de_poule NOM m p 0.20 0.20 0.06 0.14 -night-club night_club NOM m s 1.31 0.88 1.16 0.61 -night-clubs night_club NOM m p 1.31 0.88 0.10 0.27 -night club night_club NOM m s 1.31 0.88 0.05 0.00 -nihil obstat nihil_obstat ADV 0.00 0.20 0.00 0.20 -nimbo-stratus nimbo_stratus NOM m 0.14 0.00 0.14 0.00 -no man's land no_man_s_land NOM m s 0.95 1.49 0.95 1.49 -non-agression non_agression NOM f s 0.07 0.61 0.07 0.61 -non-alignement non_alignement NOM m s 0.04 0.00 0.04 0.00 -non-alignés non_aligné ADJ m p 0.09 0.00 0.09 0.00 -non-amour non_amour NOM m s 0.10 0.00 0.10 0.00 -non-appartenance non_appartenance NOM f s 0.01 0.07 0.01 0.07 -non-assistance non_assistance NOM f s 0.10 0.07 0.10 0.07 -non-blanc non_blanc NOM m s 0.04 0.07 0.00 0.07 -non-blancs non_blanc NOM m p 0.04 0.07 0.04 0.00 -non-combattant non_combattant ADJ m s 0.15 0.00 0.01 0.00 -non-combattant non_combattant NOM m s 0.03 0.00 0.01 0.00 -non-combattants non_combattant ADJ m p 0.15 0.00 0.14 0.00 -non-comparution non_comparution NOM f s 0.01 0.00 0.01 0.00 -non-concurrence non_concurrence NOM f s 0.01 0.00 0.01 0.00 -non-conformisme non_conformisme NOM m s 0.00 0.20 0.00 0.20 -non-conformiste non_conformiste ADJ s 0.14 0.00 0.10 0.00 -non-conformistes non_conformiste ADJ p 0.14 0.00 0.04 0.00 -non-conformité non_conformité NOM f s 0.01 0.00 0.01 0.00 -non-consommation non_consommation NOM f s 0.03 0.00 0.03 0.00 -non-croyance non_croyance NOM f s 0.10 0.00 0.10 0.00 -non-croyant non_croyant NOM m s 0.62 0.07 0.21 0.07 -non-croyants non_croyant NOM m p 0.62 0.07 0.41 0.00 -non-culpabilité non_culpabilité NOM f s 0.01 0.00 0.01 0.00 -non-dit non_dit NOM m s 0.27 0.88 0.09 0.74 -non-dits non_dit NOM m p 0.27 0.88 0.18 0.14 -non-droit non_droit NOM m s 0.22 0.00 0.22 0.00 -non-existence non_existence NOM f s 0.07 0.07 0.07 0.07 -non-ferreux non_ferreux NOM m 0.01 0.00 0.01 0.00 -non-fumeur non_fumeur ADJ m s 0.68 0.00 0.68 0.00 -non-fumeurs non_fumeurs ADJ 0.44 0.07 0.44 0.07 -non-initié non_initié NOM m s 0.22 0.34 0.03 0.14 -non-initiés non_initié NOM m p 0.22 0.34 0.19 0.20 -non-intervention non_intervention NOM f s 0.21 0.14 0.21 0.14 -non-lieu non_lieu NOM m s 1.08 1.42 1.08 1.42 -non-lieux non_lieux NOM m p 0.01 0.20 0.01 0.20 -non-malades non_malade NOM p 0.00 0.07 0.00 0.07 -non-paiement non_paiement NOM m s 0.10 0.07 0.10 0.07 -non-participation non_participation NOM f s 0.01 0.07 0.01 0.07 -non-pesanteur non_pesanteur NOM f s 0.00 0.07 0.00 0.07 -non-prolifération non_prolifération NOM f s 0.09 0.00 0.09 0.00 -non-présence non_présence NOM f s 0.01 0.14 0.01 0.14 -non-recevoir non_recevoir NOM m s 0.06 0.20 0.06 0.20 -non-représentation non_représentation NOM f s 0.01 0.00 0.01 0.00 -non-respect non_respect NOM m s 0.16 0.00 0.16 0.00 -non-retour non_retour NOM m s 0.34 0.41 0.34 0.41 -non-résistance non_résistance NOM f s 0.00 0.14 0.00 0.14 -non-savoir non_savoir NOM m s 0.04 0.07 0.04 0.07 -non-sens non_sens NOM m 0.83 0.95 0.83 0.95 -non-spécialiste non_spécialiste NOM s 0.02 0.07 0.01 0.00 -non-spécialistes non_spécialiste NOM p 0.02 0.07 0.01 0.07 -non-stop non_stop ADJ 0.89 0.14 0.89 0.14 -non-séparation non_séparation NOM f s 0.00 0.07 0.00 0.07 -non-utilisation non_utilisation NOM f s 0.01 0.00 0.01 0.00 -non-être non_être NOM m 0.00 0.95 0.00 0.95 -non-événement non_événement NOM m s 0.02 0.00 0.02 0.00 -non-vie non_vie NOM f s 0.04 0.00 0.04 0.00 -non-violence non_violence NOM f s 0.63 0.07 0.63 0.07 -non-violent non_violent ADJ m s 0.31 0.07 0.19 0.07 -non-violente non_violent ADJ f s 0.31 0.07 0.07 0.00 -non-violents non_violent ADJ m p 0.31 0.07 0.05 0.00 -non-vouloir non_vouloir NOM m s 0.00 0.07 0.00 0.07 -non-voyant non_voyant NOM m s 0.32 0.27 0.28 0.20 -non-voyante non_voyant NOM f s 0.32 0.27 0.02 0.00 -non-voyants non_voyant NOM m p 0.32 0.27 0.03 0.07 -non troppo non_troppo ADV 0.00 0.07 0.00 0.07 -nonante-huit nonante_huit ADJ:num 0.00 0.07 0.00 0.07 -nord-africain nord_africain ADJ m s 0.05 1.96 0.02 0.20 -nord-africaine nord_africain ADJ f s 0.05 1.96 0.01 0.95 -nord-africaines nord_africain ADJ f p 0.05 1.96 0.01 0.07 -nord-africains nord_africain ADJ m p 0.05 1.96 0.01 0.74 -nord-américain nord_américain ADJ m s 0.32 0.20 0.24 0.07 -nord-américaine nord_américain ADJ f s 0.32 0.20 0.06 0.14 -nord-américains nord_américain NOM m p 0.13 0.00 0.03 0.00 -nord-coréen nord_coréen ADJ m s 0.36 0.00 0.24 0.00 -nord-coréenne nord_coréen ADJ f s 0.36 0.00 0.06 0.00 -nord-coréennes nord_coréen ADJ f p 0.36 0.00 0.02 0.00 -nord-coréens nord_coréen NOM m p 0.23 0.07 0.18 0.07 -nord-est nord_est NOM m 1.40 2.84 1.40 2.84 -nord-nord-est nord_nord_est NOM m s 0.03 0.14 0.03 0.14 -nord-ouest nord_ouest NOM m 0.95 1.22 0.95 1.22 -nord-sud nord_sud ADJ 0.15 0.88 0.15 0.88 -nord-vietnamien nord_vietnamien ADJ m s 0.11 0.00 0.04 0.00 -nord-vietnamienne nord_vietnamien ADJ f s 0.11 0.00 0.04 0.00 -nord-vietnamiens nord_vietnamien NOM m p 0.12 0.00 0.11 0.00 -nota bene nota_bene ADV 0.01 0.07 0.01 0.07 -notre-dame notre_dame NOM f 2.69 8.58 2.69 8.58 -nous-même nous_même PRO:per p 1.12 0.61 1.12 0.61 -nous-mêmes nous_mêmes PRO:per p 11.11 16.28 11.11 16.28 -nouveau-né nouveau_né NOM m s 2.72 4.80 2.27 3.18 -nouveau-nés nouveau_né NOM m p 2.72 4.80 0.14 1.49 -nouveaux-nés nouveau_né NOM m p 2.72 4.80 0.30 0.14 -nu-propriétaire nu_propriétaire NOM s 0.00 0.07 0.00 0.07 -nu-tête nu_tête ADJ m s 0.02 1.35 0.02 1.35 -nue-propriété nue_propriété NOM f s 0.00 0.07 0.00 0.07 -numerus clausus numerus_clausus NOM m 0.00 0.07 0.00 0.07 -néo-barbares néo_barbare ADJ f p 0.00 0.07 0.00 0.07 -néo-classique néo_classique ADJ s 0.12 0.34 0.12 0.34 -néo-colonialisme néo_colonialisme NOM m s 0.00 0.20 0.00 0.20 -néo-communiste néo_communiste ADJ f s 0.01 0.00 0.01 0.00 -néo-fascisme néo_fascisme NOM m s 0.01 0.07 0.01 0.07 -néo-fascistes néo_fasciste ADJ p 0.01 0.00 0.01 0.00 -néo-fascistes néo_fasciste NOM p 0.01 0.00 0.01 0.00 -néo-figuration néo_figuration NOM f s 0.00 0.07 0.00 0.07 -néo-flics néo_flic NOM m p 0.02 0.00 0.02 0.00 -néo-gangster néo_gangster NOM m s 0.01 0.00 0.01 0.00 -néo-gothique néo_gothique ADJ f s 0.00 0.20 0.00 0.14 -néo-gothiques néo_gothique ADJ p 0.00 0.20 0.00 0.07 -néo-grec néo_grec ADJ m s 0.00 0.07 0.00 0.07 -néo-helléniques néo_hellénique ADJ f p 0.00 0.07 0.00 0.07 -néo-malthusianisme néo_malthusianisme NOM m s 0.00 0.14 0.00 0.14 -néo-mauresque néo_mauresque ADJ m s 0.00 0.14 0.00 0.07 -néo-mauresques néo_mauresque ADJ f p 0.00 0.14 0.00 0.07 -néo-mouvement néo_mouvement NOM m s 0.00 0.07 0.00 0.07 -néo-renaissant néo_renaissant ADJ m s 0.00 0.07 0.00 0.07 -néo-romantique néo_romantique ADJ f s 0.01 0.00 0.01 0.00 -néo-réalisme néo_réalisme NOM m s 0.10 0.07 0.10 0.07 -néo-réaliste néo_réaliste ADJ m s 0.00 0.20 0.00 0.07 -néo-réalistes néo_réaliste ADJ m p 0.00 0.20 0.00 0.14 -néo-russe néo_russe ADJ s 0.00 0.14 0.00 0.14 -néo-zélandais néo_zélandais ADJ m 0.11 0.14 0.10 0.14 -néo-zélandaise néo_zélandais ADJ f s 0.11 0.14 0.01 0.00 -nuoc-mâm nuoc_mâm NOM m 0.00 0.07 0.00 0.07 -à-côté à_côté NOM m s 0.00 0.68 0.00 0.34 -à-côtés à_côté NOM m p 0.00 0.68 0.00 0.34 -à-coup à_coup NOM m s 0.00 4.80 0.00 0.54 -à-coups à_coup NOM m p 0.00 4.80 0.00 4.26 -à-dieu-vat à_dieu_vat ONO 0.00 0.07 0.00 0.07 -à-peu-près à_peu_près NOM m 0.00 0.74 0.00 0.74 -à-pic à_pic NOM m 0.00 1.42 0.00 1.08 -à-pics à_pic NOM m p 0.00 1.42 0.00 0.34 -à-plat à_plat NOM m s 0.00 0.27 0.00 0.14 -à-plats à_plat NOM m p 0.00 0.27 0.00 0.14 -à-propos à_propos NOM m 0.00 0.88 0.00 0.88 -à-valoir à_valoir NOM m 0.00 0.27 0.00 0.27 -à brûle-pourpoint à_brûle_pourpoint 0.14 0.00 0.14 0.00 -à cloche-pied à_cloche_pied 0.22 0.00 0.22 0.00 -à cropetons à_cropetons ADV 0.00 0.07 0.00 0.07 -à croupetons à_croupetons ADV 0.01 0.95 0.01 0.95 -à fortiori à_fortiori ADV 0.16 0.20 0.16 0.20 -à giorno à_giorno ADV 0.00 0.07 0.00 0.07 -à glagla à_glagla ADV 0.00 0.07 0.00 0.07 -à jeun à_jeun ADV 1.45 3.85 1.27 3.85 -à l'aveuglette à_l_aveuglette ADV 1.11 2.16 1.11 2.16 -à l'encan à_l_encan ADV 0.01 0.14 0.01 0.14 -à l'encontre à_l_encontre PRE 2.67 1.89 2.67 1.89 -à l'envi à_l_envi ADV 0.20 0.61 0.20 0.61 -à l'improviste à_l_improviste ADV 2.67 4.53 2.67 4.53 -à l'instar à_l_instar PRE 0.26 6.42 0.26 6.42 -à la daumont à_la_daumont ADV 0.00 0.07 0.00 0.07 -à la saint-glinglin à_la_saint_glinglin ADV 0.02 0.00 0.02 0.00 -à leur encontre à_leur_encontre ADV 0.03 0.07 0.03 0.07 -à lurelure à_lurelure ADV 0.00 0.20 0.00 0.20 -à mon encontre à_mon_encontre ADV 0.05 0.14 0.05 0.14 -à notre encontre à_notre_encontre ADV 0.02 0.07 0.02 0.07 -à posteriori a_posteriori ADV 0.05 0.20 0.04 0.07 -à priori a_priori ADV 1.04 3.85 0.41 1.28 -à rebrousse-poil à_rebrousse_poil 0.08 0.00 0.08 0.00 -à son encontre à_son_encontre ADV 0.05 0.20 0.05 0.20 -à tire-larigot à_tire_larigot 0.17 0.00 0.17 0.00 -à ton encontre à_ton_encontre ADV 0.02 0.00 0.02 0.00 -à tâtons à_tâtons ADV 0.60 8.78 0.60 8.78 -à touche-touche à_touche_touche 0.01 0.00 0.01 0.00 -à tue-tête à_tue_tête 0.54 0.00 0.54 0.00 -à votre encontre à_votre_encontre ADV 0.15 0.00 0.15 0.00 -oeil-de-boeuf oeil_de_boeuf NOM m s 0.00 0.95 0.00 0.47 -oeils-de-boeuf oeil_de_boeuf NOM m p 0.00 0.95 0.00 0.47 -oeils-de-perdrix oeil_de_perdrix NOM m p 0.00 0.14 0.00 0.14 -off-shore off_shore NOM m s 0.07 0.00 0.07 0.00 -oiseau-clé oiseau_clé NOM m s 0.01 0.00 0.01 0.00 -oiseau-lyre oiseau_lyre NOM m s 0.00 0.07 0.00 0.07 -oiseau-mouche oiseau_mouche NOM m s 0.10 0.27 0.08 0.14 -oiseau-vedette oiseau_vedette NOM m s 0.01 0.00 0.01 0.00 -oiseaux-mouches oiseau_mouche NOM m p 0.10 0.27 0.01 0.14 -oligo-éléments oligo_élément NOM m p 0.00 0.14 0.00 0.14 -olla podrida olla_podrida NOM f 0.00 0.07 0.00 0.07 -olé-olé olé_olé ADJ m p 0.00 0.14 0.00 0.14 -âme-soeur âme_soeur NOM f s 0.04 0.14 0.04 0.14 -on-dit on_dit NOM m 0.14 0.81 0.14 0.81 -on-line on_line ADV 0.07 0.00 0.07 0.00 -one-step one_step NOM m s 0.00 0.20 0.00 0.20 -opéra-comique opéra_comique NOM m s 0.00 0.34 0.00 0.34 -opération-miracle opération_miracle NOM f s 0.00 0.07 0.00 0.07 -orang-outan orang_outan NOM m s 0.28 0.20 0.22 0.07 -orang-outang orang_outang NOM m s 0.08 0.74 0.08 0.61 -orangs-outangs orang_outang NOM m p 0.08 0.74 0.00 0.14 -orangs-outans orang_outan NOM m p 0.28 0.20 0.06 0.14 -osso buco osso_buco NOM m s 0.05 0.00 0.05 0.00 -oto-rhino-laryngologique oto_rhino_laryngologique ADJ f s 0.00 0.07 0.00 0.07 -oto-rhino-laryngologiste oto_rhino_laryngologiste NOM s 0.02 0.00 0.02 0.00 -oto-rhino oto_rhino NOM s 0.49 1.22 0.48 1.08 -oto-rhinos oto_rhino NOM p 0.49 1.22 0.01 0.07 -oto rhino oto_rhino NOM s 0.49 1.22 0.00 0.07 -ouï-dire ouï_dire NOM m 0.00 1.01 0.00 1.01 -ouest-allemand ouest_allemand ADJ m s 0.12 0.00 0.12 0.00 -oui-da oui_da ONO 0.27 0.07 0.27 0.07 -outre-atlantique outre_atlantique ADV 0.04 0.68 0.04 0.68 -outre-manche outre_manche ADV 0.00 0.20 0.00 0.20 -outre-mer outre_mer ADV 0.89 4.05 0.89 4.05 -outre-rhin outre_rhin ADV 0.00 0.27 0.00 0.27 -outre-tombe outre_tombe ADJ s 0.26 2.16 0.26 2.16 -ouvre-boîte ouvre_boîte NOM m s 0.32 0.20 0.32 0.20 -ouvre-boîtes ouvre_boîtes NOM m 0.16 0.34 0.16 0.34 -ouvre-bouteille ouvre_bouteille NOM m s 0.12 0.14 0.08 0.00 -ouvre-bouteilles ouvre_bouteille NOM m p 0.12 0.14 0.04 0.14 -palma-christi palma_christi NOM m 0.00 0.07 0.00 0.07 -pan bagnat pan_bagnat NOM m s 0.00 0.14 0.00 0.14 -panier-repas panier_repas NOM m 0.21 0.07 0.21 0.07 -panneau-réclame panneau_réclame NOM m s 0.00 0.68 0.00 0.68 -papa-cadeau papa_cadeau NOM m s 0.01 0.00 0.01 0.00 -papier-cadeau papier_cadeau NOM m s 0.07 0.07 0.07 0.07 -papier-monnaie papier_monnaie NOM m s 0.00 0.14 0.00 0.14 -papiers-calque papier_calque NOM m p 0.00 0.07 0.00 0.07 -paquet-cadeau paquet_cadeau NOM m s 0.19 0.20 0.19 0.20 -paquets-cadeaux paquets_cadeaux NOM m p 0.01 0.54 0.01 0.54 -par-ci par_ci ADV 3.10 9.12 3.10 9.12 -par-dedans par_dedans PRE 0.00 0.07 0.00 0.07 -par-delà par_delà PRE 1.32 9.05 1.32 9.05 -par-derrière par_derrière PRE 2.04 6.35 2.04 6.35 -par-dessous par_dessous PRE 0.32 2.16 0.32 2.16 -par-dessus par_dessus PRE 16.10 69.19 16.10 69.19 -par-devant par_devant PRE 0.16 1.96 0.16 1.96 -par-devers par_devers PRE 0.01 1.08 0.01 1.08 -par mégarde par_mégarde ADV 0.61 2.91 0.61 2.91 -para-humain para_humain NOM m s 0.00 0.14 0.00 0.14 -parce qu parce_qu CON 4.13 2.36 4.13 2.36 -parce que parce_que CON 548.52 327.43 548.52 327.43 -pare-balle pare_balle ADJ s 0.13 0.00 0.13 0.00 -pare-balles pare_balles ADJ 1.92 0.34 1.92 0.34 -pare-boue pare_boue NOM m 0.04 0.00 0.04 0.00 -pare-brise pare_brise NOM m 4.12 7.16 4.08 7.16 -pare-brises pare_brise NOM m p 4.12 7.16 0.04 0.00 -pare-chocs pare_chocs NOM m 1.85 1.82 1.85 1.82 -pare-feu pare_feu NOM m 0.24 0.07 0.24 0.07 -pare-feux pare_feux NOM m p 0.05 0.00 0.05 0.00 -pare-soleil pare_soleil NOM m 0.26 0.54 0.26 0.54 -pare-éclats pare_éclats NOM m 0.00 0.07 0.00 0.07 -pare-étincelles pare_étincelles NOM m 0.00 0.07 0.00 0.07 -paris-brest paris_brest NOM m 0.19 0.20 0.19 0.20 -part time part_time NOM f s 0.00 0.14 0.00 0.14 -partenaire-robot partenaire_robot NOM s 0.01 0.00 0.01 0.00 -pas-de-porte pas_de_porte NOM m 0.00 0.20 0.00 0.20 -pas-je pas_je ADV 0.01 0.00 0.01 0.00 -paso-doble paso_doble NOM m s 0.00 0.07 0.00 0.07 -paso doble paso_doble NOM m 0.69 0.81 0.69 0.81 -passe-boule passe_boule NOM m s 0.00 0.07 0.00 0.07 -passe-boules passe_boules NOM m 0.00 0.07 0.00 0.07 -passe-crassane passe_crassane NOM f 0.00 0.14 0.00 0.14 -passe-droit passe_droit NOM m s 0.25 0.47 0.08 0.27 -passe-droits passe_droit NOM m p 0.25 0.47 0.17 0.20 -passe-la-moi passe_la_moi NOM f s 0.35 0.07 0.35 0.07 -passe-lacet passe_lacet NOM m s 0.00 0.20 0.00 0.07 -passe-lacets passe_lacet NOM m p 0.00 0.20 0.00 0.14 -passe-montagne passe_montagne NOM m s 0.41 1.69 0.39 1.35 -passe-montagnes passe_montagne NOM m p 0.41 1.69 0.02 0.34 -passe-muraille passe_muraille NOM m 0.01 0.07 0.01 0.07 -passe-partout passe_partout NOM m 0.45 1.22 0.45 1.22 -passe-passe passe_passe NOM m 0.97 1.15 0.97 1.15 -passe-pied passe_pied NOM m s 0.00 0.07 0.00 0.07 -passe-plat passe_plat NOM m s 0.04 0.14 0.04 0.14 -passe-roses passe_rose NOM f p 0.00 0.07 0.00 0.07 -passe-temps passe_temps NOM m 4.21 2.77 4.21 2.77 -pater familias pater_familias NOM m 0.03 0.07 0.03 0.07 -pater noster pater_noster NOM m s 0.10 0.41 0.10 0.41 -pause-café pause_café NOM f s 0.29 0.14 0.26 0.07 -pauses-café pause_café NOM f p 0.29 0.14 0.03 0.07 -pauses-repas pauses_repas NOM f p 0.01 0.07 0.01 0.07 -pax americana pax_americana NOM f 0.01 0.00 0.01 0.00 -peau-rouge peau_rouge NOM s 0.51 0.54 0.49 0.27 -peaux-rouges peau_rouge NOM p 0.51 0.54 0.02 0.27 -peigne-cul peigne_cul NOM m s 0.23 0.34 0.07 0.27 -peigne-culs peigne_cul NOM m p 0.23 0.34 0.17 0.07 -peigne-zizi peigne_zizi NOM s 0.00 0.07 0.00 0.07 -pelle-bêche pelle_bêche NOM f s 0.00 0.14 0.00 0.07 -pelle-pioche pelle_pioche NOM f s 0.00 0.41 0.00 0.07 -pelles-bêches pelle_bêche NOM f p 0.00 0.14 0.00 0.07 -pelles-pioches pelle_pioche NOM f p 0.00 0.41 0.00 0.34 -pense-bête pense_bête NOM m s 0.34 0.41 0.17 0.41 -pense-bêtes pense_bête NOM m p 0.34 0.41 0.17 0.00 -perce-oreille perce_oreille NOM m s 0.04 0.20 0.03 0.07 -perce-oreilles perce_oreille NOM m p 0.04 0.20 0.01 0.14 -perce-pierre perce_pierre NOM f s 0.00 0.07 0.00 0.07 -persona grata persona_grata ADJ 0.01 0.00 0.01 0.00 -persona non grata persona_non_grata NOM f 0.08 0.07 0.08 0.07 -personnage-clé personnage_clé NOM m s 0.02 0.00 0.02 0.00 -pet-de-loup pet_de_loup NOM m s 0.00 0.07 0.00 0.07 -petit-beurre petit_beurre NOM m s 0.00 0.95 0.00 0.14 -petit-bourgeois petit_bourgeois ADJ m 0.77 1.42 0.77 1.42 -petit-cousin petit_cousin NOM m s 0.00 0.07 0.00 0.07 -petit-déjeuner petit_déjeuner NOM m s 13.51 0.07 13.37 0.00 -petit-fils petit_fils NOM m 12.90 12.70 12.50 11.01 -petit-four petit_four NOM m s 0.08 0.07 0.03 0.00 -petit-gris petit_gris NOM m 0.51 0.00 0.27 0.00 -petit-lait petit_lait NOM m s 0.05 0.54 0.05 0.54 -petit-maître petit_maître NOM m s 0.20 0.07 0.20 0.07 -petit-neveu petit_neveu NOM m s 0.04 0.95 0.04 0.61 -petit-nègre petit_nègre NOM m s 0.00 0.14 0.00 0.14 -petit-salé petit_salé NOM m s 0.00 0.07 0.00 0.07 -petit-suisse petit_suisse NOM m s 0.01 0.20 0.01 0.00 -petite-bourgeoise petite_bourgeoise ADJ f s 0.11 0.27 0.11 0.27 -petite-cousine petite_cousine NOM f s 0.00 0.14 0.00 0.14 -petite-fille petite_fille NOM f s 5.30 6.35 4.97 5.74 -petite-nièce petite_nièce NOM f s 0.02 0.20 0.02 0.20 -petites-bourgeoises petite_bourgeoise NOM f p 0.00 0.34 0.00 0.14 -petites-filles petite_fille NOM f p 5.30 6.35 0.33 0.61 -petits-beurre petit_beurre NOM m p 0.00 0.95 0.00 0.81 -petits-bourgeois petit_bourgeois NOM m p 0.71 2.16 0.32 1.42 -petits-déjeuners petit_déjeuner NOM m p 13.51 0.07 0.14 0.07 -petits-enfants petit_enfant NOM m p 5.76 3.04 5.76 3.04 -petits-fils petit_fils NOM m p 12.90 12.70 0.40 1.69 -petits-fours petit_four NOM m p 0.08 0.07 0.04 0.07 -petits-gris petit_gris NOM m p 0.51 0.00 0.25 0.00 -petits-neveux petit_neveu NOM m p 0.04 0.95 0.00 0.34 -petits-pois petits_pois NOM m p 0.10 0.00 0.10 0.00 -petits-suisses petit_suisse NOM m p 0.01 0.20 0.00 0.20 -pets-de-nonne pet_de_nonne NOM m p 0.00 0.41 0.00 0.41 -peu ou prou peu_ou_prou ADV 0.40 0.68 0.40 0.68 -peut-être peut_être ADV 907.68 697.97 907.68 697.97 -photo-finish photo_finish NOM f s 0.01 0.00 0.01 0.00 -photo-robot photo_robot NOM f s 0.01 0.14 0.01 0.14 -photo-électrique photo_électrique ADJ f s 0.00 0.14 0.00 0.14 -phrase-clé phrase_clé NOM f s 0.02 0.00 0.02 0.00 -phrase-robot phrase_robot NOM f s 0.00 0.07 0.00 0.07 -phrases-clés phrases_clé NOM f p 0.00 0.07 0.00 0.07 -physico-chimiques physico_chimique ADJ f p 0.00 0.07 0.00 0.07 -piano-bar piano_bar NOM m s 0.05 0.00 0.05 0.00 -pic-vert pic_vert NOM m s 0.28 0.27 0.27 0.27 -pick-up pick_up NOM m 1.98 2.64 1.98 2.64 -pics-verts pic_vert NOM m p 0.28 0.27 0.01 0.00 -pie-grièche pie_grièche NOM f s 0.00 0.07 0.00 0.07 -pie-mère pie_mère NOM f s 0.01 0.07 0.01 0.07 -pied-bot pied_bot NOM m s 0.28 0.61 0.28 0.61 -pied-d'alouette pied_d_alouette NOM m s 0.01 0.00 0.01 0.00 -pied-d'oeuvre pied_d_oeuvre NOM m s 0.00 0.07 0.00 0.07 -pied-de-biche pied_de_biche NOM m s 0.32 0.27 0.28 0.20 -pied-de-poule pied_de_poule ADJ 0.02 0.54 0.02 0.54 -pied-noir pied_noir NOM m s 0.28 3.78 0.09 0.54 -pied-plat pied_plat NOM m s 0.05 0.00 0.05 0.00 -pieds-de-biche pied_de_biche NOM m p 0.32 0.27 0.04 0.07 -pieds-de-coq pied_de_coq NOM m p 0.00 0.07 0.00 0.07 -pieds-droits pied_droit NOM m p 0.00 0.07 0.00 0.07 -pieds-noirs pied_noir NOM m p 0.28 3.78 0.19 3.24 -pigeon-voyageur pigeon_voyageur NOM m s 0.14 0.00 0.14 0.00 -pile-poil pile_poil NOM f s 0.07 0.00 0.07 0.00 -pin's pin_s NOM m 0.30 0.00 0.30 0.00 -pin-pon pin_pon ONO 0.00 0.34 0.00 0.34 -pin-up pin_up NOM f 0.71 0.54 0.71 0.54 -pince-fesses pince_fesse NOM m p 0.05 0.14 0.05 0.14 -pince-mailles pince_maille NOM m p 0.00 0.07 0.00 0.07 -pince-monseigneur pince_monseigneur NOM f s 0.03 0.54 0.03 0.54 -pince-nez pince_nez NOM m 0.07 1.35 0.07 1.35 -pince-sans-rire pince_sans_rire ADJ s 0.05 0.47 0.05 0.47 -ping-pong ping_pong NOM m s 2.67 2.36 2.67 2.36 -pipe-line pipe_line NOM m s 0.11 0.34 0.09 0.34 -pipe-lines pipe_line NOM m p 0.11 0.34 0.02 0.00 -pipi-room pipi_room NOM m s 0.05 0.00 0.05 0.00 -pique-assiette pique_assiette NOM s 0.39 0.34 0.27 0.27 -pique-assiettes pique_assiette NOM p 0.39 0.34 0.12 0.07 -pique-boeufs pique_boeuf NOM m p 0.00 0.07 0.00 0.07 -pique-feu pique_feu NOM m 0.03 0.81 0.03 0.81 -pique-niquaient pique_niquer VER 1.03 0.74 0.01 0.00 ind:imp:3p; -pique-nique pique_nique NOM m s 6.05 4.12 5.57 3.18 -pique-niquent pique_niquer VER 1.03 0.74 0.03 0.07 ind:pre:3p; -pique-niquer pique_niquer VER 1.03 0.74 0.83 0.47 inf;; -pique-niqueraient pique_niquer VER 1.03 0.74 0.01 0.00 cnd:pre:3p; -pique-niquerons pique_niquer VER 1.03 0.74 0.01 0.00 ind:fut:1p; -pique-niques pique_nique NOM m p 6.05 4.12 0.48 0.95 -pique-niqueurs pique_niqueur NOM m p 0.02 0.27 0.02 0.27 -pique-niquez pique_niquer VER 1.03 0.74 0.01 0.07 ind:pre:2p; -pique-niqué pique_niquer VER m s 1.03 0.74 0.05 0.07 par:pas; -pis-aller pis_aller NOM m 0.14 0.81 0.14 0.81 -pisse-copie pisse_copie NOM s 0.01 0.27 0.01 0.20 -pisse-copies pisse_copie NOM p 0.01 0.27 0.00 0.07 -pisse-froid pisse_froid NOM m 0.10 0.34 0.10 0.34 -pisse-vinaigre pisse_vinaigre NOM m 0.04 0.07 0.04 0.07 -pistolet-mitrailleur pistolet_mitrailleur NOM m s 0.02 0.00 0.02 0.00 -pit-bull pit_bull NOM m s 0.63 0.00 0.26 0.00 -pit-bulls pit_bull NOM m p 0.63 0.00 0.06 0.00 -pit bull pit_bull NOM m s 0.63 0.00 0.31 0.00 -plain-chant plain_chant NOM m s 0.10 0.27 0.10 0.27 -plain-pied plain_pied NOM m s 0.12 3.65 0.12 3.65 -plan-séquence plan_séquence NOM m s 0.10 0.00 0.10 0.00 -planches-contacts planche_contact NOM f p 0.00 0.07 0.00 0.07 -plat-bord plat_bord NOM m s 0.01 0.61 0.00 0.54 -plat-ventre plat_ventre NOM m s 0.11 0.07 0.11 0.07 -plate-bande plate_bande NOM f s 0.82 2.77 0.12 0.54 -plate-forme plate_forme NOM f s 3.06 11.15 2.49 8.45 -plateau-repas plateau_repas NOM m 0.04 0.14 0.04 0.14 -plateaux-repas plateaux_repas NOM m p 0.04 0.07 0.04 0.07 -plates-bandes plate_bande NOM f p 0.82 2.77 0.70 2.23 -plates-formes plate_forme NOM f p 3.06 11.15 0.57 2.70 -plats-bords plat_bord NOM m p 0.01 0.61 0.01 0.07 -play-back play_back NOM m 0.59 0.14 0.57 0.14 -play-boy play_boy NOM m s 0.69 1.08 0.58 0.95 -play-boys play_boy NOM m p 0.69 1.08 0.11 0.14 -play back play_back NOM m 0.59 0.14 0.02 0.00 -plein-air plein_air ADJ m s 0.00 0.07 0.00 0.07 -plein-air plein_air NOM m s 0.00 0.20 0.00 0.20 -plein-cintre plein_cintre NOM m s 0.00 0.07 0.00 0.07 -plein-emploi plein_emploi NOM m s 0.01 0.00 0.01 0.00 -plein-temps plein_temps NOM m 0.12 0.00 0.12 0.00 -plum-pudding plum_pudding NOM m s 0.02 0.07 0.02 0.07 -plus-que-parfait plus_que_parfait NOM m s 0.02 0.14 0.02 0.07 -plus-que-parfaits plus_que_parfait NOM m p 0.02 0.14 0.00 0.07 -plus-value plus_value NOM f s 0.72 0.68 0.48 0.54 -plus-values plus_value NOM f p 0.72 0.68 0.25 0.14 -pneus-neige pneus_neige NOM m p 0.02 0.00 0.02 0.00 -poche-revolver poche_revolver NOM s 0.00 0.27 0.00 0.27 -pochette-surprise pochette_surprise NOM f s 0.20 0.34 0.20 0.20 -pochettes-surprises pochette_surprise NOM f p 0.20 0.34 0.00 0.14 -poids-lourds poids_lourds NOM m 0.02 0.07 0.02 0.07 -poil-de-carotte poil_de_carotte NOM m s 0.00 0.07 0.00 0.07 -point-clé point_clé NOM m s 0.02 0.00 0.02 0.00 -point-virgule point_virgule NOM m s 0.04 0.07 0.04 0.00 -points-virgules point_virgule NOM m p 0.04 0.07 0.00 0.07 -poire-vérité poire_vérité NOM f s 0.00 0.07 0.00 0.07 -poisson-chat poisson_chat NOM m s 0.64 0.54 0.54 0.34 -poisson-globe poisson_globe NOM m s 0.02 0.00 0.02 0.00 -poisson-lune poisson_lune NOM m s 0.15 0.07 0.15 0.07 -poisson-pilote poisson_pilote NOM m s 0.00 0.07 0.00 0.07 -poisson-épée poisson_épée NOM m s 0.09 0.00 0.09 0.00 -poissons-chats poisson_chat NOM m p 0.64 0.54 0.11 0.20 -police-secours police_secours NOM f s 0.16 0.47 0.16 0.47 -politico-religieuse politico_religieux ADJ f s 0.00 0.07 0.00 0.07 -politique-fiction politique_fiction NOM f s 0.00 0.07 0.00 0.07 -poly-sexuelle poly_sexuel ADJ f s 0.01 0.00 0.01 0.00 -pom-pom girl pom_pom_girl NOM f s 2.06 0.00 0.95 0.00 -pom-pom girls pom_pom_girl NOM f p 2.06 0.00 1.11 0.00 -pont-l'évêque pont_l_évêque NOM m s 0.00 0.07 0.00 0.07 -pont-levis pont_levis NOM m 0.46 1.42 0.46 1.42 -pont-neuf pont_neuf NOM m s 0.14 2.43 0.14 2.43 -pont-promenade pont_promenade NOM m s 0.00 0.07 0.00 0.07 -ponts-levis ponts_levis NOM m p 0.00 0.27 0.00 0.27 -pop-club pop_club NOM s 0.00 0.07 0.00 0.07 -pop-corn pop_corn NOM m 3.79 0.14 3.79 0.14 -porc-épic porc_épic NOM m s 0.55 0.27 0.55 0.27 -port-salut port_salut NOM m 0.00 0.20 0.00 0.20 -porte-aiguille porte_aiguille NOM m s 0.07 0.00 0.07 0.00 -porte-avion porte_avion NOM m s 0.04 0.07 0.04 0.07 -porte-avions porte_avions NOM m 1.21 1.22 1.21 1.22 -porte-bagages porte_bagages NOM m 0.02 3.11 0.02 3.11 -porte-bannière porte_bannière NOM m s 0.00 0.07 0.00 0.07 -porte-billets porte_billets NOM m 0.00 0.14 0.00 0.14 -porte-bois porte_bois NOM m 0.00 0.07 0.00 0.07 -porte-bonheur porte_bonheur NOM m 4.58 1.08 4.58 1.08 -porte-bouteilles porte_bouteilles NOM m 0.00 0.27 0.00 0.27 -porte-bébé porte_bébé NOM m s 0.02 0.00 0.02 0.00 -porte-cannes porte_cannes NOM m 0.00 0.07 0.00 0.07 -porte-carte porte_carte NOM m s 0.00 0.07 0.00 0.07 -porte-cartes porte_cartes NOM m 0.00 0.34 0.00 0.34 -porte-chance porte_chance NOM m 0.17 0.07 0.17 0.07 -porte-chapeaux porte_chapeaux NOM m 0.04 0.00 0.04 0.00 -porte-cigarette porte_cigarette NOM m s 0.00 0.20 0.00 0.20 -porte-cigarettes porte_cigarettes NOM m 0.65 0.74 0.65 0.74 -porte-clef porte_clef NOM m s 0.02 0.14 0.02 0.14 -porte-clefs porte_clefs NOM m 0.27 0.34 0.27 0.34 -porte-clé porte_clé NOM m s 0.10 0.00 0.10 0.00 -porte-clés porte_clés NOM m 1.44 0.54 1.44 0.54 -porte-conteneurs porte_conteneurs NOM m 0.01 0.00 0.01 0.00 -porte-coton porte_coton NOM m s 0.00 0.07 0.00 0.07 -porte-couilles porte_couilles NOM m 0.00 0.07 0.00 0.07 -porte-couteau porte_couteau NOM m s 0.00 0.07 0.00 0.07 -porte-couteaux porte_couteaux NOM m p 0.00 0.07 0.00 0.07 -porte-cravate porte_cravate NOM m s 0.00 0.07 0.00 0.07 -porte-crayon porte_crayon NOM m s 0.01 0.00 0.01 0.00 -porte-document porte_document NOM m s 0.01 0.00 0.01 0.00 -porte-documents porte_documents NOM m 0.86 0.68 0.86 0.68 -porte-drapeau porte_drapeau NOM m s 0.19 0.68 0.19 0.68 -porte-drapeaux porte_drapeaux NOM m p 0.01 0.07 0.01 0.07 -porte-fanion porte_fanion NOM m s 0.00 0.14 0.00 0.14 -porte-fenêtre porte_fenêtre NOM f s 0.14 4.46 0.03 3.11 -porte-flingue porte_flingue NOM m s 0.08 0.07 0.08 0.00 -porte-flingues porte_flingue NOM m p 0.08 0.07 0.00 0.07 -porte-forets porte_foret NOM m p 0.00 0.07 0.00 0.07 -porte-glaive porte_glaive NOM m 0.10 1.01 0.10 1.01 -porte-jarretelles porte_jarretelles NOM m 0.59 1.89 0.59 1.89 -porte-malheur porte_malheur NOM m 0.19 0.07 0.19 0.07 -porte-mine porte_mine NOM m s 0.00 0.14 0.00 0.14 -porte-monnaie porte_monnaie NOM m 2.24 6.01 2.24 6.01 -porte-musique porte_musique NOM m s 0.00 0.07 0.00 0.07 -porte-à-faux porte_à_faux NOM m 0.00 0.61 0.00 0.61 -porte-à-porte porte_à_porte NOM m 0.00 0.41 0.00 0.41 -porte-objet porte_objet NOM m s 0.01 0.00 0.01 0.00 -porte-papier porte_papier NOM m 0.01 0.07 0.01 0.07 -porte-parapluie porte_parapluie NOM m s 0.00 0.07 0.00 0.07 -porte-parapluies porte_parapluies NOM m 0.14 0.47 0.14 0.47 -porte-plume porte_plume NOM m 0.29 3.78 0.29 3.72 -porte-plumes porte_plume NOM m p 0.29 3.78 0.00 0.07 -porte-queue porte_queue NOM m 0.01 0.00 0.01 0.00 -porte-savon porte_savon NOM m s 0.09 0.27 0.09 0.27 -porte-serviette porte_serviette NOM m s 0.00 0.20 0.00 0.20 -porte-serviettes porte_serviettes NOM m 0.12 0.20 0.12 0.20 -porte-tambour porte_tambour NOM m 0.01 0.34 0.01 0.34 -porte-épée porte_épée NOM m s 0.00 0.14 0.00 0.14 -porte-étendard porte_étendard NOM m s 0.01 0.34 0.01 0.27 -porte-étendards porte_étendard NOM m p 0.01 0.34 0.00 0.07 -porte-étrier porte_étrier NOM m s 0.00 0.07 0.00 0.07 -porte-voix porte_voix NOM m 0.55 2.64 0.55 2.64 -portes-fenêtres porte_fenêtre NOM f p 0.14 4.46 0.10 1.35 -portrait-robot portrait_robot NOM m s 1.17 0.54 0.77 0.47 -portraits-robots portrait_robot NOM m p 1.17 0.54 0.40 0.07 -pose-la-moi pose_la_moi NOM f s 0.01 0.00 0.01 0.00 -position-clé position_clé NOM f s 0.01 0.00 0.01 0.00 -post-apocalyptique post_apocalyptique ADJ s 0.04 0.00 0.04 0.00 -post-empire post_empire NOM m s 0.00 0.07 0.00 0.07 -post-hypnotique post_hypnotique ADJ f s 0.02 0.00 0.02 0.00 -post-impressionnisme post_impressionnisme NOM m s 0.01 0.00 0.01 0.00 -post-it post_it NOM m 1.85 0.00 1.84 0.00 -post-moderne post_moderne ADJ s 0.14 0.00 0.14 0.00 -post-natal post_natal ADJ m s 0.18 0.07 0.03 0.07 -post-natale post_natal ADJ f s 0.18 0.07 0.16 0.00 -post-opératoire post_opératoire ADJ s 0.19 0.00 0.17 0.00 -post-opératoires post_opératoire ADJ m p 0.19 0.00 0.02 0.00 -post-partum post_partum NOM m 0.04 0.00 0.04 0.00 -post-production post_production NOM f s 0.14 0.00 0.14 0.00 -post-punk post_punk NOM s 0.00 0.14 0.00 0.14 -post-romantique post_romantique ADJ m s 0.00 0.07 0.00 0.07 -post-rupture post_rupture NOM f s 0.01 0.00 0.01 0.00 -post-scriptum post_scriptum NOM m 0.29 1.96 0.29 1.96 -post-surréalistes post_surréaliste ADJ p 0.00 0.07 0.00 0.07 -post-synchro post_synchro ADJ s 0.05 0.00 0.05 0.00 -post-traumatique post_traumatique ADJ s 0.82 0.07 0.79 0.00 -post-traumatiques post_traumatique ADJ p 0.82 0.07 0.03 0.07 -post-victorien post_victorien ADJ m s 0.01 0.00 0.01 0.00 -post-zoo post_zoo NOM m s 0.01 0.00 0.01 0.00 -post it post_it NOM m 1.85 0.00 0.01 0.00 -post mortem post_mortem ADV 0.28 0.20 0.28 0.20 -poste-clé poste_clé NOM s 0.02 0.00 0.02 0.00 -postes-clés postes_clé NOM p 0.01 0.00 0.01 0.00 -pot-au-feu pot_au_feu NOM m 0.90 0.88 0.90 0.88 -pot-bouille pot_bouille NOM m 0.01 0.00 0.01 0.00 -pot-de-vin pot_de_vin NOM m s 1.22 0.41 1.22 0.41 -pot-pourri pot_pourri NOM m s 0.49 0.68 0.34 0.68 -poto-poto poto_poto NOM m s 0.00 0.14 0.00 0.14 -potron-minet potron_minet NOM m s 0.03 0.27 0.03 0.27 -pots-de-vin pots_de_vin NOM m p 1.98 0.34 1.98 0.34 -pots-pourris pot_pourri NOM m p 0.49 0.68 0.15 0.00 -pouce-pied pouce_pied NOM m s 0.01 0.00 0.01 0.00 -pour-cent pour_cent NOM m 0.56 0.00 0.56 0.00 -pousse-au-crime pousse_au_crime NOM m 0.02 0.07 0.02 0.07 -pousse-café pousse_café NOM m 0.13 0.68 0.13 0.68 -pousse-cailloux pousse_cailloux NOM m s 0.00 0.07 0.00 0.07 -pousse-pousse pousse_pousse NOM m 1.43 0.41 1.43 0.41 -premier-maître premier_maître NOM m s 0.16 0.00 0.16 0.00 -premier-né premier_né NOM m s 0.91 0.20 0.77 0.14 -premiers-nés premier_né NOM m p 0.91 0.20 0.14 0.07 -première-née première_née NOM f s 0.11 0.00 0.11 0.00 -presqu'île presqu_île NOM f s 0.16 1.49 0.16 1.35 -presqu'îles presqu_île NOM f p 0.16 1.49 0.00 0.14 -press-book press_book NOM m s 0.03 0.00 0.03 0.00 -presse-agrumes presse_agrumes NOM m 0.04 0.00 0.04 0.00 -presse-bouton presse_bouton ADJ f s 0.04 0.07 0.04 0.07 -presse-citron presse_citron NOM m s 0.02 0.00 0.02 0.00 -presse-fruits presse_fruits NOM m 0.07 0.00 0.07 0.00 -presse-papier presse_papier NOM m s 0.16 0.27 0.16 0.27 -presse-papiers presse_papiers NOM m 0.24 0.47 0.24 0.47 -presse-purée presse_purée NOM m 0.04 0.41 0.04 0.41 -presse-raquette presse_raquette NOM m s 0.00 0.07 0.00 0.07 -prie-dieu prie_dieu NOM m 0.01 2.64 0.01 2.64 -prime-saut prime_saut NOM s 0.00 0.07 0.00 0.07 -prime time prime_time NOM m 0.41 0.00 0.41 0.00 -primo-infection primo_infection NOM f s 0.00 0.07 0.00 0.07 -prince-de-galles prince_de_galles NOM m 0.00 0.27 0.00 0.27 -prince-évêque prince_évêque NOM m s 0.00 0.14 0.00 0.14 -prisons-écoles prisons_école NOM f p 0.00 0.07 0.00 0.07 -prix-choc prix_choc NOM m 0.00 0.07 0.00 0.07 -pro-occidental pro_occidental ADJ m s 0.01 0.00 0.01 0.00 -proche-oriental proche_oriental ADJ m s 0.01 0.00 0.01 0.00 -procès-test procès_test NOM m 0.02 0.00 0.02 0.00 -procès-verbal procès_verbal NOM m s 3.86 2.30 3.55 1.76 -procès-verbaux procès_verbal NOM m p 3.86 2.30 0.31 0.54 -propre-à-rien propre_à_rien NOM m s 0.00 0.07 0.00 0.07 -protège-cahier protège_cahier NOM m s 0.01 0.07 0.01 0.07 -protège-dents protège_dents NOM m 0.10 0.27 0.10 0.27 -protège-slip protège_slip NOM m s 0.03 0.00 0.03 0.00 -protège-tibia protège_tibia NOM m s 0.02 0.00 0.02 0.00 -près de près_de ADV 4.10 16.35 4.10 16.35 -pré-salé pré_salé NOM m s 0.00 0.20 0.00 0.20 -pré-établi pré_établi ADJ m s 0.00 0.07 0.00 0.07 -prêchi-prêcha prêchi_prêcha NOM m 0.11 0.14 0.11 0.14 -prud'homme prud_homme NOM m s 0.21 0.07 0.01 0.00 -prud'hommes prud_homme NOM m p 0.21 0.07 0.20 0.07 -prénom-type prénom_type NOM m s 0.00 0.07 0.00 0.07 -président-directeur président_directeur NOM m s 0.02 0.27 0.02 0.27 -présidents-directeurs présidents_directeur NOM m p 0.00 0.14 0.00 0.14 -prêt-bail prêt_bail NOM m s 0.00 0.27 0.00 0.27 -prêt-à-porter prêt_à_porter NOM m s 0.00 0.95 0.00 0.95 -prête-nom prête_nom NOM m s 0.00 0.27 0.00 0.27 -prêtre-ouvrier prêtre_ouvrier NOM m s 0.00 0.07 0.00 0.07 -pseudo-gouvernement pseudo_gouvernement NOM m s 0.00 0.14 0.00 0.14 -psychiatre-conseil psychiatre_conseil NOM s 0.02 0.00 0.02 0.00 -psychologie-fiction psychologie_fiction NOM f s 0.00 0.07 0.00 0.07 -pèse-acide pèse_acide NOM m s 0.00 0.07 0.00 0.07 -pèse-bébé pèse_bébé NOM m s 0.00 0.14 0.00 0.14 -pèse-lettre pèse_lettre NOM m s 0.00 0.07 0.00 0.07 -pèse-personne pèse_personne NOM m s 0.02 0.07 0.02 0.00 -pèse-personnes pèse_personne NOM m p 0.02 0.07 0.00 0.07 -pète-sec pète_sec ADJ 0.03 0.41 0.03 0.41 -public-relations public_relations NOM f p 0.01 0.20 0.01 0.20 -public schools public_school NOM f p 0.00 0.07 0.00 0.07 -pêle-mêle pêle_mêle ADV 0.00 8.24 0.00 8.24 -pull-over pull_over NOM m s 0.80 6.35 0.78 5.27 -pull-overs pull_over NOM m p 0.80 6.35 0.02 1.08 -pulso-réacteurs pulso_réacteur NOM m p 0.01 0.00 0.01 0.00 -punching-ball punching_ball NOM m s 0.71 0.61 0.64 0.61 -punching ball punching_ball NOM m s 0.71 0.61 0.08 0.00 -pur-sang pur_sang NOM m 1.01 2.23 1.01 2.23 -qu'en-dira-t-on qu_en_dira_t_on NOM m 0.10 0.41 0.10 0.41 -quant-à-moi quant_à_moi NOM m 0.00 0.14 0.00 0.14 -quant-à-soi quant_à_soi NOM m 0.00 1.22 0.00 1.22 -quarante-cinq quarante_cinq ADJ:num 1.16 8.85 1.16 8.85 -quarante-cinquième quarante_cinquième ADJ 0.10 0.07 0.10 0.07 -quarante-deux quarante_deux ADJ:num 0.29 2.09 0.29 2.09 -quarante-deuxième quarante_deuxième ADJ 0.03 0.07 0.03 0.07 -quarante-huit quarante_huit ADJ:num 1.11 6.76 1.11 6.76 -quarante-huitards quarante_huitard NOM m p 0.00 0.07 0.00 0.07 -quarante-huitième quarante_huitième ADJ 0.02 0.07 0.02 0.07 -quarante-neuf quarante_neuf ADJ:num 0.28 0.47 0.28 0.47 -quarante-quatre quarante_quatre ADJ:num 0.10 0.88 0.10 0.88 -quarante-sept quarante_sept ADJ:num 0.40 0.74 0.40 0.74 -quarante-septième quarante_septième ADJ 0.03 0.20 0.03 0.20 -quarante-six quarante_six ADJ:num 0.23 0.47 0.23 0.47 -quarante-trois quarante_trois ADJ:num 0.68 1.28 0.68 1.28 -quarante-troisième quarante_troisième ADJ 0.00 0.07 0.00 0.07 -quart-monde quart_monde NOM m s 0.02 0.00 0.02 0.00 -quartier-maître quartier_maître NOM m s 0.84 0.27 0.83 0.27 -quartiers-maîtres quartier_maître NOM m p 0.84 0.27 0.01 0.00 -quasi-agonie quasi_agonie NOM f s 0.00 0.07 0.00 0.07 -quasi-blasphème quasi_blasphème NOM m s 0.00 0.07 0.00 0.07 -quasi-bonheur quasi_bonheur NOM m s 0.00 0.07 0.00 0.07 -quasi-certitude quasi_certitude NOM f s 0.04 0.41 0.04 0.41 -quasi-chômage quasi_chômage NOM m s 0.02 0.00 0.02 0.00 -quasi-débutant quasi_débutant ADV 0.01 0.00 0.01 0.00 -quasi-décapitation quasi_décapitation NOM f s 0.01 0.00 0.01 0.00 -quasi-désertification quasi_désertification NOM f s 0.00 0.07 0.00 0.07 -quasi-facétieux quasi_facétieux ADJ m 0.01 0.00 0.01 0.00 -quasi-fiancée quasi_fiancé NOM f s 0.00 0.07 0.00 0.07 -quasi-futuristes quasi_futuriste ADJ m p 0.01 0.00 0.01 0.00 -quasi-génocide quasi_génocide NOM m s 0.01 0.00 0.01 0.00 -quasi-hérétique quasi_hérétique NOM s 0.00 0.07 0.00 0.07 -quasi-ignare quasi_ignare NOM s 0.00 0.07 0.00 0.07 -quasi-impossibilité quasi_impossibilité NOM f s 0.00 0.14 0.00 0.14 -quasi-impunité quasi_impunité NOM f s 0.00 0.07 0.00 0.07 -quasi-inconnu quasi_inconnu ADV 0.02 0.07 0.02 0.07 -quasi-indifférence quasi_indifférence NOM f s 0.00 0.07 0.00 0.07 -quasi-infirme quasi_infirme NOM s 0.00 0.07 0.00 0.07 -quasi-instantanée quasi_instantanée ADV 0.02 0.00 0.02 0.00 -quasi-jungienne quasi_jungienne NOM f s 0.01 0.00 0.01 0.00 -quasi-mariage quasi_mariage NOM m s 0.00 0.07 0.00 0.07 -quasi-maximum quasi_maximum ADV 0.01 0.00 0.01 0.00 -quasi-mendiant quasi_mendiant NOM m s 0.14 0.00 0.14 0.00 -quasi-miracle quasi_miracle NOM m s 0.00 0.07 0.00 0.07 -quasi-monopole quasi_monopole NOM m s 0.10 0.00 0.10 0.00 -quasi-morceau quasi_morceau NOM m s 0.00 0.07 0.00 0.07 -quasi-noyade quasi_noyade NOM f s 0.01 0.00 0.01 0.00 -quasi-nudité quasi_nudité NOM f s 0.00 0.14 0.00 0.14 -quasi-permanence quasi_permanence NOM f s 0.00 0.07 0.00 0.07 -quasi-protection quasi_protection NOM f s 0.00 0.07 0.00 0.07 -quasi-religieux quasi_religieux ADJ m s 0.01 0.07 0.01 0.07 -quasi-respect quasi_respect NOM m s 0.00 0.07 0.00 0.07 -quasi-totalité quasi_totalité NOM f s 0.16 0.88 0.16 0.88 -quasi-émeute quasi_émeute NOM f s 0.02 0.00 0.02 0.00 -quasi-unanime quasi_unanime ADJ s 0.00 0.14 0.00 0.14 -quasi-unanimité quasi_unanimité NOM f s 0.00 0.07 0.00 0.07 -quasi-équitable quasi_équitable ADJ m s 0.01 0.00 0.01 0.00 -quasi-veuvage quasi_veuvage NOM m s 0.00 0.07 0.00 0.07 -quasi-ville quasi_ville NOM f s 0.00 0.07 0.00 0.07 -quasi-voisines quasi_voisines ADV 0.00 0.07 0.00 0.07 -quat'zarts quat_zarts NOM m p 0.00 0.07 0.00 0.07 -quatre-feuilles quatre_feuilles NOM m 0.01 0.07 0.01 0.07 -quatre-heures quatre_heures NOM m 0.04 0.41 0.04 0.41 -quatre-mâts quatre_mâts NOM m 0.27 0.14 0.27 0.14 -quatre-quarts quatre_quarts NOM m 0.26 0.14 0.26 0.14 -quatre-saisons quatre_saisons NOM f 0.47 1.15 0.47 1.15 -quatre-vingt-cinq quatre_vingt_cinq ADJ:num 0.07 0.88 0.07 0.88 -quatre-vingt-deux quatre_vingt_deux ADJ:num 0.00 0.27 0.00 0.27 -quatre-vingt-dix-huit quatre_vingt_dix_huit ADJ:num 0.02 0.34 0.02 0.34 -quatre-vingt-dix-neuf quatre_vingt_dix_neuf ADJ:num 0.21 0.47 0.21 0.47 -quatre-vingt-dix-sept quatre_vingt_dix_sept ADJ:num 0.00 0.27 0.00 0.27 -quatre-vingt-dix quatre_vingt_dix NOM m 0.33 0.61 0.33 0.61 -quatre-vingt-dixième quatre_vingt_dixième ADJ 0.01 0.14 0.01 0.14 -quatre-vingt-douze quatre_vingt_douze ADJ:num 0.11 0.54 0.11 0.54 -quatre-vingt-douzième quatre_vingt_douzième ADJ 0.00 0.07 0.00 0.07 -quatre-vingt-huit quatre_vingt_huit ADJ:num 0.02 0.20 0.02 0.20 -quatre-vingt-neuf quatre_vingt_neuf ADJ:num 0.14 0.61 0.14 0.61 -quatre-vingt-onze quatre_vingt_onze ADJ:num 0.10 0.34 0.10 0.34 -quatre-vingt-quatorze quatre_vingt_quatorze ADJ:num 0.10 0.07 0.10 0.07 -quatre-vingt-quatre quatre_vingt_quatre ADJ:num 0.03 0.74 0.03 0.74 -quatre-vingt-quinze quatre_vingt_quinze ADJ:num 0.14 2.16 0.14 2.16 -quatre-vingt-seize quatre_vingt_seize ADJ:num 0.10 0.07 0.10 0.07 -quatre-vingt-sept quatre_vingt_sept ADJ:num 0.07 0.27 0.07 0.27 -quatre-vingt-six quatre_vingt_six ADJ:num 0.19 0.34 0.19 0.34 -quatre-vingt-treize quatre_vingt_treize ADJ:num 0.11 0.95 0.11 0.95 -quatre-vingt-treizième quatre_vingt_treizième ADJ 0.00 0.07 0.00 0.07 -quatre-vingt-trois quatre_vingt_trois ADJ:num 0.06 0.41 0.06 0.41 -quatre-vingt-un quatre_vingt_un ADJ:num 0.02 0.14 0.02 0.14 -quatre-vingt quatre_vingt ADJ:num 0.93 1.01 0.93 1.01 -quatre-vingtième quatre_vingtième ADJ 0.00 0.14 0.00 0.14 -quatre-vingtième quatre_vingtième NOM s 0.00 0.14 0.00 0.14 -quatre-vingts quatre_vingts ADJ:num 0.36 9.05 0.36 9.05 -quelqu'un quelqu_un PRO:ind s 629.00 128.92 629.00 128.92 -quelqu'une quelqu_une PRO:ind f s 0.08 0.61 0.08 0.61 -quelques-unes quelques_unes PRO:ind f p 3.50 8.51 3.50 8.51 -quelques-uns quelques_uns PRO:ind m p 8.33 22.09 8.33 22.09 -question-clé question_clé NOM f s 0.02 0.00 0.02 0.00 -question-réponse question_réponse NOM f s 0.02 0.00 0.02 0.00 -questions-réponses questions_réponse NOM f p 0.07 0.07 0.07 0.07 -queue-d'aronde queue_d_aronde NOM f s 0.00 0.14 0.00 0.07 -queue-de-cheval queue_de_cheval NOM f s 0.14 0.00 0.14 0.00 -queue-de-pie queue_de_pie NOM f s 0.05 0.27 0.05 0.27 -queues-d'aronde queue_d_aronde NOM f p 0.00 0.14 0.00 0.07 -queues-de-rat queue_de_rat NOM f p 0.00 0.07 0.00 0.07 -qui-vive qui_vive ONO 0.00 0.14 0.00 0.14 -quote-part quote_part NOM f s 0.03 0.47 0.03 0.47 -rôle-titre rôle_titre NOM m s 0.01 0.00 0.01 0.00 -rabat-joie rabat_joie ADJ 0.91 0.14 0.91 0.14 -radeau-radar radeau_radar NOM m s 0.00 0.07 0.00 0.07 -radical-socialisme radical_socialisme NOM m s 0.00 0.27 0.00 0.27 -radical-socialiste radical_socialiste ADJ m s 0.00 0.34 0.00 0.34 -radicale-socialiste radicale_socialiste NOM f s 0.00 0.20 0.00 0.20 -radicaux-socialistes radical_socialiste NOM m p 0.00 0.34 0.00 0.27 -radio-isotope radio_isotope NOM m s 0.04 0.00 0.04 0.00 -radio-réveil radio_réveil NOM m s 0.10 0.14 0.10 0.14 -radio-taxi radio_taxi NOM m s 0.14 0.07 0.14 0.07 -rahat-lokoum rahat_lokoum NOM m s 0.00 0.47 0.00 0.41 -rahat-lokoums rahat_lokoum NOM m p 0.00 0.47 0.00 0.07 -rahat-loukoums rahat_loukoum NOM m p 0.00 0.07 0.00 0.07 -ramasse-miettes ramasse_miettes NOM m 0.02 0.27 0.02 0.27 -ramasse-poussière ramasse_poussière NOM m 0.02 0.00 0.02 0.00 -ras-le-bol ras_le_bol NOM m 1.62 0.47 1.62 0.47 -rase-mottes rase_mottes NOM m 0.30 0.47 0.30 0.47 -rase-pet rase_pet NOM m s 0.02 0.20 0.00 0.20 -rase-pets rase_pet NOM m p 0.02 0.20 0.02 0.00 -rat-de-cave rat_de_cave NOM m s 0.00 0.07 0.00 0.07 -ray-grass ray_grass NOM m 0.00 0.14 0.00 0.14 -rayon-éclair rayon_éclair NOM m s 0.00 0.07 0.00 0.07 -raz-de-marée raz_de_marée NOM m 0.57 0.20 0.57 0.20 -re-aboie reaboyer VER 0.00 0.07 0.00 0.07 ind:pre:3s; -re-balbutiant rebalbutiant ADJ m s 0.00 0.07 0.00 0.07 -re-baptême rebaptême NOM m s 0.00 0.07 0.00 0.07 -re-belote re_belote ONO 0.01 0.00 0.01 0.00 -re-biberonner rebiberonner VER 0.00 0.07 0.00 0.07 inf; -re-bide rebide NOM m s 0.00 0.07 0.00 0.07 -re-blinder reblinder VER 0.00 0.07 0.00 0.07 inf; -re-bombardons rebombardon NOM m p 0.01 0.00 0.01 0.00 -re-boucler reboucler VER 0.14 1.01 0.01 0.00 inf; -re-cabossé recabosser VER m s 0.00 0.07 0.00 0.07 par:pas; -re-café recafé ADJ 0.00 0.07 0.00 0.07 -re-cailloux recailloux NOM m p 0.00 0.07 0.00 0.07 -re-calibrais recalibrer VER 0.01 0.00 0.01 0.00 ind:imp:1s; -re-cassée recasser VER f s 0.24 0.07 0.01 0.00 par:pas; -re-chanteur rechanteur NOM m s 0.01 0.00 0.01 0.00 -re-chiader rechiader VER 0.00 0.07 0.00 0.07 inf; -re-cisèle reciseler VER 0.00 0.07 0.00 0.07 ind:pre:3s; -re-classe reclasser VER 0.09 0.20 0.00 0.07 ind:pre:3s; -re-classer reclasser VER 0.09 0.20 0.00 0.07 inf; -re-connaître reconnaître VER 140.73 229.19 0.00 0.07 inf; -re-contacte recontacter VER 0.38 0.07 0.03 0.00 ind:pre:1s; -re-contactent recontacter VER 0.38 0.07 0.01 0.00 ind:pre:3p; -re-contacter recontacter VER 0.38 0.07 0.01 0.00 inf; -re-contacterai recontacter VER 0.38 0.07 0.06 0.00 ind:fut:1s; -re-convaincra reconvaincre VER 0.00 0.07 0.00 0.07 ind:fut:3s; -re-coup recoup NOM m s 0.00 0.07 0.00 0.07 -re-crac recrac NOM m s 0.00 0.07 0.00 0.07 -re-creusés recreuser VER m p 0.14 0.20 0.00 0.07 par:pas; -re-croquis recroquis NOM m 0.00 0.07 0.00 0.07 -re-création recréation NOM f s 0.04 0.27 0.03 0.07 -re-créée recréer VER f s 2.23 4.39 0.00 0.07 par:pas; -re-cul recul NOM m s 3.59 15.61 0.00 0.07 -re-diffuses rediffuser VER 0.20 0.07 0.01 0.00 ind:pre:2s; -re-dose redose NOM f s 0.00 0.07 0.00 0.07 -re-drapeau redrapeau NOM m s 0.00 0.07 0.00 0.07 -re-déchire redéchirer VER 0.00 0.07 0.00 0.07 ind:pre:3s; -re-déclic redéclic NOM m s 0.00 0.07 0.00 0.07 -re-décore redécorer VER 0.08 0.00 0.01 0.00 ind:pre:1s; -re-décorer redécorer VER 0.08 0.00 0.07 0.00 inf; -re-déménager redéménager VER 0.00 0.07 0.00 0.07 inf; -re-explique reexpliquer VER 0.00 0.07 0.00 0.07 ind:pre:3s; -re-faim refaim NOM f s 0.14 0.00 0.14 0.00 -re-frappe refrapper VER 0.07 0.14 0.00 0.07 ind:pre:3s; -re-frappé refrapper VER m s 0.07 0.14 0.01 0.07 par:pas; -re-fuse refuser VER 143.96 152.77 0.00 0.07 ind:pre:1s; -re-gomme regomme NOM f s 0.00 0.07 0.00 0.07 -re-histoires rehistoire NOM f p 0.00 0.07 0.00 0.07 -re-hygiène rehygiène NOM f s 0.00 0.07 0.00 0.07 -re-inter re_inter NOM m s 0.00 0.07 0.00 0.07 -re-kidnappais rekidnapper VER 0.01 0.00 0.01 0.00 ind:imp:1s; -re-lettre relettre NOM f s 0.00 0.07 0.00 0.07 -re-main remain NOM f s 0.00 0.07 0.00 0.07 -re-matérialisation rematérialisation NOM f s 0.01 0.00 0.01 0.00 -re-morphine remorphine NOM f s 0.00 0.07 0.00 0.07 -re-nés rené ADJ m p 0.01 0.00 0.01 0.00 -re-paye repayer VER 0.23 0.41 0.00 0.07 imp:pre:2s; -re-penser repenser VER 9.68 12.16 0.01 0.00 inf; -re-potassé repotasser VER m s 0.00 0.07 0.00 0.07 par:pas; -re-programmation reprogrammation NOM f s 0.01 0.00 0.01 0.00 -re-programmée reprogrammer VER f s 1.11 0.00 0.01 0.00 par:pas; -re-raconte reraconter VER 0.00 0.14 0.00 0.07 ind:pre:3s; -re-racontées reraconter VER f p 0.00 0.14 0.00 0.07 par:pas; -re-remplir reremplir VER 0.01 0.07 0.01 0.07 inf; -re-rentrer rerentrer VER 0.05 0.07 0.05 0.07 inf; -re-respirer rerespirer VER 0.00 0.07 0.00 0.07 inf; -re-ressortait reressortir VER 0.00 0.07 0.00 0.07 ind:imp:3s; -re-retirent reretirer VER 0.00 0.07 0.00 0.07 ind:pre:3p; -re-rigole rerigole NOM f s 0.00 0.07 0.00 0.07 -re-récurait rerécurer VER 0.00 0.07 0.00 0.07 ind:imp:3s; -re-réparer reréparer VER 0.01 0.00 0.01 0.00 inf; -re-rêvé rerêvé ADJ m s 0.00 0.07 0.00 0.07 -re-salué resaluer VER m s 0.00 0.07 0.00 0.07 par:pas; -re-savaté resavater VER m s 0.01 0.00 0.01 0.00 par:pas; -re-sculpte resculpter VER 0.00 0.07 0.00 0.07 ind:pre:3s; -re-sevrage resevrage NOM m s 0.00 0.07 0.00 0.07 -re-signer resigner VER 0.02 0.00 0.02 0.00 inf; -re-sommeil resommeil NOM m s 0.00 0.07 0.00 0.07 -re-sonne resonner VER 0.00 0.07 0.00 0.07 ind:pre:3s; -re-structuration restructuration NOM f s 0.91 0.34 0.00 0.07 -re-séparés reséparé ADJ m p 0.00 0.07 0.00 0.07 -re-taloche retaloche NOM f s 0.00 0.14 0.00 0.14 -re-titille retitiller VER 0.00 0.14 0.00 0.14 ind:pre:3s; -re-traitée retraité ADJ f s 0.68 1.15 0.00 0.07 -re-travail retravail NOM m s 0.00 0.07 0.00 0.07 -re-tuage retuage NOM m s 0.04 0.00 0.04 0.00 -re-tuer retuer VER 0.08 0.07 0.07 0.07 inf; -re-tues retu ADJ f p 0.01 0.00 0.01 0.00 -re-ébranlés reébranler VER m p 0.00 0.07 0.00 0.07 par:pas; -re-échanger reéchanger VER 0.01 0.00 0.01 0.00 inf; -re-veux revouloir VER 0.45 0.41 0.04 0.00 ind:pre:2s; -re-vie revie NOM f s 0.00 0.07 0.00 0.07 -re-visite revisiter VER 0.21 0.61 0.00 0.07 ind:pre:3s; -re-vit revivre VER 10.37 20.68 0.00 0.07 ind:pre:3s; -re-vérifier revérifier VER 0.67 0.00 0.10 0.00 inf; -re-vérifié revérifié ADJ m s 0.34 0.07 0.10 0.00 -ready-made ready_made NOM m s 0.00 0.07 0.00 0.07 -receleur-miracle receleur_miracle NOM m s 0.00 0.07 0.00 0.07 -recto tono recto_tono ADV 0.00 0.20 0.00 0.20 -red river red_river NOM s 0.00 0.14 0.00 0.14 -reine-claude reine_claude NOM f s 0.01 0.41 0.00 0.14 -reine-mère reine_mère NOM f s 0.00 0.34 0.00 0.34 -reines-claudes reine_claude NOM f p 0.01 0.41 0.01 0.27 -reines-marguerites reine_marguerite NOM f p 0.00 0.27 0.00 0.27 -remonte-pente remonte_pente NOM m s 0.02 0.07 0.02 0.07 -remonte-pentes remonte_pentes NOM m 0.00 0.07 0.00 0.07 -remède-miracle remède_miracle NOM m s 0.01 0.00 0.01 0.00 -remue-ménage remue_ménage NOM m 0.78 4.80 0.78 4.80 -remue-méninges remue_méninges NOM m 0.05 0.07 0.05 0.07 -rendez-vous rendez_vous NOM m 91.95 53.72 91.95 53.72 -rentre-dedans rentre_dedans NOM m 0.47 0.07 0.47 0.07 -reportage-vérité reportage_vérité NOM m s 0.00 0.14 0.00 0.14 -repose-pied repose_pied NOM m s 0.02 0.07 0.01 0.00 -repose-pieds repose_pied NOM m p 0.02 0.07 0.01 0.07 -requiescat in pace requiescat_in_pace NOM m s 0.00 0.07 0.00 0.07 -requin-baleine requin_baleine NOM m s 0.01 0.00 0.01 0.00 -requin-tigre requin_tigre NOM m s 0.04 0.00 0.04 0.00 -requins-marteaux requin_marteau NOM m p 0.00 0.07 0.00 0.07 -rez-de-chaussée rez_de_chaussée NOM m 2.34 16.96 2.34 16.96 -rez-de-jardin rez_de_jardin NOM m 0.01 0.00 0.01 0.00 -rhythm'n'blues rhythm_n_blues NOM m 0.02 0.00 0.02 0.00 -rhythm and blues rhythm_and_blues NOM m 0.08 0.00 0.08 0.00 -ric-à-rac ric_à_rac ADV 0.00 0.20 0.00 0.20 -ric-rac ric_rac ADV 0.04 0.47 0.04 0.47 -ric et rac ric_et_rac ADV 0.00 0.61 0.00 0.61 -rince-bouche rince_bouche NOM m 0.03 0.00 0.03 0.00 -rince-doigts rince_doigts NOM m 0.08 0.27 0.08 0.27 -risque-tout risque_tout ADJ 0.00 0.07 0.00 0.07 -riz-minute riz_minute NOM m 0.00 0.07 0.00 0.07 -riz-pain-sel riz_pain_sel NOM m s 0.00 0.07 0.00 0.07 -roast-beef roast_beef NOM m s 0.16 0.00 0.14 0.00 -roast beef roast_beef NOM m s 0.16 0.00 0.02 0.00 -rock'n'roll rock_n_roll NOM m 0.19 0.14 0.19 0.14 -rock-'n-roll rock_n_roll NOM m s 0.01 0.00 0.01 0.00 -rocking-chair rocking_chair NOM m s 0.36 1.15 0.28 0.95 -rocking-chairs rocking_chair NOM m p 0.36 1.15 0.01 0.20 -rocking chair rocking_chair NOM m s 0.36 1.15 0.06 0.00 -rogne-pied rogne_pied NOM m s 0.00 0.07 0.00 0.07 -roi-roi roi_roi NOM m s 0.01 0.00 0.01 0.00 -roi-soleil roi_soleil NOM m s 0.00 0.14 0.00 0.14 -roman-feuilleton roman_feuilleton NOM m s 0.13 0.41 0.03 0.27 -roman-fleuve roman_fleuve NOM m s 0.00 0.07 0.00 0.07 -roman-photo roman_photo NOM m s 0.28 0.41 0.14 0.20 -romans-feuilletons roman_feuilleton NOM m p 0.13 0.41 0.10 0.14 -romans-photos roman_photo NOM m p 0.28 0.41 0.14 0.20 -rond-de-cuir rond_de_cuir NOM m s 0.26 0.34 0.23 0.27 -rond-point rond_point NOM m s 0.44 2.50 0.44 2.43 -ronde-bosse ronde_bosse NOM f s 0.00 0.61 0.00 0.61 -ronds-de-cuir rond_de_cuir NOM m p 0.26 0.34 0.03 0.07 -ronds-points rond_point NOM m p 0.44 2.50 0.00 0.07 -rose-croix rose_croix NOM m 0.00 0.07 0.00 0.07 -rose-thé rose_thé ADJ m s 0.00 0.07 0.00 0.07 -rose-thé rose_thé NOM s 0.00 0.07 0.00 0.07 -rouge-brun rouge_brun ADJ m s 0.00 0.20 0.00 0.20 -rouge-feu rouge_feu ADJ m s 0.00 0.07 0.00 0.07 -rouge-gorge rouge_gorge NOM m s 0.44 1.08 0.30 0.68 -rouge-queue rouge_queue NOM m s 0.00 0.07 0.00 0.07 -rouge-sang rouge_sang NOM s 0.00 0.07 0.00 0.07 -rouges-gorges rouge_gorge NOM m p 0.44 1.08 0.13 0.41 -roulé-boulé roulé_boulé NOM m s 0.00 0.27 0.00 0.14 -roulés-boulés roulé_boulé NOM m p 0.00 0.27 0.00 0.14 -russo-allemand russo_allemand ADJ m s 0.00 0.14 0.00 0.07 -russo-allemande russo_allemand ADJ f s 0.00 0.14 0.00 0.07 -russo-américain russo_américain ADJ m s 0.00 0.07 0.00 0.07 -russo-japonaise russo_japonais ADJ f s 0.00 0.20 0.00 0.20 -russo-polonais russo_polonais ADJ m 0.00 0.14 0.00 0.07 -russo-polonaise russo_polonais ADJ f s 0.00 0.14 0.00 0.07 -russo-turque russo_turque ADJ f s 0.00 0.14 0.00 0.14 -réveille-matin réveille_matin NOM m 0.19 0.88 0.19 0.88 -sac-poubelle sac_poubelle NOM m s 0.24 0.41 0.19 0.34 -sacro-iliaque sacro_iliaque ADJ s 0.03 0.00 0.02 0.00 -sacro-iliaques sacro_iliaque ADJ f p 0.03 0.00 0.01 0.00 -sacro-saint sacro_saint ADJ m s 0.65 1.35 0.21 0.68 -sacro-sainte sacro_saint ADJ f s 0.65 1.35 0.41 0.47 -sacro-saintes sacro_saint ADJ f p 0.65 1.35 0.00 0.14 -sacro-saints sacro_saint ADJ m p 0.65 1.35 0.02 0.07 -sacré-coeur sacré_coeur NOM m s 0.00 0.20 0.00 0.20 -sacs-poubelles sac_poubelle NOM m p 0.24 0.41 0.06 0.07 -safari-photo safari_photo NOM m s 0.01 0.00 0.01 0.00 -sage-femme sage_femme NOM f s 1.52 1.22 1.35 1.22 -sages-femmes sage_femme NOM f p 1.52 1.22 0.17 0.00 -saint-bernard saint_bernard NOM m 0.17 0.68 0.17 0.68 -saint-crépin saint_crépin NOM m 0.05 0.00 0.05 0.00 -saint-cyrien saint_cyrien NOM m s 0.00 1.01 0.00 0.68 -saint-cyriens saint_cyrien NOM m p 0.00 1.01 0.00 0.34 -saint-esprit saint_esprit NOM m 0.20 0.47 0.20 0.47 -saint-frusquin saint_frusquin NOM m 0.17 0.74 0.17 0.74 -saint-germain saint_germain NOM m 0.00 0.34 0.00 0.34 -saint-glinglin saint_glinglin NOM f s 0.01 0.07 0.01 0.07 -saint-guy saint_guy NOM m 0.03 0.00 0.03 0.00 -saint-honoré saint_honoré NOM m 0.14 0.20 0.14 0.20 -saint-hubert saint_hubert NOM f s 0.00 0.07 0.00 0.07 -saint-michel saint_michel NOM s 0.00 0.07 0.00 0.07 -saint-nectaire saint_nectaire NOM m 0.00 0.14 0.00 0.14 -saint-paulin saint_paulin NOM m 0.00 0.34 0.00 0.34 -saint-pierre saint_pierre NOM m 0.16 0.20 0.16 0.20 -saint-père saint_père NOM m s 0.14 2.16 0.14 0.20 -saint-siège saint_siège NOM m s 0.30 1.28 0.30 1.28 -saint-synode saint_synode NOM m s 0.00 0.07 0.00 0.07 -saint-émilion saint_émilion NOM m 0.00 0.41 0.00 0.41 -sainte-nitouche sainte_nitouche NOM f s 0.46 0.20 0.35 0.20 -sainte nitouche sainte_nitouche NOM f s 0.51 0.14 0.51 0.14 -saintes-nitouches sainte_nitouche NOM f p 0.46 0.20 0.11 0.00 -saints-pères saint_père NOM m p 0.14 2.16 0.00 1.96 -saisie-arrêt saisie_arrêt NOM f s 0.00 0.20 0.00 0.20 -san francisco san_francisco NOM s 0.02 0.07 0.02 0.07 -sang-froid sang_froid NOM m 5.41 9.26 5.41 9.26 -sans-coeur sans_coeur ADJ 0.01 0.07 0.01 0.07 -sans-culotte sans_culotte NOM m s 0.16 0.41 0.16 0.00 -sans-culottes sans_culotte NOM m p 0.16 0.41 0.00 0.41 -sans-culottides sans_culottide NOM f p 0.00 0.07 0.00 0.07 -sans-façon sans_façon NOM m 0.10 0.14 0.10 0.14 -sans-faute sans_faute NOM m 0.05 0.00 0.05 0.00 -sans-fil sans_fil NOM m 0.21 0.20 0.21 0.20 -sans-filiste sans_filiste NOM m s 0.00 0.74 0.00 0.61 -sans-filistes sans_filiste NOM m p 0.00 0.74 0.00 0.14 -sans-grade sans_grade NOM m 0.05 0.14 0.05 0.14 -sans-pareil sans_pareil NOM m 0.00 5.20 0.00 5.20 -sapeur-pompier sapeur_pompier NOM m s 0.11 0.61 0.07 0.00 -sapeurs-pompiers sapeur_pompier NOM m p 0.11 0.61 0.04 0.61 -satellites-espions satellites_espion NOM m p 0.02 0.00 0.02 0.00 -sauf-conduit sauf_conduit NOM m s 1.14 1.01 0.77 0.88 -sauf-conduits sauf_conduit NOM m p 1.14 1.01 0.37 0.14 -saut-de-lit saut_de_lit NOM m s 0.00 0.20 0.00 0.14 -saute-mouton saute_mouton NOM m 0.14 0.54 0.14 0.54 -saute-ruisseau saute_ruisseau NOM m s 0.00 0.07 0.00 0.07 -sauts-de-lit saut_de_lit NOM m p 0.00 0.20 0.00 0.07 -sauve-qui-peut sauve_qui_peut NOM m 0.10 0.68 0.10 0.68 -savoir-faire savoir_faire NOM m 1.23 2.03 1.23 2.03 -savoir-vivre savoir_vivre NOM m 1.67 1.76 1.67 1.76 -scenic railway scenic_railway NOM m s 0.00 0.20 0.00 0.20 -science-fiction science_fiction NOM f s 2.36 1.22 2.36 1.22 -scotch-terrier scotch_terrier NOM m s 0.01 0.00 0.01 0.00 -script-girl script_girl NOM f s 0.00 0.20 0.00 0.20 -scène-clé scène_clé NOM f s 0.01 0.00 0.01 0.00 -scènes-clés scènes_clé NOM f p 0.01 0.00 0.01 0.00 -second-maître second_maître NOM m s 0.05 0.07 0.05 0.07 -sedia gestatoria sedia_gestatoria NOM f 0.00 0.20 0.00 0.20 -self-contrôle self_contrôle NOM m s 0.19 0.07 0.19 0.07 -self-control self_control NOM m s 0.16 0.34 0.16 0.34 -self-défense self_défense NOM f s 0.18 0.00 0.18 0.00 -self-made-man self_made_man NOM m s 0.02 0.07 0.02 0.07 -self-made-men self_made_men NOM m p 0.01 0.07 0.01 0.07 -self-made man self_made_man NOM m s 0.14 0.07 0.14 0.07 -self-service self_service NOM m s 0.37 0.47 0.36 0.47 -self-services self_service NOM m p 0.37 0.47 0.01 0.00 -semen-contra semen_contra NOM m s 0.00 0.07 0.00 0.07 -semi-arides semi_aride ADJ f p 0.01 0.00 0.01 0.00 -semi-automatique semi_automatique ADJ s 0.71 0.07 0.59 0.07 -semi-automatiques semi_automatique ADJ f p 0.71 0.07 0.12 0.00 -semi-circulaire semi_circulaire ADJ s 0.01 0.14 0.01 0.14 -semi-conducteur semi_conducteur NOM m s 0.08 0.00 0.02 0.00 -semi-conducteurs semi_conducteur NOM m p 0.08 0.00 0.06 0.00 -semi-liberté semi_liberté NOM f s 0.26 0.07 0.26 0.07 -semi-lunaire semi_lunaire ADJ f s 0.02 0.00 0.02 0.00 -semi-nomades semi_nomade ADJ m p 0.00 0.07 0.00 0.07 -semi-officiel semi_officiel ADJ m s 0.01 0.14 0.01 0.07 -semi-officielle semi_officiel ADJ f s 0.01 0.14 0.00 0.07 -semi-ouvert semi_ouvert ADJ m s 0.01 0.00 0.01 0.00 -semi-perméable semi_perméable ADJ f s 0.01 0.00 0.01 0.00 -semi-phonétique semi_phonétique ADJ f s 0.00 0.07 0.00 0.07 -semi-précieuse semi_précieuse ADJ f s 0.01 0.00 0.01 0.00 -semi-précieuses semi_précieux ADJ f p 0.00 0.14 0.00 0.07 -semi-public semi_public ADJ m s 0.01 0.00 0.01 0.00 -semi-remorque semi_remorque NOM m s 0.48 0.61 0.45 0.54 -semi-remorques semi_remorque NOM m p 0.48 0.61 0.04 0.07 -semi-rigide semi_rigide ADJ f s 0.01 0.07 0.01 0.07 -sent-bon sent_bon NOM m s 0.00 0.54 0.00 0.54 -septante-cinq septante_cinq ADJ:num 0.00 0.07 0.00 0.07 -septante-sept septante_sept ADJ:num 0.20 0.07 0.20 0.07 -serbo-croate serbo_croate NOM s 0.14 0.20 0.14 0.20 -sergent-chef sergent_chef NOM m s 1.52 1.49 1.38 1.42 -sergent-major sergent_major NOM m s 0.71 1.35 0.71 1.28 -sergent-pilote sergent_pilote NOM m s 0.00 0.07 0.00 0.07 -sergents-chefs sergent_chef NOM m p 1.52 1.49 0.14 0.07 -sergents-majors sergent_major NOM m p 0.71 1.35 0.00 0.07 -serre-file serre_file NOM m s 0.04 0.34 0.04 0.34 -serre-joint serre_joint NOM m s 0.04 0.14 0.01 0.00 -serre-joints serre_joint NOM m p 0.04 0.14 0.03 0.14 -serre-livres serre_livres NOM m 0.03 0.07 0.03 0.07 -serre-tête serre_tête NOM m s 0.22 0.74 0.21 0.74 -serre-têtes serre_tête NOM m p 0.22 0.74 0.01 0.00 -serviette-éponge serviette_éponge NOM f s 0.00 1.49 0.00 1.22 -serviettes-éponges serviette_éponge NOM f p 0.00 1.49 0.00 0.27 -sex-appeal sex_appeal NOM m s 0.44 0.74 0.38 0.68 -sex-shop sex_shop NOM m s 0.57 0.54 0.41 0.34 -sex-shops sex_shop NOM m p 0.57 0.54 0.07 0.20 -sex-symbol sex_symbol NOM m s 0.08 0.07 0.08 0.07 -sex appeal sex_appeal NOM m s 0.44 0.74 0.06 0.07 -sex shop sex_shop NOM m s 0.57 0.54 0.08 0.00 -sex shops sex_shop NOM m p 0.57 0.54 0.01 0.00 -shake-hand shake_hand NOM m s 0.00 0.14 0.00 0.14 -show-business show_business NOM m 0.00 0.27 0.00 0.27 -sic transit gloria mundi sic_transit_gloria_mundi ADV 0.03 0.07 0.03 0.07 -side-car side_car NOM m s 0.23 1.08 0.23 0.81 -side-cars side_car NOM m p 0.23 1.08 0.00 0.27 -sine die sine_die ADV 0.00 0.34 0.00 0.34 -sine qua non sine_qua_non ADV 0.16 0.47 0.16 0.47 -singe-araignée singe_araignée NOM m s 0.01 0.00 0.01 0.00 -sino-américain sino_américain NOM m s 0.02 0.00 0.02 0.00 -sino-arabe sino_arabe ADJ f s 0.01 0.00 0.01 0.00 -sino-japonaise sino_japonais ADJ f s 0.00 0.14 0.00 0.14 -sit-in sit_in NOM m 0.30 0.00 0.30 0.00 -six-quatre six_quatre NOM m 0.00 0.07 0.00 0.07 -skate-board skate_board NOM m s 0.57 0.07 0.57 0.07 -snack-bar snack_bar NOM m s 0.23 0.61 0.23 0.54 -snack-bars snack_bar NOM m p 0.23 0.61 0.00 0.07 -snow-boots snow_boot NOM m p 0.00 0.07 0.00 0.07 -soap-opéra soap_opéra NOM m s 0.17 0.00 0.15 0.00 -soap opéra soap_opéra NOM m s 0.17 0.00 0.02 0.00 -social-démocrate social_démocrate ADJ m s 0.21 0.14 0.21 0.14 -social-démocratie social_démocratie NOM f s 0.02 0.34 0.02 0.34 -social-traître social_traître NOM m s 0.00 0.27 0.00 0.27 -sociaux-démocrates sociaux_démocrates ADJ m 0.23 0.00 0.23 0.00 -socio-culturelles socio_culturel ADJ f p 0.01 0.14 0.00 0.07 -socio-culturels socio_culturel ADJ m p 0.01 0.14 0.01 0.07 -socio-économique socio_économique ADJ m s 0.08 0.07 0.06 0.00 -socio-économiques socio_économique ADJ m p 0.08 0.07 0.02 0.07 -soi-disant soi_disant ADJ 9.46 13.11 9.46 13.11 -soi-même soi_même PRO:per s 6.86 24.86 6.86 24.86 -soixante-cinq soixante_cinq ADJ:num 0.12 3.58 0.12 3.58 -soixante-deux soixante_deux ADJ:num 0.15 0.34 0.15 0.34 -soixante-deuxième soixante_deuxième ADJ 0.00 0.07 0.00 0.07 -soixante-dix-huit soixante_dix_huit ADJ:num 0.16 0.47 0.16 0.47 -soixante-dix-neuf soixante_dix_neuf ADJ:num 0.01 0.20 0.01 0.20 -soixante-dix-neuvième soixante_dix_neuvième ADJ 0.00 0.07 0.00 0.07 -soixante-dix-sept soixante_dix_sept ADJ:num 0.21 0.74 0.21 0.74 -soixante-dix soixante_dix ADJ:num 1.12 8.85 1.12 8.85 -soixante-dixième soixante_dixième NOM s 0.00 0.47 0.00 0.47 -soixante-douze soixante_douze ADJ:num 0.23 1.15 0.23 1.15 -soixante-huit soixante_huit ADJ:num 0.16 0.81 0.16 0.81 -soixante-huitard soixante_huitard NOM m s 0.01 0.14 0.01 0.00 -soixante-huitarde soixante_huitard ADJ f s 0.00 0.07 0.00 0.07 -soixante-huitards soixante_huitard NOM m p 0.01 0.14 0.00 0.14 -soixante-neuf soixante_neuf ADJ:num 0.16 0.41 0.16 0.41 -soixante-quatorze soixante_quatorze ADJ:num 0.03 0.61 0.03 0.61 -soixante-quatre soixante_quatre ADJ:num 0.04 0.61 0.04 0.61 -soixante-quinze soixante_quinze ADJ:num 0.27 3.85 0.27 3.85 -soixante-seize soixante_seize ADJ:num 0.07 0.68 0.07 0.68 -soixante-sept soixante_sept ADJ:num 0.20 0.81 0.20 0.81 -soixante-six soixante_six ADJ:num 0.08 0.81 0.08 0.81 -soixante-treize soixante_treize ADJ:num 0.01 1.08 0.01 1.08 -soixante-trois soixante_trois ADJ:num 0.15 0.20 0.15 0.20 -sol-air sol_air ADJ 0.32 0.00 0.32 0.00 -soleil-roi soleil_roi NOM m s 0.00 0.07 0.00 0.07 -songe-creux songe_creux NOM m 0.01 0.41 0.01 0.41 -souffre-douleur souffre_douleur NOM m 0.27 1.22 0.27 1.22 -sourd-muet sourd_muet ADJ m s 0.78 0.20 0.77 0.20 -sourde-muette sourde_muette NOM f s 0.24 0.07 0.24 0.07 -sourds-muets sourd_muet NOM m p 1.48 1.01 0.88 0.68 -sous-alimentation sous_alimentation NOM f s 0.03 0.27 0.03 0.27 -sous-alimenté sous_alimenter VER m s 0.04 0.00 0.02 0.00 par:pas; -sous-alimentée sous_alimenté ADJ f s 0.04 0.20 0.04 0.07 -sous-alimentés sous_alimenté NOM m p 0.01 0.27 0.01 0.14 -sous-bibliothécaire sous_bibliothécaire NOM s 0.00 0.47 0.00 0.47 -sous-bois sous_bois NOM m 0.49 7.57 0.49 7.57 -sous-chef sous_chef NOM m s 0.73 0.88 0.69 0.74 -sous-chefs sous_chef NOM m p 0.73 0.88 0.04 0.14 -sous-classe sous_classe NOM f s 0.01 0.00 0.01 0.00 -sous-clavière sous_clavier ADJ f s 0.28 0.00 0.28 0.00 -sous-comité sous_comité NOM m s 0.26 0.07 0.26 0.07 -sous-commission sous_commission NOM f s 0.18 0.07 0.18 0.07 -sous-continent sous_continent NOM m s 0.06 0.07 0.05 0.07 -sous-continents sous_continent NOM m p 0.06 0.07 0.01 0.00 -sous-couche sous_couche NOM f s 0.03 0.00 0.03 0.00 -sous-cul sous_cul NOM m s 0.00 0.07 0.00 0.07 -sous-cutané sous_cutané ADJ m s 0.28 0.07 0.10 0.00 -sous-cutanée sous_cutané ADJ f s 0.28 0.07 0.10 0.00 -sous-cutanées sous_cutané ADJ f p 0.28 0.07 0.05 0.07 -sous-cutanés sous_cutané ADJ m p 0.28 0.07 0.03 0.00 -sous-diacre sous_diacre NOM m s 0.00 0.07 0.00 0.07 -sous-directeur sous_directeur NOM m s 0.66 1.96 0.63 1.82 -sous-directeurs sous_directeur NOM m p 0.66 1.96 0.00 0.07 -sous-directrice sous_directeur NOM f s 0.66 1.96 0.03 0.07 -sous-division sous_division NOM f s 0.04 0.00 0.04 0.00 -sous-dominante sous_dominante NOM f s 0.01 0.07 0.01 0.07 -sous-développement sous_développement NOM m s 0.30 0.27 0.30 0.27 -sous-développé sous_développé ADJ m s 0.31 0.68 0.09 0.27 -sous-développée sous_développé ADJ f s 0.31 0.68 0.02 0.00 -sous-développées sous_développé ADJ f p 0.31 0.68 0.02 0.07 -sous-développés sous_développé ADJ m p 0.31 0.68 0.19 0.34 -sous-effectif sous_effectif NOM m s 0.11 0.00 0.10 0.00 -sous-effectifs sous_effectif NOM m p 0.11 0.00 0.01 0.00 -sous-emploi sous_emploi NOM m s 0.00 0.07 0.00 0.07 -sous-ensemble sous_ensemble NOM m s 0.08 0.14 0.08 0.14 -sous-entend sous_entendre VER 2.03 1.82 0.39 0.20 ind:pre:3s; -sous-entendais sous_entendre VER 2.03 1.82 0.17 0.00 ind:imp:1s; -sous-entendait sous_entendre VER 2.03 1.82 0.03 0.54 ind:imp:3s; -sous-entendant sous_entendre VER 2.03 1.82 0.01 0.47 par:pre; -sous-entendent sous_entendre VER 2.03 1.82 0.01 0.00 ind:pre:3p; -sous-entendez sous_entendre VER 2.03 1.82 0.42 0.00 ind:pre:2p; -sous-entendiez sous_entendre VER 2.03 1.82 0.10 0.00 ind:imp:2p; -sous-entendrait sous_entendre VER 2.03 1.82 0.01 0.00 cnd:pre:3s; -sous-entendre sous_entendre VER 2.03 1.82 0.11 0.27 inf; -sous-entends sous_entendre VER 2.03 1.82 0.39 0.00 ind:pre:1s;ind:pre:2s; -sous-entendu sous_entendre VER m s 2.03 1.82 0.38 0.14 par:pas; -sous-entendue sous_entendu ADJ f s 0.06 0.68 0.01 0.07 -sous-entendus sous_entendu NOM m p 0.77 5.34 0.45 3.38 -sous-espace sous_espace NOM m s 0.22 0.00 0.22 0.00 -sous-espèce sous_espèce NOM f s 0.11 0.00 0.11 0.00 -sous-estimais sous_estimer VER 7.27 1.08 0.05 0.00 ind:imp:1s; -sous-estimait sous_estimer VER 7.27 1.08 0.03 0.34 ind:imp:3s; -sous-estimation sous_estimation NOM f s 0.06 0.07 0.06 0.07 -sous-estime sous_estimer VER 7.27 1.08 1.52 0.07 imp:pre:2s;ind:pre:1s;ind:pre:3s; -sous-estiment sous_estimer VER 7.27 1.08 0.22 0.00 ind:pre:3p; -sous-estimer sous_estimer VER 7.27 1.08 1.05 0.54 inf; -sous-estimerai sous_estimer VER 7.27 1.08 0.03 0.00 ind:fut:1s; -sous-estimes sous_estimer VER 7.27 1.08 0.72 0.00 ind:pre:2s; -sous-estimez sous_estimer VER 7.27 1.08 1.53 0.00 imp:pre:2p;ind:pre:2p; -sous-estimons sous_estimer VER 7.27 1.08 0.11 0.00 imp:pre:1p;ind:pre:1p; -sous-estimé sous_estimer VER m s 7.27 1.08 1.71 0.14 par:pas; -sous-estimée sous_estimer VER f s 7.27 1.08 0.14 0.00 par:pas; -sous-estimées sous_estimer VER f p 7.27 1.08 0.07 0.00 par:pas; -sous-estimés sous_estimer VER m p 7.27 1.08 0.09 0.00 par:pas; -sous-exposé sous_exposer VER m s 0.02 0.00 0.01 0.00 par:pas; -sous-exposées sous_exposer VER f p 0.02 0.00 0.01 0.00 par:pas; -sous-fifre sous_fifre NOM m s 0.72 0.41 0.45 0.20 -sous-fifres sous_fifre NOM m p 0.72 0.41 0.27 0.20 -sous-garde sous_garde NOM f s 0.01 0.07 0.01 0.07 -sous-genre sous_genre NOM m s 0.02 0.00 0.02 0.00 -sous-gorge sous_gorge NOM f 0.00 0.07 0.00 0.07 -sous-groupe sous_groupe NOM m s 0.01 0.00 0.01 0.00 -sous-homme sous_homme NOM m s 0.20 0.61 0.16 0.00 -sous-hommes sous_homme NOM m p 0.20 0.61 0.05 0.61 -sous-humanité sous_humanité NOM f s 0.01 0.20 0.01 0.20 -sous-intendant sous_intendant NOM m s 0.30 0.00 0.10 0.00 -sous-intendants sous_intendant NOM m p 0.30 0.00 0.20 0.00 -sous-jacent sous_jacent ADJ m s 0.81 0.34 0.19 0.20 -sous-jacente sous_jacent ADJ f s 0.81 0.34 0.22 0.07 -sous-jacentes sous_jacent ADJ f p 0.81 0.34 0.01 0.07 -sous-jacents sous_jacent ADJ m p 0.81 0.34 0.39 0.00 -sous-lieutenant sous_lieutenant NOM m s 0.81 5.61 0.76 4.93 -sous-lieutenants sous_lieutenant NOM m p 0.81 5.61 0.05 0.68 -sous-locataire sous_locataire NOM s 0.02 0.14 0.02 0.00 -sous-locataires sous_locataire NOM p 0.02 0.14 0.00 0.14 -sous-location sous_location NOM f s 0.09 0.07 0.06 0.07 -sous-locations sous_location NOM f p 0.09 0.07 0.03 0.00 -sous-loua sous_louer VER 0.63 0.47 0.00 0.07 ind:pas:3s; -sous-louait sous_louer VER 0.63 0.47 0.03 0.00 ind:imp:3s; -sous-loue sous_louer VER 0.63 0.47 0.21 0.00 ind:pre:1s;ind:pre:3s; -sous-louer sous_louer VER 0.63 0.47 0.17 0.14 inf; -sous-louerai sous_louer VER 0.63 0.47 0.11 0.00 ind:fut:1s; -sous-louez sous_louer VER 0.63 0.47 0.02 0.00 ind:pre:2p; -sous-louèrent sous_louer VER 0.63 0.47 0.00 0.07 ind:pas:3p; -sous-loué sous_louer VER m s 0.63 0.47 0.08 0.20 par:pas; -sous-maîtresse sous_maîtresse NOM f s 0.07 0.20 0.07 0.20 -sous-main sous_main NOM m s 0.28 1.96 0.28 1.96 -sous-marin sous_marin NOM m s 11.14 6.42 9.07 2.70 -sous-marine sous_marin ADJ f s 4.47 5.00 1.06 1.89 -sous-marines sous_marin ADJ f p 4.47 5.00 0.41 0.88 -sous-marinier sous_marinier NOM m s 0.26 0.00 0.04 0.00 -sous-mariniers sous_marinier NOM m p 0.26 0.00 0.22 0.00 -sous-marins sous_marin NOM m p 11.14 6.42 2.07 3.72 -sous-marque sous_marque NOM f s 0.01 0.14 0.01 0.07 -sous-marques sous_marque NOM f p 0.01 0.14 0.00 0.07 -sous-merde sous_merde NOM f s 0.59 0.14 0.54 0.14 -sous-merdes sous_merde NOM f p 0.59 0.14 0.05 0.00 -sous-ministre sous_ministre NOM m s 0.17 0.07 0.17 0.07 -sous-off sous_off NOM m s 0.14 4.26 0.11 2.16 -sous-officier sous_officier NOM m s 0.65 9.53 0.28 4.80 -sous-officiers sous_officier NOM m p 0.65 9.53 0.36 4.73 -sous-offs sous_off NOM m p 0.14 4.26 0.03 2.09 -sous-ordre sous_ordre NOM m s 0.01 0.61 0.01 0.54 -sous-ordres sous_ordre NOM m p 0.01 0.61 0.00 0.07 -sous-payer sous_payer VER 0.28 0.07 0.04 0.00 inf; -sous-payé sous_payer VER m s 0.28 0.07 0.14 0.07 par:pas; -sous-payés sous_payer VER m p 0.28 0.07 0.10 0.00 par:pas; -sous-pied sous_pied NOM m s 0.00 0.20 0.00 0.07 -sous-pieds sous_pied NOM m p 0.00 0.20 0.00 0.14 -sous-plat sous_plat NOM m s 0.00 0.07 0.00 0.07 -sous-prieur sous_prieur PRE 0.00 0.47 0.00 0.47 -sous-produit sous_produit NOM m s 0.48 0.54 0.42 0.27 -sous-produits sous_produit NOM m p 0.48 0.54 0.06 0.27 -sous-programme sous_programme NOM m s 0.12 0.00 0.09 0.00 -sous-programmes sous_programme NOM m p 0.12 0.00 0.03 0.00 -sous-prolétaire sous_prolétaire NOM s 0.11 0.07 0.11 0.07 -sous-prolétariat sous_prolétariat NOM m s 0.34 0.27 0.34 0.27 -sous-préfecture sous_préfecture NOM f s 0.17 1.62 0.03 1.35 -sous-préfectures sous_préfecture NOM f p 0.17 1.62 0.14 0.27 -sous-préfet sous_préfet NOM m s 0.02 1.01 0.02 0.95 -sous-préfets sous_préfet NOM m p 0.02 1.01 0.00 0.07 -sous-pulls sous_pull NOM m p 0.01 0.00 0.01 0.00 -sous-qualifié sous_qualifié ADJ m s 0.04 0.00 0.03 0.00 -sous-qualifiée sous_qualifié ADJ f s 0.04 0.00 0.01 0.00 -sous-secrétaire sous_secrétaire NOM m s 0.65 1.15 0.65 0.74 -sous-secrétaires sous_secrétaire NOM m p 0.65 1.15 0.00 0.41 -sous-secrétariat sous_secrétariat NOM m s 0.10 0.00 0.10 0.00 -sous-secteur sous_secteur NOM m s 0.02 0.27 0.02 0.27 -sous-section sous_section NOM f s 0.09 0.00 0.09 0.00 -sous-sol sous_sol NOM m s 13.50 10.54 12.80 8.31 -sous-sols sous_sol NOM m p 13.50 10.54 0.70 2.23 -sous-station sous_station NOM f s 0.17 0.07 0.17 0.07 -sous-système sous_système NOM m s 0.04 0.00 0.04 0.00 -sous-tasse sous_tasse NOM f s 0.11 0.20 0.11 0.14 -sous-tasses sous_tasse NOM f p 0.11 0.20 0.00 0.07 -sous-tend sous_tendre VER 0.07 0.54 0.02 0.00 ind:pre:3s; -sous-tendaient sous_tendre VER 0.07 0.54 0.00 0.07 ind:imp:3p; -sous-tendait sous_tendre VER 0.07 0.54 0.01 0.20 ind:imp:3s; -sous-tendent sous_tendre VER 0.07 0.54 0.01 0.14 ind:pre:3p; -sous-tendu sous_tendre VER m s 0.07 0.54 0.03 0.07 par:pas; -sous-tendue sous_tendre VER f s 0.07 0.54 0.00 0.07 par:pas; -sous-tension sous_tension NOM f s 0.03 0.00 0.03 0.00 -sous-titrage sous_titrage NOM m s 54.64 0.00 54.64 0.00 -sous-titre sous_titre NOM m s 23.09 0.95 0.83 0.68 -sous-titrer sous_titrer VER 5.81 0.14 0.01 0.00 inf; -sous-titres sous_titre NOM m p 23.09 0.95 22.26 0.27 -sous-titré sous_titrer VER m s 5.81 0.14 5.72 0.00 par:pas; -sous-titrée sous_titrer VER f s 5.81 0.14 0.00 0.07 par:pas; -sous-titrés sous_titrer VER m p 5.81 0.14 0.09 0.07 par:pas; -sous-traitance sous_traitance NOM f s 0.04 0.00 0.04 0.00 -sous-traitant sous_traitant NOM m s 0.23 0.00 0.10 0.00 -sous-traitants sous_traitant NOM m p 0.23 0.00 0.13 0.00 -sous-traite sous_traiter VER 0.13 0.14 0.04 0.00 ind:pre:3s; -sous-traitent sous_traiter VER 0.13 0.14 0.01 0.00 ind:pre:3p; -sous-traiter sous_traiter VER 0.13 0.14 0.06 0.07 inf; -sous-traités sous_traiter VER m p 0.13 0.14 0.00 0.07 par:pas; -sous-équipés sous_équipé ADJ m p 0.07 0.00 0.07 0.00 -sous-évaluait sous_évaluer VER 0.10 0.00 0.01 0.00 ind:imp:3s; -sous-évalué sous_évaluer VER m s 0.10 0.00 0.06 0.00 par:pas; -sous-évaluées sous_évaluer VER f p 0.10 0.00 0.02 0.00 par:pas; -sous-ventrière sous_ventrière NOM f s 0.03 0.47 0.03 0.47 -sous-verge sous_verge NOM m 0.00 0.54 0.00 0.54 -sous-verre sous_verre NOM m 0.06 0.20 0.06 0.20 -sous-vêtement sous_vêtement NOM m s 6.57 2.77 0.33 0.41 -sous-vêtements sous_vêtement NOM m p 6.57 2.77 6.24 2.36 -soutien-gorge soutien_gorge NOM m s 5.86 8.65 4.89 7.91 -soutiens-gorge soutien_gorge NOM m p 5.86 8.65 0.96 0.74 -souventes fois souventes_fois ADV 0.00 0.27 0.00 0.27 -sparring-partner sparring_partner NOM m s 0.00 0.07 0.00 0.07 -spatio-temporel spatio_temporel ADJ m s 0.21 0.20 0.09 0.07 -spatio-temporelle spatio_temporel ADJ f s 0.21 0.20 0.13 0.14 -spina-bifida spina_bifida NOM m s 0.04 0.00 0.04 0.00 -spina-ventosa spina_ventosa NOM m s 0.00 0.07 0.00 0.07 -sri lankais sri_lankais ADJ m 0.01 0.00 0.01 0.00 -sri lankais sri_lankais NOM m 0.01 0.00 0.01 0.00 -stabat mater stabat_mater NOM m 0.00 0.07 0.00 0.07 -stand-by stand_by NOM m 0.83 0.07 0.83 0.07 -star-system star_system NOM m s 0.01 0.00 0.01 0.00 -start-up start_up NOM f 0.35 0.00 0.35 0.00 -starting-gate starting_gate NOM f s 0.04 0.14 0.04 0.14 -station-service station_service NOM f s 4.22 3.58 3.95 3.24 -station-éclair station_éclair NOM f s 0.00 0.07 0.00 0.07 -stations-service station_service NOM f p 4.22 3.58 0.27 0.34 -statu quo statu_quo NOM m s 0.94 1.08 0.94 1.08 -staturo-pondéral staturo_pondéral ADJ m s 0.01 0.00 0.01 0.00 -steeple-chase steeple_chase NOM m s 0.02 0.07 0.02 0.07 -sterno-cléido-mastoïdien sterno_cléido_mastoïdien ADJ m s 0.01 0.00 0.01 0.00 -sèche-cheveux sèche_cheveux NOM m 0.97 0.00 0.97 0.00 -sèche-linge sèche_linge NOM m 0.74 0.00 0.74 0.00 -sèche-mains sèche_mains NOM m 0.04 0.00 0.04 0.00 -stimulus-réponse stimulus_réponse NOM m 0.00 0.14 0.00 0.14 -stock-car stock_car NOM m s 0.19 0.14 0.16 0.14 -stock-cars stock_car NOM m p 0.19 0.14 0.03 0.00 -stock-options stock_option NOM f p 0.18 0.00 0.18 0.00 -story-board story_board NOM m s 0.28 0.07 0.23 0.00 -story-boards story_board NOM m p 0.28 0.07 0.03 0.00 -story board story_board NOM m s 0.28 0.07 0.03 0.07 -stricto sensu stricto_sensu ADV 0.01 0.00 0.01 0.00 -strip-poker strip_poker NOM m s 0.08 0.07 0.08 0.07 -strip-tease strip_tease NOM m s 4.04 1.01 3.63 0.95 -strip-teases strip_tease NOM m p 4.04 1.01 0.41 0.07 -strip-teaseur strip_teaseur NOM m s 3.23 0.47 0.11 0.00 -strip-teaseurs strip_teaseur NOM m p 3.23 0.47 0.14 0.00 -strip-teaseuse strip_teaseur NOM f s 3.23 0.47 2.98 0.27 -strip-teaseuses strip_teaseuse NOM f p 0.79 0.00 0.79 0.00 -struggle for life struggle_for_life NOM m 0.00 0.07 0.00 0.07 -stylo-bille stylo_bille NOM m s 0.17 0.14 0.17 0.14 -stylo-feutre stylo_feutre NOM m s 0.00 0.27 0.00 0.14 -stylos-feutres stylo_feutre NOM m p 0.00 0.27 0.00 0.14 -sub-aquatique sub_aquatique ADJ f s 0.00 0.07 0.00 0.07 -sub-atomique sub_atomique ADJ s 0.07 0.00 0.04 0.00 -sub-atomiques sub_atomique ADJ p 0.07 0.00 0.04 0.00 -sub-claquant sub_claquant ADJ m s 0.01 0.00 0.01 0.00 -sub-espace sub_espace NOM m s 0.08 0.00 0.08 0.00 -sub-normaux sub_normaux ADJ m p 0.14 0.00 0.14 0.00 -sub-nucléaires sub_nucléaire ADJ f p 0.01 0.00 0.01 0.00 -sub-vocal sub_vocal ADJ m s 0.01 0.07 0.01 0.07 -sub-véhiculaire sub_véhiculaire ADJ s 0.01 0.00 0.01 0.00 -sub-zéro sub_zéro NOM m s 0.01 0.00 0.01 0.00 -sud-africain sud_africain NOM m s 0.28 0.07 0.15 0.00 -sud-africaine sud_africain ADJ f s 0.29 0.47 0.07 0.34 -sud-africaines sud_africain ADJ f p 0.29 0.47 0.04 0.00 -sud-africains sud_africain NOM m p 0.28 0.07 0.10 0.07 -sud-américain sud_américain ADJ m s 0.77 1.55 0.29 0.41 -sud-américaine sud_américain ADJ f s 0.77 1.55 0.35 0.54 -sud-américaines sud_américain ADJ f p 0.77 1.55 0.01 0.20 -sud-américains sud_américain ADJ m p 0.77 1.55 0.11 0.41 -sud-coréen sud_coréen ADJ m s 0.21 0.00 0.01 0.00 -sud-coréen sud_coréen NOM m s 0.01 0.00 0.01 0.00 -sud-coréenne sud_coréen ADJ f s 0.21 0.00 0.15 0.00 -sud-coréennes sud_coréen ADJ f p 0.21 0.00 0.02 0.00 -sud-coréens sud_coréen ADJ m p 0.21 0.00 0.02 0.00 -sud-est sud_est NOM m 3.30 2.30 3.30 2.30 -sud-ouest sud_ouest NOM m 2.10 3.51 2.10 3.51 -sud-sud-est sud_sud_est NOM m s 0.03 0.00 0.03 0.00 -sud-vietnamien sud_vietnamien ADJ m s 0.10 0.07 0.05 0.00 -sud-vietnamienne sud_vietnamien ADJ f s 0.10 0.07 0.03 0.00 -sud-vietnamiens sud_vietnamien NOM m p 0.12 0.20 0.11 0.20 -sui generis sui_generis ADJ m p 0.23 0.07 0.23 0.07 -suivez-moi-jeune-homme suivez_moi_jeune_homme NOM m s 0.00 0.07 0.00 0.07 -sénatus-consulte sénatus_consulte NOM m s 0.00 0.07 0.00 0.07 -super-espion super_espion NOM m s 0.02 0.00 0.02 0.00 -super-grands super_grand NOM m p 0.00 0.07 0.00 0.07 -super-pilote super_pilote ADJ s 0.01 0.00 0.01 0.00 -super-puissances super_puissance NOM f p 0.03 0.00 0.03 0.00 -supports-chaussettes support_chaussette NOM m p 0.00 0.07 0.00 0.07 -supra-humain supra_humain ADJ m s 0.00 0.07 0.00 0.07 -sur-le-champ sur_le_champ ADV 6.79 10.95 6.79 10.95 -sur-mesure sur_mesure NOM m s 0.03 0.00 0.03 0.00 -sur-place sur_place NOM m s 0.20 0.27 0.20 0.27 -surprise-partie surprise_partie NOM f s 0.20 0.61 0.18 0.27 -surprise-party surprise_party NOM f s 0.10 0.07 0.10 0.07 -surprises-parties surprise_partie NOM f p 0.20 0.61 0.02 0.34 -sursum corda sursum_corda ADV 0.00 0.20 0.00 0.20 -sus-orbitaire sus_orbitaire ADJ m s 0.01 0.00 0.01 0.00 -sweat-shirt sweat_shirt NOM m s 0.00 0.20 0.00 0.20 -systèmes-clés systèmes_clé NOM m p 0.03 0.00 0.03 0.00 -t-shirt t_shirt NOM m s 10.87 0.54 7.59 0.20 -t-shirts t_shirt NOM m p 10.87 0.54 3.28 0.34 -tôt-fait tôt_fait NOM m s 0.00 0.07 0.00 0.07 -taï chi taï_chi NOM m s 0.16 0.00 0.16 0.00 -table-bureau table_bureau NOM f s 0.00 0.07 0.00 0.07 -table-coiffeuse table_coiffeuse NOM f s 0.00 0.27 0.00 0.27 -tai-chi tai_chi NOM m s 0.12 0.00 0.12 0.00 -taille-crayon taille_crayon NOM m s 0.07 0.68 0.04 0.54 -taille-crayons taille_crayon NOM m p 0.07 0.68 0.03 0.14 -taille-douce taille_douce NOM f s 0.00 0.20 0.00 0.14 -taille-haie taille_haie NOM m s 0.07 0.07 0.06 0.00 -taille-haies taille_haie NOM m p 0.07 0.07 0.01 0.07 -tailles-douces taille_douce NOM f p 0.00 0.20 0.00 0.07 -tailleur-pantalon tailleur_pantalon NOM m s 0.01 0.07 0.01 0.07 -take-off take_off NOM m 0.08 0.00 0.08 0.00 -talavera de la reina talavera_de_la_reina NOM s 0.00 0.07 0.00 0.07 -talkie-walkie talkie_walkie NOM m s 1.37 0.20 0.89 0.07 -talkies-walkies talkie_walkie NOM m p 1.37 0.20 0.48 0.14 -tam-tam tam_tam NOM m s 1.06 3.45 0.37 2.77 -tam-tams tam_tam NOM m p 1.06 3.45 0.69 0.68 -tambour-major tambour_major NOM m s 0.26 0.74 0.26 0.74 -tampon-buvard tampon_buvard NOM m s 0.00 0.20 0.00 0.20 -tan-sad tan_sad NOM m s 0.00 0.20 0.00 0.20 -tandis qu tandis_qu CON 0.01 0.07 0.01 0.07 -tandis que tandis_que CON 15.04 136.15 15.04 136.15 -tape-cul tape_cul NOM m s 0.04 0.41 0.04 0.41 -tape-à-l'oeil tape_à_l_oeil ADJ 0.00 0.41 0.00 0.41 -tapis-brosse tapis_brosse NOM m s 0.01 0.14 0.01 0.14 -tard-venu tard_venu ADJ m s 0.00 0.07 0.00 0.07 -tarte-minute tarte_minute ADJ f s 0.01 0.00 0.01 0.00 -taste-vin taste_vin NOM m 0.01 0.14 0.01 0.14 -taxi-auto taxi_auto NOM m s 0.00 0.07 0.00 0.07 -taxi-brousse taxi_brousse NOM m s 0.14 0.14 0.14 0.14 -taxi-girl taxi_girl NOM f s 0.00 0.27 0.00 0.07 -taxi-girls taxi_girl NOM f p 0.00 0.27 0.00 0.20 -tchin-tchin tchin_tchin ONO 0.11 0.14 0.11 0.14 -tchin tchin tchin_tchin ONO 0.01 0.47 0.01 0.47 -te deum te_deum NOM m 0.00 0.14 0.00 0.14 -tea-room tea_room NOM m s 0.00 0.20 0.00 0.20 -technico-commerciaux technico_commerciaux NOM m p 0.00 0.07 0.00 0.07 -tee-shirt tee_shirt NOM m s 3.19 5.27 2.94 3.99 -tee-shirts tee_shirt NOM m p 3.19 5.27 0.25 1.28 -teen-agers teen_ager NOM p 0.00 0.20 0.00 0.20 -tennis-ballon tennis_ballon NOM m 0.00 0.07 0.00 0.07 -tennis-club tennis_club NOM m 0.00 0.34 0.00 0.34 -terra incognita terra_incognita NOM f s 0.02 0.34 0.02 0.34 -terre-neuvas terre_neuvas NOM m 0.00 0.34 0.00 0.34 -terre-neuve terre_neuve NOM m 0.03 0.27 0.03 0.27 -terre-neuvien terre_neuvien ADJ m s 0.01 0.00 0.01 0.00 -terre-neuvien terre_neuvien NOM m s 0.01 0.00 0.01 0.00 -terre-à-terre terre_à_terre ADJ f s 0.00 0.20 0.00 0.20 -terre-plein terre_plein NOM m s 0.20 5.81 0.20 5.74 -terre-pleins terre_plein NOM m p 0.20 5.81 0.00 0.07 -test-match test_match NOM m s 0.01 0.00 0.01 0.00 -teuf-teuf teuf_teuf NOM m s 0.04 0.41 0.04 0.41 -tic-tac tic_tac NOM m 2.52 2.91 2.52 2.91 -tie-break tie_break NOM m s 0.02 0.00 0.02 0.00 -tiens-la-moi tiens_la_moi ADJ:pos m s 0.14 0.00 0.14 0.00 -tiers-monde tiers_monde NOM m s 1.96 0.20 1.96 0.14 -tiers-mondes tiers_monde NOM m p 1.96 0.20 0.00 0.07 -tiers-mondisme tiers_mondisme NOM m s 0.00 0.07 0.00 0.07 -tiers-mondiste tiers_mondiste ADJ f s 0.15 0.20 0.15 0.00 -tiers-mondistes tiers_mondiste ADJ m p 0.15 0.20 0.00 0.20 -tiers-ordre tiers_ordre NOM m 0.00 0.07 0.00 0.07 -tiers-point tiers_point NOM m s 0.00 0.14 0.00 0.14 -tiers-état tiers_état NOM m s 0.03 0.00 0.03 0.00 -timbre-poste timbre_poste NOM m s 0.12 1.28 0.11 0.68 -timbres-poste timbre_poste NOM m p 0.12 1.28 0.01 0.61 -time-sharing time_sharing NOM m s 0.01 0.00 0.01 0.00 -tire-au-cul tire_au_cul NOM m 0.02 0.00 0.02 0.00 -tire-au-flanc tire_au_flanc NOM m 0.51 0.34 0.51 0.34 -tire-botte tire_botte NOM m s 0.01 0.07 0.01 0.07 -tire-bouchon tire_bouchon NOM m s 0.93 2.43 0.90 2.16 -tire-bouchonnaient tire_bouchonner VER 0.02 0.88 0.00 0.14 ind:imp:3p; -tire-bouchonnant tire_bouchonner VER 0.02 0.88 0.00 0.07 par:pre; -tire-bouchonne tire_bouchonner VER 0.02 0.88 0.01 0.27 ind:pre:3s; -tire-bouchonnent tire_bouchonner VER 0.02 0.88 0.01 0.07 ind:pre:3p; -tire-bouchonné tire_bouchonner VER m s 0.02 0.88 0.00 0.27 par:pas; -tire-bouchonnés tire_bouchonner VER m p 0.02 0.88 0.00 0.07 par:pas; -tire-bouchons tire_bouchon NOM m p 0.93 2.43 0.03 0.27 -tire-bouton tire_bouton NOM m s 0.00 0.07 0.00 0.07 -tire-d'aile tire_d_aile NOM f s 0.02 0.00 0.02 0.00 -tire-fesse tire_fesse NOM f s 0.01 0.00 0.01 0.00 -tire-jus tire_jus NOM m 0.00 0.20 0.00 0.20 -tire-laine tire_laine NOM m 0.02 0.07 0.02 0.07 -tire-lait tire_lait NOM m 0.07 0.00 0.07 0.00 -tire-larigot tire_larigot NOM f s 0.00 0.07 0.00 0.07 -tire-ligne tire_ligne NOM m s 0.00 0.34 0.00 0.20 -tire-lignes tire_ligne NOM m p 0.00 0.34 0.00 0.14 -tire-lire tire_lire NOM m 0.00 0.14 0.00 0.14 -tiroir-caisse tiroir_caisse NOM m s 0.49 2.16 0.48 2.03 -tiroirs-caisses tiroir_caisse NOM m p 0.49 2.16 0.01 0.14 -tissu-éponge tissu_éponge NOM m s 0.00 0.41 0.00 0.41 -tohu-bohu tohu_bohu NOM m 0.18 1.42 0.18 1.42 -toi-même toi_même PRO:per s 45.83 11.89 45.83 11.89 -tom-pouce tom_pouce NOM m 0.00 0.54 0.00 0.54 -tom-tom tom_tom NOM m 0.04 0.00 0.04 0.00 -too much too_much ADJ m s 0.19 0.47 0.19 0.47 -top-modèle top_modèle NOM f s 0.22 0.00 0.21 0.00 -top-modèles top_modèle NOM f p 0.22 0.00 0.01 0.00 -top models top_model NOM f p 0.12 0.07 0.12 0.07 -torche-cul torche_cul NOM m s 0.06 0.00 0.06 0.00 -tord-boyaux tord_boyaux NOM m 0.27 0.47 0.27 0.47 -tord-nez tord_nez NOM m s 0.00 0.14 0.00 0.14 -toréador-vedette toréador_vedette NOM m s 0.00 0.07 0.00 0.07 -touche-pipi touche_pipi NOM m 0.35 0.61 0.35 0.61 -touche-touche touche_touche NOM f s 0.01 0.00 0.01 0.00 -tourne-disque tourne_disque NOM m s 0.74 1.35 0.50 0.95 -tourne-disques tourne_disque NOM m p 0.74 1.35 0.24 0.41 -tours-minute tours_minute NOM p 0.00 0.07 0.00 0.07 -tous-terrains tous_terrains ADJ m p 0.00 0.07 0.00 0.07 -tout-fait tout_fait ADJ:ind m s 0.14 0.00 0.11 0.00 -tout-fou tout_fou ADJ m s 0.01 0.00 0.01 0.00 -tout-à-l'égout tout_à_l_égout NOM m 0.00 0.47 0.00 0.47 -tout-paris tout_paris NOM m 0.16 1.01 0.16 1.01 -tout-petit tout_petit NOM m s 0.20 0.74 0.03 0.34 -tout-petits tout_petit NOM m p 0.20 0.74 0.17 0.41 -tout-puissant tout_puissant ADJ m s 7.22 3.65 5.70 2.09 -tout-puissants tout_puissant ADJ m p 7.22 3.65 0.17 0.41 -tout-terrain tout_terrain NOM m s 0.28 0.00 0.28 0.00 -tout-étoile tout_étoile NOM m s 0.01 0.00 0.01 0.00 -tout-venant tout_venant NOM m 0.05 0.74 0.05 0.74 -toute-puissance toute_puissance NOM f 0.08 2.03 0.08 2.03 -toute-puissante tout_puissant ADJ f s 7.22 3.65 1.35 1.15 -toutes-puissantes toute_puissante ADJ f p 0.01 0.14 0.01 0.14 -traîne-misère traîne_misère NOM m 0.01 0.07 0.01 0.07 -traîne-patins traîne_patins NOM m 0.00 0.47 0.00 0.47 -traîne-savate traîne_savate NOM m s 0.01 0.07 0.01 0.07 -traîne-savates traîne_savates NOM m 0.22 0.54 0.22 0.54 -traîne-semelle traîne_semelle NOM s 0.00 0.07 0.00 0.07 -traîne-semelles traîne_semelles NOM m 0.01 0.07 0.01 0.07 -trachée-artère trachée_artère NOM f s 0.02 0.20 0.02 0.20 -traction-avant traction_avant NOM f s 0.00 0.07 0.00 0.07 -trafiquant-espion trafiquant_espion NOM m s 0.00 0.07 0.00 0.07 -tragi-comique tragi_comique ADJ f s 0.00 0.47 0.00 0.34 -tragi-comiques tragi_comique ADJ m p 0.00 0.47 0.00 0.14 -tragi-comédie tragi_comédie NOM f s 0.00 0.27 0.00 0.14 -tragi-comédies tragi_comédie NOM f p 0.00 0.27 0.00 0.14 -train-train train_train NOM m 0.69 1.62 0.69 1.62 -tranche-montagne tranche_montagne NOM m s 0.28 0.07 0.28 0.07 -tranchée-abri tranchée_abri NOM f s 0.00 0.81 0.00 0.74 -tranchées-abris tranchée_abri NOM f p 0.00 0.81 0.00 0.07 -traveller's chèques traveller_s_chèque NOM m p 0.04 0.00 0.04 0.00 -trench-coat trench_coat NOM m s 0.04 1.55 0.04 1.49 -trench-coats trench_coat NOM m p 0.04 1.55 0.00 0.07 -trente-cinq trente_cinq ADJ:num 1.33 11.55 1.33 11.55 -trente-cinquième trente_cinquième ADJ 0.00 0.14 0.00 0.14 -trente-deux trente_deux ADJ:num 0.82 3.58 0.82 3.58 -trente-et-quarante trente_et_quarante NOM m 0.00 0.07 0.00 0.07 -trente-et-un trente_et_un NOM m 0.39 0.07 0.39 0.07 -trente-et-unième trente_et_unième ADJ 0.00 0.07 0.00 0.07 -trente-huit trente_huit ADJ:num 0.64 2.64 0.64 2.64 -trente-huitième trente_huitième ADJ 0.00 0.20 0.00 0.20 -trente-neuf trente_neuf ADJ:num 0.55 2.16 0.55 2.16 -trente-neuvième trente_neuvième ADJ 0.01 0.14 0.01 0.14 -trente-quatre trente_quatre ADJ:num 0.43 1.08 0.43 1.08 -trente-quatrième trente_quatrième ADJ 0.00 0.07 0.00 0.07 -trente-sept trente_sept ADJ:num 0.71 2.23 0.71 2.23 -trente-septième trente_septième ADJ 0.20 0.14 0.20 0.14 -trente-six trente_six ADJ:num 0.55 6.82 0.55 6.82 -trente-sixième trente_sixième ADJ 0.02 0.61 0.02 0.61 -trente-trois trente_trois ADJ:num 0.78 2.36 0.78 2.36 -trente-troisième trente_troisième ADJ 0.00 0.20 0.00 0.20 -trois-deux trois_deux NOM m 0.01 0.00 0.01 0.00 -trois-huit trois_huit NOM m 0.17 0.00 0.17 0.00 -trois-mâts trois_mâts NOM m 0.16 0.47 0.16 0.47 -trois-points trois_points NOM m 0.01 0.00 0.01 0.00 -trois-quarts trois_quarts NOM m 0.59 0.34 0.59 0.34 -trois-quatre trois_quatre NOM m 0.02 0.47 0.02 0.47 -trois-six trois_six NOM m 0.01 0.07 0.01 0.07 -trompe-l'oeil trompe_l_oeil NOM m 0.33 2.43 0.33 2.43 -trop-perçu trop_perçu NOM m s 0.01 0.00 0.01 0.00 -trop-plein trop_plein NOM m s 0.30 2.64 0.30 2.50 -trop-pleins trop_plein NOM m p 0.30 2.64 0.00 0.14 -trotte-menu trotte_menu ADJ m s 0.00 0.41 0.00 0.41 -trou-du-cul trou_du_cul NOM m s 0.43 0.14 0.29 0.14 -trou-trou trou_trou NOM m s 0.00 0.34 0.00 0.14 -trou-trous trou_trou NOM m p 0.00 0.34 0.00 0.20 -trouble-fêtes trouble_fête NOM p 0.28 0.00 0.28 0.00 -trous-du-cul trou_du_cul NOM m p 0.43 0.14 0.14 0.00 -trésorier-payeur trésorier_payeur NOM m s 0.02 0.07 0.02 0.07 -tsoin-tsoin tsoin_tsoin NOM m s 0.01 0.47 0.01 0.47 -tss-tss tss_tss NOM m 0.01 0.14 0.01 0.07 -tss tss tss_tss NOM m 0.01 0.14 0.00 0.07 -tsé-tsé tsé_tsé NOM f 0.00 0.07 0.00 0.07 -tu autem tu_autem NOM m s 0.00 0.07 0.00 0.07 -tue-loup tue_loup NOM m s 0.06 0.00 0.05 0.00 -tue-loups tue_loup NOM m p 0.06 0.00 0.01 0.00 -tue-mouche tue_mouche ADJ m s 0.15 0.54 0.00 0.07 -tue-mouches tue_mouche ADJ p 0.15 0.54 0.15 0.47 -témoin-clé témoin_clé NOM m s 0.13 0.00 0.13 0.00 -témoin-vedette témoin_vedette NOM m s 0.01 0.00 0.01 0.00 -témoins-clés témoins_clé NOM m p 0.05 0.00 0.05 0.00 -tête-bêche tête_bêche NOM m 0.03 0.47 0.03 0.47 -tête-de-mort tête_de_mort NOM f 0.01 0.41 0.01 0.41 -tête-de-nègre tête_de_nègre ADJ 0.00 0.20 0.00 0.20 -tête-à-queue tête_à_queue NOM m 0.00 0.20 0.00 0.20 -tête-à-tête tête_à_tête NOM m 0.00 5.95 0.00 5.95 -têtes-de-loup tête_de_loup NOM f p 0.00 0.27 0.00 0.27 -tutti frutti tutti_frutti ADV 0.09 0.41 0.09 0.41 -tutti quanti tutti_quanti ADV 0.15 0.20 0.15 0.20 -twin-set twin_set NOM m s 0.00 0.14 0.00 0.14 -échos-radars échos_radar NOM m p 0.01 0.00 0.01 0.00 -écrase-merde écrase_merde NOM m s 0.00 0.41 0.00 0.20 -écrase-merdes écrase_merde NOM m p 0.00 0.41 0.00 0.20 -électro-acoustique électro_acoustique NOM f s 0.00 0.14 0.00 0.14 -électro-aimant électro_aimant NOM m s 0.02 0.00 0.02 0.00 -électro-encéphalogramme électro_encéphalogramme NOM m s 0.16 0.07 0.16 0.07 -ultima ratio ultima_ratio NOM f s 0.00 0.07 0.00 0.07 -ultra-catholique ultra_catholique ADJ m s 0.10 0.00 0.10 0.00 -ultra-chic ultra_chic ADJ s 0.03 0.20 0.03 0.14 -ultra-chics ultra_chic ADJ f p 0.03 0.20 0.00 0.07 -ultra-courtes ultra_court ADJ f p 0.16 0.07 0.02 0.00 -ultra-courts ultra_court ADJ m p 0.16 0.07 0.14 0.07 -ultra-gauche ultra_gauche NOM f s 0.00 0.07 0.00 0.07 -ultra-rapide ultra_rapide ADJ s 0.20 0.27 0.20 0.27 -ultra-secret ultra_secret ADJ m s 0.20 0.07 0.20 0.07 -ultra-sensible ultra_sensible ADJ m s 0.01 0.14 0.01 0.14 -ultra-sons ultra_son NOM m p 0.03 0.14 0.03 0.14 -ultra-violet ultra_violet ADJ 0.04 0.07 0.01 0.00 -ultra-violets ultra_violet NOM s 0.04 0.07 0.04 0.07 -élément-clé élément_clé NOM m s 0.09 0.00 0.09 0.00 -éléments-clés éléments_clé NOM m p 0.02 0.00 0.02 0.00 -émetteur-récepteur émetteur_récepteur NOM m s 0.05 0.00 0.05 0.00 -épine-vinette épine_vinette NOM f s 0.00 0.07 0.00 0.07 -épluche-légumes épluche_légumes NOM m 0.01 0.00 0.01 0.00 -urbi et orbi urbi_et_orbi ADV 0.01 0.27 0.01 0.27 -usine-pilote usine_pilote NOM f s 0.00 0.07 0.00 0.07 -état-civil état_civil NOM m s 0.03 0.54 0.03 0.47 -état-major état_major NOM m s 5.24 22.43 5.16 18.31 -états-civils état_civil NOM m p 0.03 0.54 0.00 0.07 -états-majors état_major NOM m p 5.24 22.43 0.09 4.12 -étouffe-chrétien étouffe_chrétien NOM m 0.01 0.00 0.01 0.00 -être-là être_là NOM m 0.14 0.00 0.14 0.00 -va-et-vient va_et_vient NOM m 1.30 10.61 1.30 10.61 -va-tout va_tout NOM m 0.05 0.41 0.05 0.41 -vade retro vade_retro ADV 0.26 0.68 0.26 0.68 -vae soli vae_soli ADV 0.00 0.07 0.00 0.07 -vae victis vae_victis ADV 0.02 0.07 0.02 0.07 -vaisseau-amiral vaisseau_amiral NOM m s 0.05 0.00 0.05 0.00 -valeur-refuge valeur_refuge NOM f s 0.00 0.07 0.00 0.07 -valse-hésitation valse_hésitation NOM f s 0.00 0.27 0.00 0.20 -valses-hésitations valse_hésitation NOM f p 0.00 0.27 0.00 0.07 -vamp-club vamp_club NOM f s 0.01 0.00 0.01 0.00 -vanity-case vanity_case NOM m s 0.11 0.14 0.11 0.14 -vasculo-nerveux vasculo_nerveux NOM m 0.01 0.00 0.01 0.00 -vau-l'eau vau_l_eau NOM m s 0.00 0.14 0.00 0.14 -ventre-saint-gris ventre_saint_gris ONO 0.00 0.07 0.00 0.07 -vert-de-gris vert_de_gris ADJ 0.02 0.81 0.02 0.81 -vert-de-grisé vert_de_grisé ADJ m s 0.00 0.34 0.00 0.07 -vert-de-grisée vert_de_grisé ADJ f s 0.00 0.34 0.00 0.07 -vert-de-grisées vert_de_grisé ADJ f p 0.00 0.34 0.00 0.14 -vert-de-grisés vert_de_grisé ADJ m p 0.00 0.34 0.00 0.07 -vert-galant vert_galant NOM m s 0.00 0.20 0.00 0.20 -vert-jaune vert_jaune ADJ m s 0.02 0.07 0.02 0.07 -vert-jaune vert_jaune NOM m s 0.02 0.07 0.02 0.07 -vesse-de-loup vesse_de_loup NOM f s 0.02 0.20 0.00 0.14 -vesses-de-loup vesse_de_loup NOM f p 0.02 0.20 0.02 0.07 -vibro-masseur vibro_masseur NOM m s 0.08 0.07 0.08 0.07 -vice-amiral vice_amiral NOM m s 0.10 0.61 0.10 0.61 -vice-chancelier vice_chancelier NOM m s 0.07 0.00 0.07 0.00 -vice-consul vice_consul NOM m s 0.18 0.54 0.18 0.54 -vice-ministre vice_ministre NOM s 0.27 0.27 0.27 0.20 -vice-ministres vice_ministre NOM p 0.27 0.27 0.00 0.07 -vice-premier vice_premier NOM m s 0.01 0.00 0.01 0.00 -vice-présidence vice_présidence NOM f s 0.57 0.00 0.57 0.00 -vice-président vice_président NOM m s 8.63 0.61 7.91 0.54 -vice-présidente vice_président NOM f s 8.63 0.61 0.60 0.00 -vice-présidents vice_président NOM m p 8.63 0.61 0.12 0.07 -vice-recteur vice_recteur NOM m s 0.10 0.00 0.10 0.00 -vice-roi vice_roi NOM m s 0.94 0.54 0.84 0.54 -vice-rois vice_roi NOM m p 0.94 0.54 0.10 0.00 -vice-versa vice_versa ADV 0.85 0.27 0.85 0.27 -vide-gousset vide_gousset NOM m s 0.27 0.00 0.27 0.00 -vide-greniers vide_greniers NOM m 0.04 0.00 0.04 0.00 -vide-ordure vide_ordure NOM m s 0.06 0.00 0.06 0.00 -vide-ordures vide_ordures NOM m 0.55 1.22 0.55 1.22 -vide-poche vide_poche NOM m s 0.04 0.14 0.04 0.14 -vide-poches vide_poches NOM m 0.00 0.27 0.00 0.27 -vidéo-clip vidéo_clip NOM m s 0.19 0.27 0.14 0.20 -vidéo-clips vidéo_clip NOM m p 0.19 0.27 0.04 0.07 -vidéo-club vidéo_club NOM f s 0.44 0.00 0.44 0.00 -vidéo-espion vidéo_espion NOM m s 0.00 0.07 0.00 0.07 -vieux-rose vieux_rose ADJ m 0.00 0.20 0.00 0.20 -vif-argent vif_argent NOM m s 0.21 0.20 0.21 0.20 -ville-champignon ville_champignon NOM f s 0.02 0.00 0.02 0.00 -ville-dortoir ville_dortoir NOM f s 0.00 0.07 0.00 0.07 -villes-clés villes_clé NOM f p 0.01 0.00 0.01 0.00 -vingt-cinq vingt_cinq ADJ:num 3.53 28.18 3.53 28.18 -vingt-cinquième vingt_cinquième ADJ 0.01 0.34 0.01 0.34 -vingt-deux vingt_deux ADJ:num 1.25 8.99 1.25 8.99 -vingt-deuxième vingt_deuxième ADJ 0.03 0.27 0.03 0.27 -vingt-et-un vingt_et_un NOM m 0.28 0.74 0.28 0.68 -vingt-et-une vingt_et_un NOM f s 0.28 0.74 0.01 0.07 -vingt-et-unième vingt_et_unième ADJ 0.01 0.07 0.01 0.07 -vingt-huit vingt_huit ADJ:num 0.97 5.34 0.97 5.34 -vingt-huitième vingt_huitième ADJ 0.00 0.74 0.00 0.74 -vingt-neuf vingt_neuf ADJ:num 0.96 2.77 0.96 2.77 -vingt-neuvième vingt_neuvième ADJ 0.01 0.00 0.01 0.00 -vingt-quatre vingt_quatre ADJ:num 2.13 17.36 2.13 17.36 -vingt-quatrième vingt_quatrième ADJ 0.01 0.27 0.01 0.27 -vingt-sept vingt_sept ADJ:num 0.67 4.59 0.67 4.59 -vingt-septième vingt_septième ADJ 0.00 0.54 0.00 0.54 -vingt-six vingt_six ADJ:num 1.09 7.50 1.09 7.50 -vingt-sixième vingt_sixième ADJ 0.01 0.20 0.01 0.20 -vingt-trois vingt_trois ADJ:num 2.08 7.57 2.08 7.57 -vingt-troisième vingt_troisième ADJ 0.01 0.61 0.01 0.61 -vis-à-vis vis_à_vis PRE 0.00 19.39 0.00 19.39 -visite-éclair visite_éclair NOM f s 0.00 0.07 0.00 0.07 -voiture-balai voiture_balai NOM f s 0.23 0.07 0.23 0.00 -voiture-bar voiture_bar NOM f s 0.01 0.00 0.01 0.00 -voiture-lit voiture_lit NOM f s 0.01 0.00 0.01 0.00 -voiture-restaurant voiture_restaurant NOM f s 0.05 0.00 0.05 0.00 -voitures-balais voiture_balai NOM f p 0.23 0.07 0.00 0.07 -voix-off voix_off NOM f 0.04 0.00 0.04 0.00 -vol-au-vent vol_au_vent NOM m 0.02 0.14 0.02 0.14 -volley-ball volley_ball NOM m s 0.25 0.68 0.25 0.68 -volte-face volte_face NOM f 0.26 3.31 0.26 3.31 -vomito negro vomito_negro NOM m s 0.01 0.00 0.01 0.00 -vous-même vous_même PRO:per p 28.20 17.84 28.20 17.84 -vous-mêmes vous_mêmes PRO:per p 4.30 1.55 4.30 1.55 -vox populi vox_populi NOM f 0.05 0.27 0.05 0.27 -voyages-éclair voyage_éclair NOM m p 0.00 0.07 0.00 0.07 -vrai-faux vrai_faux ADJ m s 0.00 0.07 0.00 0.07 -vulgum pecus vulgum_pecus NOM m 0.01 0.07 0.01 0.07 -vélo-cross vélo_cross NOM m 0.00 0.07 0.00 0.07 -vélo-pousse vélo_pousse NOM m s 0.01 0.00 0.01 0.00 -wagon-bar wagon_bar NOM m s 0.03 0.00 0.03 0.00 -wagon-lit wagon_lit NOM m s 1.79 1.89 0.70 0.81 -wagon-lits wagon_lits NOM m 0.00 0.07 0.00 0.07 -wagon-restaurant wagon_restaurant NOM m s 0.35 1.01 0.35 0.81 -wagon-salon wagon_salon NOM m s 0.01 0.54 0.01 0.54 -wagons-citernes wagon_citerne NOM m p 0.00 0.07 0.00 0.07 -wagons-lits wagon_lit NOM m p 1.79 1.89 1.09 1.08 -wagons-restaurants wagon_restaurant NOM m p 0.35 1.01 0.00 0.20 -wait and see wait_and_see NOM m s 0.16 0.00 0.16 0.00 -walkie-talkie walkie_talkie NOM m s 0.08 0.14 0.05 0.14 -walkies-talkies walkie_talkie NOM m p 0.08 0.14 0.03 0.00 -wall street wall_street NOM s 0.03 0.07 0.03 0.07 -water-closet water_closet NOM m s 0.00 0.14 0.00 0.14 -water-polo water_polo NOM m s 0.23 0.00 0.23 0.00 -way of life way_of_life NOM m s 0.02 0.14 0.02 0.14 -week-end week_end NOM m s 44.51 14.32 39.41 12.16 -week-ends week_end NOM m p 44.51 14.32 3.13 2.16 -week end week_end NOM m s 44.51 14.32 1.96 0.00 -western-spaghetti western_spaghetti NOM m 0.00 0.07 0.00 0.07 -whisky-soda whisky_soda NOM m s 0.13 0.07 0.13 0.07 -white-spirit white_spirit NOM m s 0.01 0.00 0.01 0.00 -world music world_music NOM f 0.02 0.00 0.02 0.00 -yacht-club yacht_club NOM m s 0.04 0.07 0.04 0.07 -yeux-radars oeil_radars NOM m p 0.00 0.07 0.00 0.07 -ylang-ylang ylang_ylang NOM m s 0.01 0.00 0.01 0.00 -yo-yo yo_yo NOM m 1.03 0.47 1.03 0.47 -yom kippour yom_kippour NOM m 0.45 0.34 0.45 0.34 -yom kippur yom_kippur NOM m s 0.04 0.00 0.04 0.00 -you-you you_you NOM m s 0.00 0.07 0.00 0.07 -yé-yé yé_yé NOM m 0.00 0.14 0.00 0.14 -zig-zig zig_zig ADV 0.03 0.00 0.03 0.00 -zones-clés zones_clé NOM f p 0.00 0.07 0.00 0.07 diff --git a/iramuteq_fr_FR.po b/iramuteq_fr_FR.po index b7e0a79..5389ccd 100644 --- a/iramuteq_fr_FR.po +++ b/iramuteq_fr_FR.po @@ -3,47 +3,131 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: iramuteq 0.6 alpha 1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-16 16:27+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2013-02-01 19:26+0100\n" +"PO-Revision-Date: 2013-02-01 19:37+0100\n" +"Last-Translator: Pierre Ratinaud \n" +"Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: French\n" +"X-Poedit-Country: FRANCE\n" -#: iramuteq.py:134 -msgid "&Open a questionnaire\tCtrl+O" -msgstr "Ouvrir un questionnaire" - -#: iramuteq.py:184 +#: iramuteq.py:268 msgid "Edition" msgstr "Edition" -#: iramuteq.py:183 +#: iramuteq.py:226 +msgid "Exit" +msgstr "Quitter" + +#: iramuteq.py:214 +msgid "Extract mods" +msgstr "Extraire à partir des modalités" + +#: iramuteq.py:267 msgid "File" msgstr "Fichier" -#: iramuteq.py:188 +#: iramuteq.py:272 msgid "Help" msgstr "Aide" -#: iramuteq.py:134 -msgid "Open a questionnaire" -msgstr "Ouvrir un questionnaire" +#: iramuteq.py:232 +msgid "Home page" +msgstr "Page d'accueil" + +#: iramuteq.py:210 +msgid "Import from factiva" +msgstr "Importer de factiva" + +#: corpus.py:1147 +msgid "No Text in corpora. Are you sure of the formatting ?" +msgstr "Pas de textes dans le corpus. Etes-vous sûr du formatage ?" + +#: iramuteq.py:190 +msgid "Open a matrix" +msgstr "Ouvrir une matrice" + +#: iramuteq.py:194 +msgid "Open a text corpora" +msgstr "Ouvrir un corpus" + +#: iramuteq.py:198 +msgid "Open an analysis" +msgstr "Ouvrir une Analyse" + +#: iramuteq.py:229 +msgid "Preferences" +msgstr "Préférences" + +#: iramuteq.py:222 +msgid "Save tab as..." +msgstr "Enregistrer l'onglet sous ..." -#: iramuteq.py:186 +#: iramuteq.py:233 +msgid "Show data" +msgstr "Voir les données" + +#: iramuteq.py:234 +msgid "Show results" +msgstr "Voir les résultats" + +#: iramuteq.py:213 +msgid "Split from variable" +msgstr "Sous corpus par variable" + +#: iramuteq.py:270 +#: iramuteq.py:427 +#: iramuteq.py:636 +#: tableau.py:185 msgid "Spreadsheet analysis" msgstr "Analyse de tableau" -#: iramuteq.py:187 +#: iramuteq.py:271 +#: iramuteq.py:428 +#: iramuteq.py:635 +#: openanalyse.py:116 +#: openanalyse.py:119 +#: openanalyse.py:122 +#: openanalyse.py:125 +#: openanalyse.py:128 +#: openanalyse.py:131 +#: tableau.py:186 msgid "Text analysis" msgstr "Analyse de texte" -#: iramuteq.py:185 +#: iramuteq.py:219 +msgid "Tools" +msgstr "Outils" + +#: iramuteq.py:269 +#: iramuteq.py:426 +#: iramuteq.py:564 +#: iramuteq.py:634 +#: tableau.py:184 msgid "View" msgstr "Vue" + +#: iramuteq.py:206 +msgid "from copy/paste" +msgstr "à partir de copier/coller" + +#: iramuteq.py:205 +msgid "from mail" +msgstr "à partir de mails" + +#: iramuteq.py:204 +msgid "from xml" +msgstr "à partir de fichiers xml" + +#~ msgid "&Open a questionnaire\tCtrl+O" +#~ msgstr "Ouvrir un questionnaire" + +#~ msgid "Open a questionnaire" +#~ msgstr "Ouvrir un questionnaire" diff --git a/layout.py b/layout.py index b2eeb4e..3b74fdf 100644 --- a/layout.py +++ b/layout.py @@ -943,7 +943,13 @@ class SimiLayout(DefaultTextLayout) : with codecs.open(self.pathout['actives.csv'], 'r', self.parametres['encoding']) as f : self.actives = f.read() self.actives = self.actives.splitlines()#[act for act in self.actives.splitlines()] - dictcol = dict([[i, [act, self.corpus.getlemeff(act)]] for i, act in enumerate(self.actives)]) + if os.path.exists(self.pathout['actives_nb.csv']) : + with open(self.pathout['actives_nb.csv'], 'r') as f : + act_nb = f.read() + act_nb = act_nb.splitlines() + dictcol = dict([[i, [self.actives[i], int(act_nb[i])]] for i, val in enumerate(self.actives)]) + else : + dictcol = dict([[i, [act, self.corpus.getlemeff(act)]] for i, act in enumerate(self.actives)]) #res = SelectColumn(self.ira, dictcol, self.actives, self.pathout['selected.csv'], selected = selected, dlg = True) #if res.ok : prep = PrepSimi(self.ira, self, self.parametres,self.pathout['selected.csv'], self.actives, indices_simi, wordlist = dictcol, selected = selected) diff --git a/locale/fr_FR/LC_MESSAGES/iramuteq.mo b/locale/fr_FR/LC_MESSAGES/iramuteq.mo index d8c7bad..11fcb18 100644 Binary files a/locale/fr_FR/LC_MESSAGES/iramuteq.mo and b/locale/fr_FR/LC_MESSAGES/iramuteq.mo differ diff --git a/messages.pot b/messages.pot index 7b1034a..bf48abf 100644 --- a/messages.pot +++ b/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-11-14 15:17+0100\n" +"POT-Creation-Date: 2013-02-01 19:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,69 +17,97 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: iramuteq.py:244 +#: iramuteq.py:268 msgid "Edition" msgstr "" -#: iramuteq.py:202 +#: iramuteq.py:226 msgid "Exit" msgstr "" -#: iramuteq.py:243 +#: iramuteq.py:214 +msgid "Extract mods" +msgstr "" + +#: iramuteq.py:267 msgid "File" msgstr "" -#: iramuteq.py:248 +#: iramuteq.py:272 msgid "Help" msgstr "" -#: iramuteq.py:208 +#: iramuteq.py:232 msgid "Home page" msgstr "" -#: iramuteq.py:192 -msgid "Import a factiva corpora..." +#: iramuteq.py:210 +msgid "Import from factiva" +msgstr "" + +#: corpus.py:1147 +msgid "No Text in corpora. Are you sure of the formatting ?" msgstr "" -#: iramuteq.py:180 +#: iramuteq.py:190 msgid "Open a matrix" msgstr "" -#: iramuteq.py:184 +#: iramuteq.py:194 msgid "Open a text corpora" msgstr "" -#: iramuteq.py:188 +#: iramuteq.py:198 msgid "Open an analysis" msgstr "" -#: iramuteq.py:205 +#: iramuteq.py:229 msgid "Preferences" msgstr "" -#: iramuteq.py:197 +#: iramuteq.py:222 msgid "Save tab as..." msgstr "" -#: iramuteq.py:209 +#: iramuteq.py:233 msgid "Show data" msgstr "" -#: iramuteq.py:210 +#: iramuteq.py:234 msgid "Show results" msgstr "" -#: iramuteq.py:246 iramuteq.py:457 iramuteq.py:608 tableau.py:178 +#: iramuteq.py:213 +msgid "Split from variable" +msgstr "" + +#: iramuteq.py:270 iramuteq.py:427 iramuteq.py:636 tableau.py:185 msgid "Spreadsheet analysis" msgstr "" -#: iramuteq.py:247 iramuteq.py:458 iramuteq.py:607 openanalyse.py:94 -#: openanalyse.py:97 openanalyse.py:100 openanalyse.py:103 openanalyse.py:106 -#: openanalyse.py:109 tableau.py:179 +#: iramuteq.py:271 iramuteq.py:428 iramuteq.py:635 openanalyse.py:116 +#: openanalyse.py:119 openanalyse.py:122 openanalyse.py:125 openanalyse.py:128 +#: openanalyse.py:131 tableau.py:186 msgid "Text analysis" msgstr "" -#: iramuteq.py:245 iramuteq.py:456 iramuteq.py:535 iramuteq.py:606 -#: tableau.py:177 +#: iramuteq.py:219 +msgid "Tools" +msgstr "" + +#: iramuteq.py:269 iramuteq.py:426 iramuteq.py:564 iramuteq.py:634 +#: tableau.py:184 msgid "View" msgstr "" + +#: iramuteq.py:206 +msgid "from copy/paste" +msgstr "" + +#: iramuteq.py:205 +msgid "from mail" +msgstr "" + +#: iramuteq.py:204 +msgid "from xml" +msgstr "" diff --git a/textsimi.py b/textsimi.py index 0dfaea7..24cf213 100644 --- a/textsimi.py +++ b/textsimi.py @@ -131,9 +131,11 @@ class SimiTxt(AnalyseText): f.write('\n'.join(self.actives).encode(self.ira.syscoding)) class SimiFromCluster(SimiTxt) : - def __init__(self, ira, corpus, actives, numcluster, parametres = None, dlg = False) : + def __init__(self, ira, corpus, actives, lfreq, lchi, numcluster, parametres = None, dlg = False) : self.actives = actives self.numcluster = numcluster + self.lfreq = lfreq + self.lchi = lchi parametres['name'] = 'simi_classe_%i' % (numcluster + 1) SimiTxt.__init__(self, ira, corpus, parametres, dlg, lemdial = False) @@ -189,3 +191,8 @@ class SimiFromCluster(SimiTxt) : self.corpus.make_and_write_sparse_matrix_from_classe(self.actives, self.corpus.lc[self.numcluster], self.pathout['mat01.csv']) with open(self.pathout['actives.csv'], 'w') as f : f.write('\n'.join(self.actives).encode(self.ira.syscoding)) + with open(self.pathout['actives_nb.csv'], 'w') as f : + f.write('\n'.join([`val` for val in self.lfreq])) + with open(self.pathout['actives_chi.csv'], 'w') as f : + f.write('\n'.join([`val` for val in self.lchi])) +