Full Code of dropbox/zxcvbn for AI

master 67c4ece9efc4 cached
35 files
6.6 MB
1.7M tokens
98 symbols
1 requests
Download .txt
Showing preview only (6,955K chars total). Download the full file or copy to clipboard to get everything.
Repository: dropbox/zxcvbn
Branch: master
Commit: 67c4ece9efc4
Files: 35
Total size: 6.6 MB

Directory structure:
gitextract_dnygf_24/

├── .gitignore
├── .npmignore
├── .travis.yml
├── .zuul.yml
├── LICENSE.txt
├── README.md
├── bower.json
├── data/
│   ├── english_wikipedia.txt
│   ├── female_names.txt
│   ├── male_names.txt
│   ├── passwords.txt
│   ├── surnames.txt
│   └── us_tv_and_film.txt
├── data-scripts/
│   ├── build_frequency_lists.py
│   ├── build_keyboard_adjacency_graphs.py
│   ├── count_us_census.py
│   ├── count_wikipedia.py
│   ├── count_wiktionary.py
│   └── count_xato.coffee
├── demo/
│   ├── demo.coffee
│   ├── index.html
│   ├── jquery.js
│   ├── mustache.js
│   └── require.js
├── dist/
│   └── zxcvbn.js
├── package.json
├── src/
│   ├── adjacency_graphs.coffee
│   ├── feedback.coffee
│   ├── frequency_lists.coffee
│   ├── main.coffee
│   ├── matching.coffee
│   ├── scoring.coffee
│   └── time_estimates.coffee
└── test/
    ├── test-matching.coffee
    └── test-scoring.coffee

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
*.js
!zxcvbn*.js
!demo/jquery.js
!demo/require.js
!demo/mustache.js
node_modules
lib
*~
*.swp
*.swo
tmux-*.log


================================================
FILE: .npmignore
================================================
.git
.gitignore
bower.json
data
data-scripts
demo
test



================================================
FILE: .travis.yml
================================================
sudo: false
language: node_js
node_js:
  - node
script: npm run test


================================================
FILE: .zuul.yml
================================================
ui: tape
browsers:
    - name: chrome
      version: [36, -2..latest]
    - name: safari
      version: -2..latest
    - name: firefox
      version: -2..latest
    - name: ie
      version: 9..latest
    - name: opera
      version: -1..latest
    - name: android
      version: -2..latest
browserify:
   - transform: coffeeify
   - options:
       extensions:
         - .coffee


================================================
FILE: LICENSE.txt
================================================
Copyright (c) 2012-2016 Dan Wheeler and Dropbox, Inc.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


================================================
FILE: README.md
================================================
```
_________________________________________________/\/\___________________
_/\/\/\/\/\__/\/\__/\/\____/\/\/\/\__/\/\__/\/\__/\/\________/\/\/\/\___
_____/\/\______/\/\/\____/\/\________/\/\__/\/\__/\/\/\/\____/\/\__/\/\_
___/\/\________/\/\/\____/\/\__________/\/\/\____/\/\__/\/\__/\/\__/\/\_
_/\/\/\/\/\__/\/\__/\/\____/\/\/\/\______/\______/\/\/\/\____/\/\__/\/\_
________________________________________________________________________
```

[![Build Status](https://travis-ci.org/dropbox/zxcvbn.svg?branch=master)](https://travis-ci.org/dropbox/zxcvbn)
[![Sauce Test Status](https://saucelabs.com/browser-matrix/dropbox-zxcvbn.svg)](https://saucelabs.com/u/dropbox-zxcvbn)

`zxcvbn` is a password strength estimator inspired by password crackers. Through pattern matching and conservative estimation, it recognizes and weighs 30k common passwords, common names and surnames according to US census data, popular English words from Wikipedia and US television and movies, and other common patterns like dates, repeats (`aaa`), sequences (`abcd`), keyboard patterns (`qwertyuiop`), and l33t speak.

Consider using zxcvbn as an algorithmic alternative to password composition policy — it is more secure, flexible, and usable when sites require a minimal complexity score in place of annoying rules like "passwords must contain three of {lower, upper, numbers, symbols}".

* __More secure__: policies often fail both ways, allowing weak passwords (`P@ssword1`) and disallowing strong passwords.
* __More flexible__: zxcvbn allows many password styles to flourish so long as it detects sufficient complexity — passphrases are rated highly given enough uncommon words, keyboard patterns are ranked based on length and number of turns, and capitalization adds more complexity when it's unpredictaBle.
* __More usable__: zxcvbn is designed to power simple, rule-free interfaces that give instant feedback. In addition to strength estimation, zxcvbn includes minimal, targeted verbal feedback that can help guide users towards less guessable passwords.

For further detail and motivation, please refer to the USENIX Security '16 [paper and presentation](https://www.usenix.org/conference/usenixsecurity16/technical-sessions/presentation/wheeler).

At Dropbox we use zxcvbn ([Release notes](https://github.com/dropbox/zxcvbn/releases)) on our web, desktop, iOS and Android clients. If JavaScript doesn't work for you, others have graciously ported the library to these languages:

* [`zxcvbn-python`](https://github.com/dwolfhub/zxcvbn-python) (Python)
* [`zxcvbn-cpp`](https://github.com/rianhunter/zxcvbn-cpp) (C/C++/Python/JS)
* [`zxcvbn-c`](https://github.com/tsyrogit/zxcvbn-c) (C/C++)
* [`zxcvbn-rs`](https://github.com/shssoichiro/zxcvbn-rs) (Rust)
* [`zxcvbn-go`](https://github.com/nbutton23/zxcvbn-go) (Go)
* [`zxcvbn4j`](https://github.com/nulab/zxcvbn4j) (Java)
* [`nbvcxz`](https://github.com/GoSimpleLLC/nbvcxz) (Java)
* [`zxcvbn-ruby`](https://github.com/envato/zxcvbn-ruby) (Ruby)
* [`zxcvbn-js`](https://github.com/bitzesty/zxcvbn-js) (Ruby [via ExecJS])
* [`zxcvbn-ios`](https://github.com/dropbox/zxcvbn-ios) (Objective-C)
* [`zxcvbn-cs`](https://github.com/mickford/zxcvbn-cs) (C#/.NET)
* [`szxcvbn`](https://github.com/tekul/szxcvbn) (Scala)
* [`zxcvbn-php`](https://github.com/bjeavons/zxcvbn-php) (PHP)
* [`zxcvbn-api`](https://github.com/wcjr/zxcvbn-api) (REST)
* [`ocaml-zxcvbn`](https://github.com/cryptosense/ocaml-zxcvbn) (OCaml bindings for `zxcvbn-c`)

Integrations with other frameworks:
* [`angular-zxcvbn`](https://github.com/ghostbar/angular-zxcvbn) (AngularJS)

# Installation

zxcvbn detects and supports CommonJS (node, browserify) and AMD (RequireJS). In the absence of those, it adds a single function `zxcvbn()` to the global namespace.

## Bower

Install [`node`](https://nodejs.org/download/) and [`bower`](http://bower.io/) if you haven't already.

Get `zxcvbn`:

``` shell
cd /path/to/project/root
bower install zxcvbn
```

Add this script to your `index.html`:

``` html
<script src="bower_components/zxcvbn/dist/zxcvbn.js">
</script>
```

To make sure it loaded properly, open in a browser and type `zxcvbn('Tr0ub4dour&3')` into the console.

To pull in updates and bug fixes:

``` shell
bower update zxcvbn
```

## Node / npm / MeteorJS

zxcvbn works identically on the server.

``` shell
$ npm install zxcvbn
$ node
> var zxcvbn = require('zxcvbn');
> zxcvbn('Tr0ub4dour&3');
```

## RequireJS

Add [`zxcvbn.js`](https://raw.githubusercontent.com/dropbox/zxcvbn/master/dist/zxcvbn.js) to your project (using bower, npm or direct download) and import as usual:

``` javascript
requirejs(["relpath/to/zxcvbn"], function (zxcvbn) {
    console.log(zxcvbn('Tr0ub4dour&3'));
});
```

## Browserify / Webpack

If you're using `npm` and have `require('zxcvbn')` somewhere in your code, browserify and webpack should just work.

``` shell
$ npm install zxcvbn
$ echo "console.log(require('zxcvbn'))" > mymodule.js
$ browserify mymodule.js > browserify_bundle.js
$ webpack mymodule.js webpack_bundle.js
```

But we recommend against bundling zxcvbn via tools like browserify and webpack, for three reasons:

* Minified and gzipped, zxcvbn is still several hundred kilobytes. (Significantly grows bundle size.)
* Most sites will only need zxcvbn on a few pages (registration, password reset).
* Most sites won't need `zxcvbn()` immediately upon page load; since `zxcvbn()` is typically called in response to user events like filling in a password, there's ample time to fetch `zxcvbn.js` after initial html/css/js loads and renders.

See the [performance](#perf) section below for tips on loading zxcvbn stand-alone.

Tangentially, if you want to build your own standalone, consider tweaking the browserify pipeline used to generate `dist/zxcvbn.js`:

``` shell
$ browserify --debug --standalone zxcvbn \
    -t coffeeify --extension='.coffee' \
    -t uglifyify \
    src/main.coffee | exorcist dist/zxcvbn.js.map >| dist/zxcvbn.js
```

* `--debug` adds an inline source map to the bundle. `exorcist` pulls it out into `dist/zxcvbn.js.map`.
* `--standalone zxcvbn` exports a global `zxcvbn` when CommonJS/AMD isn't detected.
* `-t coffeeify --extension='.coffee'` compiles `.coffee` to `.js` before bundling. This is convenient as it allows `.js` modules to import from `.coffee` modules and vice-versa. Instead of this transform, one could also compile everything to `.js` first (`npm run prepublish`) and point `browserify` to `lib` instead of `src`.
* `-t uglifyify` minifies the bundle through UglifyJS, maintaining proper source mapping.

## Manual installation

Download [zxcvbn.js](https://raw.githubusercontent.com/dropbox/zxcvbn/master/dist/zxcvbn.js).

Add to your .html:

``` html
<script type="text/javascript" src="path/to/zxcvbn.js"></script>
```

# Usage

[try zxcvbn interactively](https://lowe.github.io/tryzxcvbn/) to see these docs in action.

``` javascript
zxcvbn(password, user_inputs=[])
```

`zxcvbn()` takes one required argument, a password, and returns a result object with several properties:

``` coffee
result.guesses            # estimated guesses needed to crack password
result.guesses_log10      # order of magnitude of result.guesses

result.crack_times_seconds # dictionary of back-of-the-envelope crack time
                          # estimations, in seconds, based on a few scenarios:
{
  # online attack on a service that ratelimits password auth attempts.
  online_throttling_100_per_hour

  # online attack on a service that doesn't ratelimit,
  # or where an attacker has outsmarted ratelimiting.
  online_no_throttling_10_per_second

  # offline attack. assumes multiple attackers,
  # proper user-unique salting, and a slow hash function
  # w/ moderate work factor, such as bcrypt, scrypt, PBKDF2.
  offline_slow_hashing_1e4_per_second

  # offline attack with user-unique salting but a fast hash
  # function like SHA-1, SHA-256 or MD5. A wide range of
  # reasonable numbers anywhere from one billion - one trillion
  # guesses per second, depending on number of cores and machines.
  # ballparking at 10B/sec.
  offline_fast_hashing_1e10_per_second
}

result.crack_times_display # same keys as result.crack_times_seconds,
                           # with friendlier display string values:
                           # "less than a second", "3 hours", "centuries", etc.

result.score      # Integer from 0-4 (useful for implementing a strength bar)

  0 # too guessable: risky password. (guesses < 10^3)

  1 # very guessable: protection from throttled online attacks. (guesses < 10^6)

  2 # somewhat guessable: protection from unthrottled online attacks. (guesses < 10^8)

  3 # safely unguessable: moderate protection from offline slow-hash scenario. (guesses < 10^10)

  4 # very unguessable: strong protection from offline slow-hash scenario. (guesses >= 10^10)

result.feedback   # verbal feedback to help choose better passwords. set when score <= 2.

  result.feedback.warning     # explains what's wrong, eg. 'this is a top-10 common password'.
                              # not always set -- sometimes an empty string

  result.feedback.suggestions # a possibly-empty list of suggestions to help choose a less
                              # guessable password. eg. 'Add another word or two'

result.sequence   # the list of patterns that zxcvbn based the
                  # guess calculation on.

result.calc_time  # how long it took zxcvbn to calculate an answer,
                  # in milliseconds.
````

The optional `user_inputs` argument is an array of strings that zxcvbn will treat as an extra dictionary. This can be whatever list of strings you like, but is meant for user inputs from other fields of the form, like name and email. That way a password that includes a user's personal information can be heavily penalized. This list is also good for site-specific vocabulary — Acme Brick Co. might want to include ['acme', 'brick', 'acmebrick', etc].

# <a name="perf"></a>Performance

## runtime latency

zxcvbn operates below human perception of delay for most input: ~5-20ms for ~25 char passwords on modern browsers/CPUs, ~100ms for passwords around 100 characters. To bound runtime latency for really long passwords, consider sending `zxcvbn()` only the first 100 characters or so of user input.

## script load latency

`zxcvbn.js` bundled and minified is about 400kB gzipped or 820kB uncompressed, most of which is dictionaries. Consider these tips if you're noticing page load latency on your site.

* Make sure your server is configured to compress static assets for browsers that support it. ([nginx tutorial](https://rtcamp.com/tutorials/nginx/enable-gzip/), [Apache/IIS tutorial](http://betterexplained.com/articles/how-to-optimize-your-site-with-gzip-compression/).)

Then try one of these alternatives:

1. Put your `<script src="zxcvbn.js">` tag at the end of your html, just before the closing `</body>` tag. This ensures your page loads and renders before the browser fetches and loads `zxcvbn.js`. The downside with this approach is `zxcvbn()` becomes available later than had it been included in `<head>` — not an issue on most signup pages where users are filling out other fields first.

2. If you're using RequireJS, try loading `zxcvbn.js` separately from your main bundle. Something to watch out for: if `zxcvbn.js` is required inside a keyboard handler waiting for user input, the entire script might be loaded only after the user presses their first key, creating nasty latency. Avoid this by calling your handler once upon page load, independent of user input, such that the `requirejs()` call runs earlier.

3. Use the HTML5 [`async`](http://www.w3schools.com/tags/att_script_async.asp) script attribute. Downside: [doesn't work](http://caniuse.com/#feat=script-async) in IE7-9 or Opera Mini.

4. Include an inline `<script>` in `<head>` that asynchronously loads `zxcvbn.js` in the background. Advantage over (3): it works in older browsers.

``` javascript
// cross-browser asynchronous script loading for zxcvbn.
// adapted from http://friendlybit.com/js/lazy-loading-asyncronous-javascript/

(function() {

  var ZXCVBN_SRC = 'path/to/zxcvbn.js';

  var async_load = function() {
    var first, s;
    s = document.createElement('script');
    s.src = ZXCVBN_SRC;
    s.type = 'text/javascript';
    s.async = true;
    first = document.getElementsByTagName('script')[0];
    return first.parentNode.insertBefore(s, first);
  };

  if (window.attachEvent != null) {
    window.attachEvent('onload', async_load);
  } else {
    window.addEventListener('load', async_load, false);
  }

}).call(this);
```

# Development

Bug reports and pull requests welcome!

``` shell
git clone https://github.com/dropbox/zxcvbn.git
```

zxcvbn is built with CoffeeScript, browserify, and uglify-js. CoffeeScript source lives in `src`, which gets compiled, bundled and minified into `dist/zxcvbn.js`.

``` shell
npm run build    # builds dist/zxcvbn.js
npm run watch    # same, but quickly rebuilds as changes are made in src.
```

For debugging, both `build` and `watch` output an external source map `dist/zxcvbn.js.map` that points back to the original CoffeeScript code.

Two source files, `adjacency_graphs.coffee` and `frequency_lists.coffee`, are generated by python scripts in `data-scripts` that read raw data from the `data` directory.

For node developers, in addition to `dist`, the zxcvbn `npm` module includes a `lib` directory (hidden from git) that includes one compiled `.js` and `.js.map` file for every `.coffee` in `src`. See `prepublish` in `package.json` to learn more.

# Acknowledgments

[Dropbox](https://dropbox.com) for supporting open source!

Mark Burnett for releasing his 10M password corpus and for his 2005 book, [Perfect Passwords: Selection, Protection, Authentication](http://www.amazon.com/Perfect-Passwords-Selection-Protection-Authentication/dp/1597490415).

Wiktionary contributors for building a [frequency list of English words](http://en.wiktionary.org/wiki/Wiktionary:Frequency_lists) as used in television and movies.

Researchers at Concordia University for [studying password estimation rigorously](http://www.concordia.ca/cunews/main/stories/2015/03/25/does-your-password-pass-muster.html) and recommending zxcvbn.

And [xkcd](https://xkcd.com/936/) for the inspiration :+1::horse::battery::heart:


================================================
FILE: bower.json
================================================
{
    "name": "zxcvbn",
    "description": "realistic password strength estimation",
    "main": "dist/zxcvbn.js",
    "keywords": [
        "password",
        "passphrase",
        "strength",
        "quality",
        "estimation",
        "estimate",
        "meter",
        "pattern",
        "matcher",
        "security",
        "authentication",
        "cracking",
        "scoring",
        "entropy",
        "bruteforce"
    ],
    "ignore": [
        "/.*",
        "*.json",
        "node_modules",
        "data",
        "data-scripts",
        "demo",
        "lib",
        "src",
        "test"
        ]
}


================================================
FILE: data/english_wikipedia.txt
================================================
the                124933855
of                 59700086
and                51078530
in                 50589567
to                 35745630
was                21341963
is                 17991085
for                14758238
as                 14213253
on                 14139144
with               12471395
by                 12412679
he                 11081368
that               10000925
at                 9547254
from               9187288
his                8728696
it                 8458961
an                 6829504
were               5781035
are                5535638
which              5312331
doc                4963658
https              4954504
this               4704156
also               4553593
be                 4463369
or                 4295561
has                4291326
had                4137407
first              4045747
one                3714596
their              3565387
its                3455852
after              3377471
new                3376832
not                3346386
but                3307213
who                3247808
they               3123793
two                3026951
have               2983624
her                2980649
she                2894528
been               2688355
other              2551242
all                2499161
when               2411877
time               2298776
during             2250922
there              2221344
into               2125352
school             2043393
more               1955406
may                1949348
years              1893954
over               1842609
up                 1836441
only               1814279
year               1782931
most               1772627
would              1728932
world              1722371
city               1699393
some               1666537
where              1666317
can                1654022
between            1649795
later              1649389
three              1645289
out                1597870
state              1592366
such               1569683
then               1565083
national           1547692
him                1544772
about              1539554
used               1539060
made               1526161
known              1520355
under              1518615
many               1506673
university         1483047
united             1466508
while              1455782
part               1422456
season             1414470
team               1396122
these              1395506
american           1382874
than               1378214
film               1376800
second             1373709
born               1370443
south              1365154
no                 1361078
became             1357834
states             1321070
well               1319406
war                1302062
through            1299158
being              1298816
including          1290340
both               1272069
before             1253373
north              1243703
high               1239862
however            1227608
people             1227272
family             1208756
early              1201569
history            1183073
album              1172693
area               1170271
them               1156607
series             1144459
against            1142299
until              1140888
since              1139453
district           1127027
county             1123930
name               1119314
work               1111787
life               1107385
group              1096888
music              1082012
de                 1077152
following          1070883
number             1067952
company            1061904
will               1059740
several            1054663
four               1054535
called             1037851
played             1026362
released           1015135
career             996557
league             988404
west               975095
game               970087
government         964851
house              962500
so                 934441
each               933635
john               926433
based              924802
day                923489
same               914263
won                906206
now                896472
use                888408
station            887316
club               884273
international      884058
town               882631
located            882254
population         881661
general            879738
college            861704
east               861388
found              850286
age                842684
march              840665
end                838565
september          833411
began              833057
home               823865
public             823754
if                 822323
church             821018
line               818719
june               817104
river              816319
member             811989
system             811222
place              809646
like               809213
century            809053
band               805725
july               803983
york               801901
january            798685
because            795465
october            794590
song               791885
did                791773
august             790144
best               783745
long               782671
any                779937
former             778937
back               778085
april              773605
british            770628
party              769192
around             763879
named              759140
held               755460
village            754978
football           754894
show               745164
local              743142
november           740747
took               738791
service            737841
december           734544
could              733873
built              726986
another            726504
major              721143
within             719738
along              719354
members            703834
five               703828
single             701282
due                700644
although           698715
small              691200
old                689443
left               687123
final              687015
large              684758
include            678506
building           674732
served             673555
president          673116
received           671624
games              666616
death              659732
february           657360
main               656839
third              656518
off                651534
very               651440
set                650400
last               649307
children           644319
own                643542
those              642443
order              642322
species            636920
park               636836
law                634941
still              631854
air                626730
published          621642
said               619414
road               619059
died               618902
book               617486
men                617316
women              613228
army               611362
do                 609809
often              608976
according          605235
education          605222
central            604180
country            602251
division           601552
english            599443
great              596917
top                595737
what               595194
included           589648
development        589477
french             582185
community          581233
among              580265
water              579020
play               577883
side               574809
much               572458
son                571586
list               570745
king               570342
times              570143
near               566656
late               565803
just               564243
down               563226
form               562705
original           561036
different          558444
center             557886
even               557421
power              553454
led                552569
again              551461
students           550352
german             544342
way                544238
white              542483
london             541815
moved              539927
court              537783
father             537229
us                 530757
six                528829
land               527489
ii                 527015
council            526629
island             523877
u.s.               522045
man                520707
you                519298
record             519294
million            519079
research           519070
art                518699
established        514247
award              514148
street             512305
military           506882
television         506332
make               504380
player             504165
given              502902
came               500375
region             499851
support            499332
western            497657
production         497619
non                497039
having             496884
political          496740
point              496398
cup                493993
period             492703
next               490927
went               489119
business           488755
title              487609
started            487461
various            487417
election           486448
using              484923
england            484737
role               484344
black              483052
produced           482909
become             482755
program            480219
works              478045
head               477691
field              473497
total              470798
office             468637
class              466689
written            466435
association        464575
we                 462219
radio              461337
union              460190
level              458183
championship       456410
young              455233
director           453558
take               453286
few                453189
force              450868
created            450192
department         449435
founded            446324
services           445566
married            444663
without            443864
though             443657
per                443254
n't                442598
site               442123
every              439928
william            438358
live               438275
right              437979
run                435688
together           435058
open               431012
act                430996
short              430760
society            430246
version            429462
royal              427842
present            427212
northern           427153
worked             426038
professional       425302
full               424515
returned           424165
joined             420887
story              420662
france             420465
european           419894
currently          418569
language           418551
social             417694
california         416739
india              416267
days               416230
see                415894
design             415432
st.                413502
further            412853
round              411822
australia          411340
wrote              411044
san                410188
project            409836
lost               408682
control            408190
southern           407779
summer             407291
railway            406937
board              406195
popular            406033
continued          405482
free               405193
america            404519
james              404070
once               403451
battle             403319
george             402691
considered         397898
video              397877
common             397846
position           397129
important          397007
living             396112
half               395812
playing            393493
recorded           392253
red                392065
post               390879
described          390311
average            389636
records            389462
special            389305
modern             389235
making             388206
canada             388099
hall               385694
appeared           385657
announced          384256
areas              382774
rock               382100
release            381743
la                 381250
elected            381111
others             380793
example            380630
term               380466
opened             379721
working            379154
similar            377433
formed             377128
route              377009
census             376624
co                 375973
current            375552
schools            374933
originally         374350
does               373536
wife               372316
lake               371721
little             369753
developed          369522
case               369085
race               366994
never              365544
himself            364185
forces             363034
addition           362442
information        362259
upon               362165
province           361087
match              360121
good               359133
event              358912
songs              358018
result             357198
events             356203
win                356158
eastern            356129
track              354830
lead               354031
teams              353551
science            353322
love               352651
human              352451
construction       352236
minister           352074
germany            350917
awards             350873
how                349772
available          349353
throughout         349268
police             348199
training           347611
style              347243
body               344282
david              340477
museum             340419
australian         340057
health             339778
seven              339368
signed             339316
chief              336202
eventually         335352
appointed          335100
al                 334918
sea                334435
centre             333971
debut              333687
tour               332629
points             332281
media              331611
light              331611
mother             331069
should             330995
range              330867
character          328922
across             328504
tv                 327186
features           327169
families           326914
largest            326714
indian             326423
away               326230
network            326075
less               325974
performance        325149
players            324773
refer              324582
today              324541
europe             322538
sold               322428
festival           322363
usually            322348
taken              321438
despite            319744
designed           317462
go                 316804
committee          316140
fire               316096
night              315760
brother            315378
process            315218
uk                 314543
br                 314206
return             313834
official           312627
episode            312080
robert             311790
seen               311254
thomas             310466
must               310063
re                 309892
institute          309720
stage              309044
followed           308737
performed          307943
daughter           307258
japanese           307094
personal           307070
thus               306858
arts               306716
space              305929
low                305320
months             305217
gave               304669
private            304615
includes           304357
get                303937
help               303677
star               303676
china              303203
charles            302708
front              302085
study              301835
middle             301535
magazine           301192
washington         300944
leading            300512
japan              300477
groups             299979
my                 299451
aircraft           299443
featured           299357
federal            296721
civil              296612
rights             296607
paul               296507
model              294957
news               294887
coach              294298
canadian           293750
books              293350
remained           293162
eight              292960
type               292508
independent        291127
completed          290393
green              289816
either             289272
capital            289019
close              288504
academy            288329
ten                288087
instead            287977
kingdom            287772
organization       287151
car                286284
countries          286061
studies            286050
competition        285833
sports             285706
soon               285691
size               284180
above              283508
able               283109
section            282767
finished           282660
action             282427
gold               281556
involved           280673
big                280439
reported           280376
management         280205
systems            279763
week               278698
industry           278213
directed           277940
market             277908
fourth             277425
movement           277104
technology         276781
bank               276662
ground             275178
almost             274578
campaign           274433
base               273616
lower              272871
sent               272376
rather             272309
added              272295
provided           272268
coast              271874
change             271848
grand              271821
historic           271108
real               270832
hill               270445
valley             270367
success            270044
conference         269819
michael            269606
bridge             269431
winning            269346
approximately      267994
films              267800
cross              267663
chinese            266707
awarded            266505
degree             266137
killed             266055
russian            265989
shows              265838
native             265442
female             265143
replaced           265137
municipality       264432
square             264380
studio             264333
medical            264056
data               264013
african            263250
successful         262823
mid                262709
bay                262421
attack             262300
previous           262279
henry              261498
sometimes          261049
operations         260623
spanish            260266
theatre            260216
student            258839
republic           258736
beginning          258731
provide            258550
saw                258359
ship               257990
primary            257740
owned              257639
writing            257285
least              255568
tournament         255539
culture            255025
introduced         254275
texas              253836
related            253425
natural            253329
parts              253205
outside            252622
hospital           252392
governor           251455
reached            251087
roman              250980
ireland            250772
units              250750
senior             250739
far                250669
decided            250461
future             250121
italian            250003
whose              249708
higher             249524
africa             248769
behind             248698
christian          248652
standard           248535
income             248388
professor          248306
placed             248183
possible           247902
ever               247842
put                247787
regional           247737
los                247645
buildings          247575
hit                247454
brought            247218
championships      245868
active             245027
novel              244650
me                 244354
peter              244293
come               244123
energy             243920
generally          243279
interest           243117
too                243101
via                242731
brown              242686
economic           242547
start              242533
previously         242532
especially         242443
blue               242192
stated             242079
itself             241715
channel            241641
below              241084
operation          240844
leader             240253
traditional        239916
trade              239806
structure          238927
limited            238919
runs               238797
prior              238357
regular            238120
famous             238031
saint              237615
st                 237559
child              237355
person             237113
navy               236590
hand               236462
strong             235771
foreign            235708
changed            235140
listed             234988
artist             234937
money              234849
catholic           234633
airport            234594
results            234461
food               234394
parliament         234277
collection         234092
unit               233315
officer            232881
goal               232015
taking             231707
course             231430
attended           231284
command            231170
staff              231164
richard            230039
commission         229782
lived              229667
location           229245
means              228895
plays              228829
commercial         228513
places             228225
foundation         227983
significant        227823
older              227401
medal              226902
self               226725
bill               226212
mountain           225894
scored             225663
running            225530
companies          224788
highway            224300
activities         223952
programs           223567
wide               223513
musical            223159
notable            223080
smith              222868
library            222615
mark               222387
numerous           222346
paris              221970
towards            221944
individual         221800
sound              220772
allowed            220029
plant              219820
property           219802
here               219462
annual             218838
contract           218779
finally            218473
whom               218356
plan               218266
mary               218258
chicago            217801
security           217743
highest            217655
initially          217583
past               217338
our                217284
required           217099
earlier            216862
assembly           216854
find               216281
woman              215881
artists            215867
met                215818
rural              215581
seat               215378
practice           215287
defeated           215191
ended              215134
soviet             215062
virginia           214921
date               214730
length             214707
spent              213557
manager            213516
test               213092
press              212811
associated         212780
captain            212560
access             212120
mexico             211454
author             211380
room               210108
fact               210064
issues             209915
better             209798
additional         209555
km                 209493
characters         209064
lord               208664
zealand            208590
policy             208563
engine             208493
township           208385
noted              207808
historical         207771
complete           207724
financial          207660
religious          207338
mission            206874
contains           206803
nine               206803
recent             206197
represented        206159
pennsylvania       205962
word               205884
administration     205862
opening            205752
secretary          205650
lines              205633
report             205146
move               205129
executive          204826
already            204399
empire             203594
youth              203497
god                202278
closed             202092
theory             201932
victory            201700
writer             201479
italy              201467
rest               201299
angeles            201230
appearance         201020
feature            200839
queen              200200
launched           200081
sir                199931
legal              199819
terms              199809
ran                199796
entered            199760
issue              199493
going              199382
edition            199082
singer             198973
greek              198950
master             198735
majority           198571
give               198203
background         198176
source             198156
anti               198036
cultural           197886
movie              197866
stone              197767
complex            197666
changes            197516
recording          197253
thought            197003
stadium            196954
islands            196801
got                196793
florida            196321
operated           196224
particularly       196078
basketball         195868
month              195501
uses               195397
hours              195254
port               194991
entire             194753
prince             194496
castle             194494
mostly             194242
key                193468
names              193125
fort               192822
selected           192781
increased          192712
status             192626
earth              192597
subsequently       192511
pacific            192375
cover              191827
variety            191419
certain            191183
goals              190602
remains            190547
upper              190277
congress           190249
becoming           190200
studied            190127
always             189974
joseph             189889
irish              189628
nature             189358
particular         189226
loss               189041
caused             188848
chart              188846
dr.                188483
forced             188291
create             188117
era                188008
sister             188006
fall               187470
retired            187371
husband            187330
material           187214
need               187199
starting           187107
turn               187053
review             187014
decision           186919
forest             186715
van                186616
rate               186576
singles            186466
referred           186222
larger             185375
friends            185168
takes              184974
relationship       184663
individuals        184548
shown              184522
provides           184499
products           184453
speed              184319
martin             184265
democratic         184247
louis              183912
poland             183846
meeting            183596
evidence           183565
parish             183475
olympics           183180
baseball           183065
cities             182847
themselves         182714
temple             182618
wing               182556
genus              181797
computer           181713
dance              181293
households         181140
serving            181135
cost               181122
shot               181117
wales              180927
heart              180926
stations           180752
passed             180636
miles              180560
supported          180473
view               180447
cases              180270
forms              180211
care               179838
actor              179301
male               179290
ice                179147
matches            178842
males              178655
stars              178509
tracks             178472
females            178418
administrative     178347
junior             178271
longer             178059
median             177984
leaving            177963
effect             177775
biography          177585
train              177562
engineering        177302
pre                177254
minutes            177189
marriage           177047
camp               177004
offered            176875
chairman           176833
weeks              176659
oil                176523
houses             176374
mainly             176090
19th               176055
surface            176033
therefore          175916
nearly             175897
problems           175808
score              175339
ancient            175325
subject            175229
prime              175227
friend             175154
seasons            174756
claimed            174583
experience         174486
specific           174338
hockey             174238
jewish             173956
failed             173819
overall            173796
believed           173543
justice            173482
plot               173410
troops             173318
greater            173230
winter             173156
spain              172899
consists           172542
broadcast          172439
heavy              172324
increase           172315
raised             172184
deal               172009
separate           172004
campus             171829
turned             171709
bishop             171586
1980s              171542
appears            171506
helped             170786
presented          170713
face               170543
lies               170326
fight              170278
composed           170183
recently           170099
influence          170013
fifth              169925
done               169918
call               169878
nations            169778
creek              169664
references         169395
elections          169311
spring             169080
britain            168978
double             168777
cast               168750
russia             168509
meaning            168368
earned             168074
minor              167838
parents            167472
silver             167321
edward             166922
carried            166675
producer           166554
latter             166500
yet                166391
housing            165812
enough             165383
hotel              165244
brothers           164957
might              164931
attempt            164900
carolina           164854
plans              164731
article            164424
lives              164334
numbers            164280
response           164189
border             164015
branch             163903
1st                163744
remaining          163642
nearby             163441
direct             163382
ships              162890
value              162564
workers            162306
politician         162095
iii                162056
academic           161987
label              161906
1970s              161812
commander          161628
rule               161580
fellow             161517
champion           161316
digital            161189
residents          161138
authority          161024
editor             161015
makes              160977
transport          160944
whether            160786
dutch              160705
projects           160643
responsible        160545
whole              160491
covered            160301
territory          160227
flight             160223
races              160141
words              159549
defense            159546
tower              159461
emperor            159401
albums             159262
facilities         159127
daily              159056
stories            159017
assistant          158724
managed            158571
primarily          158568
quality            158255
function           157982
proposed           157884
cause              157813
distribution       157698
lee                157640
conditions         157536
usa                157330
pass               157151
prize              157061
journal            156888
software           156882
code               156814
vice               156368
inside             156345
newspaper          156338
corps              156333
asked              156162
highly             156146
constructed        156040
mayor              155838
el                 155789
critical           155756
your               155740
secondary          155571
corporation        155566
rugby              155479
regiment           155445
ohio               155384
appearances        155365
cut                155232
serve              155179
told               155178
leave              155035
allow              155013
nation             154528
multiple           154525
dead               154483
discovered         154240
directly           154137
scene              153989
levels             153807
scotland           153771
hot                153673
voice              153446
growth             153390
elements           153282
acquired           153230
1990s              153168
officers           153026
physical           152564
20th               152169
latin              152138
host               151907
jersey             151873
jones              151837
beach              151828
graduated          151789
peace              151718
arrived            151569
issued             151429
super              151326
boston             151131
literature         150979
paper              150843
metal              150714
girl               150514
idea               150421
estate             149844
vote               149767
immediately        149739
jack               149691
quickly            149498
asian              149294
competed           149232
michigan           149082
wall               149028
true               148859
extended           148813
produce            148764
girls              148741
urban              148727
francisco          148504
1960s              148346
dark               148083
promoted           148074
contemporary       148064
comes              148056
global             148029
formerly           147963
appear             147949
moving             147628
industrial         147480
types              147444
wanted             147318
opera              147248
ministry           147235
soldiers           147186
online             147111
commonly           146895
mass               146842
formation          146780
smaller            146762
typically          146676
marine             146584
drive              146570
hard               146552
drama              146462
shortly            146191
density            145925
senate             145835
effects            145798
iran               145594
polish             145045
prominent          145033
naval              145000
settlement         144972
divided            144202
sun                144074
probably           144034
stop               143996
basis              143944
republican         143890
languages          143767
distance           143628
treatment          143584
alone              143508
continue           143499
product            143237
mile               143220
sources            143166
saying             143107
rules              142852
israel             142845
footballer         142744
format             142554
poor               142530
clubs              142390
leadership         142154
initial            142062
offers             141786
operating          141351
avenue             141231
officially         141169
2nd                140980
columbia           140958
grade              140946
squadron           140898
fleet              140753
percent            140549
bbc                140498
racing             140457
twenty             140441
farm               140201
actually           140058
keep               140011
leaders            139993
agreement          139927
likely             139686
equipment          139657
winner             139639
judge              139582
johnson            139506
website            139386
mount              139362
grew               139338
method             139279
transferred        139147
guitar             138735
intended           138725
blood              138681
renamed            138656
williams           138655
iron               138518
job                138436
asia               138289
meet               138239
reserve            138217
store              138003
capacity           137923
politics           137834
wood               137825
charge             137646
gas                137498
widely             137497
frank              137465
activity           137409
advanced           137379
relations          137335
acting             137237
scottish           137223
dedicated          137186
crew               137158
founder            136980
episodes           136890
letter             136780
lack               136764
amount             136694
georgia            136571
coming             136538
build              136532
efforts            136531
concept            136509
follows            136478
giving             136423
boy                136286
ordered            136285
leaves             136208
pop                136103
positive           136066
economy            135970
entertainment      135944
tom                135674
duke               135646
affairs            135609
boys               135580
memorial           135570
ability            135521
am                 135512
illinois           135281
communities        135248
clear              135192
color              135136
alexander          135041
text               135017
except             135003
figure             134919
reach              134820
railroad           134748
forward            134672
scientific         134667
problem            134588
focus              134551
needed             134514
comedy             134431
serves             134320
exchange           134192
environment        134168
cars               134138
direction          134109
trial              134106
ball               134050
tree               134047
organized          134017
prison             133995
firm               133951
description        133846
agency             133713
analysis           133460
feet               133451
purpose            133423
destroyed          133334
reception          133327
planned            133242
revealed           133154
infantry           133059
architecture       132922
morning            132872
growing            132753
pressure           132727
featuring          132717
attention          132709
household          132526
candidate          132514
removed            132354
situated           132327
hold               132305
models             132278
knowledge          132228
solo               131921
technical          131908
organizations      131894
scott              131846
assigned           131783
know               131676
conducted          131560
participated       131531
largely            131304
things             131302
arms               131286
le                 131251
pay                130985
purchased          130983
register           130953
gained             130913
combined           130715
golden             130710
headquarters       130605
note               130587
adopted            130387
potential          130335
horse              130025
protection         129978
scale              129811
rose               129790
tax                129726
teacher            129661
hour               129599
approach           129389
fish               129348
floor              129330
pro                129301
join               129256
bar                129223
victoria           128728
spread             128696
independence       128572
travel             128520
bus                128467
mountains          128279
titled             128181
mr.                127968
geography          127953
electric           127905
machine            127877
applied            127636
fighting           127621
safety             127566
mixed              127522
accepted           127466
continues          127299
captured           127206
rail               126931
defeat             126898
box                126853
principal          126746
recognized         126697
lieutenant         126658
mentioned          126589
semi               126478
owner              126398
joint              126320
difficult          125920
liberal            125877
deep               125866
sydney             125863
actress            125802
traffic            125745
creation           125723
fell               125431
basic              125393
internet           125195
notes              125131
unique             125068
gun                124981
supreme            124889
declared           124767
simply             124763
doctor             124651
plants             124625
sales              124549
guard              124484
massachusetts      124340
designated         124298
parties            124298
jazz               124284
compared           124270
lady               124194
sex                124163
becomes            123991
resources          123877
titles             123825
cricket            123730
concert            123644
cell               123558
learning           123549
remain             123411
teaching           123308
versions           123302
content            123103
alongside          122996
revolution         122903
jean               122870
price              122748
sons               122722
block              122704
premier            122702
honor              122677
impact             122642
champions          122600
joe                122541
districts          122524
generation         122403
estimated          122332
volume             122289
table              122248
image              122230
sites              122115
account            122104
roles              122097
sport              122030
quarter            121980
providing          121751
zone               121730
says               121703
grant              121624
offer              121540
yard               121517
agreed             121445
goes               121369
scoring            121328
classes            121157
presence           120946
performances       120850
representatives    120843
twice              120637
hosted             120483
split              120425
von                120391
taught             120366
origin             120277
something          120210
olympic            120084
break              120081
claims             119971
critics            119697
facility           119602
occurred           119600
suffered           119518
pakistan           119362
municipal          119237
damage             119185
tells              119184
defined            119169
share              119137
santa              119016
resulted           118995
berlin             118988
respectively       118917
garden             118889
expanded           118787
platform           118718
fields             118705
draft              118624
paid               118485
opposition         118271
fine               118268
expected           118248
educational        118172
kept               118158
ontario            118131
climate            118008
reports            118004
atlantic           117835
surrounding        117799
mm                 117445
reading            117377
windows            117370
performing         117274
reduced            117270
ranked             117244
allows             117149
birth              117013
nominated          116941
jackson            116939
younger            116723
newly              116721
kong               116644
positions          116636
maria              116633
theater            116591
philadelphia       116543
toronto            116523
gives              116519
heritage           116496
finals             116397
beyond             116386
hong               116301
disease            116290
sixth              116289
laws               116174
reviews            116056
freedom            116038
completely         115978
constitution       115928
tradition          115737
swedish            115645
page               115310
theme              115230
fiction            115226
mike               115106
3rd                115100
rome               114942
medicine           114768
tried              114735
look               114691
trains             114599
resulting          114442
existing           114372
say                114318
deputy             114287
environmental      114196
labour             114025
classical          113869
planning           113749
yellow             113712
develop            113680
fans               113610
granted            113558
receive            113554
alternative        113341
begins             113327
nuclear            113299
ring               113235
fame               113096
buried             113058
connected          113030
felt               113022
identified         113020
palace             112976
del                112921
falls              112850
read               112839
classic            112837
letters            112712
combat             112615
sciences           112610
elizabeth          112553
effort             112544
fc                 112533
piece              112449
memory             112433
villages           112428
inspired           112347
brazil             112331
regions            112279
towns              112236
conservative       112227
chosen             112149
animals            112093
labor              112045
attacks            111976
situation          111895
materials          111834
yards              111818
steel              111699
representative     111690
simple             111686
orchestra          111664
reason             111612
peak               111562
stand              111552
entitled           111542
officials          111528
returning          111527
reference          111497
guest              111476
crime              111406
let                111220
northwest          111141
imperial           111087
bc                 111003
convention         110924
examples           110881
ocean              110846
publication        110809
painting           110803
secret             110755
subsequent         110728
frequently         110674
losing             110645
religion           110618
brigade            110577
fully              110560
sides              110544
acts               110479
cemetery           110425
couple             110411
relatively         110262
oldest             110237
hands              110078
chris              110074
suggested          109971
showed             109911
succeeded          109906
follow             109809
minute             109754
achieved           109694
application        109661
bring              109610
programme          109588
cells              109575
votes              109568
promotion          109538
storm              109526
cd                 109508
graduate           109440
armed              109398
murder             109386
supply             109338
miss               109320
powers             109301
normal             109289
choice             109239
flying             109238
search             109096
communist          108893
figures            108808
agent              108717
literary           108689
netherlands        108628
korea              108534
worldwide          108358
citizens           108175
fm                 108148
1950s              107924
faculty            107790
draw               107722
stock              107578
seats              107545
visit              107502
cancer             107483
occupied           107439
methods            107437
unknown            107384
articles           107331
drug               107253
claim              107225
holds              107222
authorities        107101
ray                106997
audience           106918
wilson             106911
sweden             106818
necessary          106793
interview          106792
obtained           106769
holy               106676
kind               106671
someone            106541
trust              106405
bob                106384
covers             106340
settled            106315
transfer           106306
marked             106284
risk               106263
allowing           106205
sense              106192
funding            106031
challenge          106021
steve              105958
oxford             105802
southeast          105798
unlike             105704
crown              105570
rise               105475
jim                105464
portion            105461
fox                105431
transportation     105201
sector             105155
phase              105154
properties         104986
edge               104853
finish             104850
sign               104797
tropical           104719
bought             104666
standards          104645
soccer             104603
institutions       104443
philosophy         104400
legislative        104390
hills              104334
powerful           104245
boat               104202
brand              104167
fund               104063
conflict           104037
unable             103979
taylor             103927
founding           103745
refused            103705
attempts           103689
metres             103635
permanent          103481
arthur             103465
starring           103451
applications       103418
creating           103405
needs              103393
effective          103373
andrew             103369
aired              103307
extensive          103302
employed           103245
enemy              103129
want               103106
expansion          103006
billboard          102798
rank               102677
battalion          102648
multi              102630
vehicle            102605
fought             102565
partner            102522
alliance           102481
category           102383
perform            102299
federation         102289
poetry             102207
daniel             101780
bronze             101600
bands              101532
entry              101521
vehicles           101501
standing           101486
foot               101456
bureau             101422
maximum            101296
billion            101263
matter             101166
trees              101162
intelligence       101108
greatest           101096
screen             101082
refers             100985
commissioned       100944
gallery            100941
injury             100837
animal             100719
wild               100715
confirmed          100682
bad                100665
setting            100542
treaty             100347
broke              100188
adult              100057
americans          100045
broadcasting       100032
supporting         100011
pilot              99973
ways               99968
lot                99963
mobile             99927
writers            99843
rich               99831
programming        99793
existence          99768
squad              99624
minnesota          99599
copies             99578
sunday             99517
korean             99469
bass               99457
provincial         99417
sets               99409
defence            99393
glass              99244
offices            99175
beat               99047
jr.                99038
agricultural       99027
etc                98968
internal           98911
question           98892
core               98857
northeast          98853
davis              98745
retirement         98738
factory            98676
actions            98614
prevent            98511
dropped            98488
communications     98442
ending             98142
weekly             98069
containing         97990
functions          97853
attempted          97788
interior           97781
weight             97731
bowl               97683
wind               97651
recognition        97561
incorporated       97557
increasing         97554
arrested           97500
ultimately         97352
documentary        97302
4th                97292
holding            97282
et                 97272
derived            97238
attacked           97221
lyrics             97178
contact            97151
mexican            97091
jose               97017
external           97007
stay               96945
churches           96864
centuries          96742
metropolitan       96705
selling            96704
twelve             96684
opposed            96673
personnel          96671
kansas             96580
card               96465
mill               96465
visited            96434
bell               96365
presidential       96358
quite              96175
believe            96065
roads              95927
write              95924
aid                95776
pieces             95718
norwegian          95717
mind               95691
web                95688
sexual             95636
controlled         95522
francis            95495
18th               95426
pope               95357
rear               95114
influenced         95040
onto               94994
tony               94834
speech             94817
wrestling          94803
weapons            94754
launch             94753
straight           94699
ends               94665
composer           94590
locations          94559
developing         94550
express            94508
circuit            94466
specifically       94465
studios            94254
shared             94185
count              94134
doing              94118
canal              94013
lewis              93953
wisconsin          93933
publishing         93929
approved           93915
domestic           93893
lane               93874
nothing            93750
consisted          93735
stephen            93714
determined         93604
earl               93599
heat               93547
think              93534
comic              93528
reasons            93490
establishment      93468
exhibition         93447
begin              93400
southwest          93391
fuel               93303
electronic         93196
cape               93131
kill               93068
converted          93035
ad                 93024
dvd                93006
condition          92940
manchester         92933
educated           92798
melbourne          92792
hits               92781
perhaps            92701
colonel            92686
indiana            92583
wins               92566
producing          92564
norway             92519
slightly           92447
connection         92446
carry              92441
occur              92431
meant              92429
surname            92406
identity           92344
represent          92314
constituency       92308
harry              92299
criminal           92276
funds              92206
proved             92129
why                92104
eye                92082
links              92027
structures         92019
athletic           91939
birds              91867
contest            91822
cold               91754
walls              91698
hundred            91675
users              91652
poet               91569
institution        91555
display            91509
receiving          91498
rare               91423
contained          91373
serious            91365
ben                91328
escape             91252
guns               91180
christmas          91076
target             91022
heard              90918
speaking           90887
ford               90862
motion             90765
fast               90720
piano              90647
temperature        90616
publications       90585
finds              90505
passenger          90441
orders             90407
contributed        90332
toward             90315
cathedral          90299
inhabitants        90271
architect          90241
exist              90173
athletics          90148
muslim             90147
courses            90090
abandoned          90069
signal             90049
successfully       89870
disambiguation     89760
tennessee          89693
corner             89617
dynasty            89584
heavily            89534
maryland           89512
jews               89511
looking            89482
representing       89440
budget             89356
weather            89350
missouri           89304
mine               89248
introduction       89218
faced              89200
pair               89196
chapel             89191
reform             88969
height             88960
don                88910
vietnam            88804
engineer           88763
occurs             88745
motor              88682
cambridge          88636
lands              88636
focused            88594
sought             88530
patients           88528
nfl                88520
trying             88517
shape              88475
invasion           88396
chemical           88371
importance         88362
communication      88346
ca                 88284
selection          88280
khan               88269
really             88261
regarding          88249
colorado           88242
homes              88218
voivodeship        88173
maintained         88039
borough            88026
failure            87994
aged               87959
passing            87931
agriculture        87897
driver             87895
oregon             87833
investigation      87814
teachers           87675
opportunity        87555
flow               87440
ideas              87434
philippines        87351
trail              87323
seventh            87287
portuguese         87254
resistance         87244
reaching           87233
negative           87214
tennis             87157
fashion            87155
calls              87043
scheduled          87017
downtown           87016
turkey             87013
picture            86946
universities       86938
trained            86903
miller             86841
skills             86825
dam                86788
scenes             86772
banks              86572
duty               86541
views              86483
notably            86449
typical            86447
moscow             86430
door               86319
singing            86303
du                 86253
incident           86177
broken             86119
candidates         86056
strength           86053
attorney           86024
engines            86019
decades            85989
composition        85979
spirit             85933
invited            85925
commune            85860
fair               85823
chain              85744
walter             85706
inc.               85654
albert             85647
herself            85569
sri                85539
austria            85538
jesus              85526
die                85517
sale               85487
values             85484
try                85403
sub                85280
employees          85247
chamber            85214
regarded           85099
winners            85043
registered         85033
task               85023
investment         85009
colonial           84986
swiss              84967
user               84908
entirely           84791
flag               84758
protect            84723
stores             84625
closely            84616
entrance           84581
laid               84398
possibly           84396
des                84372
journalist         84334
save               84289
coal               84280
equal              84275
causes             84254
credit             84251
turkish            84210
quebec             84194
techniques         84192
promote            84144
hope               84143
junction           83972
easily             83755
dates              83751
enter              83741
getting            83654
kentucky           83653
singapore          83604
howard             83575
residence          83564
violence           83529
advance            83489
survey             83326
humans             83279
orange             83278
details            83250
avoid              83147
expressed          83127
passes             83092
simon              83069
streets            83024
distinguished      82955
qualified          82898
folk               82885
establish          82874
extra              82839
egypt              82830
headed             82825
di                 82733
seems              82725
artillery          82716
visual             82674
improved           82672
link               82626
formula            82609
actual             82565
step               82557
finishing          82534
brian              82457
medium             82428
protein            82421
switzerland        82412
ceremony           82337
spot               82323
productions        82314
operate            82237
poverty            82213
neighborhood       82200
gene               82161
organisation       82160
consisting         81957
rivers             81919
talk               81887
consecutive        81855
sections           81821
killing            81806
ward               81688
iv                 81564
partnership        81529
engaged            81460
extension          81427
plus               81380
reaction           81332
starts             81322
factor             81303
amateur            81296
dog                81288
costs              81225
bodies             81202
device             81183
ethnic             81164
racial             81083
sam                81074
evening            81055
flat               81021
objects            80992
chapter            80987
improve            80987
chance             80958
5th                80861
statement          80844
musicians          80773
address            80755
courts             80651
controversy        80647
arizona            80620
membership         80620
merged             80608
bird               80586
faith              80572
wars               80550
expedition         80543
chair              80433
interests          80424
bottom             80409
christ             80405
arab               80362
comics             80350
gain               80088
describes          80055
mining             80054
bachelor           79802
crisis             79793
joining            79771
decade             79747
hired              79746
1930s              79629
distributed        79587
habitat            79536
routes             79438
arena              79433
cycle              79423
divisions          79419
briefly            79408
vocals             79385
directors          79316
strike             79286
degrees            79280
object             79245
recordings         79214
installed          79160
adjacent           79134
demand             79133
voted              79089
causing            78951
businesses         78945
ruled              78863
grounds            78831
starred            78823
dean               78802
drawn              78721
opposite           78628
stands             78605
formal             78600
operates           78585
persons            78555
counties           78536
compete            78529
wave               78529
diego              78431
reality            78418
israeli            78345
dry                78335
ncaa               78313
resigned           78287
brief              78190
greece             78174
combination        78165
demographics       78141
houston            78128
historian          78095
contain            78079
ones               78059
commonwealth       77970
musician           77941
collected          77917
argued             77911
louisiana          77904
session            77888
cabinet            77870
parliamentary      77867
electoral          77838
hamilton           77655
loan               77641
moon               77623
profit             77623
regularly          77617
ali                77588
conservation       77583
islamic            77571
roof               77519
purchase           77370
17th               77368
charts             77223
residential        77134
patrick            77134
earliest           77124
da                 77102
designs            77074
paintings          77029
shop               77015
survived           76795
moth               76720
items              76692
seconds            76659
goods              76643
grey               76625
mean               76621
anniversary        76592
fighter            76549
gets               76440
criticism          76284
eyes               76259
images             76240
discovery          76227
observed           76213
extremely          76167
golf               76131
underground        76087
progress           76071
additionally       76069
thirty             76045
participate        76011
antonio            75954
montreal           75946
thousands          75946
apart              75908
lincoln            75898
detroit            75856
reduce             75850
elementary         75839
brain              75738
philip             75699
owners             75562
stating            75511
alabama            75477
emergency          75429
ep                 75417
samuel             75416
iraq               75390
resolution         75322
calling            75311
li                 75272
capture            75206
biggest            75159
tank               75156
rooms              75075
hollywood          75047
finance            75019
baby               74992
ex                 74916
queensland         74908
reign              74836
maintain           74675
iowa               74659
anne               74647
landing            74638
driving            74582
broad              74568
insurance          74560
outstanding        74532
circle             74475
pictures           74474
path               74450
chose              74448
manufacturing      74431
assistance         74324
advantage          74292
frederick          74287
bit                74283
sequence           74271
gmina              74252
crossing           74238
leads              74166
anderson           74150
otherwise          74079
clark              74021
universal          74015
shaped             73976
kings              73934
ahead              73927
attached           73876
medieval           73841
ages               73832
douglas            73830
metro              73802
colony             73772
affected           73752
scholars           73716
oklahoma           73542
coastal            73536
behavior           73452
soundtrack         73400
e.g                73356
soul               73308
saturday           73232
nor                73219
beautiful          73199
adam               73174
painted            73171
attend             73124
worth              73121
blues              73045
magic              72988
charges            72939
anthony            72927
heads              72848
accident           72824
priest             72775
definition         72724
meanwhile          72718
princess           72675
purposes           72669
trophy             72664
juan               72659
require            72555
marketing          72546
wine               72541
popularity         72533
vision             72486
turns              72486
cable              72484
mathematics        72423
gordon             72388
allen              72379
mississippi        72273
represents         72267
arm                72189
scheme             72162
appeal             72157
distinct           72090
understanding      72071
sell               72064
factors            72045
acid               72040
subjects           71949
shooting           71902
trip               71882
roughly            71852
bear               71703
terminal           71673
economics          71657
senator            71598
swimming           71556
diocese            71545
drew               71520
prix               71499
contrast           71440
argentina          71431
responsibility     71421
czech              71409
restaurant         71370
wings              71342
difference         71333
i.e                71310
relief             71300
stages             71267
miami              71244
duties             71222
16th               71157
novels             71152
committed          71151
accused            71150
caught             71109
en                 71097
whilst             71092
equivalent         71088
fired              71070
charged            71061
measure            70900
leg                70889
documents          70869
couples            70821
request            70796
danish             70772
defensive          70759
waters             70727
guide              70710
devices            70709
statistics         70654
painter            70604
learned            70595
credited           70581
respect            70545
showing            70544
dan                70524
tries              70522
passengers         70521
allied             70429
row                70366
frame              70348
alan               70330
puerto             70317
peninsula          70271
concluded          70235
instruments        70160
wounded            70081
differences        70057
associate          70046
everything         70012
forests            69999
afterwards         69998
replace            69995
requirements       69983
aviation           69924
walk               69920
fishing            69872
dublin             69829
solution           69818
max                69815
fixed              69774
offensive          69715
ownership          69698
carrying           69698
inner              69694
eric               69667
legislation        69624
hungarian          69622
testing            69581
contributions      69573
gay                69547
actors             69466
translated         69453
ridge              69451
map                69435
denmark            69414
steam              69402
depending          69371
aspects            69362
stood              69337
assumed            69337
dream              69333
injured            69277
severe             69249
admitted           69183
determine          69140
filled             69139
shore              69124
technique          69116
knight             69047
arrival            69014
measures           69005
translation        69002
debuted            69000
delivered          68988
returns            68940
legacy             68917
rejected           68911
separated          68890
moore              68861
visitors           68805
creative           68787
damaged            68707
planet             68672
storage            68594
accompanied        68579
tell               68425
dating             68396
markets            68360
industries         68354
losses             68330
questions          68319
gulf               68311
charter            68283
strategy           68263
corporate          68262
socialist          68184
somewhat           68165
significantly      68154
plane              68125
physics            68112
mounted            68105
satellite          68068
experienced        67961
constant           67876
relative           67846
none               67835
pattern            67793
watch              67787
restored           67780
belgium            67766
connecticut        67737
sky                67735
gone               67722
partners           67693
harvard            67643
retained           67603
networks           67583
protected          67581
mode               67558
capable            67547
thing              67509
artistic           67477
parallel           67474
collaboration      67473
6th                67453
message            67442
debate             67405
involving          67364
interested         67352
journey            67351
feel               67312
fan                67257
eleven             67206
linked             67194
salt               67168
authors            67163
components         67160
element            67127
prepared           67117
context            67042
huge               66942
window             66939
're                66935
kevin              66921
universe           66847
occupation         66815
requires           66812
occasionally       66777
policies           66759
pool               66718
tamil              66705
ottoman            66668
revolutionary      66613
hungary            66603
poem               66600
reputation         66592
versus             66588
gardens            66580
amongst            66554
abc                66537
audio              66505
makeup             66505
tests              66433
frequency          66407
camera             66364
bush               66355
meters             66259
orthodox           66205
grown              66192
stopped            66181
missing            66105
rescue             66083
continuing         66079
suggests           66045
ryan               66041
atlanta            66038
legislature        66008
der                65995
coalition          65983
guitarist          65960
rice               65789
flowers            65764
eighth             65750
offering           65741
classification     65725
practices          65678
soil               65675
tokyo              65656
opinion            65652
grow               65649
instance           65624
lawyer             65608
sisters            65583
finding            65535
stayed             65520
limit              65484
coverage           65443
easy               65388
7th                65352
roger              65351
considerable       65329
ranking            65301
colleges           65272
cavalry            65242
legend             65113
lawrence           65085
parks              65067
centers            65020
daughters          64998
baron              64980
hair               64963
twin               64957
equipped           64895
broadway           64867
dave               64852
narrow             64826
portugal           64808
hosts              64727
rates              64722
domain             64705
cards              64695
boundary           64687
arranged           64664
liverpool          64616
12th               64567
uncle              64546
whereas            64543
brazilian          64533
movies             64425
forming            64388
rating             64374
strategic          64342
km2                64325
competitions       64300
trading            64240
cleveland          64239
covering           64238
baltimore          64197
commissioner       64160
marie              64148
infrastructure     64147
origins            64121
welsh              64113
ago                63998
replacement        63914
proper             63836
praised            63811
disc               63809
collections        63801
seattle            63798
expression         63787
walker             63775
ukraine            63767
driven             63767
edited             63760
fly                63740
austrian           63732
solar              63686
cm                 63683
ensure             63681
truth              63670
un                 63665
premiered          63641
successor          63628
wooden             63594
operational        63582
hispanic           63536
concerns           63518
rapid              63500
papers             63472
prisoners          63470
childhood          63467
mental             63444
friendly           63443
meets              63428
influential        63377
tunnel             63375
anything           63326
masters            63320
employment         63260
solid              63225
tall               63225
abbey              63209
tribe              63188
changing           63156
qualifying         63143
adapted            63140
benefit            63122
apparently         63101
threat             63062
mouth              63062
threatened         63037
temporary          62980
anna               62891
celebrated         62882
appearing          62873
increasingly       62872
depression         62798
adults             62768
slow               62766
raise              62759
cinema             62751
learn              62701
entering           62659
laboratory         62633
kennedy            62573
gate               62560
ross               62541
script             62486
speak              62481
skin               62464
flows              62449
romania            62444
accounts           62421
charity            62387
fictional          62379
pittsburgh         62331
rio                62330
achieve            62319
consider           62282
monastery          62271
franchise          62251
formally           62209
kelly              62180
tools              62153
newspapers         62143
revival            62126
sponsored          62122
processes          62122
vienna             62113
file               62103
springs            62065
safe               62034
missions           62029
classified         62019
13th               62009
annually           61894
extreme            61891
margaret           61840
branches           61821
lakes              61767
feed               61737
jobs               61715
gender             61617
manner             61585
bruce              61533
advertising        61516
jordan             61510
normally           61501
maintenance        61428
phone              61412
adding             61390
handed             61352
characteristics    61351
harris             61303
billy              61266
hip                61225
integrated         61191
kent               61141
decline            61134
modified           61106
strongly           61090
critic             61059
victims            61043
malaysia           61027
arkansas           60999
morgan             60982
nazi               60977
hero               60972
russell            60971
schedule           60960
restoration        60954
neither            60953
powered            60896
monument           60831
carl               60831
hundreds           60816
depth              60718
talent             60703
15th               60685
controversial      60601
bond               60598
admiral            60565
license            60546
criticized         60499
brick              60497
honorary           60475
initiative         60474
output             60472
thousand           60472
alex               60452
ready              60442
visiting           60437
birmingham         60430
speaker            60407
progressive        60344
massive            60342
existed            60333
desert             60278
carbon             60277
1920s              60267
credits            60261
colour             60259
rising             60224
hence              60215
defeating          60178
superior           60163
filmed             60144
hop                60120
listing            60086
snow               60036
ed                 60023
perfect            60006
column             60002
moment             59988
surrounded         59988
orleans            59982
principles         59970
territories        59948
bringing           59898
jimmy              59892
jane               59889
struck             59886
tim                59883
dallas             59860
shell              59807
wheel              59772
participation      59771
indonesia          59748
designer           59732
las                59721
surgery            59690
ceo                59672
movements          59644
franklin           59639
index              59638
commerce           59638
conduct            59634
horses             59630
helping            59556
zero               59549
constitutional     59499
spiritual          59478
ambassador         59438
vocal              59436
completion         59426
thompson           59403
mail               59394
edinburgh          59351
residing           59340
tourism            59323
norman             59282
finland            59273
bears              59266
nelson             59233
austin             59178
medals             59169
resident           59158
themes             59136
stewart            59135
visible            59088
indigenous         59041
adams              59041
involvement        59005
victor             59004
basin              59002
pan                59001
electrical         58998
sarah              58974
breaking           58964
ukrainian          58956
roll               58913
concerts           58901
pick               58900
boats              58850
styles             58845
processing         58844
rival              58824
indians            58755
drawing            58675
fruit              58672
vessels            58662
disney             58617
experimental       58582
declined           58531
tied               58530
mp                 58517
touring            58514
singh              58459
supporters         58449
everyone           58439
mills              58423
compilation        58417
suicide            58398
coaching           58377
happened           58352
kim                58350
matt               58297
unusual            58255
turning            58251
cited              58226
dated              58225
roots              58215
string             58182
summit             58162
les                58152
explained          58141
concrete           58132
print              58128
transit            58046
dna                57989
gray               57953
traditionally      57933
poems              57931
minimum            57923
representation     57920
giant              57834
happy              57822
14th               57819
releases           57814
effectively        57813
dc                 57807
architectural      57794
triple             57762
indicated          57756
greatly            57747
beauty             57741
appointment        57702
elevation          57701
clinical           57677
printed            57620
sugar              57613
10th               57607
gang               57567
proposal           57556
peaked             57551
producers          57535
romanized          57514
rapidly            57504
stream             57473
innings            57442
wright             57428
meetings           57366
campbell           57360
nba                57359
sr                 57354
johnny             57317
8th                57282
counter            57275
householder        57270
honour             57264
lasted             57252
borders            57170
agencies           57161
document           57158
exists             57150
surviving          57112
experiences        57101
accept             57084
christopher        57060
spoken             57033
illegal            57031
honors             56986
landscape          56985
option             56939
ride               56889
hurricane          56859
harbor             56853
wear               56835
panel              56824
secure             56771
competing          56767
robinson           56752
profile            56750
vessel             56693
rain               56678
stanley            56635
cbs                56553
farmers            56546
lists              56534
drop               56531
revenue            56512
concerned          56481
exception          56460
riding             56455
nick               56451
customers          56411
knew               56397
mix                56386
11th               56366
participants       56361
fear               56224
marshall           56223
wildlife           56215
guy                56167
saints             56146
utah               56120
lay                56066
describe           56063
bible              56058
gradually          56055
preserved          55996
replacing          55973
oak                55968
symphony           55926
attracted          55911
studying           55908
begun              55905
longest            55901
evil               55897
siege              55881
pierre             55869
provinces          55867
merchant           55847
mechanical         55832
genre              55829
soldier            55829
weekend            55735
hunter             55696
transmission       55687
agents             55606
executed           55601
videos             55562
benefits           55520
funded             55472
rated              55456
instrumental       55439
alfred             55421
nova               55388
ss                 55374
ninth              55374
similarly          55371
cousin             55368
dominated          55343
destruction        55330
passage            55325
technologies       55324
personality        55321
thereafter         55280
outer              55278
facing             55265
angel              55198
affiliated         55177
charlie            55142
opportunities      55099
andy               55090
treated            55053
patient            55030
instrument         54998
buy                54992
governments        54959
scholar            54951
evolution          54931
channels           54906
gary               54887
cash               54857
shopping           54838
shares             54826
sessions           54808
widespread         54808
occasions          54807
concern            54775
jeff               54756
ill                54754
indeed             54753
engineers          54730
scientists         54725
signing            54717
battery            54672
competitive        54607
alleged            54601
eliminated         54581
runner             54546
supplies           54461
judges             54458
hampshire          54454
regime             54411
bomb               54405
portrayed          54405
penalty            54399
crash              54384
taiwan             54359
graham             54305
denied             54303
submarine          54258
scholarship        54233
substantial        54167
transition         54153
victorian          54146
http               54145
matters            54138
nevertheless       54121
relationships      54068
jason              54038
filed              54032
carlos             53984
supports           53962
continental        53919
nbc                53898
've                53893
favor              53892
acted              53891
drugs              53888
keeping            53885
tie                53877
tribes             53872
fantasy            53869
ratio              53865
plate              53839
rolling            53761
wedding            53753
bound              53715
rounds             53695
murray             53670
jan                53631
nhl                53626
doubles            53623
useful             53617
signs              53611
honours            53593
ann                53585
wants              53584
blocks             53521
principle          53490
retail             53473
departure          53453
ranks              53422
patrol             53411
tail               53403
arrest             53399
yorkshire          53372
vancouver          53349
inter              53339
extent             53336
afghanistan        53311
strip              53298
railways           53224
component          53190
organ              53188
symbol             53184
categories         53173
encouraged         53162
richmond           53159
uss                53158
abroad             53144
pain               53131
civilian           53118
matthew            53107
periods            53088
traveled           53080
writes             53061
9th                53060
struggle           53053
immediate          53047
recommended        53042
adaptation         52971
egyptian           52967
choose             52965
graduating         52965
assault            52931
drums              52865
nomination         52863
mr                 52862
sees               52856
historically       52843
robin              52837
voting             52825
allies             52824
detailed           52781
achievement        52767
percentage         52766
portland           52760
fresh              52753
carter             52721
enjoyed            52709
arabic             52698
brooklyn           52694
assist             52642
frequent           52630
crowd              52616
latino             52589
roy                52547
toured             52546
apply              52540
and/or             52529
intersection       52487
spending           52447
maine              52385
touchdown          52362
send               52350
throne             52290
produces           52282
contribution       52276
emerged            52271
obtain             52260
archbishop         52214
seek               52164
carrier            52161
researchers        52134
mall               52107
remainder          52105
populations        52099
hearing            52044
co.                52039
suffering          52038
morris             52018
clan               52013
finnish            51969
overseas           51946
fifa               51912
licensed           51869
cook               51846
picked             51843
chemistry          51806
festivals          51800
friday             51789
mediterranean      51785
anyone             51743
injuries           51702
colors             51685
animated           51685
seeking            51659
virgin             51595
publisher          51582
clearly            51540
desire             51534
volumes            51484
limits             51463
venue              51458
duo                51438
jerusalem          51421
generated          51407
add                51399
ma                 51395
cave               51384
wayne              51373
trials             51373
drummer            51324
islam              51312
youngest           51289
ruling             51271
ye                 51268
steps              51218
falling            51187
thailand           51186
seeing             51142
ian                51140
benjamin           51120
clay               51104
buffalo            51074
glasgow            51042
germans            51039
songwriter         51020
persian            51015
na                 50982
municipalities     50953
suit               50951
apple              50949
donated            50941
fred               50934
baker              50910
hunt               50889
viewed             50880
hunting            50879
belgian            50856
cooperation        50798
besides            50745
ny                 50739
posted             50708
tech               50698
marks              50689
dual               50660
volunteer          50529
settlers           50510
rangers            50488
weapon             50469
moves              50449
fit                50426
commanded          50408
appropriate        50393
claiming           50376
grandfather        50373
approval           50342
delhi              50327
bristol            50292
usage              50266
u.s                50227
mac                50224
rico               50209
terminus           50194
hull               50184
balance            50131
dragon             50128
ltd                50077
partly             50075
warren             50054
alive              50020
forty              49986
electricity        49976
locally            49964
editions           49948
karl               49946
premiere           49937
absence            49926
belief             49904
traditions         49848
statue             49846
indicate           49843
else               49839
manor              49810
stable             49803
attributed         49760
possession         49745
warner             49692
plain              49666
managing           49611
aim                49610
viewers            49603
net                49595
chile              49587
overview           49553
seed               49541
enterprise         49540
bed                49538
regulations        49536
sang               49536
essential          49510
minority           49485
cargo              49456
segment            49439
sounds             49425
grace              49398
endemic            49377
forum              49369
deaths             49367
monthly            49357
playoffs           49353
erected            49349
practical          49347
machines           49317
suburb             49315
relation           49303
fa                 49295
mrs.               49292
soft               49270
spoke              49265
descent            49250
hole               49242
closer             49236
mitchell           49218
indoor             49188
shall              49170
rocks              49126
walking            49111
continuous         49060
characterized      49056
understand         49036
solutions          48996
caribbean          48993
rebuilt            48950
serbian            48890
milan              48889
sand               48882
summary            48881
contested          48864
psychology         48862
pitch              48847
attending          48820
muhammad           48790
nicholas           48777
tenure             48769
dangerous          48768
drivers            48723
operator           48709
diameter           48645
diamond            48629
assets             48600
venture            48597
barry              48545
punk               48524
airlines           48506
concentration      48492
gap                48488
athletes           48487
volunteers         48477
asks               48463
pages              48405
mines              48401
influences         48395
sculpture          48384
protest            48368
ferry              48284
advice             48270
behalf             48269
drafted            48252
apparent           48249
cat                48249
biological         48245
fifteen            48244
legs               48234
furthermore        48232
ranging            48232
romanian           48208
false              48205
democracy          48184
lanka              48182
significance       48179
linear             48178
elder              48154
lose               48149
d.c.               48140
peoples            48122
certified          48061
alberta            48059
voters             48052
recovered          48049
tours              48034
demolished         48015
apartment          48009
boundaries         47970
assisted           47908
hawaii             47901
identify           47886
grades             47878
elsewhere          47873
possibility        47857
mechanism          47856
1940s              47856
consumer           47829
reportedly         47761
aimed              47750
conversion         47696
suspended          47649
holiday            47637
photography        47620
departments        47611
f.c                47599
jury               47576
beijing            47571
locomotives        47568
adventure          47560
romantic           47547
publicly           47537
pioneer            47520
dispute            47515
magazines          47501
uniform            47494
resort             47488
conventional       47449
foster             47427
parent             47415
platforms          47401
internationally    47390
eagle              47375
trinity            47333
capita             47330
affair             47328
settlements        47322
dramatic           47306
occasion           47299
derby              47271
evans              47268
violent            47263
inch               47256
establishing       47255
copper             47251
sentence           47247
involves           47237
copy               47236
statistical        47234
implementation     47214
wearing            47173
immigrants         47169
birthday           47159
exposed            47146
diverse            47140
ban                47112
layer              47106
vast               47088
dr                 47075
ceased             47071
doors              47039
connections        47036
belonged           47030
jerry              47029
interstate         46999
fifty              46992
uefa               46992
madrid             46990
thinking           46959
latest             46923
organised          46914
defending          46912
parker             46906
abuse              46897
deployed           46890
jump               46885
cattle             46856
partially          46832
filming            46820
mainstream         46789
harrison           46771
coat               46769
reduction          46757
automatic          46743
decisions          46742
delta              46730
rarely             46726
subsidiary         46720
alice              46714
tigers             46696
decides            46650
jay                46646
raf                46638
sweet              46634
circumstances      46633
clean              46627
missed             46611
merger             46583
tool               46562
reporter           46559
comprehensive      46521
dancing            46519
displayed          46502
amendment          46496
barbara            46494
guinea             46470
kids               46462
alaska             46440
tag                46404
cotton             46372
exclusively        46301
manhattan          46301
microsoft          46287
woods              46267
villa              46252
concerning         46249
commons            46239
radical            46234
cooper             46207
serbia             46183
belt               46175
leon               46165
baptist            46163
survive            46132
buses              46123
initiated          46108
excellent          46096
portrait           46092
harbour            46014
wells              46010
choir              45982
bridges            45981
citizen            45975
sole               45969
unsuccessful       45956
jonathan           45950
debt               45942
manufactured       45930
till               45918
enforcement        45908
connecting         45907
increases          45885
mention            45875
hms                45868
patterns           45847
sacred             45834
crimes             45824
discussion         45823
muslims            45807
cap                45799
correct            45748
clothing           45740
hindu              45706
giants             45705
unincorporated     45700
donald             45686
crossed            45631
sing               45619
sentenced          45615
recovery           45554
advisory           45539
tanks              45523
campaigns          45521
fled               45490
eggs               45428
repeated           45421
angle              45394
remote             45385
rebellion          45365
raising            45362
implemented        45338
texts              45337
exercise           45303
fitted             45303
tribute            45294
writings           45290
liberty            45257
sufficient         45241
delivery           45240
ministers          45237
21st               45234
devoted            45210
jurisdiction       45206
coaches            45185
interpretation     45180
pole               45178
businessman        45177
peru               45156
waste              45140
turner             45112
sporting           45111
prices             45090
costa              45090
cuba               45082
bid                45074
relocated          45074
opponent           45072
believes           45070
remove             45031
arrangement        45018
elite              45003
manufacturer       44977
responded          44958
luis               44936
suitable           44926
distinction        44924
closing            44923
calendar           44904
guilty             44899
hudson             44858
tend               44847
dj                 44842
unless             44833
dominant           44800
seem               44757
charlotte          44724
dogs               44660
expert             44611
phoenix            44603
spin               44596
tourist            44587
earning            44565
fee                44525
prefecture         44521
lights             44512
sung               44508
favorite           44506
pure               44499
ties               44496
discussed          44476
preparation        44427
anglo              44427
hidden             44415
pursue             44413
worship            44413
alcohol            44405
pink               44402
wang               44392
expensive          44350
archaeological     44319
bernard            44315
chancellor         44296
clinton            44287
bangladesh         44262
scores             44261
traded             44258
lowest             44258
moral              44252
shift              44214
horror             44207
outdoor            44205
biology            44198
commented          44185
specialized        44161
loop               44153
arriving           44138
beating            44110
farming            44104
housed             44099
historians         44092
truck              44087
'the               44077
alpha              44072
vs.                44062
patent             44041
terry              44025
pupils             43996
christianity       43952
opponents          43912
athens             43902
northwestern       43889
disaster           43876
maps               43871
promoting          43869
reveals            43790
flights            43789
exclusive          43788
lions              43763
norfolk            43754
telephone          43752
hebrew             43748
touch              43748
extensively        43744
eldest             43733
shops              43710
battles            43707
acquisition        43705
virtual            43703
renowned           43697
margin             43692
ongoing            43682
essentially        43675
iranian            43667
alternate          43659
tone               43653
sailed             43649
reporting          43635
conclusion         43624
originated         43620
temperatures       43585
chase              43580
cdp                43565
answer             43546
wolf               43545
guests             43532
usual              43501
crystal            43484
exposure           43474
secured            43465
marry              43465
landed             43458
rifle              43457
framework          43440
suggest            43429
identical          43396
martial            43362
focuses            43340
sharp              43340
topics             43328
guards             43323
dollars            43318
kg                 43301
ballet             43270
nebraska           43265
fighters           43222
stones             43179
thick              43167
thanks             43148
dick               43143
vi                 43127
belonging          43126
bobby              43122
wrong              43106
wealthy            43070
negotiations       43070
funeral            43068
evolved            43062
bases              43046
oriented           43038
root               43026
acres              43025
democrat           42986
heights            42982
restricted         42968
vary               42955
supposed           42949
select             42943
phil               42942
graduation         42926
files              42913
aftermath          42911
manage             42906
radar              42901
dakota             42862
chess              42856
illness            42851
lifetime           42839
participating      42816
bright             42807
worst              42796
vertical           42796
collective         42795
lloyd              42770
immigration        42770
demonstrated       42764
leaf               42754
completing         42747
organic            42739
permission         42722
missile            42717
leeds              42697
eligible           42682
lie                42674
grammar            42668
confederate        42657
improvement        42652
congressional      42649
wealth             42642
cincinnati         42635
therapy            42632
spaces             42626
fun                42616
indicates          42616
slowly             42613
waiting            42612
silent             42610
ken                42603
sample             42587
corresponding      42584
looked             42583
reaches            42557
repair             42546
isolated           42536
taxes              42536
nevada             42533
saved              42533
noble              42532
flood              42507
catherine          42504
congregation       42489
ratings            42477
leagues            42472
diplomatic         42440
submitted          42435
winds              42422
awareness          42407
photographs        42379
tea                42371
adelaide           42365
destroy            42337
maritime           42329
nigeria            42329
oliver             42320
roberts            42301
cardinal           42284
accessible         42266
animation          42211
restaurants        42169
coffee             42166
philippine         42163
inaugural          42148
dismissed          42104
armenian           42095
collins            42069
illustrated        42064
reservoir          42052
keith              42047
ibn                42031
speakers           42023
programmes         42022
sharing            42019
resource           42012
bone               42012
argument           41978
genetic            41977
interviews         41963
hans               41958
feeling            41938
camps              41933
regulation         41914
computers          41909
rogers             41889
preferred          41859
meat               41829
thin               41816
travelled          41814
larry              41761
comparison         41726
jacob              41715
flower             41706
ordinary           41685
belongs            41679
colombia           41654
distinctive        41653
slave              41625
recreation         41614
deck               41613
requested          41602
shah               41595
valuable           41589
southeastern       41589
mi                 41588
impossible         41573
vincent            41559
dependent          41554
brisbane           41554
hugh               41547
breeding           41526
sultan             41524
playoff            41522
rocky              41520
flew               41517
cutting            41512
helps              41454
expand             41431
bonus              41413
exactly            41405
symptoms           41399
procedure          41398
milk               41398
pine               41384
gauge              41362
intention          41356
departed           41348
qualification      41346
inspiration        41338
ghost              41337
neck               41332
stress             41324
shipping           41321
slaves             41313
variations         41313
shield             41304
theories           41270
munich             41231
recognised         41231
emphasis           41159
favour             41144
variable           41138
seeds              41128
shoot              41098
undergraduate      41096
territorial        41091
sao                41075
intellectual       41061
qualify            41061
weak               41054
grandson           41054
sitting            41054
mini               41049
gift               41042
perry              40968
banned             40953
pointed            40944
herbert            40927
democrats          40922
assessment         40911
judicial           40900
examination        40895
attempting         40870
objective          40863
partial            40846
pearl              40825
autumn             40811
characteristic     40810
hardware           40807
exact              40799
pradesh            40798
execution          40787
ottawa             40756
raw                40750
metre              40749
drum               40739
jefferson          40706
exhibitions        40657
withdrew           40636
attendance         40627
sat                40619
madison            40617
phrase             40590
journalism         40574
guardian           40566
logo               40539
barcelona          40531
spend              40525
measured           40523
error              40499
christians         40496
literally          40483
thirteen           40452
trio               40447
protestant         40436
theology           40400
respective         40386
atmosphere         40381
buddhist           40378
substitute         40377
pm                 40355
curriculum         40349
prove              40324
fundamental        40318
outbreak           40309
celebration        40283
rabbi              40282
tons               40273
decide             40269
warm               40262
warning            40243
intermediate       40229
designation        40227
gothic             40226
globe              40224
'll                40209
liberation         40203
simultaneously     40186
diseases           40173
matrix             40172
experiments        40167
locomotive         40161
difficulties       40153
luke               40143
craig              40142
mainland           40134
nepal              40133
relegated          40128
contributing       40110
tiger              40108
database           40074
developments       40062
seemed             40051
rocket             40034
sum                40024
veteran            40013
carries            40002
ranges             40001
grove              39958
custom             39942
liquid             39934
instruction        39932
gregory            39929
clock              39925
ron                39907
lodge              39902
boxing             39892
monday             39891
exit               39878
protests           39865
obama              39846
defend             39807
harold             39806
newcastle          39779
dennis             39776
experiment         39753
physician          39750
describing         39739
options            39733
challenges         39691
corruption         39653
delaware           39639
telling            39631
gates              39629
warriors           39610
adventures         39609
friendship         39596
trouble            39588
ensemble           39585
ultimate           39583
succession         39581
hitler             39555
quick              39552
explains           39534
renaissance        39521
tenth              39512
altitude           39504
receives           39483
eu                 39450
approached         39432
kenya              39422
perspective        39395
crosses            39386
convicted          39367
sierra             39365
syria              39360
croatia            39347
warsaw             39326
professionals      39296
improvements       39294
worn               39284
looks              39272
airline            39269
worker             39261
compound           39255
permitted          39244
preservation       39239
connect            39229
reducing           39221
printing           39217
scientist          39212
butler             39201
activist           39200
wish               39185
comprises          39169
sized              39145
societies          39143
enters             39135
escaped            39129
pedro              39118
fill               39108
ruler              39106
diesel             39100
gospel             39094
earthquake         39082
stuart             39077
denver             39074
extend             39063
autonomous         39063
croatian           39051
serial             39047
beer               39036
prayer             39032
decorated          39032
relevant           39007
mtv                39005
eagles             38992
amsterdam          38980
ideal              38977
interesting        38973
grows              38960
grass              38949
presents           38944
grave              38940
tier               38940
teach              38931
towers             38929
parking            38901
wider              38892
pc                 38885
faces              38881
ralph              38874
welfare            38860
burned             38858
columns            38856
alumni             38853
sword              38853
descendants        38837
interface          38821
jon                38817
lion               38816
reserves           38816
banking            38799
colonies           38785
manufacturers      38767
noise              38767
murphy             38757
magnetic           38748
closure            38741
gear               38731
pitched            38722
vocalist           38716
edwards            38710
preserve           38697
enrolled           38695
load               38686
photo              38683
cancelled          38622
equation           38597
2000s              38596
dress              38586
sort               38577
nickname           38567
bulgaria           38554
heroes             38547
exile              38540
pa                 38533
mathematical       38533
demands            38525
input              38521
structural         38519
tube               38519
stem               38518
approaches         38508
proof              38503
argentine          38502
timber             38499
leo                38499
axis               38493
manuscript         38484
inherited          38484
farmer             38477
ticket             38471
depicted           38459
targets            38451
visits             38426
veterans           38412
ski                38403
knights            38394
regard             38388
removal            38377
vegas              38351
efficiency         38330
organisations      38325
montana            38312
concepts           38300
random             38300
lebanon            38299
eddie              38291
plastic            38276
manga              38262
petersburg         38257
rally              38253
aboard             38249
supplied           38248
amounts            38216
yale               38181
tournaments        38174
broadcasts         38138
signals            38135
aside              38124
pilots             38113
blind              38086
azerbaijan         38082
mansion            38075
architects         38071
victim             38062
catch              38058
enzyme             38050
literacy           38039
parade             38023
declaration        37983
placing            37976
sixteen            37962
boss               37961
batting            37960
informed           37942
incumbent          37935
gilbert            37935
bulgarian          37927
consistent         37916
affect             37903
traveling          37847
lp                 37846
aware              37845
poll               37842
defended           37812
landmark           37802
craft              37790
enemies            37771
southwestern       37747
raid               37729
resignation        37729
anime              37719
travels            37711
casualties         37711
prestigious        37697
namely             37695
aims               37693
recipient          37671
hat                37667
warfare            37659
ask                37652
tape               37647
readers            37647
collapse           37638
coached            37635
controls           37626
xi                 37622
pulled             37621
volleyball         37619
coup               37609
lesser             37591
referring          37583
rush               37563
verse              37557
pairs              37543
tested             37516
exhibited          37512
clients            37501
proteins           37496
han                37493
molecular          37487
abilities          37483
earn               37444
integration        37431
consist            37428
oscar              37423
fallen             37421
manual             37406
jet                37392
aspect             37391
advocate           37388
rick               37385
administered       37378
emotional          37367
governing          37362
sheriff            37359
amp                37359
hospitals          37358
commenced          37347
mystery            37340
tommy              37333
coins              37330
susan              37314
nee                37296
sheffield          37292
helen              37289
shadow             37286
lords              37270
burning            37263
defender           37257
variation          37250
resumed            37233
drinking           37224
lap                37212
canton             37208
sleep              37206
artificial         37172
elevated           37161
palm               37136
difficulty         37129
civic              37125
efficient          37121
northeastern       37115
inducted           37104
empty              37092
florence           37078
radiation          37078
affiliate          37023
confused           37012
hear               37010
boards             36991
cloud              36985
stakes             36946
il                 36906
byzantine          36900
wu                 36885
convinced          36881
nephew             36881
wake               36829
afternoon          36825
talks              36786
consumption        36782
freight            36780
interaction        36779
oblast             36776
rev                36775
venice             36762
numbered           36753
steven             36737
seminary           36730
contracts          36724
spider             36717
extinct            36703
manuel             36700
predecessor        36693
bearing            36685
murdered           36678
cultures           36665
functional         36660
neighboring        36660
soap               36658
oxygen             36642
revised            36640
cylinder           36640
grants             36632
narrative          36611
faster             36605
reforms            36605
athlete            36594
reed               36584
fortune            36558
ted                36556
prisoner           36540
tales              36525
reflect            36521
bull               36515
switched           36513
presidency         36505
compositions       36502
explain            36500
specialist         36481
cricketer          36450
danger             36449
tale               36444
founders           36432
heaven             36432
firing             36429
divine             36419
sequel             36411
widow              36392
disbanded          36390
associations       36369
backed             36362
danny              36346
switch             36339
thereby            36332
hughes             36315
server             36303
pitcher            36298
commanding         36292
putting            36274
ivan               36270
boulevard          36253
singers            36247
mason              36231
crops              36209
rob                36209
militia            36208
reviewed           36197
centres            36195
waves              36195
consequently       36182
fortress           36179
tributary          36153
inn                36149
portions           36132
celtic             36111
bombing            36107
fourteen           36098
excellence         36089
reverse            36079
nest               36070
stroke             36067
paint              36066
payment            36057
mars               36046
surprise           36041
sean               36035
plaza              35995
unity              35982
victories          35958
scout              35950
doctors            35932
scotia             35928
farms              35923
sailing            35888
nominations        35835
variant            35817
attacking          35780
suspension         35776
jail               35770
installation       35753
jacques            35751
graphics           35730
estates            35727
comments           35726
shut               35724
merely             35701
diet               35684
abu                35675
acoustic           35669
destination        35669
kick               35660
venues             35647
surrender          35646
feelings           35639
detail             35632
smooth             35628
package            35614
holland            35589
retreat            35579
virus              35540
libraries          35527
wire               35524
quarterback        35523
ft                 35509
customs            35508
strange            35494
hell               35486
berkeley           35476
collaborated       35445
arnold             35418
gathered           35417
syndrome           35416
stops              35409
dialogue           35404
lying              35403
recruited          35388
shanghai           35375
neighbouring       35360
fairly             35350
psychological      35342
saudi              35334
moderate           35326
wallace            35312
gods               35303
exhibit            35295
innovation         35293
remembered         35277
bars               35261
depot              35261
binding            35260
brunswick          35241
situations         35241
certificate        35241
actively           35233
notice             35226
romance            35223
shakespeare        35212
editorial          35194
andre              35185
presentation       35153
bills              35143
ports              35134
rebels             35128
relay              35102
talking            35093
liu                35078
raymond            35078
nationalist        35078
roosevelt          35077
shorter            35071
methodist          35054
pushed             35036
archives           35035
experts            35026
maintains          35019
collegiate         35014
newton             35002
bishops            34996
maintaining        34994
phd                34991
suddenly           34988
temporarily        34975
embassy            34972
essex              34972
wellington         34967
greg               34966
connects           34961
purple             34947
reformed           34925
cool               34916
eat                34864
bengal             34862
recalled           34853
inches             34852
doctrine           34836
deemed             34819
legendary          34818
quantum            34818
pat                34816
reconstruction     34801
statements         34782
palestinian        34768
meter              34765
achievements       34755
neil               34754
riders             34744
interchange        34735
spots              34734
auto               34732
accurate           34730
chorus             34724
dealing            34717
dissolved          34716
missionary         34704
client             34694
thai               34652
angels             34650
operators          34637
google             34632
asking             34623
leonard            34621
signature          34618
e.g.               34617
generations        34616
stanford           34598
beam               34596
failing            34589
delayed            34589
drove              34585
cork               34570
seal               34566
customer           34565
fate               34551
garcia             34537
check              34513
nashville          34512
perceived          34511
hamlet             34509
abraham            34500
venezuela          34487
cult               34483
emerging           34462
garrison           34419
tomb               34408
abolished          34405
documented         34386
prepare            34379
intense            34372
gaining            34364
mutual             34357
watson             34352
panama             34340
eve                34338
canyon             34320
episcopal          34308
stored             34307
assists            34302
compiled           34299
arrive             34288
kerala             34274
kilometers         34256
mosque             34235
revenge            34232
grammy             34230
theorem            34206
unions             34196
segments           34194
glacier            34191
arrives            34183
employee           34181
theatrical         34163
circulation        34160
conferences        34159
phillips           34151
chapters           34129
handling           34105
displays           34077
circular           34074
authored           34065
spell              34064
spectrum           34061
legion             34059
conductor          34059
fewer              34046
otto               34038
dimensional        34037
throw              34032
nationwide         34027
liga               34023
yugoslavia         34016
bath               33995
peer               33961
marathon           33955
vietnamese         33945
fellowship         33942
sure               33941
sony               33935
armies             33930
flash              33899
understood         33878
realized           33876
regardless         33875
harvey             33855
marvel             33841
vermont            33833
relating           33822
dynamic            33810
pit                33809
politicians        33797
mixture            33792
invented           33785
serie              33785
somerset           33741
handle             33735
rough              33729
imprisoned         33711
posts              33706
mirror             33698
beliefs            33693
beta               33666
layout             33652
independently      33648
fur                33646
rookie             33625
electronics        33603
provisions         33571
fastest            33556
logic              33553
headquartered      33551
creates            33549
challenged         33538
beaten             33523
appeals            33523
plains             33517
protocol           33475
owns               33451
graphic            33451
considering        33425
nights             33423
wheels             33416
accommodate        33415
engagement         33402
montgomery         33401
iraqi              33394
midfielder         33366
hart               33351
rider              33341
jr                 33340
shock              33334
span               33333
commentary         33323
freestyle          33320
reflected          33303
palestine          33297
yang               33292
lighting           33279
pirates            33253
burial             33252
ladies             33246
vector             33234
platinum           33231
virtually          33218
backing            33210
todd               33206
sending            33193
prague             33193
tribal             33179
survival           33177
samples            33157
discuss            33149
columbus           33142
heir               33140
agree              33131
promised           33127
identification     33125
prototype          33119
chiefs             33118
shots              33111
criteria           33106
reader             33091
sandy              33086
drink              33074
clarke             33070
beetle             33068
dame               33063
devil              33062
kitchen            33042
arch               33038
tissue             33029
footage            33025
photographer       33025
extending          33015
unfortunately      33009
procedures         32999
threw              32998
francois           32992
predominantly      32983
updated            32977
breaks             32975
rhythm             32959
bat                32954
commitment         32953
preliminary        32913
cafe               32913
disorder           32912
mario              32907
prevented          32893
suburbs            32881
seriously          32874
joan               32866
discontinued       32852
retiring           32847
oral               32846
followers          32845
eugene             32837
pride              32829
extends            32828
lock               32826
massacre           32818
witness            32816
cameron            32796
journalists        32795
napoleon           32794
conquest           32770
larvae             32756
cruz               32755
pronounced         32752
horn               32747
monster            32722
gabriel            32706
behaviour          32698
diversity          32694
sustained          32694
addressed          32680
geographic         32664
restrictions       32663
dreams             32659
voiced             32647
milwaukee          32643
dialect            32641
quoted             32637
mercury            32630
killer             32624
grid               32611
nationally         32609
wet                32608
tip                32590
shaw               32586
nearest            32585
roster             32567
twentieth          32564
separation         32559
queens             32559
indies             32544
manages            32535
cuts               32533
citing             32515
brings             32512
bee                32506
chester            32475
intervention       32471
spencer            32469
sight              32466
guidance           32463
severely           32455
migration          32449
artwork            32447
focusing           32439
rivals             32430
trustees           32424
varied             32415
helicopter         32402
oakland            32391
enabled            32388
committees         32386
centered           32386
skating            32385
ha                 32383
slavery            32374
cardinals          32355
forcing            32354
tasks              32351
auckland           32341
youtube            32308
argues             32306
colored            32282
advisor            32271
mumbai             32265
requiring          32243
heading            32241
knows              32217
burns              32216
maurice            32215
theological        32214
pete               32208
bin                32205
engage             32190
registration       32188
refugees           32182
nineteenth         32160
survivors          32117
runners            32114
colleagues         32114
priests            32103
contribute         32099
variants           32087
confidence         32078
impressive         32059
workshop           32046
muscle             32034
concentrated       32025
creator            31986
lectures           31983
temples            31980
exploration        31977
frontier           31970
requirement        31942
familiar           31938
interactive        31933
navigation         31928
companion          31915
lift               31915
perth              31897
allegedly          31888
sullivan           31878
releasing          31871
citizenship        31859
observation        31858
stationed          31850
dawn               31849
ph.d.              31833
marc               31832
sheep              31826
breed              31816
discovers          31815
hamburg            31813
encourage          31806
divorce            31795
kilometres         31791
passion            31791
arrangements       31777
journals           31769
bowling            31742
performers         31740
isle               31709
saskatchewan       31707
egg                31696
bennett            31672
hybrid             31668
hotels             31647
personally         31637
lancashire         31633
sit                31629
dubbed             31629
airfield           31602
bench              31596
quarters           31593
anchor             31586
suburban           31568
absolute           31568
theoretical        31548
dying              31532
pace               31531
honored            31500
sussex             31500
anglican           31489
dollar             31480
stockholm          31475
permanently        31475
newport            31442
discover           31442
upcoming           31438
fed                31435
privately          31405
receiver           31388
optical            31378
highways           31371
congo              31370
colours            31367
aggregate          31364
authorized         31353
punishment         31349
repeatedly         31347
varies             31338
fluid              31333
teeth              31331
innovative         31303
transformed        31296
praise             31292
fisher             31280
convoy             31274
demanded           31270
pale               31265
cole               31261
detective          31259
discography        31252
attraction         31249
neo                31249
lab                31234
export             31229
audiences          31223
deals              31210
ordained           31206
kiss               31204
enlisted           31199
occasional         31178
westminster        31158
syrian             31157
heavyweight        31149
bosnia             31144
consultant         31135
eventual           31124
forth              31115
improving          31113
aires              31093
wickets            31077
epic               31061
reactions          31053
mate               31020
scandal            31014
stolen             31007
md                 30998
lisa               30997
i.e.               30992
discrimination     30982
buenos             30967
patron             30962
kate               30960
eating             30954
investors          30945
conjunction        30934
testament          30925
belong             30923
penn               30913
ram                30890
construct          30889
encountered        30888
celebrity          30884
deeply             30876
expanding          30869
isaac              30860
voices             30857
georgian           30855
sur                30842
brands             30838
retain             30837
underwent          30828
algorithm          30823
foods              30811
provision          30797
durham             30770
orbit              30764
transformation     30758
associates         30755
tactical           30751
compact            30748
beneath            30746
celebrate          30726
miguel             30718
closest            30695
varieties          30694
stability          30694
rebel              30688
arc                30677
favourite          30673
refuge             30659
messages           30654
gathering          30651
moreover           30638
ranch              30636
manila             30626
configuration      30621
ernest             30614
gameplay           30607
loved              30604
discipline         30591
attitude           30586
entity             30568
comprising         30562
composers          30556
skill              30548
aaron              30547
accomplished       30547
johann             30525
canon              30518
monitoring         30507
sox                30502
laura              30495
ruins              30493
museums            30488
arsenal            30484
push               30483
sustainable        30477
lopez              30476
zoo                30474
aerial             30474
nancy              30473
altered            30461
codes              30450
girlfriend         30449
voyage             30438
inc                30426
friedrich          30426
conflicts          30424
storyline          30419
travelling         30418
gross              30417
conducting         30402
merit              30393
disappeared        30393
plates             30388
indicating         30368
wore               30366
referendum         30358
vladimir           30350
currency           30330
encounter          30325
sensitive          30310
deliver            30283
particles          30281
owen               30277
automobile         30276
julian             30273
wilhelm            30270
dinner             30255
clerk              30246
recognize          30234
workshops          30233
furniture          30228
bow                30215
acclaimed          30206
inhabited          30161
doctorate          30151
saving             30150
cuban              30147
alien              30144
phenomenon         30136
dome               30133
enrollment         30130
tobacco            30123
governance         30111
cartoon            30101
fat                30097
trend              30069
dies               30066
explosion          30054
equally            30043
manufacture        30043
rings              30042
java               30030
hydrogen           30020
lessons            30016
grande             30015
compensation       30011
download           30009
pianist            30007
grain              30006
shifted            29986
impressed          29986
neutral            29976
promise            29953
tang               29941
evaluation         29939
stronger           29937
define             29935
cycling            29917
enjoy              29910
seized             29894
array              29886
relatives          29874
paying             29868
stevens            29854
motors             29852
firms              29836
varying            29811
automatically      29792
restore            29792
hopes              29792
pack               29782
nicknamed          29781
findings           29770
governed           29769
pounds             29757
investigate        29749
monitor            29742
easier             29728
shelter            29727
manitoba           29704
administrator      29688
jamaica            29684
taste              29681
bones              29678
vital              29677
integral           29672
palmer             29666
indonesian         29650
confusion          29632
publishers         29625
enable             29613
geographical       29606
sprint             29598
inland             29576
naming             29574
delay              29560
civilians          29545
reconnaissance     29544
indianapolis       29544
lecturer           29519
deer               29514
smart              29499
tourists           29480
exterior           29475
armstrong          29473
kills              29465
watching           29458
hoped              29451
rhode              29423
bassist            29416
symbols            29403
scope              29392
mouse              29364
eighteen           29350
treat              29348
ammunition         29347
rovers             29346
dancer             29346
yuan               29338
poets              29300
wait               29300
punjab             29298
zhang              29292
nursing            29287
cent               29279
boom               29276
developers         29275
butterfly          29246
collect            29241
dozen              29238
estimates          29229
presbyterian       29221
nasa               29218
holdings           29213
pregnant           29213
generate           29207
renewed            29204
computing          29192
cyprus             29185
arabia             29165
duration           29154
lawsuit            29143
moments            29134
atomic             29121
compounds          29108
lover              29089
gastropod          29082
shoulder           29082
permit             29076
keys               29070
valid              29070
vii                29062
touchdowns         29062
suspected          29053
facade             29052
interactions       29050
constantly         29048
mineral            29041
practiced          29022
allegations        29018
consequence        29017
goalkeeper         29016
cream              29013
chambers           29009
threats            29006
pond               29002
davies             28993
baronet            28988
copyright          28961
louise             28944
knee               28920
uprising           28915
carved             28914
involve            28909
properly           28903
targeted           28902
ibm                28889
reveal             28888
competitors        28875
mentions           28866
kid                28864
sanctuary          28847
fees               28842
pursued            28828
cannon             28826
naturally          28824
tampa              28808
chronicle          28800
snake              28792
capabilities       28790
specified          28772
divorced           28769
specimens          28762
lucas              28754
toll               28750
accounting         28738
hub                28736
violin             28724
limestone          28711
staged             28710
photos             28703
infection          28692
upgraded           28689
philosophical      28689
certainly          28678
streams            28675
guild              28668
senators           28665
revolt             28663
rainfall           28654
supporter          28648
motorcycle         28647
princeton          28644
ce                 28644
terrain            28630
hometown           28619
settle             28606
ab                 28600
probability        28596
announcement       28596
chuck              28590
assembled          28590
paulo              28583
consequences       28583
surrey             28582
glen               28570
hitting            28553
voltage            28550
developer          28549
topic              28543
feels              28535
colin              28527
destroyer          28525
floors             28520
lineup             28511
stretch            28504
curve              28502
prevention         28501
adoption           28491
potentially        28469
onwards            28464
sheet              28441
aids               28438
yu                 28434
willing            28420
brooks             28412
trips              28391
imposed            28387
ronald             28371
hosting            28366
midnight           28366
forever            28361
holmes             28349
chen               28342
sixty              28328
striking           28307
strict             28301
admission          28294
odd                28293
ji                 28288
apartments         28279
solely             28264
justin             28254
utility            28252
kinds              28252
proceeded          28249
observations       28236
euro               28233
incidents          28232
goddess            28215
simpson            28207
vinyl              28201
doubt              28197
brook              28187
profession         28183
haven              28164
cliff              28159
distant            28156
expelled           28151
rivalry            28144
runway             28138
torpedo            28126
saxon              28110
hood               28106
bradford           28102
zones              28091
shrine             28090
dimensions         28075
counts             28075
millions           28049
holder             28045
investigations     28041
afl                28041
marcus             28029
lithuania          28027
oh                 28005
idaho              28004
powell             27995
pursuit            27982
ba                 27974
copenhagen         27951
franz              27950
considerably       27941
locality           27936
wireless           27931
decrease           27909
genes              27908
thermal            27901
deposits           27897
laser              27890
hindi              27889
habitats           27885
feeding            27883
withdrawn          27869
duncan             27841
healthy            27831
biblical           27829
dragons            27816
sergeant           27812
monuments          27810
marble             27809
casting            27808
chelsea            27788
ruth               27781
nose               27780
plateau            27766
remember           27766
santiago           27766
thesis             27759
managers           27758
flooding           27754
assassination      27754
gibson             27745
porter             27730
ellis              27729
acknowledged       27727
interim            27725
mad                27723
inscription        27710
bailey             27702
ferdinand          27697
guided             27687
pastor             27684
finale             27683
insects            27674
tables             27653
suggesting         27652
transported        27647
activists          27636
marshal            27634
intensity          27629
airing             27626
cardiff            27623
proposals          27610
shi                27597
lifestyle          27590
prey               27579
herald             27577
explanation        27568
capitol            27560
aboriginal         27560
bomber             27549
kenneth            27547
measuring          27535
sits               27533
lasting            27528
clothes            27520
playstation        27516
depends            27516
interpreted        27492
whatever           27487
occurring          27484
escort             27475
fernando           27469
kingston           27467
desired            27465
franco             27454
solomon            27453
happen             27451
drawings           27448
calgary            27442
alpine             27433
boarding           27424
healthcare         27420
thrown             27401
panels             27396
elimination        27393
preparing          27388
oslo               27381
ghana              27376
blog               27372
sabha              27367
warrior            27363
bonds              27346
intent             27343
cruise             27335
inspector          27334
superintendent     27329
ap                 27307
monk               27303
badly              27294
governors          27260
allan              27228
instructions       27223
bankruptcy         27223
rod                27212
p.m.               27207
equity             27203
triangle           27194
disk               27193
pretty             27186
layers             27174
aggressive         27172
slovenia           27163
directions         27161
prussia            27154
mph                27152
necessarily        27149
quartet            27148
mechanics          27142
graduates          27139
facts              27138
opens              27121
politically        27106
ritual             27093
giovanni           27090
marines            27083
monks              27069
screenplay         27067
geneva             27049
drives             27048
andrews            27036
nato               27033
absorbed           27025
rape               27025
topped             27021
humanity           27015
knowing            27013
petition           27013
bold               27011
morocco            27001
exhibits           26998
canterbury         26990
ai                 26976
obvious            26965
publish            26965
rankings           26944
crater             26942
dominican          26932
fraud              26924
enhanced           26919
planes             26910
lutheran           26909
governmental       26902
joins              26898
collecting         26890
brussels           26884
enterprises        26881
julia              26870
unified            26862
plymouth           26862
streak             26827
strategies         26823
tune               26818
flagship           26807
remarkable         26804
counsel            26801
wednesday          26800
bryan              26798
surfaces           26792
pipe               26792
argue              26783
truly              26776
fbi                26770
oval               26766
archive            26763
etymology          26762
imprisonment       26761
instructor         26760
noting             26752
remix              26751
nintendo           26748
loyal              26746
opposing           26744
servant            26742
rotation           26740
width              26739
trans              26733
upset              26732
ethics             26728
blake              26727
maker              26717
synthesis          26706
shallow            26705
rodriguez          26705
excess             26698
tactics            26695
snail              26683
ltd.               26668
lighthouse         26658
sequences          26652
flora              26642
cornwall           26639
plantation         26632
mythology          26628
performs           26618
foundations        26618
strikes            26617
populated          26616
joy                26606
horizontal         26587
speedway           26582
activated          26580
assignment         26574
windsor            26571
edmund             26571
witnesses          26568
performer          26566
memories           26566
diving             26565
pull               26565
kit                26560
conceived          26559
balls              26554
edmonton           26553
subtropical        26551
smoke              26550
environments       26538
prompted           26537
semifinals         26534
richardson         26521
caps               26518
bulk               26515
treasury           26513
memphis            26513
fusion             26511
recreational       26510
burn               26483
judgment           26477
telegraph          26476
rubber             26469
leslie             26469
continent          26463
portraits          26445
bicycle            26444
relegation         26419
pen                26417
catholics          26405
graph              26402
velocity           26397
rulers             26395
endangered         26393
secular            26392
observer           26389
josh               26387
dressed            26359
springfield        26357
learns             26355
fail               26331
teen               26325
os                 26318
tight              26316
brighton           26310
inquiry            26308
idol               26306
postal             26291
rachel             26285
essay              26283
dictionary         26281
certification      26278
estimate           26276
cluster            26273
armenia            26268
circles            26262
quiet              26254
swing              26248
mysterious         26246
galaxy             26245
cabin              26236
observatory        26225
physically         26224
emma               26208
revived            26205
nadu               26201
sa                 26196
cox                26189
consumers          26186
hypothesis         26183
conversation       26179
manuscripts        26178
angry              26178
contents           26176
arguments          26173
explore            26173
editing            26163
trails             26160
henderson          26150
arctic             26133
essays             26133
lease              26117
belfast            26109
devon              26109
acquire            26098
promotional        26097
undertaken         26095
ash                26088
corridor           26085
succeed            26083
casino             26083
lucy               26080
milton             26076
proceedings        26065
antarctic          26057
item               26057
millennium         26055
mature             26048
preston            26042
labels             26034
delegates          26033
vegetation         26027
holes              26025
acclaim            26016
directing          26003
substance          26000
outcome            25997
strings            25996
log                25987
introduce          25979
scales             25975
diploma            25970
philosopher        25958
malta              25957
albanian           25956
vicinity           25953
degc               25953
handled            25949
legends            25949
nathan             25946
trick              25944
regiments          25921
consent            25920
terrorist          25917
scattered          25913
sebastian          25912
cleared            25907
presidents         25891
gravity            25888
conspiracy         25880
orientation        25870
deployment         25867
duchy              25853
bradley            25849
refuses            25846
loose              25846
halifax            25841
estonia            25830
crowned            25822
separately         25819
marsh              25814
twins              25798
consciousness      25793
cats               25790
renovation         25788
glory              25776
hearts             25775
claude             25761
jets               25742
curtis             25734
breast             25724
suite              25706
albany             25698
rises              25684
wilderness         25683
felix              25667
objectives         25661
jin                25655
agreements         25638
empress            25634
slopes             25634
inclusion          25634
cameras            25631
consideration      25624
equality           25623
caroline           25614
decree             25614
legally            25610
believing          25591
bombers            25584
ballot             25582
criticised         25580
rochester          25577
recurring          25575
quest              25574
struggled          25551
yi                 25550
wonder             25541
disabled           25537
vol                25523
henri              25520
electron           25512
poles              25512
prussian           25511
convert            25503
bacteria           25494
poorly             25485
michel             25479
priority           25477
watched            25476
burton             25470
sudan              25469
rap                25468
responsibilities   25467
geological         25466
wyoming            25454
consistently       25442
respected          25438
bore               25430
minimal            25429
heath              25424
withdrawal         25414
hp                 25411
collapsed          25408
interviewed        25400
melody             25397
proximity          25393
repairs            25388
monte              25363
graves             25355
initiatives        25347
pakistani          25347
republicans        25345
tyler              25343
propaganda         25339
viii               25329
abstract           25328
commercially       25326
availability       25323
speaks             25322
banner             25315
mechanisms         25301
naples             25299
discussions        25290
underlying         25287
fossil             25284
lens               25272
proclaimed         25248
advised            25234
spelling           25233
auxiliary          25227
attract            25221
lithuanian         25218
editors            25216
o'brien            25211
barrel             25210
recover            25208
accordance         25208
measurement        25208
novelist           25205
emmy               25204
amy                25198
ussr               25192
formats            25184
councils           25175
und                25175
burma              25170
extraordinary      25151
contestants        25150
climbing           25145
indie              25137
facebook           25134
sick               25130
tiny               25126
worlds             25122
parishes           25112
barrier            25111
battalions         25108
sponsor            25106
consulting         25092
terrorism          25085
skull              25079
lawyers            25068
linda              25067
fraser             25067
surgeon            25065
fires              25056
implement          25056
uganda             25043
crucial            25036
circus             25029
unclear            25027
te                 25024
notion             25019
distinguish        25013
ion                25013
ace                25000
math               24997
jesse              24988
ahmad              24984
sc                 24963
collector          24960
cyclone            24954
lit                24942
cia                24926
attractions        24920
filipino           24905
ecology            24902
investments        24901
trucks             24895
reads              24892
capability         24892
harmony            24889
renovated          24870
basement           24856
iceland            24844
albania            24843
accredited         24828
scouts             24814
invitation         24807
offense            24804
armor              24803
dust               24797
spite              24794
sculptor           24793
sometime           24787
salary             24785
cognitive          24782
strictly           24775
nice               24773
tension            24769
errors             24761
gaming             24761
condemned          24761
glenn              24751
successive         24744
consolidated       24743
stake              24741
theodore           24738
spy                24732
baroque            24715
emily              24707
ho                 24705
entries            24694
regulatory         24680
ac                 24663
alexandria         24653
istanbul           24646
reserved           24639
treasurer          24638
variables          24624
arose              24619
hd                 24618
technological      24604
robot              24599
abdul              24596
walks              24587
rounded            24584
corn               24583
provider           24582
rhine              24579
agrees             24577
brass              24577
accuracy           24571
genera             24564
robertson          24563
decreased          24553
frankfurt          24550
ecuador            24546
edges              24546
particle           24541
rendered           24541
cooking            24538
ahmed              24533
wei                24531
calculated         24528
si                 24522
careers            24520
lightning          24519
faction            24505
thursday           24499
rifles             24496
blade              24493
sudden             24486
americas           24485
gaelic             24472
portsmouth         24468
trace              24453
resides            24436
sr.                24434
reunion            24416
spotted            24413
chest              24411
merchants          24388
fiscal             24381
jam                24376
monroe             24375
premises           24374
lancaster          24366
coin               24364
doug               24361
wise               24360
draws              24359
presenter          24349
acceptance         24345
moses              24345
lecture            24342
ceremonies         24338
nurse              24306
dimension          24299
mcdonald           24298
pollution          24296
keyboard           24279
chi                24278
clinic             24274
fitness            24273
tickets            24273
consensus          24260
membrane           24259
brigadier          24258
jennifer           24257
nonetheless        24252
genres             24244
supervision        24240
predicted          24227
blocked            24220
den                24216
magnitude          24215
finite             24206
differ             24201
courthouse         24193
knocked            24189
ancestry           24172
vale               24158
delegation         24146
betty              24146
freshman           24143
removing           24131
loves              24106
proceeds           24099
placement          24087
freeway            24085
emigrated          24085
siblings           24073
dale               24068
molecules          24067
loaded             24066
reynolds           24060
payments           24041
considers          24038
edgar              24026
demonstration      24024
jamie              24023
proportion         24023
newer              24020
valve              24020
achieving          24019
carol              24010
confederation      23998
continuously       23985
harper             23980
sail               23977
luxury             23974
notre              23966
accidentally       23963
ms                 23959
introducing        23948
coordinates        23933
charitable         23930
squadrons          23925
garage             23925
lyon               23914
bce                23913
disorders          23912
geometry           23908
fights             23895
dos                23890
sin                23889
winnipeg           23887
frog               23876
ulster             23876
welcome            23866
raiders            23861
altar              23839
loans              23838
longtime           23836
receptor           23829
planted            23828
preceding          23801
stern              23799
belgrade           23796
leather            23788
mandate            23786
blow               23785
wrestler           23780
neighbourhood      23777
factories          23771
buddhism           23767
imported           23767
sectors            23766
protagonist        23763
salem              23761
fault              23761
highland           23757
reliable           23756
strait             23747
martha             23721
hugo               23710
steep              23702
elaborate          23702
costume            23697
prohibited         23695
artifacts          23686
wheat              23676
aka                23675
prizes             23672
quit               23663
stick              23661
pupil              23658
cooperative        23656
sovereign          23653
questioned         23652
subspecies         23645
orlando            23640
carlo              23639
wishes             23622
carriers           23613
blair              23597
custody            23595
cohen              23595
allmusic           23595
diagnosis          23592
nationals          23588
settings           23576
autobiography      23576
neighborhoods      23573
vulnerable         23568
analog             23566
facilitate         23564
bread              23557
hammer             23551
voluntary          23549
stepped            23546
reid               23542
ore                23542
woodland           23541
morrison           23539
boeing             23536
jointly            23529
newfoundland       23526
contrary           23511
organizing         23506
complicated        23503
dong               23500
raids              23497
exercises          23486
nobel              23483
machinery          23481
baltic             23479
murders            23475
shirt              23459
classics           23452
crop               23439
demo               23434
totally            23422
silk               23415
dealt              23401
sacrifice          23393
granite            23392
dense              23388
websites           23382
hardy              23376
mandatory          23370
fever              23355
seeks              23354
surrendered        23352
anthology          23343
malcolm            23341
comedian           23340
bombs              23336
climb              23322
slot               23312
romans             23304
synopsis           23298
critically         23297
arcade             23296
marking            23290
equations          23288
hopkins            23287
controlling        23274
pocket             23269
attractive         23264
halls              23257
indo               23256
inaugurated        23245
chicken            23244
embarked           23237
proven             23217
speeds             23212
dock               23209
overcome           23195
bike               23191
clause             23181
invention          23156
premiership        23142
terror             23139
thames             23137
lots               23131
likewise           23125
presenting         23119
chip               23113
demonstrate        23113
designers          23112
organize           23107
yankees            23105
lynn               23091
examined           23078
km/h               23072
mask               23051
bavaria            23049
troop              23043
wagner             23033
referee            23030
jeremy             23024
destroying         23017
detection          23017
zurich             23014
prairie            23010
richards           23004
rapper             23000
respond            22997
churchill          22993
wingspan           22993
grandmother        22992
eurovision         22988
luxembourg         22987
crews              22982
busy               22981
slovakia           22980
throwing           22977
inception          22975
disputed           22975
mammals            22967
entrepreneur       22956
diana              22954
makers             22952
toy                22951
batteries          22944
evangelical        22929
yield              22919
homer              22909
clergy             22905
adrian             22902
salvador           22896
blacks             22892
polo               22883
macdonald          22881
trademark          22881
assume             22879
defunct            22872
allocated          22858
depicting          22857
volcanic           22852
burke              22846
batted             22823
worse              22820
conquered          22816
sculptures         22816
providers          22815
hayes              22810
reflects           22807
teenage            22790
armoured           22779
treasure           22775
striker            22773
locals             22773
walt               22760
marion             22756
herzegovina        22754
contracted         22753
julius             22751
innocent           22734
entities           22708
pet                22701
sponsorship        22693
boxer              22684
dining             22680
prominence         22678
apollo             22676
flowing            22671
kyle               22668
ethiopia           22667
carroll            22659
marketed           22645
corporations       22637
ellen              22625
duck               22619
withdraw           22618
floating           22617
barnes             22604
carnegie           22596
induced            22591
investigated       22591
portfolio          22590
flowering          22578
opinions           22577
protecting         22575
viewing            22572
classroom          22559
donations          22558
trap               22557
trainer            22555
bounded            22554
perception         22553
tongue             22550
leicester          22530
kurt               22530
kenny              22528
johnston           22523
explorer           22512
everyday           22511
fruits             22501
tin                22501
charleston         22495
se                 22493
academics          22489
bigger             22488
guitars            22477
intelligent        22469
kumar              22466
solve              22462
pin                22458
anywhere           22456
kerry              22446
surveillance       22445
happens            22438
carpenter          22436
statute            22435
fu                 22433
complaints         22433
listening          22432
auction            22429
airborne           22427
smallest           22422
deceased           22416
testimony          22409
rector             22401
creatures          22400
petroleum          22400
karen              22399
edwin              22396
resolved           22390
adopt              22383
commanders         22380
rescued            22375
cherry             22365
jake               22356
stamps             22354
gonzalez           22353
op                 22351
algebra            22351
beside             22348
southampton        22343
modes              22340
cultivation        22335
transmitter        22333
bend               22332
promising          22319
spelled            22314
obtaining          22313
sizes              22302
acre               22301
pageant            22296
bats               22291
trunk              22290
abbreviated        22288
correspondence     22284
barracks           22284
insisted           22275
feast              22269
tackles            22267
witch              22264
raja               22245
annie              22242
shed               22235
derives            22235
geology            22235
disputes           22228
summers            22227
translations       22223
counted            22221
constantinople     22220
joel               22217
seating            22210
rent               22210
crawford           22204
wound              22204
macedonia          22202
unlikely           22197
seventeen          22196
hide               22191
paradise           22188
tough              22183
preventing         22180
accommodation      22178
homeland           22167
explored           22167
thunder            22165
invaded            22165
provisional        22159
transform          22155
sphere             22149
unsuccessfully     22147
missionaries       22136
comment            22136
fe                 22133
crashed            22132
willie             22123
breakfast          22120
enormous           22119
conservatives      22110
reservation        22102
highlights         22096
traces             22096
organisms          22085
openly             22081
dancers            22076
fossils            22075
pub                22074
searching          22067
absent             22059
monarchy           22058
combining          22047
lanes              22042
sec                22038
lu                 22033
stint              22029
crazy              22027
tuesday            22020
dynamics           22010
chains             22009
missiles           22009
screening          22009
module             22007
tribune            21998
generating         21989
miners             21970
nottingham         21951
seoul              21946
unofficial         21945
owing              21944
julie              21935
linking            21931
rehabilitation     21921
citation           21914
louisville         21910
roller             21906
sherman            21903
finest             21902
mollusk            21899
depicts            21893
differential       21889
baldwin            21885
zimbabwe           21885
syracuse           21881
rosa               21875
kosovo             21873
swift              21873
realm              21871
vampire            21871
recommendations    21870
responses          21867
diary              21861
pottery            21851
scorer             21847
rays               21839
afc                21820
newman             21820
troy               21817
fountain           21804
tracking           21800
mere               21796
gerald             21792
tornado            21792
contacts           21789
mohammad           21788
trapped            21781
zhou               21780
aided              21780
exceptions         21779
dialects           21769
telecommunications 21769
pavilion           21769
defines            21767
cruiser            21767
aunt               21766
modeling           21757
arguing            21749
elderly            21741
itv                21737
lunar              21726
coupled            21724
dorothy            21719
flown              21703
cheese             21686
25th               21683
espn               21682
shoes              21681
nicolas            21680
formula_1          21678
bordered           21678
fragments          21678
guidelines         21671
gymnasium          21669
valued             21662
potter             21654
complexity         21652
krishna            21649
papal              21648
prosecution        21644
presumably         21639
maternal           21639
challenging        21638
reunited           21636
advancing          21634
comprised          21632
uncertain          21630
favorable          21630
twelfth            21627
correspondent      21626
nobility           21626
livestock          21623
button             21619
hook               21616
expressway         21607
olive              21606
batman             21600
chilean            21596
tide               21595
realizes           21592
researcher         21591
emissions          21582
darkness           21581
profits            21576
lengths            21573
accompanying       21570
staying            21568
witnessed          21565
pound              21564
itunes             21562
drainage           21561
subway             21560
slope              21558
chaos              21552
monarch            21541
reinforced         21538
feminist           21533
sanskrit           21523
develops           21515
jungle             21514
cowboys            21514
sleeping           21511
physicians         21501
brad               21500
outlets            21498
isbn               21498
strongest          21488
buying             21485
pier               21483
coordinator        21482
harm               21481
averaged           21473
cottage            21471
spirits            21462
hostile            21457
termed             21443
nixon              21440
puts               21433
occupy             21431
diagnosed          21431
pleasant           21425
yearly             21421
aberdeen           21416
cornell            21411
finger             21394
humanitarian       21389
stan               21386
prospect           21385
spacecraft         21384
stems              21366
enacted            21366
interference       21363
ludwig             21361
linux              21350
elliott            21350
tan                21347
ancestors          21345
karnataka          21345
peaceful           21341
constitute         21336
immigrant          21334
ceiling            21330
thriller           21324
ecclesiastical     21324
loyalty            21321
retire             21316
generals           21314
celebrations       21311
conviction         21311
boyfriend          21310
pleasure           21305
enhance            21297
darwin             21296
logan              21295
santos             21294
heating            21292
advocated          21288
beings             21281
evident            21267
easter             21267
advances           21259
claire             21257
bombardment        21256
watershed          21251
shuttle            21248
wicket             21243
twitter            21242
hoping             21239
adds               21236
branded            21234
hurt               21231
torture            21230
teaches            21220
schemes            21212
pension            21210
maple              21208
advocacy           21206
steady             21196
conservatory       21196
cairo              21195
varsity            21192
wo                 21192
freshwater         21189
providence         21182
thoughts           21182
ernst              21180
seemingly          21176
shells             21174
cuisine            21174
mar                21174
specially          21172
abortion           21162
peaks              21158
dish               21154
lucky              21149
intensive          21147
boxes              21146
publishes          21144
trilogy            21137
skilled            21131
possessed          21128
nacional           21121
andrea             21121
magical            21116
unemployment       21111
expense            21108
destinations       21102
parameters         21101
verses             21098
trafficking        21096
determination      21094
cage               21082
infinite           21077
berry              21076
savings            21076
beatles            21071
derek              21064
alignment          21062
linguistic         21062
countryside        21061
arrow              21059
dissolution        21058
measurements       21057
fatal              21057
hampton            21055
advantages         21051
heinrich           21047
martinez           21045
madonna            21044
licence            21041
subfamily          21025
sends              21022
noticed            21021
dylan              21019
hiding             21017
highlands          21014
swan               21014
dropping           21008
mt                 21004
modest             20999
regent             20997
algeria            20995
bag                20994
crest              20988
teachings          20979
knockout           20977
lunch              20975
brewery            20975
talented           20970
jumping            20969
combine            20968
walked             20967
conventions        20966
descended          20937
chassis            20934
nerve              20928
slight             20926
primitive          20922
honey              20919
fiji               20914
whenever           20911
anton              20894
watts              20893
fork               20891
likes              20888
explicitly         20878
mud                20878
cumberland         20874
uruguay            20874
laboratories       20874
skiing             20872
bypass             20871
chan               20865
elect              20854
informal           20850
walsh              20848
preceded           20848
nascar             20844
holocaust          20841
tackle             20839
minneapolis        20835
ally               20835
quantity           20835
securities         20829
keeps              20826
lighter            20820
maiden             20817
console            20807
servants           20803
doctoral           20802
religions          20790
reagan             20787
ear                20785
civilization       20772
commissioners      20770
hanging            20764
coral              20762
eliminate          20759
rhodes             20753
expertise          20746
mentor             20736
unveiled           20732
precise            20730
diplomat           20714
standings          20695
infant             20690
disciplines        20689
sicily             20687
endorsed           20681
systematic         20678
charted            20671
armored            20665
mild               20663
lateral            20659
interrupted        20658
townships          20657
hurling            20653
threatening        20650
qing               20632
islander           20631
supposedly         20620
prolific           20610
barn               20609
backup             20601
brilliant          20599
invested           20597
wartime            20592
pump               20590
compatible         20578
griffin            20564
publicity          20561
galleries          20558
beaches            20550
moist              20549
battlefield        20544
decoration         20541
dental             20537
violation          20537
convent            20535
integrity          20531
tubes              20530
terrestrial        20528
nominee            20528
keen               20507
requests           20505
humor              20497
delegate           20482
leased             20479
naked              20478
savage             20475
dubai              20468
knife              20466
update             20465
polar              20454
applying           20452
addresses          20447
munster            20444
sings              20444
commercials        20441
secretly           20429
wwe                20428
teamed             20418
dances             20417
eleventh           20413
midland            20408
wished             20406
marco              20402
cedar              20400
reasonable         20397
flee               20390
impression         20385
filter             20378
ferguson           20377
sandstone          20377
snails             20375
clara              20365
inspection         20365
elephant           20360
divide             20358
rene               20356
asset              20352
das                20352
themed             20352
comparable         20342
augustus           20338
demon              20330
paramount          20330
drake              20329
dairy              20327
archaeology        20315
lou                20315
intact             20314
institutes         20310
suffer             20309
rectangular        20300
instances          20299
beds               20293
phases             20291
powder             20291
ham                20290
reflecting         20283
substantially      20281
applies            20275
silence            20274
vacant             20272
drag               20270
perez              20266
anonymous          20261
lacked             20247
lined              20246
copa               20246
forbes             20243
coloured           20243
ease               20242
budapest           20240
jo                 20239
ignored            20231
smoking            20229
portal             20224
encounters         20219
sponsors           20218
encoded            20211
possess            20210
bullet             20203
luther             20186
revenues           20178
ucla               20162
chaired            20157
a.m.               20155
enabling           20152
lung               20150
chronic            20149
playwright         20148
liked              20147
stoke              20134
sociology          20133
stamp              20131
carey              20130
hung               20127
gifts              20115
bedford            20102
tibetan            20101
casey              20097
frames             20096
motto              20095
financing          20090
trinidad           20081
expectations       20079
illustrations      20077
creature           20069
winston            20066
chef               20064
gibraltar          20062
chateau            20060
patriots           20055
bolivia            20050
transmitted        20040
enclosed           20020
persuaded          20017
urged              20016
routine            20015
folded             20008
suffolk            20008
regulated          20003
bros.              20000
submarines         19989
yes                19985
lesbian            19985
ups                19983
myth               19981
sue                19979
oriental           19971
tel                19969
malaysian          19961
effectiveness      19960
frances            19955
narrowly           19953
acute              19951
thinks             19943
rushing            19942
sunk               19938
replied            19935
utilized           19935
tasmania           19923
consortium         19920
booth              19920
quantities         19918
amazing            19909
gains              19905
carriage           19905
parkway            19891
enlarged           19888
sided              19888
lang               19882
pregnancy          19881
photograph         19879
employers          19879
adequate           19872
randy              19869
beast              19862
expenses           19861
accordingly        19849
assumption         19842
ballad             19837
struggling         19836
mascot             19830
distances          19826
carefully          19824
peaking            19818
saxony             19815
projected          19812
affiliation        19807
limitations        19807
metals             19803
visitor            19802
guatemala          19801
scots              19798
theaters           19797
trailer            19795
kindergarten       19795
verb               19791
gather             19790
legitimate         19789
wives              19782
employer           19779
bach               19779
differs            19777
discharge          19767
controller         19764
warehouse          19763
webb               19761
anger              19750
norton             19741
ip                 19739
dirty              19739
wan                19737
seasonal           19735
warned             19734
marching           19733
corners            19730
maxwell            19730
starter            19725
guru               19725
silva              19723
campuses           19719
rainbow            19719
blast              19718
sara               19716
avoided            19712
fabric             19712
vatican            19706
maori              19704
thomson            19702
harsh              19697
excessive          19697
mrs                19696
chartered          19695
slam               19693
modifications      19687
caves              19682
greene             19681
monetary           19675
sacramento         19674
mixing             19672
institutional      19666
ming               19663
moss               19659
celebrities        19654
badge              19648
irrigation         19647
shapes             19645
bruno              19644
broadcaster        19643
anthem             19638
risks              19637
attributes         19636
demolition         19631
offshore           19629
convince           19625
specification      19624
surveys            19624
yugoslav           19623
contributor        19619
auditorium         19617
llc                19613
lebanese           19613
capturing          19608
airports           19607
lifted             19604
classrooms         19594
mistake            19588
jackie             19587
marina             19586
chennai            19582
paths              19579
joshua             19570
alphabet           19568
strain             19568
tendency           19560
bitter             19557
norwich            19549
vernon             19546
determining        19538
lacking            19536
dozens             19533
lynch              19532
upgrade            19526
sailors            19514
detected           19513
kingdoms           19513
cure               19510
forbidden          19509
qualities          19504
sovereignty        19502
freely             19499
decorative         19499
momentum           1
Download .txt
gitextract_dnygf_24/

├── .gitignore
├── .npmignore
├── .travis.yml
├── .zuul.yml
├── LICENSE.txt
├── README.md
├── bower.json
├── data/
│   ├── english_wikipedia.txt
│   ├── female_names.txt
│   ├── male_names.txt
│   ├── passwords.txt
│   ├── surnames.txt
│   └── us_tv_and_film.txt
├── data-scripts/
│   ├── build_frequency_lists.py
│   ├── build_keyboard_adjacency_graphs.py
│   ├── count_us_census.py
│   ├── count_wikipedia.py
│   ├── count_wiktionary.py
│   └── count_xato.coffee
├── demo/
│   ├── demo.coffee
│   ├── index.html
│   ├── jquery.js
│   ├── mustache.js
│   └── require.js
├── dist/
│   └── zxcvbn.js
├── package.json
├── src/
│   ├── adjacency_graphs.coffee
│   ├── feedback.coffee
│   ├── frequency_lists.coffee
│   ├── main.coffee
│   ├── matching.coffee
│   ├── scoring.coffee
│   └── time_estimates.coffee
└── test/
    ├── test-matching.coffee
    └── test-scoring.coffee
Download .txt
SYMBOL INDEX (98 symbols across 9 files)

FILE: data-scripts/build_frequency_lists.py
  function usage (line 9) | def usage():
  function parse_frequency_lists (line 41) | def parse_frequency_lists(data_dir):
  function is_rare_and_short (line 62) | def is_rare_and_short(token, rank):
  function has_comma_or_double_quote (line 65) | def has_comma_or_double_quote(token, rank, lst_name):
  function filter_frequency_lists (line 74) | def filter_frequency_lists(freq_lists):
  function to_kv (line 119) | def to_kv(lst, lst_name):
  function main (line 123) | def main():

FILE: data-scripts/build_keyboard_adjacency_graphs.py
  function usage (line 5) | def usage():
  function get_slanted_adjacent_coords (line 43) | def get_slanted_adjacent_coords(x, y):
  function get_aligned_adjacent_coords (line 52) | def get_aligned_adjacent_coords(x, y):
  function build_graph (line 58) | def build_graph(layout_str, slanted):

FILE: data-scripts/count_us_census.py
  function usage (line 5) | def usage():
  function main (line 23) | def main(input_filename, output_filename):

FILE: data-scripts/count_wikipedia.py
  function usage (line 14) | def usage():
  class TopTokenCounter (line 59) | class TopTokenCounter(object):
    method __init__ (line 60) | def __init__(self):
    method add_tokens (line 65) | def add_tokens(self, tokens, split_hyphens=True):
    method add_token (line 74) | def add_token(self, token):
    method should_include (line 86) | def should_include(self, token):
    method normalize (line 103) | def normalize(self, token):
    method batch_prune (line 106) | def batch_prune(self):
    method pre_sort_prune (line 111) | def pre_sort_prune(self):
    method get_sorted_pairs (line 120) | def get_sorted_pairs(self):
    method get_ts (line 123) | def get_ts(self):
    method get_stats (line 126) | def get_stats(self):
  function main (line 130) | def main(input_dir_str, output_filename):

FILE: data-scripts/count_wiktionary.py
  function usage (line 10) | def usage():
  function parse_wiki_tokens (line 29) | def parse_wiki_tokens(html_doc_str):
  function normalize (line 61) | def normalize(token):
  function main (line 64) | def main(wiktionary_html_root, output_filename):

FILE: demo/jquery.js
  function jQuerySub (line 871) | function jQuerySub( selector, context ) {
  function doScrollCheck (line 937) | function doScrollCheck() {
  function createFlags (line 964) | function createFlags( flags ) {
  function resolveFunc (line 1296) | function resolveFunc( i ) {
  function progressFunc (line 1304) | function progressFunc( i ) {
  function dataAttr (line 1931) | function dataAttr( elem, key, data ) {
  function isEmptyDataObject (line 1962) | function isEmptyDataObject( obj ) {
  function handleQueueMarkDefer (line 1980) | function handleQueueMarkDefer( elem, type, src ) {
  function resolve (line 2133) | function resolve() {
  function returnFalse (line 3465) | function returnFalse() {
  function returnTrue (line 3468) | function returnTrue() {
  function dirNodeCheck (line 5168) | function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
  function dirCheck (line 5201) | function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
  function isDisconnected (line 5474) | function isDisconnected( node ) {
  function winnow (line 5591) | function winnow( elements, qualifier, keep ) {
  function createSafeFragment (line 5628) | function createSafeFragment( document ) {
  function root (line 5992) | function root( elem, cur ) {
  function cloneCopyEvent (line 5999) | function cloneCopyEvent( src, dest ) {
  function cloneFixAttributes (line 6027) | function cloneFixAttributes( src, dest ) {
  function getAll (line 6163) | function getAll( elem ) {
  function fixDefaultChecked (line 6176) | function fixDefaultChecked( elem ) {
  function findInputs (line 6182) | function findInputs( elem ) {
  function shimCloneNode (line 6193) | function shimCloneNode( elem ) {
  function evalScript (line 6425) | function evalScript( i, elem ) {
  function getWH (line 6767) | function getWH( elem, name, extra ) {
  function addToPrefiltersOrTransports (line 6895) | function addToPrefiltersOrTransports( structure ) {
  function inspectPrefiltersOrTransports (line 6931) | function inspectPrefiltersOrTransports( structure, options, originalOpti...
  function ajaxExtend (line 6973) | function ajaxExtend( target, src ) {
  function done (line 7315) | function done( status, nativeStatusText, responses, headers ) {
  function buildParams (line 7630) | function buildParams( prefix, obj, traditional, add ) {
  function ajaxHandleResponses (line 7680) | function ajaxHandleResponses( s, jqXHR, responses ) {
  function ajaxConvert (line 7745) | function ajaxConvert( s, response ) {
  function createStandardXHR (line 8011) | function createStandardXHR() {
  function createActiveXHR (line 8017) | function createActiveXHR() {
  function doAnimation (line 8349) | function doAnimation() {
  function stopQueue (line 8492) | function stopQueue( elem, data, index ) {
  function createFxNow (line 8534) | function createFxNow() {
  function clearFxNow (line 8539) | function clearFxNow() {
  function genFx (line 8544) | function genFx( type, num ) {
  function t (line 8659) | function t( gotoEnd ) {
  function defaultDisplay (line 8851) | function defaultDisplay( nodeName ) {
  function getWindow (line 9160) | function getWindow( elem ) {

FILE: demo/mustache.js
  function isWhitespace (line 57) | function isWhitespace(string) {
  function escapeHTML (line 92) | function escapeHTML(string) {
  function debug (line 102) | function debug(e, template, line, file) {
  function lookup (line 127) | function lookup(name, stack, defaultValue) {
  function renderSection (line 170) | function renderSection(name, stack, callback, inverted) {
  function parse (line 218) | function parse(template, options) {
  function _compile (line 471) | function _compile(template, options) {
  function clearCache (line 498) | function clearCache() {
  function compile (line 511) | function compile(template, options) {
  function render (line 532) | function render(template, view, partials) {

FILE: demo/require.js
  function isFunction (line 41) | function isFunction(it) {
  function isArray (line 45) | function isArray(it) {
  function each (line 53) | function each(ary, func) {
  function eachReverse (line 68) | function eachReverse(ary, func) {
  function hasProp (line 79) | function hasProp(obj, prop) {
  function getOwn (line 83) | function getOwn(obj, prop) {
  function eachProp (line 92) | function eachProp(obj, func) {
  function mixin (line 107) | function mixin(target, source, force, deepStringMixin) {
  function bind (line 130) | function bind(obj, fn) {
  function scripts (line 136) | function scripts() {
  function defaultOnError (line 140) | function defaultOnError(err) {
  function getGlobal (line 146) | function getGlobal(value) {
  function makeError (line 165) | function makeError(id, msg, err, requireModules) {
  function newContext (line 197) | function newContext(contextName) {
  function getInteractiveScript (line 1942) | function getInteractiveScript() {

FILE: dist/zxcvbn.js
  function s (line 1) | function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&re...
Condensed preview — 35 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (7,277K chars).
[
  {
    "path": ".gitignore",
    "chars": 111,
    "preview": "*.js\n!zxcvbn*.js\n!demo/jquery.js\n!demo/require.js\n!demo/mustache.js\nnode_modules\nlib\n*~\n*.swp\n*.swo\ntmux-*.log\n"
  },
  {
    "path": ".npmignore",
    "chars": 56,
    "preview": ".git\n.gitignore\nbower.json\ndata\ndata-scripts\ndemo\ntest\n\n"
  },
  {
    "path": ".travis.yml",
    "chars": 69,
    "preview": "sudo: false\nlanguage: node_js\nnode_js:\n  - node\nscript: npm run test\n"
  },
  {
    "path": ".zuul.yml",
    "chars": 381,
    "preview": "ui: tape\nbrowsers:\n    - name: chrome\n      version: [36, -2..latest]\n    - name: safari\n      version: -2..latest\n    -"
  },
  {
    "path": "LICENSE.txt",
    "chars": 1078,
    "preview": "Copyright (c) 2012-2016 Dan Wheeler and Dropbox, Inc.\n\nPermission is hereby granted, free of charge, to any person obtai"
  },
  {
    "path": "README.md",
    "chars": 14368,
    "preview": "```\n_________________________________________________/\\/\\___________________\n_/\\/\\/\\/\\/\\__/\\/\\__/\\/\\____/\\/\\/\\/\\__/\\/\\__"
  },
  {
    "path": "bower.json",
    "chars": 629,
    "preview": "{\n    \"name\": \"zxcvbn\",\n    \"description\": \"realistic password strength estimation\",\n    \"main\": \"dist/zxcvbn.js\",\n    \""
  },
  {
    "path": "data/english_wikipedia.txt",
    "chars": 2362171,
    "preview": "the                124933855\nof                 59700086\nand                51078530\nin                 50589567\nto     "
  },
  {
    "path": "data/female_names.txt",
    "chars": 30042,
    "preview": "mary\npatricia\nlinda\nbarbara\nelizabeth\njennifer\nmaria\nsusan\nmargaret\ndorothy\nlisa\nnancy\nkaren\nbetty\nhelen\nsandra\ndonna\nca"
  },
  {
    "path": "data/male_names.txt",
    "chars": 8193,
    "preview": "james\njohn\nrobert\nmichael\nwilliam\ndavid\nrichard\ncharles\njoseph\nthomas\nchristopher\ndaniel\npaul\nmark\ndonald\ngeorge\nkenneth"
  },
  {
    "path": "data/passwords.txt",
    "chars": 898311,
    "preview": "123456          55893\npassword        20785\n12345678        13582\nqwerty          13230\n123456789       11696\n12345     "
  },
  {
    "path": "data/surnames.txt",
    "chars": 695422,
    "preview": "smith\njohnson\nwilliams\njones\nbrown\ndavis\nmiller\nwilson\nmoore\ntaylor\nanderson\nthomas\njackson\nwhite\nharris\nmartin\nthompson"
  },
  {
    "path": "data/us_tv_and_film.txt",
    "chars": 861544,
    "preview": "you                1222421\ni                  1052546\nto                 823661\nthe                770161\na             "
  },
  {
    "path": "data-scripts/build_frequency_lists.py",
    "chars": 5704,
    "preview": "#!/usr/bin/python\nimport os\nimport sys\nimport time\nimport codecs\n\nfrom operator import itemgetter\n\ndef usage():\n    retu"
  },
  {
    "path": "data-scripts/build_keyboard_adjacency_graphs.py",
    "chars": 4051,
    "preview": "#!/usr/bin/python\nimport sys\nimport simplejson\n\ndef usage():\n    return '''\nconstructs adjacency_graphs.coffee from QWER"
  },
  {
    "path": "data-scripts/count_us_census.py",
    "chars": 913,
    "preview": "#!/usr/bin/python\nimport sys\nimport codecs\n\ndef usage():\n    return '''\nThis script converts surname/name data from the "
  },
  {
    "path": "data-scripts/count_wikipedia.py",
    "chars": 5605,
    "preview": "#!/usr/bin/python\n\nimport sys\nimport os\nimport re\nimport codecs\nimport operator\nimport datetime\nimport nltk\nimport warni"
  },
  {
    "path": "data-scripts/count_wiktionary.py",
    "chars": 2670,
    "preview": "#!/usr/bin/python\n\nimport os\nimport sys\nimport codecs\nimport operator\n\nfrom unidecode import unidecode\n\ndef usage():\n   "
  },
  {
    "path": "data-scripts/count_xato.coffee",
    "chars": 4263,
    "preview": "matching = require '../lib/matching'\nscoring = require '../lib/scoring'\n\nfs = require 'fs'\nbyline = require 'byline'\nspr"
  },
  {
    "path": "demo/demo.coffee",
    "chars": 6430,
    "preview": "\ntest_passwords = '''\nzxcvbn\nqwER43@!\nTr0ub4dour&3\ncorrecthorsebatterystaple\ncoRrecth0rseba++ery9.23.2007staple$\n\np@sswo"
  },
  {
    "path": "demo/index.html",
    "chars": 1136,
    "preview": "<html>\n  <head>\n    <title>zxcvbn tests</title>\n\n    <script type=\"text/javascript\" src=\"jquery.js\">\n    </script>\n    <"
  },
  {
    "path": "demo/jquery.js",
    "chars": 248235,
    "preview": "/*!\n * jQuery JavaScript Library v1.7.1\n * http://jquery.com/\n *\n * Copyright 2011, John Resig\n * Dual licensed under th"
  },
  {
    "path": "demo/mustache.js",
    "chars": 14513,
    "preview": "/*!\n * mustache.js - Logic-less {{mustache}} templates with JavaScript\n * http://github.com/janl/mustache.js\n */\nvar Mus"
  },
  {
    "path": "demo/require.js",
    "chars": 83715,
    "preview": "/** vim: et:ts=4:sw=4:sts=4\n * @license RequireJS 2.1.18 Copyright (c) 2010-2015, The Dojo Foundation All Rights Reserve"
  },
  {
    "path": "dist/zxcvbn.js",
    "chars": 821792,
    "preview": "(function(f){if(typeof exports===\"object\"&&typeof module!==\"undefined\"){module.exports=f()}else if(typeof define===\"func"
  },
  {
    "path": "package.json",
    "chars": 1570,
    "preview": "{\n  \"name\": \"zxcvbn\",\n  \"version\": \"4.4.2\",\n  \"description\": \"realistic password strength estimation\",\n  \"author\": \"Dan "
  },
  {
    "path": "src/adjacency_graphs.coffee",
    "chars": 9814,
    "preview": "# generated by scripts/build_keyboard_adjacency_graphs.py\nadjacency_graphs = \n  qwerty: {\"!\": [\"`~\", null, null, \"2@\", \""
  },
  {
    "path": "src/feedback.coffee",
    "chars": 3866,
    "preview": "scoring = require('./scoring')\n\nfeedback =\n  default_feedback:\n    warning: ''\n    suggestions: [\n      \"Use a few words"
  },
  {
    "path": "src/frequency_lists.coffee",
    "chars": 792967,
    "preview": "# generated by build_frequency_lists.py\nfrequency_lists = \n  passwords: \"123456,password,12345678,qwerty,123456789,12345"
  },
  {
    "path": "src/main.coffee",
    "chars": 899,
    "preview": "matching = require './matching'\nscoring = require './scoring'\ntime_estimates = require './time_estimates'\nfeedback = req"
  },
  {
    "path": "src/matching.coffee",
    "chars": 20883,
    "preview": "frequency_lists = require('./frequency_lists')\nadjacency_graphs = require('./adjacency_graphs')\nscoring = require('./sco"
  },
  {
    "path": "src/scoring.coffee",
    "chars": 14583,
    "preview": "adjacency_graphs = require('./adjacency_graphs')\n\n# on qwerty, 'g' has degree 6, being adjacent to 'ftyhbv'. '\\' has deg"
  },
  {
    "path": "src/time_estimates.coffee",
    "chars": 2204,
    "preview": "time_estimates =\n  estimate_attack_times: (guesses) ->\n    crack_times_seconds =\n      online_throttling_100_per_hour: g"
  },
  {
    "path": "test/test-matching.coffee",
    "chars": 19059,
    "preview": "test = require 'tape'\nmatching = require '../src/matching'\nadjacency_graphs = require '../src/adjacency_graphs'\n\n# takes"
  },
  {
    "path": "test/test-scoring.coffee",
    "chars": 12544,
    "preview": "test = require 'tape'\nscoring = require '../src/scoring'\nmatching = require '../src/matching'\n\nlog2 = scoring.log2\nlog10"
  }
]

About this extraction

This page contains the full source code of the dropbox/zxcvbn GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 35 files (6.6 MB), approximately 1.7M tokens, and a symbol index with 98 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!