-
Notifications
You must be signed in to change notification settings - Fork 0
/
stuff.txt
1499 lines (1499 loc) · 68.1 KB
/
stuff.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{:freq 1050561, :word "le", :type "(dét.)"}
{:freq 862100, :word "de", :type "(prép.)"}
{:freq 419564, :word "un", :type "(dét.)"}
{:freq 351960, :word "être", :type "(verbe)"}
{:freq 362093, :word "et", :type "(conj.)"}
{:freq 293083, :word "à", :type "(prép.)"}
{:freq 270395, :word "il", :type "(pron.)"}
{:freq 248488, :word "avoir", :type "(verbe)"}
{:freq 186755, :word "ne", :type "(adv.)"}
{:freq 184186, :word "je", :type "(pron.)"}
{:freq 181161, :word "son", :type "(dét.)"}
{:freq 176161, :word "que", :type "(conj.)"}
{:freq 168684, :word "se", :type "(pron.)"}
{:freq 148392, :word "qui", :type "(pron.)"}
{:freq 141389, :word "ce", :type "(dét.)"}
{:freq 139185, :word "dans", :type "(prép.)"}
{:freq 143565, :word "en", :type "(prép.)"}
{:freq 127384, :word "du", :type "(dét.)"}
{:freq 126397, :word "elle", :type "(pron.)"}
{:freq 123502, :word "au", :type "(dét.)"}
{:freq 119106, :word "de", :type "(dét.)"}
{:freq 107074, :word "ce", :type "(pron.)"}
{:freq 105873, :word "le", :type "(pron.)"}
{:freq 104779, :word "pour", :type "(prép.)"}
{:freq 103083, :word "pas", :type "(adv.)"}
{:freq 99412, :word "que", :type "(pron.)"}
{:freq 89623, :word "vous", :type "(pron.)"}
{:freq 82277, :word "par", :type "(prép.)"}
{:freq 80180, :word "sur", :type "(prép.)"}
{:freq 77608, :word "faire", :type "(verbe)"}
{:freq 75499, :word "plus", :type "(adv.)"}
{:freq 72134, :word "dire", :type "(verbe)"}
{:freq 71086, :word "me", :type "(pron.)"}
{:freq 70246, :word "on", :type "(pron.)"}
{:freq 70121, :word "mon", :type "(dét.)"}
{:freq 65988, :word "lui", :type "(pron.)"}
{:freq 62554, :word "nous", :type "(pron.)"}
{:freq 59902, :word "comme", :type "(conj.)"}
{:freq 57690, :word "mais", :type "(conj.)"}
{:freq 55394, :word "pouvoir", :type "(verbe)"}
{:freq 55081, :word "avec", :type "(prép.)"}
{:freq 47221, :word "tout", :type "(adj.)"}
{:freq 46031, :word "y", :type "(pron.)"}
{:freq 41702, :word "aller", :type "(verbe)"}
{:freq 39659, :word "voir", :type "(verbe)"}
{:freq 38935, :word "en", :type "(pron.)"}
{:freq 37171, :word "bien", :type "(adv.)"}
{:freq 36089, :word "où", :type "(pron.)"}
{:freq 35915, :word "sans", :type "(prép.)"}
{:freq 35774, :word "tu", :type "(pron.)"}
{:freq 34897, :word "ou", :type "(conj.)"}
{:freq 33950, :word "leur", :type "(dét.)"}
{:freq 33202, :word "homme", :type "(subst.)"}
{:freq 32024, :word "si", :type "(adv.)"}
{:freq 30211, :word "deux", :type "(numér.)"}
{:freq 30082, :word "mari", :type "(subst.)"}
{:freq 30053, :word "moi", :type "(pron.)"}
{:freq 29435, :word "vouloir", :type "(verbe)"}
{:freq 28542, :word "te", :type "(pron.)"}
{:freq 26148, :word "femme", :type "(subst.)"}
{:freq 26023, :word "venir", :type "(verbe)"}
{:freq 25592, :word "quand", :type "(conj.)"}
{:freq 25388, :word "grand", :type "(adj.)"}
{:freq 24270, :word "celui", :type "(pron.)"}
{:freq 24024, :word "si", :type "(conj.)"}
{:freq 23883, :word "notre", :type "(dét.)"}
{:freq 22703, :word "devoir", :type "(verbe)"}
{:freq 22695, :word "là", :type "(adv.)"}
{:freq 22232, :word "jour", :type "(subst.)"}
{:freq 20489, :word "prendre", :type "(verbe)"}
{:freq 19994, :word "même", :type "(adv.)"}
{:freq 19942, :word "votre", :type "(dét.)"}
{:freq 19915, :word "tout", :type "(adv.)"}
{:freq 19379, :word "rien", :type "(pron.)"}
{:freq 19008, :word "petit", :type "(adj.)"}
{:freq 19176, :word "encore", :type "(adv.)"}
{:freq 18311, :word "aussi", :type "(adv.)"}
{:freq 17953, :word "quelque", :type "(dét.)"}
{:freq 17797, :word "dont", :type "(pron.)"}
{:freq 17486, :word "tout", :type "(pron.)"}
{:freq 17166, :word "mer", :type "(subst.)"}
{:freq 16833, :word "trouver", :type "(verbe)"}
{:freq 16795, :word "donner", :type "(verbe)"}
{:freq 16785, :word "temps", :type "(subst.)"}
{:freq 16494, :word "ça", :type "(pron.)"}
{:freq 16251, :word "peu", :type "(adv.)"}
{:freq 16081, :word "même", :type "(adj.)"}
{:freq 16078, :word "falloir", :type "(verbe)"}
{:freq 15944, :word "sous", :type "(prép.)"}
{:freq 15814, :word "parler", :type "(verbe)"}
{:freq 15639, :word "alors", :type "(adv.)"}
{:freq 15540, :word "main", :type "(subst.)"}
{:freq 15524, :word "chose", :type "(subst.)"}
{:freq 15513, :word "ton", :type "(dét.)"}
{:freq 15339, :word "mettre", :type "(verbe)"}
{:freq 15241, :word "vie", :type "(subst.)"}
{:freq 15102, :word "savoir", :type "(verbe)"}
{:freq 14981, :word "yeux", :type "(subst.)"}
{:freq 14976, :word "passer", :type "(verbe)"}
{:freq 14688, :word "autre", :type "(adj.)"}
{:freq 14606, :word "après", :type "(prép.)"}
{:freq 14604, :word "regarder", :type "(verbe)"}
{:freq 14336, :word "toujours", :type "(adv.)"}
{:freq 14257, :word "puis", :type "(conj.)"}
{:freq 14255, :word "jamais", :type "(adv.)"}
{:freq 14253, :word "cela", :type "(pron.)"}
{:freq 14138, :word "aimer", :type "(verbe)"}
{:freq 14039, :word "non", :type "(adv.)"}
{:freq 13940, :word "heure", :type "(subst.)"}
{:freq 13881, :word "croire", :type "(verbe)"}
{:freq 13798, :word "cent", :type "(numér.)"}
{:freq 13737, :word "monde", :type "(subst.)"}
{:freq 13562, :word "donc", :type "(conj.)"}
{:freq 13348, :word "enfant", :type "(subst.)"}
{:freq 13191, :word "fois", :type "(subst.)"}
{:freq 13104, :word "seul", :type "(adj.)"}
{:freq 13063, :word "autre", :type "(pron.)"}
{:freq 13684, :word "entre", :type "(prép.)"}
{:freq 12781, :word "vers", :type "(prép.)"}
{:freq 12698, :word "chez", :type "(prép.)"}
{:freq 12597, :word "demander", :type "(verbe)"}
{:freq 12593, :word "jeune", :type "(adj.)"}
{:freq 12465, :word "jusque", :type "(prép.)"}
{:freq 12432, :word "très", :type "(adv.)"}
{:freq 12274, :word "moment", :type "(subst.)"}
{:freq 12155, :word "rester", :type "(verbe)"}
{:freq 12063, :word "répondre", :type "(verbe)"}
{:freq 12051, :word "tout", :type "(dét.)"}
{:freq 11999, :word "tête", :type "(subst.)"}
{:freq 11854, :word "père", :type "(subst.)"}
{:freq 11842, :word "fille", :type "(subst.)"}
{:freq 11758, :word "mille", :type "(numér.)"}
{:freq 11731, :word "premier", :type "(adj.)"}
{:freq 11695, :word "car", :type "(conj.)"}
{:freq 12009, :word "entendre", :type "(verbe)"}
{:freq 11640, :word "ni", :type "(conj.)"}
{:freq 11483, :word "bon", :type "(adj.)"}
{:freq 11372, :word "trois", :type "(numér.)"}
{:freq 11312, :word "cœur", :type "(subst.)"}
{:freq 11296, :word "ainsi", :type "(adv.)"}
{:freq 11274, :word "an", :type "(subst.)"}
{:freq 10970, :word "quatre", :type "(numér.)"}
{:freq 10941, :word "un", :type "(pron.)"}
{:freq 10786, :word "terre", :type "(subst.)"}
{:freq 10692, :word "contre", :type "(prép.)"}
{:freq 10661, :word "dieu", :type "(subst.)"}
{:freq 10489, :word "monsieur", :type "(subst.)"}
{:freq 10469, :word "voix", :type "(subst.)"}
{:freq 10358, :word "penser", :type "(verbe)"}
{:freq 10343, :word "quel", :type "(adj.)"}
{:freq 10288, :word "arriver", :type "(verbe)"}
{:freq 10287, :word "maison", :type "(subst.)"}
{:freq 9995, :word "devant", :type "(prép.)"}
{:freq 9991, :word "coup", :type "(subst.)"}
{:freq 9870, :word "beau", :type "(adj.)"}
{:freq 9769, :word "connaître", :type "(verbe)"}
{:freq 9759, :word "devenir", :type "(verbe)"}
{:freq 9755, :word "air", :type "(subst.)"}
{:freq 9752, :word "mot", :type "(subst.)"}
{:freq 9694, :word "nuit", :type "(subst.)"}
{:freq 9585, :word "sentir", :type "(verbe)"}
{:freq 9603, :word "eau", :type "(subst.)"}
{:freq 9515, :word "vieux", :type "(adj.)"}
{:freq 9482, :word "sembler", :type "(verbe)"}
{:freq 9472, :word "moins", :type "(adv.)"}
{:freq 9312, :word "tenir", :type "(verbe)"}
{:freq 9098, :word "ici", :type "(adv.)"}
{:freq 9037, :word "comprendre", :type "(verbe)"}
{:freq 9005, :word "oui", :type "(adv.)"}
{:freq 9002, :word "rendre", :type "(verbe)"}
{:freq 8997, :word "toi", :type "(pron.)"}
{:freq 8920, :word "vingt", :type "(numér.)"}
{:freq 8907, :word "depuis", :type "(prép.)"}
{:freq 8851, :word "attendre", :type "(verbe)"}
{:freq 8768, :word "sortir", :type "(verbe)"}
{:freq 8744, :word "ami", :type "(subst.)"}
{:freq 8686, :word "trop", :type "(adv.)"}
{:freq 8649, :word "porte", :type "(subst.)"}
{:freq 8574, :word "lequel", :type "(pron.)"}
{:freq 8419, :word "chaque", :type "(dét.)"}
{:freq 8283, :word "amour", :type "(subst.)"}
{:freq 8202, :word "pendant", :type "(prép.)"}
{:freq 8170, :word "déjà", :type "(adv.)"}
{:freq 8040, :word "pied", :type "(subst.)"}
{:freq 7960, :word "tant", :type "(adv.)"}
{:freq 7944, :word "gens", :type "(subst.)"}
{:freq 7824, :word "parce que", :type "(conj.)"}
{:freq 7795, :word "nom", :type "(subst.)"}
{:freq 7625, :word "vivre", :type "(verbe)"}
{:freq 7544, :word "reprendre", :type "(verbe)"}
{:freq 7614, :word "entrer", :type "(verbe)"}
{:freq 7499, :word "porter", :type "(verbe)"}
{:freq 7451, :word "pays", :type "(subst.)"}
{:freq 7433, :word "ciel", :type "(subst.)"}
{:freq 7425, :word "avant", :type "(prép.)"}
{:freq 7415, :word "frère", :type "(subst.)"}
{:freq 7399, :word "regard", :type "(subst.)"}
{:freq 7304, :word "chercher", :type "(verbe)"}
{:freq 7255, :word "âme", :type "(subst.)"}
{:freq 7245, :word "côté", :type "(subst.)"}
{:freq 7182, :word "mort", :type "(subst.)"}
{:freq 7114, :word "revenir", :type "(verbe)"}
{:freq 7038, :word "noir", :type "(adj.)"}
{:freq 7024, :word "maintenant", :type "(adv.)"}
{:freq 7019, :word "nouveau", :type "(adj.)"}
{:freq 6983, :word "ville", :type "(subst.)"}
{:freq 6923, :word "rue", :type "(subst.)"}
{:freq 7126, :word "enfin", :type "(adv.)"}
{:freq 6892, :word "appeler", :type "(verbe)"}
{:freq 6877, :word "soir", :type "(subst.)"}
{:freq 6835, :word "chambre", :type "(subst.)"}
{:freq 6785, :word "mourir", :type "(verbe)"}
{:freq 6751, :word "pas", :type "(subst.)"}
{:freq 6726, :word "partir", :type "(verbe)"}
{:freq 6723, :word "cinq", :type "(numér.)"}
{:freq 7031, :word "esprit", :type "(subst.)"}
{:freq 6692, :word "soleil", :type "(subst.)"}
{:freq 6650, :word "dernier", :type "(adj.)"}
{:freq 6610, :word "jeter", :type "(verbe)"}
{:freq 6609, :word "dix", :type "(numér.)"}
{:freq 6588, :word "roi", :type "(subst.)"}
{:freq 6489, :word "état", :type "(subst.)"}
{:freq 6425, :word "corps", :type "(subst.)"}
{:freq 6399, :word "beaucoup", :type "(adv.)"}
{:freq 6397, :word "suivre", :type "(verbe)"}
{:freq 6304, :word "bras", :type "(subst.)"}
{:freq 6256, :word "écrire", :type "(verbe)"}
{:freq 6246, :word "blanc", :type "(adj.)"}
{:freq 6195, :word "montrer", :type "(verbe)"}
{:freq 6182, :word "tomber", :type "(verbe)"}
{:freq 6178, :word "place", :type "(subst.)"}
{:freq 6169, :word "ouvrir", :type "(verbe)"}
{:freq 6138, :word "ah", :type "(interj)"}
{:freq 6102, :word "parti", :type "(subst.)"}
{:freq 6090, :word "assez", :type "(adv.)"}
{:freq 6078, :word "leur", :type "(pron.)"}
{:freq 6059, :word "cher", :type "(adj.)"}
{:freq 6054, :word "voilà", :type "(prép.)"}
{:freq 6004, :word "année", :type "(subst.)"}
{:freq 5996, :word "loin", :type "(adv.)"}
{:freq 5961, :word "point", :type "(adv.)"}
{:freq 5954, :word "visage", :type "(subst.)"}
{:freq 5946, :word "bruit", :type "(subst.)"}
{:freq 5946, :word "lettre", :type "(subst.)"}
{:freq 5922, :word "franc", :type "(subst.)"}
{:freq 5861, :word "fond", :type "(subst.)"}
{:freq 5835, :word "force", :type "(subst.)"}
{:freq 5812, :word "arrêter", :type "(verbe)"}
{:freq 5786, :word "perdre", :type "(verbe)"}
{:freq 5783, :word "commencer", :type "(verbe)"}
{:freq 5779, :word "paraître", :type "(verbe)"}
{:freq 5774, :word "aucun", :type "(dét.)"}
{:freq 5747, :word "marcher", :type "(verbe)"}
{:freq 5706, :word "milieu", :type "(subst.)"}
{:freq 5702, :word "saint", :type "(subst.)"}
{:freq 5686, :word "idée", :type "(subst.)"}
{:freq 5662, :word "presque", :type "(adv.)"}
{:freq 5629, :word "ailleurs", :type "(adv.)"}
{:freq 5623, :word "travail", :type "(subst.)"}
{:freq 5622, :word "lumière", :type "(subst.)"}
{:freq 5562, :word "long", :type "(adj.)"}
{:freq 5544, :word "seulement", :type "(adv.)"}
{:freq 5527, :word "mois", :type "(subst.)"}
{:freq 5520, :word "fils", :type "(subst.)"}
{:freq 5508, :word "neuf", :type "(numér.)"}
{:freq 5505, :word "tel", :type "(dét.)"}
{:freq 5494, :word "lever", :type "(verbe)"}
{:freq 5481, :word "raison", :type "(subst.)"}
{:freq 5829, :word "effet", :type "(subst.)"}
{:freq 5470, :word "gouvernement", :type "(subst.)"}
{:freq 5467, :word "permettre", :type "(verbe)"}
{:freq 5434, :word "pauvre", :type "(adj.)"}
{:freq 5417, :word "asseoir", :type "(verbe)"}
{:freq 5416, :word "point", :type "(subst.)"}
{:freq 5413, :word "plein", :type "(adj.)"}
{:freq 5391, :word "personne", :type "(subst.)"}
{:freq 5385, :word "vrai", :type "(adj.)"}
{:freq 5349, :word "peuple", :type "(subst.)"}
{:freq 5343, :word "fait", :type "(subst.)"}
{:freq 5295, :word "parole", :type "(subst.)"}
{:freq 5273, :word "guerre", :type "(subst.)"}
{:freq 5258, :word "toute", :type "(adj.)"}
{:freq 5216, :word "écouter", :type "(verbe)"}
{:freq 5214, :word "pensée", :type "(subst.)"}
{:freq 5179, :word "affaire", :type "(subst.)"}
{:freq 5152, :word "quoi", :type "(pron.)"}
{:freq 5145, :word "matin", :type "(subst.)"}
{:freq 5127, :word "pierre", :type "(subst.)"}
{:freq 5088, :word "monter", :type "(verbe)"}
{:freq 5087, :word "bas", :type "(adj.)"}
{:freq 5002, :word "vent", :type "(subst.)"}
{:freq 4977, :word "doute", :type "(subst.)"}
{:freq 4969, :word "front", :type "(subst.)"}
{:freq 4939, :word "ombre", :type "(subst.)"}
{:freq 4932, :word "part", :type "(subst.)"}
{:freq 4916, :word "maître", :type "(subst.)"}
{:freq 4915, :word "aujourd'hui", :type "(adv.)"}
{:freq 4908, :word "besoin", :type "(subst.)"}
{:freq 4908, :word "question", :type "(subst.)"}
{:freq 4904, :word "apercevoir", :type "(verbe)"}
{:freq 4891, :word "recevoir", :type "(verbe)"}
{:freq 4881, :word "mieux", :type "(adv.)"}
{:freq 4859, :word "peine", :type "(subst.)"}
{:freq 4836, :word "tour", :type "(subst.)"}
{:freq 4806, :word "servir", :type "(verbe)"}
{:freq 4766, :word "oh", :type "(interj)"}
{:freq 4764, :word "autour", :type "(adv.)"}
{:freq 4731, :word "près", :type "(prép.)"}
{:freq 4709, :word "finir", :type "(verbe)"}
{:freq 4705, :word "famille", :type "(subst.)"}
{:freq 4700, :word "pourquoi", :type "(conj.)"}
{:freq 4665, :word "souvent", :type "(adv.)"}
{:freq 4662, :word "rire", :type "(verbe)"}
{:freq 4657, :word "dessus", :type "(adv.)"}
{:freq 4653, :word "madame", :type "(subst.)"}
{:freq 4635, :word "sorte", :type "(subst.)"}
{:freq 4618, :word "figure", :type "(subst.)"}
{:freq 4595, :word "droit", :type "(subst.)"}
{:freq 4574, :word "peur", :type "(subst.)"}
{:freq 4571, :word "bout", :type "(subst.)"}
{:freq 4554, :word "lieu", :type "(subst.)"}
{:freq 4541, :word "silence", :type "(subst.)"}
{:freq 4537, :word "gros", :type "(adj.)"}
{:freq 4503, :word "chef", :type "(subst.)"}
{:freq 4584, :word "eh", :type "(interj)"}
{:freq 4463, :word "six", :type "(numér.)"}
{:freq 4460, :word "bois", :type "(subst.)"}
{:freq 4457, :word "mari", :type "(subst.)"}
{:freq 4451, :word "histoire", :type "(subst.)"}
{:freq 4449, :word "crier", :type "(verbe)"}
{:freq 4447, :word "jouer", :type "(verbe)"}
{:freq 4429, :word "feu", :type "(subst.)"}
{:freq 4371, :word "tourner", :type "(verbe)"}
{:freq 4355, :word "doux", :type "(adj.)"}
{:freq 4355, :word "longtemps", :type "(adv.)"}
{:freq 4350, :word "fort", :type "(adv.)"}
{:freq 4332, :word "heureux", :type "(adj.)"}
{:freq 4324, :word "comme", :type "(adv.)"}
{:freq 4272, :word "garder", :type "(verbe)"}
{:freq 4271, :word "partie", :type "(subst.)"}
{:freq 4236, :word "face", :type "(subst.)"}
{:freq 4231, :word "mouvement", :type "(subst.)"}
{:freq 4217, :word "fin", :type "(subst.)"}
{:freq 4198, :word "reconnaître", :type "(verb)"}
{:freq 4180, :word "quitter", :type "(verbe)"}
{:freq 4164, :word "personne", :type "(pron.)"}
{:freq 4163, :word "comment", :type "(adv.)"}
{:freq 4155, :word "route", :type "(subst.)"}
{:freq 4141, :word "dès", :type "(prép.)"}
{:freq 4127, :word "manger", :type "(verbe)"}
{:freq 4097, :word "livre", :type "(subst.)"}
{:freq 4070, :word "arbre", :type "(subst.)"}
{:freq 4059, :word "courir", :type "(verbe)"}
{:freq 4058, :word "cas", :type "(subst.)"}
{:freq 4052, :word "huit", :type "(numér.)"}
{:freq 4041, :word "lorsque", :type "(conj.)"}
{:freq 4034, :word "mur", :type "(subst.)"}
{:freq 4028, :word "ordre", :type "(subst.)"}
{:freq 4022, :word "continuer", :type "(verbe)"}
{:freq 3978, :word "bonheur", :type "(subst.)"}
{:freq 3965, :word "oublier", :type "(verbe)"}
{:freq 3955, :word "descendre", :type "(verbe)"}
{:freq 3953, :word "haut", :type "(adj.)"}
{:freq 3922, :word "intérêt", :type "(subst.)"}
{:freq 3920, :word "cacher", :type "(verbe)"}
{:freq 3910, :word "l'un", :type "(pron.)"}
{:freq 3890, :word "chacun", :type "(pron.)"}
{:freq 3878, :word "profond", :type "(adj.)"}
{:freq 3876, :word "argent", :type "(subst.)"}
{:freq 3856, :word "cause", :type "(subst.)"}
{:freq 3841, :word "poser", :type "(verbe)"}
{:freq 3834, :word "autant", :type "(adv.)"}
{:freq 3994, :word "est", :type "(subst.)"}
{:freq 3825, :word "travers", :type "(subst.)"}
{:freq 3809, :word "grand", :type "(subst.)"}
{:freq 3807, :word "instant", :type "(subst.)"}
{:freq 3784, :word "façon", :type "(subst.)"}
{:freq 3783, :word "d'abord", :type "(adv.)"}
{:freq 3783, :word "oeil", :type "(subst.)"}
{:freq 3778, :word "tirer", :type "(verbe)"}
{:freq 3763, :word "forme", :type "(subst.)"}
{:freq 3757, :word "présenter", :type "(verbe)"}
{:freq 3755, :word "ajouter", :type "(verbe)"}
{:freq 3753, :word "agir", :type "(verbe)"}
{:freq 3717, :word "retrouver", :type "(verbe)"}
{:freq 3711, :word "chemin", :type "(subst.)"}
{:freq 3704, :word "cheveu", :type "(subst.)"}
{:freq 3671, :word "offrir", :type "(verbe)"}
{:freq 3669, :word "surtout", :type "(adv.)"}
{:freq 3667, :word "certain", :type "(dét.)"}
{:freq 3656, :word "plaisir", :type "(subst.)"}
{:freq 3639, :word "suite", :type "(subst.)"}
{:freq 3616, :word "apprendre", :type "(verbe)"}
{:freq 3612, :word "malgré", :type "(prép.)"}
{:freq 3598, :word "tuer", :type "(verbe)"}
{:freq 3576, :word "rouge", :type "(adj.)"}
{:freq 3571, :word "sang", :type "(subst.)"}
{:freq 3559, :word "retourner", :type "(verbe)"}
{:freq 3556, :word "rencontrer", :type "(verbe)"}
{:freq 3548, :word "sentiment", :type "(subst.)"}
{:freq 3516, :word "fleur", :type "(subst.)"}
{:freq 3508, :word "cependant", :type "(adv.)"}
{:freq 3498, :word "service", :type "(subst.)"}
{:freq 3480, :word "plusieurs", :type "(dét.)"}
{:freq 3472, :word "table", :type "(subst.)"}
{:freq 3465, :word "vite", :type "(adv.)"}
{:freq 3446, :word "paix", :type "(subst.)"}
{:freq 3482, :word "envoyer", :type "(verbe)"}
{:freq 3444, :word "moyen", :type "(subst.)"}
{:freq 3438, :word "dormir", :type "(verbe)"}
{:freq 3422, :word "pousser", :type "(verbe)"}
{:freq 3410, :word "lit", :type "(subst.)"}
{:freq 3393, :word "humain", :type "(adj.)"}
{:freq 3387, :word "voiture", :type "(subst.)"}
{:freq 3362, :word "rappeler", :type "(verbe)"}
{:freq 3345, :word "être", :type "(subst.)"}
{:freq 3340, :word "lire", :type "(verbe)"}
{:freq 3337, :word "général", :type "(adj.)"}
{:freq 3335, :word "nature", :type "(subst.)"}
{:freq 3326, :word "or", :type "(subst.)"}
{:freq 3309, :word "pouvoir", :type "(subst.)"}
{:freq 3307, :word "nouveau", :type "(subst.)"}
{:freq 3299, :word "français", :type "(adj.)"}
{:freq 3292, :word "joie", :type "(subst.)"}
{:freq 3289, :word "sept", :type "(numér.)"}
{:freq 3281, :word "tard", :type "(adv.)"}
{:freq 3272, :word "président", :type "(subst.)"}
{:freq 3271, :word "pourtant", :type "(adv.)"}
{:freq 3266, :word "bouche", :type "(subst.)"}
{:freq 3258, :word "changer", :type "(verbe)"}
{:freq 3256, :word "petit", :type "(subst.)"}
{:freq 3250, :word "froid", :type "(adj.)"}
{:freq 3248, :word "compter", :type "(verbe)"}
{:freq 3245, :word "occuper", :type "(verbe)"}
{:freq 3245, :word "sens", :type "(subst.)"}
{:freq 3240, :word "cri", :type "(subst.)"}
{:freq 3237, :word "cheval", :type "(subst.)"}
{:freq 3236, :word "loi", :type "(subst.)"}
{:freq 3234, :word "sombre", :type "(adj.)"}
{:freq 3223, :word "ci", :type "(adv.)"}
{:freq 3211, :word "sûr", :type "(adj.)"}
{:freq 3238, :word "espèce", :type "(subst.)"}
{:freq 3191, :word "voici", :type "(prép.)"}
{:freq 3190, :word "ancien", :type "(adj.)"}
{:freq 3189, :word "tandis que", :type "(conj.)"}
{:freq 3161, :word "frapper", :type "(verbe)"}
{:freq 3145, :word "ministre", :type "(subst.)"}
{:freq 3139, :word "puisque", :type "(conj.)"}
{:freq 3134, :word "selon", :type "(prép.)"}
{:freq 3133, :word "travailler", :type "(verbe)"}
{:freq 3238, :word "expliquer", :type "(verbe)"}
{:freq 3125, :word "propre", :type "(adj.)"}
{:freq 3124, :word "obtenir", :type "(verbe)"}
{:freq 3099, :word "rentrer", :type "(verbe)"}
{:freq 3097, :word "mal", :type "(adv.)"}
{:freq 3096, :word "pleurer", :type "(verbe)"}
{:freq 3254, :word "essayer", :type "(verbe)"}
{:freq 3079, :word "répéter", :type "(verbe)"}
{:freq 3079, :word "société", :type "(subst.)"}
{:freq 3076, :word "parfois", :type "(adv.)"}
{:freq 3071, :word "politique", :type "(subst.)"}
{:freq 3063, :word "oreille", :type "(subst.)"}
{:freq 3056, :word "payer", :type "(verbe)"}
{:freq 3054, :word "politique", :type "(adj.)"}
{:freq 3053, :word "apporter", :type "(verbe)"}
{:freq 3046, :word "fenêtre", :type "(subst.)"}
{:freq 3019, :word "derrière", :type "(prép.)"}
{:freq 3013, :word "possible", :type "(adj.)"}
{:freq 3010, :word "fortune", :type "(subst.)"}
{:freq 3002, :word "compte", :type "(subst.)"}
{:freq 2979, :word "champ", :type "(subst.)"}
{:freq 2961, :word "manier", :type "(subst.)"}
{:freq 2960, :word "vraiment", :type "(adv.)"}
{:freq 2948, :word "immense", :type "(adj.)"}
{:freq 2942, :word "action", :type "(subst.)"}
{:freq 2937, :word "boire", :type "(verbe)"}
{:freq 2929, :word "public", :type "(adj.)"}
{:freq 2914, :word "garçon", :type "(subst.)"}
{:freq 2914, :word "pareil", :type "(adj.)"}
{:freq 2906, :word "bleu", :type "(adj.)"}
{:freq 2904, :word "sourire", :type "(verbe)"}
{:freq 2890, :word "couleur", :type "(subst.)"}
{:freq 2889, :word "coucher", :type "(verbe)"}
{:freq 2875, :word "papier", :type "(subst.)"}
{:freq 2865, :word "d'autres", :type "(dét.)"}
{:freq 2861, :word "mal", :type "(subst.)"}
{:freq 2851, :word "fort", :type "(adj.)"}
{:freq 2839, :word "bientôt", :type "(adv.)"}
{:freq 2825, :word "causer", :type "(verbe)"}
{:freq 2820, :word "pièce", :type "(subst.)"}
{:freq 2818, :word "montagne", :type "(subst.)"}
{:freq 2812, :word "sol", :type "(subst.)"}
{:freq 2811, :word "œuvre", :type "(subst.)"}
{:freq 2810, :word "partout", :type "(adv.)"}
{:freq 2809, :word "trente", :type "(numér.)"}
{:freq 2944, :word "exister", :type "(verbe)"}
{:freq 2797, :word "cours", :type "(subst.)"}
{:freq 2794, :word "raconter", :type "(verbe)"}
{:freq 2792, :word "serrer", :type "(verbe)"}
{:freq 2792, :word "songer", :type "(verbe)"}
{:freq 2790, :word "désir", :type "(subst.)"}
{:freq 2787, :word "manquer", :type "(verbe)"}
{:freq 2776, :word "cour", :type "(subst.)"}
{:freq 2754, :word "nommer", :type "(verbe)"}
{:freq 2753, :word "bord", :type "(subst.)"}
{:freq 2749, :word "douleur", :type "(subst.)"}
{:freq 2735, :word "conduire", :type "(verbe)"}
{:freq 2732, :word "salle", :type "(subst.)"}
{:freq 2729, :word "saisir", :type "(verbe)"}
{:freq 2722, :word "premier", :type "(subst.)"}
{:freq 2721, :word "comment", :type "(conj.)"}
{:freq 2715, :word "projet", :type "(subst.)"}
{:freq 2709, :word "demeurer", :type "(verbe)"}
{:freq 2704, :word "simple", :type "(adj.)"}
{:freq 2701, :word "étude", :type "(subst.)"}
{:freq 2700, :word "remettre", :type "(verbe)"}
{:freq 2699, :word "journal", :type "(subst.)"}
{:freq 2697, :word "geste", :type "(subst.)"}
{:freq 2689, :word "disparaître", :type "(verb)"}
{:freq 2678, :word "battre", :type "(verbe)"}
{:freq 2670, :word "toucher", :type "(verbe)"}
{:freq 2664, :word "situation", :type "(subst.)"}
{:freq 2661, :word "oiseau", :type "(subst.)"}
{:freq 2654, :word "nécessaire", :type "(adj.)"}
{:freq 2906, :word "exemple", :type "(subst.)"}
{:freq 2647, :word "siècle", :type "(subst.)"}
{:freq 2645, :word "apparaître", :type "(verbe)"}
{:freq 2635, :word "souffrir", :type "(verbe)"}
{:freq 2633, :word "million", :type "(subst.)"}
{:freq 2616, :word "prix", :type "(subst.)"}
{:freq 2612, :word "groupe", :type "(subst.)"}
{:freq 2610, :word "centre", :type "(subst.)"}
{:freq 2603, :word "malheur", :type "(subst.)"}
{:freq 2602, :word "honneur", :type "(subst.)"}
{:freq 2590, :word "fermer", :type "(verbe)"}
{:freq 2585, :word "accepter", :type "(verbe)"}
{:freq 2575, :word "garde", :type "(subst.)"}
{:freq 2570, :word "mauvais", :type "(adj.)"}
{:freq 2569, :word "tendre", :type "(verbe)"}
{:freq 2555, :word "naître", :type "(verbe)"}
{:freq 2554, :word "sauver", :type "(verbe)"}
{:freq 2717, :word "entier", :type "(adj.)"}
{:freq 2547, :word "parmi", :type "(prép.)"}
{:freq 2547, :word "problème", :type "(subst.)"}
{:freq 2546, :word "larme", :type "(subst.)"}
{:freq 2544, :word "avancer", :type "(verbe)"}
{:freq 2539, :word "chien", :type "(subst.)"}
{:freq 2534, :word "peau", :type "(subst.)"}
{:freq 2530, :word "reste", :type "(subst.)"}
{:freq 2522, :word "traverser", :type "(verbe)"}
{:freq 2517, :word "nombre", :type "(subst.)"}
{:freq 2515, :word "debout", :type "(adv.)"}
{:freq 2514, :word "mesure", :type "(subst.)"}
{:freq 2510, :word "social", :type "(adj.)"}
{:freq 2508, :word "souvenir", :type "(verbe)"}
{:freq 2507, :word "article", :type "(subst.)"}
{:freq 2502, :word "vue", :type "(subst.)"}
{:freq 2491, :word "couvrir", :type "(verbe)"}
{:freq 2490, :word "âge", :type "(subst.)"}
{:freq 2485, :word "gagner", :type "(verbe)"}
{:freq 2483, :word "système", :type "(subst.)"}
{:freq 2482, :word "long", :type "(subst.)"}
{:freq 2481, :word "former", :type "(verbe)"}
{:freq 2477, :word "plaire", :type "(verbe)"}
{:freq 2458, :word "embrasser", :type "(verbe)"}
{:freq 2455, :word "rêve", :type "(subst.)"}
{:freq 2454, :word "oser", :type "(verbe)"}
{:freq 2452, :word "afin de", :type "(prép.)"}
{:freq 2448, :word "passion", :type "(subst.)"}
{:freq 2440, :word "auquel", :type "(pron.)"}
{:freq 2426, :word "rapport", :type "(subst.)"}
{:freq 2420, :word "refuser", :type "(verbe)"}
{:freq 2416, :word "important", :type "(adj.)"}
{:freq 2415, :word "décider", :type "(verbe)"}
{:freq 2401, :word "produire", :type "(verbe)"}
{:freq 2398, :word "soldat", :type "(subst.)"}
{:freq 2397, :word "lèvre", :type "(subst.)"}
{:freq 2397, :word "signe", :type "(subst.)"}
{:freq 2390, :word "vérité", :type "(subst.)"}
{:freq 2389, :word "charger", :type "(verbe)"}
{:freq 2386, :word "mariage", :type "(subst.)"}
{:freq 2385, :word "mêler", :type "(verbe)"}
{:freq 2380, :word "certain", :type "(adj.)"}
{:freq 2365, :word "plan", :type "(subst.)"}
{:freq 2349, :word "cesser", :type "(verbe)"}
{:freq 2349, :word "ressembler", :type "(verbe)"}
{:freq 2348, :word "dos", :type "(subst.)"}
{:freq 2341, :word "marche", :type "(subst.)"}
{:freq 2334, :word "souvenir", :type "(subst.)"}
{:freq 2333, :word "dame", :type "(subst.)"}
{:freq 2332, :word "chanter", :type "(verbe)"}
{:freq 2328, :word "plutôt", :type "(adv.)"}
{:freq 2318, :word "conseil", :type "(subst.)"}
{:freq 2314, :word "sou", :type "(subst.)"}
{:freq 2307, :word "triste", :type "(adj.)"}
{:freq 2306, :word "coin", :type "(subst.)"}
{:freq 2303, :word "jardin", :type "(subst.)"}
{:freq 2301, :word "joli", :type "(adj.)"}
{:freq 2297, :word "soit", :type "(conj.)"}
{:freq 2427, :word "empêcher", :type "(verbe)"}
{:freq 2289, :word "doigt", :type "(subst.)"}
{:freq 2288, :word "objet", :type "(subst.)"}
{:freq 2284, :word "fer", :type "(subst.)"}
{:freq 2281, :word "lendemain", :type "(subst.)"}
{:freq 2281, :word "lentement", :type "(adv.)"}
{:freq 2280, :word "combien", :type "(adv.)"}
{:freq 2272, :word "approcher", :type "(verbe)"}
{:freq 2265, :word "prier", :type "(verbe)"}
{:freq 2259, :word "train", :type "(subst.)"}
{:freq 2371, :word "espérer", :type "(verbe)"}
{:freq 2256, :word "papa", :type "(subst.)"}
{:freq 2254, :word "différent", :type "(adj.)"}
{:freq 2252, :word "valeur", :type "(subst.)"}
{:freq 2247, :word "jeu", :type "(subst.)"}
{:freq 2240, :word "échapper", :type "(verbe)"}
{:freq 2239, :word "glisser", :type "(verbe)"}
{:freq 2234, :word "secret", :type "(subst.)"}
{:freq 2233, :word "haut", :type "(subst.)"}
{:freq 2226, :word "vieillard", :type "(subst.)"}
{:freq 2225, :word "briller", :type "(verbe)"}
{:freq 2222, :word "docteur", :type "(subst.)"}
{:freq 2218, :word "brûler", :type "(verbe)"}
{:freq 2218, :word "terrible", :type "(adj.)"}
{:freq 2214, :word "placer", :type "(verbe)"}
{:freq 2213, :word "ton", :type "(subst.)"}
{:freq 2204, :word "jambe", :type "(subst.)"}
{:freq 2202, :word "juger", :type "(verbe)"}
{:freq 2201, :word "suffire", :type "(verbe)"}
{:freq 2194, :word "endroit", :type "(subst.)"}
{:freq 2192, :word "minute", :type "(subst.)"}
{:freq 2190, :word "atteindre", :type "(verbe)"}
{:freq 2190, :word "nuage", :type "(subst.)"}
{:freq 2187, :word "présence", :type "(subst.)"}
{:freq 2165, :word "fou", :type "(adj.)"}
{:freq 2163, :word "épaule", :type "(subst.)"}
{:freq 2158, :word "léger", :type "(adj.)"}
{:freq 2155, :word "feuille", :type "(subst.)"}
{:freq 2155, :word "liberté", :type "(subst.)"}
{:freq 2149, :word "journée", :type "(subst.)"}
{:freq 2147, :word "libre", :type "(adj.)"}
{:freq 2146, :word "annoncer", :type "(verbe)"}
{:freq 2143, :word "avenir", :type "(subst.)"}
{:freq 2142, :word "sourire", :type "(subst.)"}
{:freq 2141, :word "hier", :type "(adv.)"}
{:freq 2136, :word "résultat", :type "(subst.)"}
{:freq 2135, :word "élever", :type "(verbe)"}
{:freq 2134, :word "acheter", :type "(verbe)"}
{:freq 2133, :word "mener", :type "(verbe)"}
{:freq 2133, :word "préparer", :type "(verbe)"}
{:freq 2131, :word "pourquoi", :type "(adv.)"}
{:freq 2125, :word "hôtel", :type "(subst.)"}
{:freq 2124, :word "semaine", :type "(subst.)"}
{:freq 2122, :word "forêt", :type "(subst.)"}
{:freq 2118, :word "assurer", :type "(verbe)"}
{:freq 2118, :word "pur", :type "(adj.)"}
{:freq 2116, :word "qualité", :type "(subst.)"}
{:freq 2108, :word "prince", :type "(subst.)"}
{:freq 2101, :word "bien", :type "(subst.)"}
{:freq 2100, :word "également", :type "(adv.)"}
{:freq 2095, :word "deviner", :type "(verbe)"}
{:freq 2093, :word "médecin", :type "(subst.)"}
{:freq 2092, :word "considérer", :type "(verbe)"}
{:freq 2087, :word "volonté", :type "(subst.)"}
{:freq 2086, :word "seigneur", :type "(subst.)"}
{:freq 2468, :word "effort", :type "(subst.)"}
{:freq 2083, :word "quelque", :type "(adv.)"}
{:freq 2081, :word "vert", :type "(adj.)"}
{:freq 2077, :word "art", :type "(subst.)"}
{:freq 2077, :word "moindre", :type "(adj.)"}
{:freq 2076, :word "demain", :type "(adv.)"}
{:freq 2073, :word "quarante", :type "(numér.)"}
{:freq 2072, :word "cinquante", :type "(numér.)"}
{:freq 2070, :word "foule", :type "(subst.)"}
{:freq 2069, :word "appartenir", :type "(verbe)"}
{:freq 2068, :word "aussitôt", :type "(adv.)"}
{:freq 2068, :word "ligne", :type "(subst.)"}
{:freq 2067, :word "représenter", :type "(verb)"}
{:freq 2065, :word "tromper", :type "(verbe)"}
{:freq 2061, :word "intérieur", :type "(subst.)"}
{:freq 2056, :word "vendre", :type "(verbe)"}
{:freq 2054, :word "beauté", :type "(subst.)"}
{:freq 2048, :word "riche", :type "(adj.)"}
{:freq 2047, :word "craindre", :type "(verbe)"}
{:freq 2046, :word "étrange", :type "(adj.)"}
{:freq 2035, :word "emporter", :type "(verbe)"}
{:freq 2032, :word "ensuite", :type "(adv.)"}
{:freq 2025, :word "soin", :type "(subst.)"}
{:freq 2020, :word "naturel", :type "(adj.)"}
{:freq 2017, :word "hasard", :type "(subst.)"}
{:freq 2013, :word "puis", :type "(adv.)"}
{:freq 2006, :word "condition", :type "(subst.)"}
{:freq 2000, :word "quinze", :type "(numér.)"}
{:freq 1997, :word "classe", :type "(subst.)"}
{:freq 1996, :word "voyage", :type "(subst.)"}
{:freq 1955, :word "auprès", :type "(prép.)"}
{:freq 1955, :word "présent", :type "(subst.)"}
{:freq 1953, :word "caractère", :type "(subst.)"}
{:freq 1952, :word "attention", :type "(subst.)"}
{:freq 1952, :word "gris", :type "(adj.)"}
{:freq 1940, :word "or", :type "(conj.)"}
{:freq 1939, :word "rouler", :type "(verbe)"}
{:freq 1934, :word "faible", :type "(adj.)"}
{:freq 1931, :word "posséder", :type "(verbe)"}
{:freq 1925, :word "scène", :type "(subst.)"}
{:freq 1921, :word "difficile", :type "(adj.)"}
{:freq 1921, :word "français", :type "(subst.)"}
{:freq 1921, :word "réveiller", :type "(verbe)"}
{:freq 1920, :word "foi", :type "(subst.)"}
{:freq 1918, :word "aider", :type "(verbe)"}
{:freq 1918, :word "découvrir", :type "(verbe)"}
{:freq 1913, :word "odeur", :type "(subst.)"}
{:freq 1912, :word "choisir", :type "(verbe)"}
{:freq 1912, :word "musique", :type "(subst.)"}
{:freq 1909, :word "oncle", :type "(subst.)"}
{:freq 1906, :word "événement", :type "(subst.)"}
{:freq 1905, :word "prononcer", :type "(verbe)"}
{:freq 1905, :word "village", :type "(subst.)"}
{:freq 1904, :word "taire", :type "(verbe)"}
{:freq 1903, :word "envie", :type "(subst.)"}
{:freq 1902, :word "midi", :type "(subst.)"}
{:freq 1953, :word "ensemble", :type "(adv.)"}
{:freq 1990, :word "expression", :type "(subst)"}
{:freq 1896, :word "herbe", :type "(subst.)"}
{:freq 1896, :word "vieux", :type "(subst.)"}
{:freq 1895, :word "pluie", :type "(subst.)"}
{:freq 1894, :word "près", :type "(adv.)"}
{:freq 1892, :word "bas", :type "(subst.)"}
{:freq 1886, :word "rêver", :type "(verbe)"}
{:freq 1884, :word "appuyer", :type "(verbe)"}
{:freq 1884, :word "étendre", :type "(verbe)"}
{:freq 1882, :word "après", :type "(adv.)"}
{:freq 1882, :word "général", :type "(subst.)"}
{:freq 1880, :word "lutte", :type "(subst.)"}
{:freq 1880, :word "trembler", :type "(verbe)"}
{:freq 1877, :word "réponse", :type "(subst.)"}
{:freq 1873, :word "grâce", :type "(subst.)"}
{:freq 1872, :word "espace", :type "(subst.)"}
{:freq 1866, :word "habitude", :type "(subst.)"}
{:freq 1864, :word "défendre", :type "(verbe)"}
{:freq 1861, :word "mémoire", :type "(subst.)"}
{:freq 1856, :word "créer", :type "(verbe)"}
{:freq 1856, :word "grave", :type "(adj.)"}
{:freq 1853, :word "maintenir", :type "(verbe)"}
{:freq 1845, :word "verre", :type "(subst.)"}
{:freq 1840, :word "campagne", :type "(subst.)"}
{:freq 1838, :word "quelqu'un", :type "(pron.)"}
{:freq 1832, :word "juge", :type "(subst.)"}
{:freq 1827, :word "genou", :type "(subst.)"}
{:freq 1818, :word "impossible", :type "(adj.)"}
{:freq 1816, :word "fête", :type "(subst.)"}
{:freq 1814, :word "indiquer", :type "(verbe)"}
{:freq 1813, :word "prêt", :type "(adj.)"}
{:freq 1812, :word "promettre", :type "(verbe)"}
{:freq 1810, :word "relever", :type "(verbe)"}
{:freq 1809, :word "abandonner", :type "(verbe)"}
{:freq 1797, :word "ignorer", :type "(verbe)"}
{:freq 1792, :word "large", :type "(adj.)"}
{:freq 1792, :word "parent", :type "(subst.)"}
{:freq 1790, :word "colère", :type "(subst.)"}
{:freq 1951, :word "exprimer", :type "(verbe)"}
{:freq 1788, :word "étoile", :type "(subst.)"}
{:freq 1787, :word "devoir", :type "(subst.)"}
{:freq 1784, :word "conscience", :type "(subst)"}
{:freq 1861, :word "existence", :type "(subst.)"}
{:freq 1769, :word "accompagner", :type "(verb)"}
{:freq 1769, :word "immobile", :type "(adj.)"}
{:freq 1763, :word "adresser", :type "(verbe)"}
{:freq 1757, :word "observer", :type "(verbe)"}
{:freq 1756, :word "juste", :type "(adj.)"}
{:freq 1756, :word "puissance", :type "(subst.)"}
{:freq 1755, :word "matière", :type "(subst.)"}
{:freq 1754, :word "sable", :type "(subst.)"}
{:freq 1753, :word "séparer", :type "(verbe)"}
{:freq 1752, :word "marier", :type "(verbe)"}
{:freq 1751, :word "prévoir", :type "(verbe)"}
{:freq 1751, :word "vivant", :type "(adj.)"}
{:freq 1746, :word "accord", :type "(subst.)"}
{:freq 1745, :word "hiver", :type "(subst.)"}
{:freq 1744, :word "retour", :type "(subst.)"}
{:freq 1740, :word "autrefois", :type "(adv.)"}
{:freq 1736, :word "genre", :type "(subst.)"}
{:freq 1734, :word "d'autres", :type "(pron.)"}
{:freq 1733, :word "vif", :type "(adj.)"}
{:freq 1731, :word "amener", :type "(verbe)"}
{:freq 1729, :word "obliger", :type "(verbe)"}
{:freq 1725, :word "acte", :type "(subst.)"}
{:freq 1724, :word "image", :type "(subst.)"}
{:freq 1722, :word "horizon", :type "(subst.)"}
{:freq 1720, :word "éclairer", :type "(verbe)"}
{:freq 1719, :word "poursuivre", :type "(verbe)"}
{:freq 1717, :word "danger", :type "(subst.)"}
{:freq 1717, :word "livrer", :type "(verbe)"}
{:freq 1716, :word "rôle", :type "(subst.)"}
{:freq 1711, :word "escalier", :type "(subst.)"}
{:freq 1708, :word "goût", :type "(subst.)"}
{:freq 1706, :word "bête", :type "(subst.)"}
{:freq 1706, :word "ceci", :type "(pron.)"}
{:freq 1705, :word "recherche", :type "(subst.)"}
{:freq 1704, :word "membre", :type "(subst.)"}
{:freq 1700, :word "pain", :type "(subst.)"}
{:freq 1697, :word "phrase", :type "(subst.)"}
{:freq 1696, :word "contenir", :type "(verbe)"}
{:freq 1692, :word "rire", :type "(subst.)"}
{:freq 1688, :word "fuir", :type "(verbe)"}
{:freq 1687, :word "couler", :type "(verbe)"}
{:freq 1687, :word "terme", :type "(subst.)"}
{:freq 1680, :word "eaux", :type "(subst.)"}
{:freq 1679, :word "moyen", :type "(adj.)"}
{:freq 1678, :word "police", :type "(subst.)"}
{:freq 1678, :word "rocher", :type "(subst.)"}
{:freq 1676, :word "proposer", :type "(verbe)"}
{:freq 1676, :word "tranquille", :type "(adj.)"}
{:freq 1675, :word "unique", :type "(adj.)"}
{:freq 1673, :word "éprouver", :type "(verbe)"}
{:freq 1667, :word "retenir", :type "(verbe)"}
{:freq 1667, :word "type", :type "(subst.)"}
{:freq 1656, :word "vin", :type "(subst.)"}
{:freq 1649, :word "supérieur", :type "(adj.)"}
{:freq 1645, :word "attacher", :type "(verbe)"}
{:freq 1642, :word "voler", :type "(verbe)"}
{:freq 1638, :word "sec", :type "(adj.)"}
{:freq 1636, :word "justice", :type "(subst.)"}
{:freq 1635, :word "époque", :type "(subst.)"}
{:freq 1635, :word "passage", :type "(subst.)"}
{:freq 1635, :word "somme", :type "(subst.)"}
{:freq 1634, :word "science", :type "(subst.)"}
{:freq 1633, :word "surprendre", :type "(verbe)"}
{:freq 1626, :word "côte", :type "(subst.)"}
{:freq 1620, :word "doucement", :type "(adv.)"}
{:freq 1617, :word "gauche", :type "(subst.)"}
{:freq 1613, :word "faute", :type "(subst.)"}
{:freq 1612, :word "école", :type "(subst.)"}
{:freq 1603, :word "bon", :type "(subst.)"}
{:freq 1603, :word "ensemble", :type "(subst.)"}
{:freq 1602, :word "rayon", :type "(subst.)"}
{:freq 1601, :word "briser", :type "(verbe)"}
{:freq 1598, :word "sujet", :type "(subst.)"}
{:freq 1596, :word "imaginer", :type "(verbe)"}
{:freq 1593, :word "diriger", :type "(verbe)"}
{:freq 1591, :word "douze", :type "(numér.)"}
{:freq 1680, :word "en", :type "(adv.)"}
{:freq 1587, :word "l'une", :type "(pron.)"}
{:freq 1585, :word "dernier", :type "(subst.)"}
{:freq 1582, :word "avis", :type "(subst.)"}
{:freq 1581, :word "parvenir", :type "(verbe)"}
{:freq 1578, :word "ouvert", :type "(adj.)"}
{:freq 1574, :word "pénétrer", :type "(verbe)"}
{:freq 1573, :word "poète", :type "(subst.)"}
{:freq 1571, :word "meilleur", :type "(adj.)"}
{:freq 1570, :word "paysan", :type "(subst.)"}
{:freq 1569, :word "remarquer", :type "(verbe)"}
{:freq 1568, :word "chair", :type "(subst.)"}
{:freq 1568, :word "éviter", :type "(verbe)"}
{:freq 1568, :word "soudain", :type "(adv.)"}
{:freq 1561, :word "succès", :type "(subst.)"}
{:freq 1558, :word "île", :type "(subst.)"}
{:freq 1556, :word "établir", :type "(verbe)"}
{:freq 1553, :word "réussir", :type "(verbe)"}
{:freq 1550, :word "pencher", :type "(verbe)"}
{:freq 1547, :word "habiter", :type "(verbe)"}
{:freq 1546, :word "entourer", :type "(verbe)"}
{:freq 1544, :word "déclarer", :type "(verbe)"}
{:freq 1544, :word "détail", :type "(subst.)"}
{:freq 1543, :word "arme", :type "(subst.)"}
{:freq 1543, :word "réalité", :type "(subst.)"}
{:freq 1539, :word "confiance", :type "(subst.)"}
{:freq 1539, :word "masse", :type "(subst.)"}
{:freq 1537, :word "crise", :type "(subst.)"}
{:freq 1535, :word "étonner", :type "(verbe)"}
{:freq 1535, :word "poste", :type "(subst.)"}
{:freq 1528, :word "dresser", :type "(verbe)"}
{:freq 1528, :word "durer", :type "(verbe)"}
{:freq 1527, :word "depuis", :type "(adv.)"}
{:freq 1527, :word "faux", :type "(adj.)"}
{:freq 1527, :word "fixer", :type "(verbe)"}
{:freq 1526, :word "énorme", :type "(adj.)"}
{:freq 1524, :word "principe", :type "(subst.)"}
{:freq 1517, :word "direction", :type "(subst.)"}
{:freq 1514, :word "taille", :type "(subst.)"}
{:freq 1512, :word "désirer", :type "(verbe)"}
{:freq 1512, :word "santé", :type "(subst.)"}
{:freq 1511, :word "ventre", :type "(subst.)"}
{:freq 1508, :word "marché", :type "(subst.)"}
{:freq 1506, :word "puissant", :type "(adj.)"}
{:freq 1505, :word "simplement", :type "(adv.)"}
{:freq 1504, :word "environ", :type "(adv.)"}
{:freq 1504, :word "tellement", :type "(adv.)"}
{:freq 1503, :word "arracher", :type "(verbe)"}
{:freq 1636, :word "entraîner", :type "(verbe)"}
{:freq 1501, :word "soutenir", :type "(verbe)"}
{:freq 1499, :word "couper", :type "(verbe)"}
{:freq 1498, :word "trou", :type "(subst.)"}
{:freq 1497, :word "inconnu", :type "(adj.)"}
{:freq 1495, :word "pont", :type "(subst.)"}
{:freq 1494, :word "lune", :type "(subst.)"}
{:freq 1491, :word "dehors", :type "(adv.)"}
{:freq 1490, :word "certes", :type "(adv.)"}
{:freq 1489, :word "beaux", :type "(adj.)"}
{:freq 1489, :word "robe", :type "(subst.)"}
{:freq 1488, :word "douter", :type "(verbe)"}
{:freq 1487, :word "retirer", :type "(verbe)"}
{:freq 1486, :word "cesse", :type "(subst.)"}
{:freq 1485, :word "brusquement", :type "(adv.)"}
{:freq 1507, :word "entrée", :type "(subst.)"}
{:freq 1482, :word "source", :type "(subst.)"}
{:freq 1471, :word "camarade", :type "(subst.)"}
{:freq 1470, :word "dent", :type "(subst.)"}
{:freq 1470, :word "quant à", :type "(prép.)"}
{:freq 1469, :word "connaissance", :type "(subst.)"}
{:freq 1469, :word "cou", :type "(subst.)"}
{:freq 1466, :word "but", :type "(subst.)"}
{:freq 1460, :word "promener", :type "(verbe)"}
{:freq 1460, :word "vague", :type "(subst.)"}
{:freq 1459, :word "élément", :type "(subst.)"}
{:freq 1457, :word "fil", :type "(subst.)"}
{:freq 1457, :word "voie", :type "(subst.)"}
{:freq 1453, :word "nez", :type "(subst.)"}
{:freq 1447, :word "forcer", :type "(verbe)"}
{:freq 1446, :word "particulier", :type "(adj.)"}
{:freq 1443, :word "discours", :type "(subst.)"}
{:freq 1443, :word "maladie", :type "(subst.)"}
{:freq 1442, :word "chaleur", :type "(subst.)"}
{:freq 1440, :word "gloire", :type "(subst.)"}
{:freq 1438, :word "vide", :type "(adj.)"}
{:freq 1497, :word "examiner", :type "(verbe)"}
{:freq 1436, :word "revoir", :type "(verbe)"}
{:freq 1434, :word "aide", :type "(subst.)"}
{:freq 1432, :word "début", :type "(subst.)"}
{:freq 1432, :word "ennemi", :type "(subst.)"}
{:freq 1431, :word "second", :type "(adj.)"}
{:freq 1426, :word "aile", :type "(subst.)"}
{:freq 1426, :word "flamme", :type "(subst.)"}
{:freq 1422, :word "chaise", :type "(subst.)"}
{:freq 1422, :word "lourd", :type "(adj.)"}
{:freq 1422, :word "sein", :type "(subst.)"}
{:freq 1422, :word "véritable", :type "(adj.)"}
{:freq 1421, :word "toit", :type "(subst.)"}
{:freq 1420, :word "remplir", :type "(verbe)"}
{:freq 1419, :word "terminer", :type "(verbe)"}
{:freq 1419, :word "vaste", :type "(adj.)"}
{:freq 1418, :word "nu", :type "(adj.)"}
{:freq 1413, :word "poussière", :type "(subst.)"}
{:freq 1411, :word "nord", :type "(subst.)"}
{:freq 1397, :word "tenter", :type "(verbe)"}
{:freq 1393, :word "émotion", :type "(subst.)"}
{:freq 1390, :word "hors", :type "(prép.)"}
{:freq 1390, :word "un", :type "(numér.)"}
{:freq 1389, :word "remonter", :type "(verbe)"}
{:freq 1388, :word "révolution", :type "(subst)"}
{:freq 1388, :word "théâtre", :type "(subst.)"}
{:freq 1386, :word "armée", :type "(subst.)"}
{:freq 1386, :word "court", :type "(adj.)"}
{:freq 1385, :word "noir", :type "(subst.)"}
{:freq 1384, :word "appartement", :type "(subs)"}
{:freq 1384, :word "semblable", :type "(adj.)"}
{:freq 1383, :word "installer", :type "(verbe)"}
{:freq 1382, :word "haine", :type "(subst.)"}
{:freq 1382, :word "jeune", :type "(subst.)"}
{:freq 1381, :word "position", :type "(subst.)"}
{:freq 1381, :word "seconde", :type "(subst.)"}
{:freq 1379, :word "frais", :type "(adj.)"}
{:freq 1378, :word "appel", :type "(subst.)"}
{:freq 1375, :word "soulever", :type "(verbe)"}
{:freq 1475, :word "espoir", :type "(subst.)"}
{:freq 1373, :word "allumer", :type "(verbe)"}
{:freq 1373, :word "imposer", :type "(verbe)"}
{:freq 1372, :word "avant", :type "(adv.)"}
{:freq 1371, :word "respirer", :type "(verbe)"}
{:freq 1370, :word "arrière", :type "(subst.)"}
{:freq 1370, :word "baisser", :type "(verbe)"}
{:freq 1370, :word "droite", :type "(subst.)"}
{:freq 1370, :word "poitrine", :type "(subst.)"}
{:freq 1369, :word "mort", :type "(adj.)"}
{:freq 1368, :word "jeunesse", :type "(subst.)"}
{:freq 1367, :word "bureau", :type "(subst.)"}
{:freq 1367, :word "sac", :type "(subst.)"}
{:freq 1366, :word "étranger", :type "(adj.)"}
{:freq 1363, :word "courage", :type "(subst.)"}
{:freq 1363, :word "souffler", :type "(verbe)"}
{:freq 1360, :word "jaune", :type "(adj.)"}
{:freq 1360, :word "page", :type "(subst.)"}
{:freq 1359, :word "étranger", :type "(subst.)"}
{:freq 1356, :word "etc", :type "(adv.)"}
{:freq 1353, :word "miser", :type "(subst.)"}
{:freq 1352, :word "passé", :type "(subst.)"}
{:freq 1351, :word "rapide", :type "(adj.)"}
{:freq 1350, :word "digne", :type "(adj.)"}
{:freq 1349, :word "chaud", :type "(adj.)"}
{:freq 1349, :word "propos", :type "(subst.)"}
{:freq 1348, :word "attirer", :type "(verbe)"}
{:freq 1344, :word "prêter", :type "(verbe)"}
{:freq 1336, :word "clair", :type "(adj.)"}
{:freq 1329, :word "amuser", :type "(verbe)"}
{:freq 1327, :word "occasion", :type "(subst.)"}
{:freq 1325, :word "voile", :type "(subst.)"}
{:freq 1323, :word "éclater", :type "(verbe)"}
{:freq 1322, :word "importance", :type "(subst)"}
{:freq 1322, :word "quartier", :type "(subst.)"}
{:freq 1322, :word "soi", :type "(pron.)"}
{:freq 1318, :word "auteur", :type "(subst.)"}