Assigned Reading: Jodie Archer and Matthew L. Jockers. The Bestseller Code: Anatomy of the Blockbuster Novel. St. Martin's Publishing Group, 2016. Chapter 4.
What is the "linguistic DNA"? What features of writing make up this DNA, according to the chapter? Are there other features that must be accounted for?
What aspects of text are analyzed by stylometrists?
Why does it matter how often a book uses the word "the"? What concept does this measure capture? Is it convincing?
How can the number of commas predict whether a book becomes a best-seller?
Why are women-authors more likely to use the "best-seller" writing style?
How does the model work?
"In fact, using only the 491 most frequently occurring words and marks of punctuation, the machine was able to differentiate between bestselling books and nonbestselling books 70 percent of the time. Using only 148 features, the machine guessed correctly 68 percent of the time, and this was just using the most common filler words and punctuation: no nouns, no adjectives, no verbs, no syntax, no sentence data."
What is the value added of those 343 features?
So can one use this formula to get on the NYT best seller list? How?
If you can count the commas to measure style, can you remove/insert commas to create style?
How can we apply the concept of model fit to help us make sense of the book's findings?
How can we apply this to the study of political science?
We will analyze the transcripts of Bush's and Obama's State of the Union addresses.
Download/unzip the file "corpus" from Quercus (this folder must be named "corpus" for the software to work).
Save the unzipped directory corpus
in your current working directory.
The corpus
directory contains the transcripts of the State of the Union addresses (.txt format, encoding UTF8 preferred).
stylo
install.packages("stylo")library(stylo)myanalysis<-stylo()
mydata<-read.table("./data/example1/table_with_frequencies.txt", header=TRUE)mydata
## bush_02022005 bush_02032001 bush_03022003 bush_20012004## the 5.15865291 3.86803185 5.45084996 5.51016530## and 4.45785478 3.93629124 4.39763489 4.71214136## to 3.28985789 3.84527873 3.36289727 3.21109633## of 3.42612420 2.22980660 3.47376201 3.49610488## a 1.73252871 2.52559727 2.10643016 1.63404902## in 1.96612809 1.54721274 2.03252033 2.01406042## we 1.53786257 2.29806598 1.51515152 1.34904047## our 1.53786257 1.95676906 1.36733186 1.59604788## that 1.45999611 0.65984073 1.18255728 1.00703021## is 1.34319642 1.31968146 1.36733186 1.27303819## for 1.10959704 1.11490330 1.03473762 1.06403192## will 1.14853027 1.09215017 0.97930525 0.81702451## this 0.36986568 0.45506257 0.79453067 0.76002280## i 0.64239829 0.95563140 0.57280118 0.60801824## have 0.72026475 0.68259386 0.77605322 0.64601938## are 0.93439751 0.45506257 0.62823356 1.12103363## on 0.70079813 0.47781570 0.48041390 0.64601938## it 0.38933230 0.68259386 0.42498152 0.30400912## with 0.68133152 0.63708760 0.49889135 0.55101653## not 0.54506521 0.61433447 0.77605322 0.38001140## more 0.42826552 0.52332196 0.40650407 0.32300969## their 0.46719875 0.40955631 0.35107169 0.57001710## you 0.38933230 0.54607509 0.48041390 0.87402622## by 0.58399844 0.50056883 0.44345898 0.62701881## be 0.52559860 0.54607509 0.44345898 0.53201596## as 0.35039907 0.34129693 0.36954915 0.43701311## but 0.17519953 0.40955631 0.09238729 0.11400342## america 0.29199922 0.34129693 0.42498152 0.58901767## from 0.36986568 0.31854380 0.48041390 0.41801254## they 0.33093245 0.47781570 0.20325203 0.41801254## can 0.21413276 0.36405006 0.25868441 0.60801824## people 0.35039907 0.31854380 0.57280118 0.36101083## who 0.23359938 0.36405006 0.33259424 0.32300969## all 0.46719875 0.36405006 0.57280118 0.36101083## or 0.33093245 0.31854380 0.27716186 0.30400912## has 0.25306599 0.34129693 0.53584627 0.32300969## so 0.29199922 0.61433447 0.14781966 0.34201026## us 0.27253261 0.18202503 0.24020695 0.19000570## new 0.29199922 0.25028441 0.20325203 0.28500855## now 0.27253261 0.22753129 0.14781966 0.17100513## american 0.07786646 0.13651877 0.25868441 0.24700741## at 0.25306599 0.43230944 0.25868441 0.13300399## do 0.11679969 0.20477816 0.18477458 0.20900627## americans 0.27253261 0.15927190 0.31411678 0.26600798## an 0.42826552 0.20477816 0.27716186 0.20900627## health 0.17519953 0.29579067 0.14781966 0.32300969## than 0.21413276 0.36405006 0.22172949 0.07600228## congress 0.31146584 0.15927190 0.20325203 0.24700741## every 0.25306599 0.22753129 0.27716186 0.17100513## years 0.23359938 0.34129693 0.24020695 0.19000570## country 0.31146584 0.25028441 0.36954915 0.20900627## economy 0.21413276 0.06825939 0.18477458 0.26600798## these 0.11679969 0.20477816 0.33259424 0.20900627## work 0.11679969 0.27303754 0.18477458 0.22800684## one 0.17519953 0.36405006 0.25868441 0.24700741## world 0.27253261 0.02275313 0.46193644 0.22800684## make 0.40879891 0.27303754 0.14781966 0.15200456## must 0.56453183 0.86461889 0.33259424 0.34201026## jobs 0.07786646 0.04550626 0.03695492 0.11400342## year 0.17519953 0.29579067 0.24020695 0.13300399## them 0.27253261 0.31854380 0.27716186 0.30400912## care 0.11679969 0.34129693 0.16629712 0.20900627## when 0.09733307 0.22753129 0.14781966 0.19000570## government 0.31146584 0.43230944 0.24020695 0.11400342## if 0.13626630 0.13651877 0.11086475 0.11400342## that^s 0.00000000 0.09101251 0.00000000 0.01900057## no 0.13626630 0.13651877 0.29563932 0.15200456## because 0.27253261 0.20477816 0.09238729 0.11400342## what 0.05839984 0.13651877 0.03695492 0.11400342## tax 0.11679969 0.45506257 0.12934220 0.19000570## help 0.21413276 0.25028441 0.20325203 0.32300969## security 0.56453183 0.34129693 0.18477458 0.15200456## energy 0.07786646 0.29579067 0.14781966 0.03800114## tonight 0.09733307 0.18202503 0.20325203 0.24700741## time 0.21413276 0.20477816 0.09238729 0.07600228## education 0.01946661 0.15927190 0.03695492 0.03800114## need 0.11679969 0.20477816 0.11086475 0.17100513## should 0.13626630 0.36405006 0.14781966 0.15200456## those 0.11679969 0.22753129 0.18477458 0.13300399## it^s 0.03893323 0.09101251 0.03695492 0.01900057## also 0.21413276 0.15927190 0.12934220 0.19000570## know 0.05839984 0.09101251 0.12934220 0.11400342## some 0.13626630 0.13651877 0.09238729 0.22800684## nation 0.23359938 0.20477816 0.24020695 0.15200456## up 0.11679969 0.06825939 0.11086475 0.07600228## my 0.19466615 0.54607509 0.07390983 0.17100513## right 0.07786646 0.11376564 0.09238729 0.17100513## just 0.05839984 0.06825939 0.07390983 0.13300399## get 0.03893323 0.18202503 0.01847746 0.09500285## many 0.09733307 0.22753129 0.31411678 0.11400342## like 0.03893323 0.04550626 0.09238729 0.05700171## efforts 0.07786646 0.02275313 0.03695492 0.01900057## about 0.05839984 0.04550626 0.09238729 0.09500285## over 0.15573292 0.18202503 0.09238729 0.09500285## there 0.09733307 0.04550626 0.05543237 0.05700171## he 0.13626630 0.02275313 0.40650407 0.01900057## reform 0.09733307 0.20477816 0.09238729 0.09500285## was 0.33093245 0.02275313 0.03695492 0.13300399## been 0.05839984 0.13651877 0.05543237 0.17100513## we^re 0.05839984 0.09101251 0.07390983 0.13300399## s 0.01946661 0.00000000 0.11086475 0.03800114## your 0.25306599 0.13651877 0.14781966 0.11400342## insurance 0.01946661 0.04550626 0.01847746 0.11400342## here 0.13626630 0.11376564 0.03695492 0.03800114## would 0.09733307 0.09101251 0.09238729 0.17100513## out 0.13626630 0.04550626 0.12934220 0.05700171## we^ve 0.07786646 0.06825939 0.05543237 0.05700171## national 0.05839984 0.15927190 0.01847746 0.03800114## states 0.09733307 0.04550626 0.16629712 0.13300399## last 0.07786646 0.06825939 0.05543237 0.17100513## u 0.00000000 0.00000000 0.11086475 0.01900057## future 0.09733307 0.04550626 0.09238729 0.01900057## want 0.03893323 0.22753129 0.00000000 0.07600228## own 0.21413276 0.15927190 0.18477458 0.07600228## united 0.09733307 0.02275313 0.27716186 0.19000570## only 0.19466615 0.11376564 0.14781966 0.11400342## businesses 0.05839984 0.02275313 0.03695492 0.09500285## his 0.05839984 0.09101251 0.18477458 0.07600228## why 0.05839984 0.00000000 0.01847746 0.00000000## most 0.07786646 0.00000000 0.09238729 0.17100513## iraq 0.27253261 0.00000000 0.20325203 0.28500855## other 0.07786646 0.27303754 0.16629712 0.11400342## where 0.03893323 0.00000000 0.05543237 0.05700171## good 0.13626630 0.27303754 0.14781966 0.15200456## way 0.11679969 0.09101251 0.09238729 0.13300399## how 0.11679969 0.04550626 0.01847746 0.00000000## its 0.31146584 0.09101251 0.20325203 0.07600228## job 0.03893323 0.04550626 0.03695492 0.13300399## plan 0.05839984 0.18202503 0.11086475 0.03800114## together 0.07786646 0.13651877 0.05543237 0.09500285## next 0.07786646 0.18202503 0.12934220 0.05700171## families 0.07786646 0.13651877 0.05543237 0.09500285## take 0.11679969 0.09101251 0.03695492 0.09500285## president 0.15573292 0.15927190 0.07390983 0.09500285## come 0.05839984 0.15927190 0.07390983 0.11400342## even 0.01946661 0.02275313 0.09238729 0.07600228## federal 0.05839984 0.18202503 0.09238729 0.09500285## children 0.17519953 0.22753129 0.12934220 0.24700741## act 0.09733307 0.11376564 0.07390983 0.28500855## business 0.01946661 0.02275313 0.01847746 0.01900057## back 0.03893323 0.02275313 0.01847746 0.13300399## budget 0.05839984 0.56882821 0.07390983 0.07600228## first 0.05839984 0.06825939 0.09238729 0.03800114## great 0.19466615 0.15927190 0.12934220 0.19000570## workers 0.27253261 0.06825939 0.03695492 0.13300399## better 0.11679969 0.11376564 0.03695492 0.13300399## keep 0.07786646 0.09101251 0.11086475 0.05700171## into 0.09733307 0.11376564 0.05543237 0.05700171## support 0.13626630 0.13651877 0.03695492 0.09500285## war 0.09733307 0.02275313 0.20325203 0.22800684## give 0.07786646 0.09101251 0.03695492 0.07600228## don^t 0.00000000 0.02275313 0.00000000 0.00000000## me 0.07786646 0.22753129 0.03695492 0.05700171## system 0.25306599 0.04550626 0.09238729 0.11400342## terrorists 0.21413276 0.02275313 0.12934220 0.19000570## medical 0.07786646 0.06825939 0.03695492 0.11400342## let^s 0.00000000 0.04550626 0.01847746 0.00000000## weapons 0.05839984 0.02275313 0.49889135 0.13300399## ask 0.07786646 0.04550626 0.16629712 0.09500285## citizens 0.11679969 0.11376564 0.16629712 0.09500285## home 0.11679969 0.02275313 0.05543237 0.05700171## still 0.09733307 0.06825939 0.00000000 0.05700171## could 0.01946661 0.11376564 0.20325203 0.01900057## forces 0.07786646 0.04550626 0.01847746 0.03800114## freedom 0.35039907 0.18202503 0.09238729 0.15200456## against 0.05839984 0.04550626 0.18477458 0.13300399## before 0.05839984 0.09101251 0.09238729 0.01900057## million 0.07786646 0.06825939 0.22172949 0.05700171## too 0.01946661 0.18202503 0.05543237 0.05700171## i^m 0.00000000 0.04550626 0.01847746 0.00000000## day 0.09733307 0.06825939 0.11086475 0.05700171## military 0.07786646 0.15927190 0.05543237 0.03800114## change 0.05839984 0.02275313 0.03695492 0.05700171## law 0.03893323 0.02275313 0.05543237 0.28500855## money 0.13626630 0.34129693 0.09238729 0.07600228## down 0.01946661 0.15927190 0.00000000 0.00000000## middle 0.11679969 0.00000000 0.05543237 0.09500285## nuclear 0.05839984 0.02275313 0.22172949 0.07600228## put 0.00000000 0.09101251 0.05543237 0.03800114## today 0.05839984 0.04550626 0.09238729 0.03800114## industry 0.00000000 0.00000000 0.00000000 0.00000000## made 0.00000000 0.00000000 0.05543237 0.03800114## power 0.03893323 0.00000000 0.16629712 0.07600228## america^s 0.09733307 0.18202503 0.05543237 0.13300399## state 0.11679969 0.00000000 0.05543237 0.05700171## let 0.03893323 0.13651877 0.03695492 0.01900057## women 0.21413276 0.06825939 0.07390983 0.15200456## working 0.07786646 0.04550626 0.09238729 0.07600228## al 0.07786646 0.00000000 0.14781966 0.09500285## companies 0.00000000 0.00000000 0.01847746 0.00000000## men 0.19466615 0.06825939 0.11086475 0.17100513## continue 0.11679969 0.09101251 0.11086475 0.13300399## same 0.01946661 0.02275313 0.01847746 0.05700171## any 0.15573292 0.13651877 0.01847746 0.03800114## free 0.11679969 0.09101251 0.09238729 0.20900627## had 0.01946661 0.06825939 0.16629712 0.07600228## life 0.09733307 0.02275313 0.14781966 0.07600228## medicare 0.00000000 0.25028441 0.09238729 0.15200456## house 0.01946661 0.04550626 0.03695492 0.01900057## pass 0.11679969 0.00000000 0.09238729 0.03800114## see 0.01946661 0.13651877 0.07390983 0.05700171## afghanistan 0.05839984 0.00000000 0.05543237 0.09500285## nations 0.07786646 0.04550626 0.18477458 0.15200456## believe 0.03893323 0.02275313 0.01847746 0.05700171## coverage 0.01946661 0.11376564 0.05543237 0.15200456## protect 0.11679969 0.04550626 0.11086475 0.07600228## sure 0.15573292 0.06825939 0.07390983 0.01900057## yet 0.03893323 0.15927190 0.14781966 0.13300399## deficit 0.01946661 0.00000000 0.01847746 0.01900057## go 0.03893323 0.04550626 0.05543237 0.07600228## never 0.07786646 0.09101251 0.05543237 0.11400342## through 0.01946661 0.04550626 0.07390983 0.05700171## were 0.05839984 0.00000000 0.07390983 0.09500285## without 0.03893323 0.04550626 0.07390983 0.09500285## best 0.03893323 0.04550626 0.05543237 0.07600228## can^t 0.00000000 0.00000000 0.01847746 0.01900057## end 0.07786646 0.11376564 0.05543237 0.03800114## meet 0.01946661 0.18202503 0.05543237 0.05700171## millions 0.07786646 0.04550626 0.07390983 0.09500285## schools 0.01946661 0.18202503 0.01847746 0.20900627## spending 0.05839984 0.20477816 0.05543237 0.03800114## economic 0.05839984 0.06825939 0.05543237 0.05700171## pay 0.03893323 0.20477816 0.00000000 0.01900057## lives 0.09733307 0.06825939 0.07390983 0.09500285## peace 0.21413276 0.13651877 0.16629712 0.07600228## small 0.11679969 0.06825939 0.07390983 0.05700171## social 0.35039907 0.34129693 0.03695492 0.05700171## after 0.05839984 0.06825939 0.03695492 0.05700171## already 0.05839984 0.02275313 0.05543237 0.03800114## cut 0.03893323 0.02275313 0.01847746 0.09500285## programs 0.05839984 0.13651877 0.07390983 0.07600228## taxes 0.07786646 0.15927190 0.05543237 0.17100513## which 0.11679969 0.04550626 0.12934220 0.03800114## school 0.01946661 0.11376564 0.01847746 0.11400342## while 0.05839984 0.02275313 0.05543237 0.07600228## done 0.05839984 0.02275313 0.00000000 0.01900057## percent 0.00000000 0.25028441 0.03695492 0.07600228## union 0.07786646 0.00000000 0.07390983 0.07600228## fight 0.05839984 0.06825939 0.09238729 0.01900057## i^ve 0.01946661 0.04550626 0.01847746 0.03800114## making 0.03893323 0.11376564 0.01847746 0.07600228## qaida 0.05839984 0.00000000 0.12934220 0.07600228## we^ll 0.11679969 0.00000000 0.00000000 0.01900057## hard 0.00000000 0.06825939 0.00000000 0.05700171## office 0.05839984 0.02275313 0.03695492 0.03800114## college 0.03893323 0.04550626 0.00000000 0.01900057## goal 0.11679969 0.02275313 0.07390983 0.03800114## members 0.05839984 0.04550626 0.09238729 0.09500285## two 0.03893323 0.15927190 0.01847746 0.00000000## chamber 0.01946661 0.04550626 0.03695492 0.07600228## child 0.01946661 0.13651877 0.05543237 0.15200456## lead 0.03893323 0.00000000 0.05543237 0.05700171## leaders 0.07786646 0.00000000 0.03695492 0.03800114## long 0.07786646 0.02275313 0.00000000 0.07600228## responsibility 0.13626630 0.02275313 0.01847746 0.03800114## across 0.05839984 0.02275313 0.07390983 0.03800114## international 0.01946661 0.00000000 0.11086475 0.05700171## may 0.03893323 0.06825939 0.05543237 0.03800114## opportunity 0.01946661 0.04550626 0.03695492 0.03800114## page 0.13626630 0.13651877 0.12934220 0.13300399## again 0.00000000 0.04550626 0.07390983 0.05700171## away 0.03893323 0.00000000 0.07390983 0.05700171## build 0.15573292 0.00000000 0.01847746 0.03800114## laughter 0.01946661 0.09101251 0.00000000 0.00000000## set 0.11679969 0.02275313 0.07390983 0.05700171## she 0.11679969 0.04550626 0.00000000 0.01900057## terror 0.27253261 0.00000000 0.11086475 0.09500285## use 0.01946661 0.02275313 0.11086475 0.05700171## another 0.01946661 0.04550626 0.05543237 0.03800114## bill 0.01946661 0.04550626 0.01847746 0.01900057## both 0.00000000 0.00000000 0.05543237 0.00000000## each 0.05839984 0.04550626 0.03695492 0.05700171## much 0.03893323 0.11376564 0.11086475 0.09500285## oil 0.00000000 0.00000000 0.00000000 0.00000000## program 0.01946661 0.02275313 0.07390983 0.11400342## research 0.05839984 0.04550626 0.03695492 0.00000000## terrorist 0.01946661 0.00000000 0.11086475 0.07600228## hope 0.05839984 0.13651877 0.03695492 0.03800114## past 0.01946661 0.02275313 0.00000000 0.01900057## strong 0.05839984 0.11376564 0.03695492 0.11400342## democracy 0.15573292 0.00000000 0.01847746 0.07600228## her 0.05839984 0.04550626 0.00000000 0.00000000## high 0.03893323 0.09101251 0.05543237 0.11400342## history 0.07786646 0.09101251 0.09238729 0.01900057## iraqi 0.15573292 0.00000000 0.12934220 0.09500285## technology 0.03893323 0.02275313 0.03695492 0.01900057## address 0.03893323 0.04550626 0.07390983 0.05700171## ago 0.11679969 0.06825939 0.03695492 0.01900057## needs 0.03893323 0.22753129 0.03695492 0.07600228## rights 0.03893323 0.02275313 0.05543237 0.03800114## young 0.11679969 0.00000000 0.00000000 0.05700171## community 0.09733307 0.09101251 0.00000000 0.03800114## costs 0.03893323 0.00000000 0.01847746 0.09500285## higher 0.07786646 0.04550626 0.03695492 0.05700171## part 0.05839984 0.00000000 0.00000000 0.11400342## place 0.00000000 0.06825939 0.07390983 0.03800114## public 0.00000000 0.09101251 0.01847746 0.01900057## since 0.03893323 0.00000000 0.03695492 0.05700171## trade 0.00000000 0.09101251 0.00000000 0.03800114## troops 0.01946661 0.00000000 0.03695492 0.09500285## unemployment 0.00000000 0.00000000 0.01847746 0.00000000## washington 0.00000000 0.06825939 0.01847746 0.00000000## bring 0.07786646 0.00000000 0.11086475 0.03800114## chance 0.01946661 0.02275313 0.03695492 0.01900057## cost 0.01946661 0.06825939 0.05543237 0.00000000## global 0.00000000 0.00000000 0.03695492 0.00000000## training 0.07786646 0.00000000 0.05543237 0.09500285## administration 0.01946661 0.04550626 0.00000000 0.03800114## clean 0.03893323 0.00000000 0.01847746 0.00000000## financial 0.01946661 0.02275313 0.00000000 0.00000000## nearly 0.01946661 0.04550626 0.05543237 0.03800114## progress 0.01946661 0.04550626 0.03695492 0.05700171## always 0.07786646 0.09101251 0.01847746 0.03800114## afford 0.01946661 0.00000000 0.00000000 0.03800114## benefits 0.25306599 0.09101251 0.00000000 0.01900057## create 0.00000000 0.04550626 0.01847746 0.01900057## ever 0.00000000 0.02275313 0.05543237 0.03800114## fellow 0.05839984 0.02275313 0.07390983 0.03800114## thank 0.09733307 0.09101251 0.01847746 0.01900057## they^re 0.01946661 0.00000000 0.00000000 0.01900057## countries 0.03893323 0.00000000 0.07390983 0.03800114## credit 0.00000000 0.04550626 0.01847746 0.03800114## growth 0.01946661 0.02275313 0.01847746 0.11400342## iran 0.01946661 0.00000000 0.01847746 0.01900057## said 0.11679969 0.02275313 0.03695492 0.01900057## save 0.03893323 0.09101251 0.01847746 0.05700171## vote 0.07786646 0.02275313 0.00000000 0.00000000## cuts 0.01946661 0.04550626 0.00000000 0.01900057## housing 0.00000000 0.02275313 0.00000000 0.01900057## retirement 0.23359938 0.11376564 0.01847746 0.01900057## students 0.01946661 0.02275313 0.01847746 0.07600228## allies 0.05839984 0.06825939 0.05543237 0.07600228## different 0.03893323 0.11376564 0.07390983 0.03800114## east 0.11679969 0.00000000 0.07390983 0.07600228## human 0.09733307 0.00000000 0.09238729 0.01900057## live 0.03893323 0.00000000 0.01847746 0.09500285## number 0.07786646 0.09101251 0.01847746 0.01900057## provide 0.07786646 0.06825939 0.03695492 0.05700171## stand 0.05839984 0.02275313 0.03695492 0.05700171## threat 0.03893323 0.00000000 0.18477458 0.03800114## defense 0.01946661 0.11376564 0.03695492 0.05700171## foreign 0.01946661 0.00000000 0.01847746 0.05700171## growing 0.05839984 0.06825939 0.03695492 0.11400342## off 0.01946661 0.04550626 0.01847746 0.03800114## saddam 0.03893323 0.00000000 0.36954915 0.11400342## well 0.00000000 0.04550626 0.01847746 0.00000000## century 0.07786646 0.04550626 0.05543237 0.01900057## debt 0.00000000 0.15927190 0.00000000 0.00000000## fair 0.01946661 0.04550626 0.03695492 0.01900057## relief 0.03893323 0.15927190 0.07390983 0.05700171## republicans 0.00000000 0.00000000 0.00000000 0.00000000## crisis 0.00000000 0.02275313 0.01847746 0.00000000## did 0.03893323 0.00000000 0.00000000 0.05700171## recovery 0.00000000 0.02275313 0.03695492 0.00000000## say 0.01946661 0.09101251 0.01847746 0.01900057## seen 0.03893323 0.00000000 0.01847746 0.03800114## send 0.03893323 0.00000000 0.05543237 0.13300399## start 0.00000000 0.06825939 0.03695492 0.00000000## hussein 0.03893323 0.00000000 0.36954915 0.05700171## kids 0.00000000 0.00000000 0.00000000 0.00000000## reforms 0.09733307 0.02275313 0.01847746 0.01900057## science 0.00000000 0.00000000 0.00000000 0.05700171## secure 0.05839984 0.04550626 0.05543237 0.03800114## single 0.00000000 0.00000000 0.05543237 0.00000000## sources 0.05839984 0.04550626 0.09238729 0.01900057## values 0.09733307 0.04550626 0.01847746 0.03800114## class 0.01946661 0.00000000 0.00000000 0.00000000## democrats 0.00000000 0.00000000 0.00000000 0.00000000## does 0.01946661 0.02275313 0.05543237 0.01900057## half 0.05839984 0.02275313 0.00000000 0.03800114## policy 0.01946661 0.04550626 0.01847746 0.00000000## terrorism 0.01946661 0.00000000 0.03695492 0.01900057## ahead 0.01946661 0.02275313 0.03695492 0.01900057## aids 0.01946661 0.00000000 0.22172949 0.00000000## clear 0.07786646 0.02275313 0.03695492 0.01900057## commitment 0.07786646 0.04550626 0.05543237 0.03800114## dollars 0.01946661 0.11376564 0.00000000 0.05700171## enough 0.03893323 0.04550626 0.09238729 0.01900057## helping 0.03893323 0.02275313 0.01847746 0.07600228## market 0.01946661 0.00000000 0.01847746 0.00000000## passed 0.01946661 0.00000000 0.03695492 0.09500285## safe 0.03893323 0.04550626 0.00000000 0.01900057## show 0.03893323 0.09101251 0.05543237 0.00000000## things 0.00000000 0.06825939 0.00000000 0.01900057## around 0.03893323 0.02275313 0.01847746 0.03800114## find 0.01946661 0.04550626 0.03695492 0.09500285## forward 0.03893323 0.02275313 0.01847746 0.09500285## funding 0.03893323 0.13651877 0.03695492 0.05700171## important 0.05839984 0.15927190 0.03695492 0.13300399## intelligence 0.03893323 0.00000000 0.18477458 0.03800114## issue 0.03893323 0.06825939 0.00000000 0.07600228## share 0.07786646 0.04550626 0.00000000 0.01900057## speaker 0.01946661 0.02275313 0.01847746 0.01900057## able 0.11679969 0.02275313 0.01847746 0.05700171## behind 0.01946661 0.02275313 0.01847746 0.11400342## between 0.03893323 0.04550626 0.05543237 0.01900057## family 0.01946661 0.09101251 0.01847746 0.00000000## finally 0.01946661 0.00000000 0.00000000 0.00000000## gas 0.00000000 0.02275313 0.00000000 0.00000000## generation 0.07786646 0.04550626 0.01847746 0.00000000## immigration 0.03893323 0.00000000 0.00000000 0.03800114## income 0.03893323 0.20477816 0.11086475 0.03800114## invest 0.00000000 0.00000000 0.05543237 0.00000000## others 0.03893323 0.02275313 0.03695492 0.01900057## private 0.00000000 0.06825939 0.00000000 0.05700171## seniors 0.00000000 0.06825939 0.11086475 0.15200456## serve 0.05839984 0.04550626 0.03695492 0.03800114## action 0.01946661 0.04550626 0.03695492 0.00000000## billion 0.03893323 0.13651877 0.09238729 0.00000000## cannot 0.01946661 0.04550626 0.01847746 0.00000000## control 0.03893323 0.02275313 0.05543237 0.03800114## everyone 0.00000000 0.02275313 0.01847746 0.00000000## god 0.01946661 0.02275313 0.05543237 0.03800114## instead 0.01946661 0.02275313 0.09238729 0.00000000## justice 0.07786646 0.04550626 0.01847746 0.03800114## means 0.00000000 0.06825939 0.01847746 0.00000000## reduce 0.01946661 0.02275313 0.00000000 0.03800114## under 0.01946661 0.00000000 0.05543237 0.13300399## basic 0.01946661 0.06825939 0.00000000 0.07600228## big 0.00000000 0.09101251 0.00000000 0.00000000## challenges 0.00000000 0.06825939 0.03695492 0.01900057## communities 0.00000000 0.00000000 0.01847746 0.01900057## effort 0.01946661 0.06825939 0.03695492 0.03800114## employees 0.03893323 0.00000000 0.01847746 0.01900057## face 0.01946661 0.00000000 0.00000000 0.07600228## few 0.03893323 0.04550626 0.00000000 0.01900057## idea 0.05839984 0.02275313 0.00000000 0.00000000## leadership 0.01946661 0.00000000 0.00000000 0.01900057## look 0.00000000 0.02275313 0.00000000 0.00000000## months 0.01946661 0.02275313 0.01847746 0.05700171## possible 0.01946661 0.02275313 0.07390983 0.00000000## steps 0.03893323 0.02275313 0.01847746 0.00000000## thousands 0.00000000 0.00000000 0.07390983 0.05700171## veterans 0.00000000 0.02275313 0.00000000 0.00000000## vice 0.01946661 0.06825939 0.01847746 0.01900057## affordable 0.03893323 0.00000000 0.01847746 0.01900057## agree 0.01946661 0.06825939 0.00000000 0.00000000## attacks 0.00000000 0.00000000 0.07390983 0.00000000## going 0.01946661 0.00000000 0.00000000 0.01900057## increase 0.00000000 0.15927190 0.00000000 0.03800114## once 0.05839984 0.04550626 0.03695492 0.03800114## strengthen 0.03893323 0.00000000 0.05543237 0.01900057## stronger 0.05839984 0.02275313 0.00000000 0.03800114## thing 0.00000000 0.02275313 0.00000000 0.00000000## trust 0.01946661 0.04550626 0.01847746 0.01900057## being 0.05839984 0.04550626 0.01847746 0.01900057## courage 0.03893323 0.11376564 0.03695492 0.07600228## days 0.05839984 0.00000000 0.09238729 0.01900057## deserve 0.01946661 0.04550626 0.05543237 0.01900057## doing 0.00000000 0.04550626 0.05543237 0.05700171## friends 0.07786646 0.04550626 0.05543237 0.07600228## got 0.05839984 0.00000000 0.01847746 0.01900057## left 0.01946661 0.06825939 0.00000000 0.07600228## manufacturing 0.00000000 0.00000000 0.00000000 0.01900057## move 0.03893323 0.00000000 0.01847746 0.01900057## politics 0.01946661 0.02275313 0.00000000 0.00000000## sent 0.01946661 0.00000000 0.09238729 0.03800114## standards 0.03893323 0.04550626 0.01847746 0.05700171## strengthening 0.01946661 0.00000000 0.01847746 0.01900057## success 0.03893323 0.00000000 0.01847746 0.00000000## access 0.01946661 0.09101251 0.01847746 0.01900057## cause 0.00000000 0.04550626 0.07390983 0.07600228## choose 0.00000000 0.06825939 0.03695492 0.07600228## comes 0.00000000 0.06825939 0.03695492 0.03800114## development 0.00000000 0.02275313 0.01847746 0.01900057## greater 0.07786646 0.04550626 0.05543237 0.05700171## less 0.01946661 0.06825939 0.01847746 0.03800114## man 0.00000000 0.02275313 0.05543237 0.07600228## recession 0.01946661 0.00000000 0.03695492 0.01900057## africa 0.00000000 0.00000000 0.12934220 0.00000000## building 0.00000000 0.02275313 0.01847746 0.03800114## called 0.03893323 0.00000000 0.07390983 0.03800114## code 0.05839984 0.04550626 0.00000000 0.00000000## company 0.00000000 0.02275313 0.00000000 0.00000000## department 0.01946661 0.00000000 0.03695492 0.01900057## employment 0.00000000 0.00000000 0.00000000 0.00000000## including 0.01946661 0.00000000 0.05543237 0.03800114## innovation 0.00000000 0.00000000 0.05543237 0.00000000## makes 0.05839984 0.04550626 0.00000000 0.01900057## open 0.03893323 0.00000000 0.01847746 0.03800114## raise 0.00000000 0.00000000 0.00000000 0.01900057## regime 0.01946661 0.00000000 0.11086475 0.07600228## regulations 0.00000000 0.00000000 0.01847746 0.00000000## stop 0.03893323 0.00000000 0.00000000 0.00000000## there^s 0.00000000 0.00000000 0.03695492 0.01900057## threats 0.00000000 0.06825939 0.09238729 0.07600228## am 0.01946661 0.02275313 0.03695492 0.00000000## biden 0.00000000 0.00000000 0.00000000 0.00000000## built 0.00000000 0.00000000 0.01847746 0.00000000## challenge 0.00000000 0.04550626 0.00000000 0.05700171## decade 0.00000000 0.00000000 0.01847746 0.00000000## decades 0.07786646 0.00000000 0.00000000 0.01900057## grow 0.05839984 0.00000000 0.03695492 0.00000000## improvement 0.00000000 0.00000000 0.00000000 0.00000000## liberty 0.13626630 0.00000000 0.05543237 0.01900057## parents 0.05839984 0.02275313 0.01847746 0.07600228## parties 0.00000000 0.00000000 0.01847746 0.00000000## problem 0.00000000 0.02275313 0.01847746 0.03800114## promise 0.01946661 0.00000000 0.01847746 0.00000000## rules 0.00000000 0.02275313 0.01847746 0.00000000## savings 0.03893323 0.04550626 0.00000000 0.03800114## service 0.05839984 0.04550626 0.03695492 0.07600228## taken 0.05839984 0.00000000 0.01847746 0.03800114## white 0.01946661 0.02275313 0.00000000 0.00000000## abroad 0.03893323 0.00000000 0.07390983 0.00000000## applause 0.00000000 0.02275313 0.00000000 0.00000000## confidence 0.05839984 0.02275313 0.05543237 0.03800114## defend 0.05839984 0.02275313 0.07390983 0.07600228## democratic 0.11679969 0.00000000 0.01847746 0.01900057## drug 0.01946661 0.06825939 0.03695492 0.19000570## enemies 0.05839984 0.00000000 0.01847746 0.07600228## everything 0.01946661 0.00000000 0.01847746 0.00000000## full 0.00000000 0.02275313 0.03695492 0.03800114## john 0.01946661 0.06825939 0.00000000 0.00000000## leave 0.03893323 0.06825939 0.00000000 0.01900057## math 0.00000000 0.06825939 0.00000000 0.09500285## matter 0.03893323 0.00000000 0.00000000 0.03800114## mission 0.03893323 0.02275313 0.01847746 0.03800114## ourselves 0.00000000 0.02275313 0.05543237 0.00000000## postsecondary 0.00000000 0.00000000 0.00000000 0.00000000## prevent 0.03893323 0.00000000 0.05543237 0.01900057## seek 0.07786646 0.00000000 0.09238729 0.01900057## such 0.01946661 0.02275313 0.03695492 0.05700171## used 0.01946661 0.00000000 0.05543237 0.01900057## agreement 0.00000000 0.00000000 0.01847746 0.00000000## bipartisan 0.03893323 0.00000000 0.00000000 0.01900057## colleges 0.01946661 0.00000000 0.00000000 0.01900057## course 0.00000000 0.02275313 0.03695492 0.00000000## ensure 0.05839984 0.04550626 0.00000000 0.03800114## environment 0.00000000 0.06825939 0.05543237 0.00000000## example 0.03893323 0.02275313 0.00000000 0.01900057## fact 0.00000000 0.00000000 0.00000000 0.01900057## given 0.03893323 0.06825939 0.09238729 0.03800114## north 0.01946661 0.00000000 0.07390983 0.01900057## nothing 0.00000000 0.00000000 0.03695492 0.00000000## organization 0.00000000 0.00000000 0.00000000 0.00000000## paid 0.05839984 0.04550626 0.00000000 0.00000000## propose 0.01946661 0.09101251 0.07390983 0.17100513## prosperity 0.03893323 0.00000000 0.01847746 0.01900057## republican 0.00000000 0.02275313 0.00000000 0.00000000## require 0.01946661 0.00000000 0.03695492 0.07600228## september 0.03893323 0.00000000 0.05543237 0.09500285## student 0.00000000 0.00000000 0.00000000 0.00000000## teachers 0.00000000 0.04550626 0.00000000 0.00000000## technologies 0.00000000 0.02275313 0.03695492 0.01900057## then 0.00000000 0.09101251 0.01847746 0.00000000## times 0.01946661 0.02275313 0.00000000 0.03800114## almost 0.00000000 0.06825939 0.07390983 0.03800114## bless 0.01946661 0.02275313 0.01847746 0.01900057## call 0.00000000 0.00000000 0.05543237 0.01900057## civil 0.00000000 0.00000000 0.00000000 0.00000000## created 0.07786646 0.02275313 0.03695492 0.00000000## doesn^t 0.00000000 0.02275313 0.00000000 0.00000000## enforcement 0.00000000 0.00000000 0.01847746 0.13300399## faith 0.01946661 0.00000000 0.05543237 0.05700171## happen 0.00000000 0.00000000 0.00000000 0.00000000## ideas 0.01946661 0.00000000 0.00000000 0.00000000## laws 0.01946661 0.02275313 0.01847746 0.03800114## legislation 0.03893323 0.00000000 0.01847746 0.03800114## lower 0.03893323 0.09101251 0.01847746 0.03800114## markets 0.01946661 0.02275313 0.00000000 0.03800114## rates 0.01946661 0.06825939 0.00000000 0.05700171## skills 0.00000000 0.06825939 0.00000000 0.09500285## tell 0.03893323 0.04550626 0.05543237 0.01900057## took 0.00000000 0.00000000 0.00000000 0.01900057## violence 0.03893323 0.02275313 0.01847746 0.01900057## worked 0.00000000 0.00000000 0.01847746 0.01900057## climate 0.00000000 0.00000000 0.00000000 0.00000000## him 0.01946661 0.00000000 0.03695492 0.00000000## hire 0.00000000 0.00000000 0.00000000 0.00000000## information 0.01946661 0.00000000 0.05543237 0.03800114## korea 0.01946661 0.00000000 0.03695492 0.03800114## reach 0.05839984 0.02275313 0.00000000 0.00000000## secretary 0.03893323 0.06825939 0.03695492 0.01900057## session 0.01946661 0.02275313 0.03695492 0.01900057## speak 0.00000000 0.04550626 0.01847746 0.00000000## spirit 0.01946661 0.02275313 0.01847746 0.00000000## strength 0.01946661 0.02275313 0.03695492 0.00000000## very 0.03893323 0.04550626 0.03695492 0.01900057## begin 0.00000000 0.04550626 0.01847746 0.03800114## coming 0.03893323 0.02275313 0.00000000 0.00000000## enemy 0.01946661 0.00000000 0.05543237 0.00000000## expansion 0.01946661 0.02275313 0.00000000 0.00000000## far 0.00000000 0.06825939 0.00000000 0.05700171## focus 0.05839984 0.00000000 0.05543237 0.05700171## fund 0.01946661 0.15927190 0.01847746 0.00000000## join 0.01946661 0.06825939 0.05543237 0.01900057## lot 0.01946661 0.06825939 0.00000000 0.00000000## m 0.01946661 0.02275313 0.01847746 0.01900057## offer 0.01946661 0.06825939 0.01847746 0.00000000## race 0.00000000 0.00000000 0.00000000 0.01900057## rest 0.00000000 0.02275313 0.00000000 0.03800114## spend 0.00000000 0.09101251 0.01847746 0.00000000## taxation 0.00000000 0.00000000 0.01847746 0.00000000## th 0.03893323 0.00000000 0.09238729 0.09500285## think 0.00000000 0.02275313 0.01847746 0.00000000## wage 0.00000000 0.00000000 0.00000000 0.00000000## within 0.01946661 0.00000000 0.01847746 0.00000000## won^t 0.00000000 0.02275313 0.00000000 0.00000000## armed 0.00000000 0.02275313 0.03695492 0.00000000## china 0.00000000 0.00000000 0.01847746 0.00000000## decisions 0.01946661 0.04550626 0.01847746 0.03800114## generations 0.07786646 0.00000000 0.03695492 0.00000000## improve 0.01946661 0.06825939 0.03695492 0.01900057## infrastructure 0.00000000 0.00000000 0.00000000 0.00000000## initiative 0.03893323 0.04550626 0.05543237 0.01900057## investment 0.01946661 0.02275313 0.01847746 0.00000000## medicaid 0.00000000 0.00000000 0.00000000 0.00000000## mr 0.01946661 0.06825939 0.01847746 0.01900057## person 0.05839984 0.02275313 0.09238729 0.00000000## places 0.01946661 0.02275313 0.03695492 0.00000000## political 0.03893323 0.02275313 0.01847746 0.00000000## problems 0.03893323 0.06825939 0.05543237 0.00000000## proposed 0.00000000 0.00000000 0.00000000 0.00000000## rate 0.01946661 0.15927190 0.00000000 0.00000000## responsible 0.05839984 0.11376564 0.00000000 0.03800114## second 0.01946661 0.02275313 0.01847746 0.01900057## society 0.09733307 0.02275313 0.05543237 0.03800114## top 0.03893323 0.06825939 0.00000000 0.01900057## understand 0.03893323 0.00000000 0.00000000 0.03800114## achieve 0.03893323 0.00000000 0.01847746 0.00000000## asking 0.00000000 0.02275313 0.01847746 0.01900057## capitol 0.03893323 0.06825939 0.01847746 0.01900057## drugs 0.00000000 0.02275313 0.14781966 0.09500285## elections 0.03893323 0.00000000 0.00000000 0.03800114## encourage 0.03893323 0.04550626 0.03695492 0.03800114## fighting 0.03893323 0.00000000 0.01847746 0.01900057## force 0.07786646 0.02275313 0.01847746 0.00000000## former 0.05839984 0.00000000 0.03695492 0.03800114## investments 0.01946661 0.02275313 0.00000000 0.00000000## respect 0.03893323 0.04550626 0.01847746 0.05700171## rising 0.01946661 0.02275313 0.01847746 0.07600228## sense 0.00000000 0.00000000 0.01847746 0.03800114## serious 0.01946661 0.04550626 0.01847746 0.03800114## something 0.01946661 0.00000000 0.00000000 0.00000000## treatment 0.01946661 0.00000000 0.09238729 0.03800114## until 0.07786646 0.00000000 0.01847746 0.00000000## whether 0.00000000 0.04550626 0.00000000 0.00000000## words 0.00000000 0.02275313 0.03695492 0.01900057## additional 0.01946661 0.13651877 0.03695492 0.03800114## afghan 0.00000000 0.00000000 0.00000000 0.01900057## alone 0.01946661 0.06825939 0.01847746 0.01900057## asked 0.00000000 0.09101251 0.00000000 0.00000000## assistance 0.01946661 0.00000000 0.01847746 0.00000000## coalition 0.05839984 0.00000000 0.05543237 0.05700171## commerce 0.00000000 0.02275313 0.00000000 0.00000000## confront 0.01946661 0.06825939 0.05543237 0.05700171## difficult 0.00000000 0.02275313 0.00000000 0.03800114## doctors 0.01946661 0.02275313 0.05543237 0.01900057## earth 0.00000000 0.00000000 0.01847746 0.00000000## everybody 0.00000000 0.00000000 0.01847746 0.00000000## expand 0.03893323 0.00000000 0.03695492 0.03800114## joint 0.01946661 0.02275313 0.01847746 0.01900057## known 0.01946661 0.00000000 0.01847746 0.05700171## longer 0.05839984 0.02275313 0.01847746 0.00000000## promote 0.05839984 0.13651877 0.03695492 0.01900057## receive 0.03893323 0.00000000 0.07390983 0.03800114## south 0.00000000 0.00000000 0.03695492 0.01900057## told 0.03893323 0.00000000 0.01847746 0.00000000## trying 0.01946661 0.00000000 0.01847746 0.01900057## urge 0.03893323 0.00000000 0.09238729 0.03800114## willing 0.01946661 0.00000000 0.00000000 0.07600228## world^s 0.01946661 0.02275313 0.01847746 0.01900057## allow 0.00000000 0.00000000 0.01847746 0.01900057## banks 0.00000000 0.00000000 0.00000000 0.00000000## debate 0.01946661 0.02275313 0.00000000 0.03800114## didn^t 0.00000000 0.06825939 0.00000000 0.00000000## fear 0.03893323 0.00000000 0.03695492 0.01900057## folks 0.00000000 0.00000000 0.00000000 0.00000000## hold 0.01946661 0.00000000 0.00000000 0.01900057## incentives 0.00000000 0.00000000 0.00000000 0.00000000## issues 0.00000000 0.02275313 0.00000000 0.00000000## old 0.01946661 0.04550626 0.00000000 0.03800114## point 0.01946661 0.00000000 0.00000000 0.00000000## poverty 0.00000000 0.02275313 0.00000000 0.00000000## proud 0.09733307 0.02275313 0.00000000 0.03800114## stay 0.01946661 0.00000000 0.00000000 0.00000000## strategy 0.03893323 0.04550626 0.01847746 0.03800114## taking 0.05839984 0.00000000 0.03695492 0.01900057## three 0.01946661 0.02275313 0.01847746 0.00000000## trillion 0.00000000 0.09101251 0.00000000 0.00000000## true 0.00000000 0.00000000 0.00000000 0.03800114## approach 0.00000000 0.06825939 0.00000000 0.00000000## danger 0.01946661 0.00000000 0.05543237 0.09500285## expect 0.01946661 0.00000000 0.00000000 0.07600228## highest 0.03893323 0.09101251 0.00000000 0.03800114## honor 0.13626630 0.06825939 0.01847746 0.01900057## kind 0.00000000 0.02275313 0.00000000 0.01900057## largest 0.00000000 0.00000000 0.01847746 0.00000000## loans 0.00000000 0.00000000 0.00000000 0.00000000## love 0.00000000 0.02275313 0.00000000 0.03800114## message 0.01946661 0.04550626 0.05543237 0.05700171## p 0.01946661 0.02275313 0.01847746 0.03800114## products 0.00000000 0.02275313 0.00000000 0.00000000## r 0.01946661 0.02275313 0.01847746 0.01900057## region 0.07786646 0.00000000 0.05543237 0.03800114## russia 0.00000000 0.00000000 0.01847746 0.00000000## side 0.05839984 0.04550626 0.00000000 0.01900057## step 0.00000000 0.00000000 0.01847746 0.00000000## street 0.01946661 0.04550626 0.00000000 0.00000000## struggle 0.00000000 0.02275313 0.03695492 0.00000000## turn 0.03893323 0.00000000 0.01847746 0.03800114## vital 0.03893323 0.04550626 0.03695492 0.05700171## ways 0.01946661 0.00000000 0.03695492 0.00000000## what^s 0.00000000 0.00000000 0.00000000 0.00000000## accounts 0.13626630 0.02275313 0.01847746 0.01900057## attack 0.05839984 0.00000000 0.03695492 0.09500285## border 0.05839984 0.00000000 0.00000000 0.01900057## came 0.01946661 0.04550626 0.00000000 0.01900057## choice 0.01946661 0.06825939 0.01847746 0.01900057## choices 0.01946661 0.02275313 0.00000000 0.07600228## commission 0.00000000 0.04550626 0.00000000 0.00000000## comprehensive 0.03893323 0.00000000 0.03695492 0.00000000## corporate 0.01946661 0.00000000 0.03695492 0.01900057## getting 0.01946661 0.00000000 0.00000000 0.00000000## helped 0.00000000 0.00000000 0.01847746 0.00000000## inspectors 0.00000000 0.00000000 0.20325203 0.00000000## leading 0.03893323 0.00000000 0.01847746 0.05700171## living 0.03893323 0.00000000 0.01847746 0.03800114## lost 0.00000000 0.02275313 0.01847746 0.01900057## medicine 0.01946661 0.00000000 0.07390983 0.09500285## might 0.01946661 0.02275313 0.05543237 0.00000000## natural 0.01946661 0.02275313 0.00000000 0.00000000## necessary 0.00000000 0.00000000 0.01847746 0.00000000## remains 0.03893323 0.00000000 0.00000000 0.01900057## remember 0.00000000 0.02275313 0.03695492 0.00000000## resources 0.01946661 0.06825939 0.01847746 0.03800114## return 0.01946661 0.06825939 0.00000000 0.05700171## run 0.00000000 0.02275313 0.03695492 0.01900057## senate 0.01946661 0.00000000 0.01847746 0.00000000## small-business 0.00000000 0.00000000 0.00000000 0.01900057## spoke 0.03893323 0.02275313 0.01847746 0.01900057## succeed 0.03893323 0.00000000 0.01847746 0.00000000## wages 0.01946661 0.02275313 0.00000000 0.00000000## week 0.00000000 0.00000000 0.00000000 0.01900057## woman 0.01946661 0.00000000 0.01847746 0.05700171## you^re 0.03893323 0.04550626 0.00000000 0.01900057## add 0.05839984 0.06825939 0.01847746 0.00000000## alternative 0.01946661 0.02275313 0.00000000 0.01900057## beyond 0.01946661 0.00000000 0.01847746 0.01900057## bills 0.00000000 0.02275313 0.00000000 0.01900057## buy 0.01946661 0.04550626 0.00000000 0.05700171## cars 0.01946661 0.02275313 0.01847746 0.00000000## common 0.01946661 0.02275313 0.00000000 0.01900057## compassion 0.01946661 0.04550626 0.07390983 0.07600228## competitiveness 0.00000000 0.00000000 0.00000000 0.00000000## determined 0.05839984 0.00000000 0.01847746 0.03800114## develop 0.00000000 0.09101251 0.05543237 0.01900057## diplomacy 0.00000000 0.00000000 0.00000000 0.03800114## dream 0.07786646 0.00000000 0.00000000 0.00000000## dreams 0.05839984 0.02275313 0.00000000 0.00000000## during 0.05839984 0.04550626 0.03695492 0.00000000## duty 0.03893323 0.02275313 0.03695492 0.01900057## election 0.01946661 0.02275313 0.00000000 0.00000000## equal 0.01946661 0.02275313 0.00000000 0.00000000## especially 0.05839984 0.00000000 0.00000000 0.00000000## giving 0.01946661 0.02275313 0.01847746 0.03800114## groups 0.01946661 0.09101251 0.05543237 0.03800114## homes 0.00000000 0.00000000 0.00000000 0.00000000## hopeful 0.01946661 0.02275313 0.00000000 0.00000000## kill 0.01946661 0.00000000 0.05543237 0.01900057## leader 0.03893323 0.00000000 0.01847746 0.05700171## long-term 0.00000000 0.00000000 0.00000000 0.00000000## materials 0.01946661 0.00000000 0.12934220 0.00000000## moment 0.00000000 0.00000000 0.00000000 0.00000000## month 0.00000000 0.00000000 0.00000000 0.09500285## often 0.03893323 0.06825939 0.00000000 0.03800114## people^s 0.00000000 0.02275313 0.01847746 0.03800114## prescription 0.00000000 0.06825939 0.01847746 0.11400342## quality 0.00000000 0.09101251 0.01847746 0.00000000## real 0.01946661 0.02275313 0.01847746 0.00000000## reason 0.00000000 0.02275313 0.00000000 0.01900057## record 0.00000000 0.02275313 0.01847746 0.00000000## reduction 0.00000000 0.00000000 0.00000000 0.00000000## renewable 0.01946661 0.00000000 0.00000000 0.00000000## requires 0.01946661 0.00000000 0.00000000 0.01900057## sanctions 0.00000000 0.00000000 0.01847746 0.00000000## sick 0.00000000 0.00000000 0.00000000 0.00000000## solar 0.00000000 0.00000000 0.00000000 0.00000000## solve 0.01946661 0.02275313 0.00000000 0.00000000## works 0.01946661 0.02275313 0.01847746 0.01900057## agenda 0.01946661 0.02275313 0.00000000 0.03800114## along 0.05839984 0.00000000 0.05543237 0.03800114## arms 0.00000000 0.00000000 0.01847746 0.00000000## bad 0.00000000 0.02275313 0.00000000 0.00000000## close 0.00000000 0.02275313 0.00000000 0.00000000## construction 0.00000000 0.02275313 0.00000000 0.01900057## dcpd 0.00000000 0.00000000 0.00000000 0.00000000## deliver 0.03893323 0.00000000 0.00000000 0.00000000## developing 0.01946661 0.02275313 0.03695492 0.00000000## dignity 0.03893323 0.00000000 0.01847746 0.03800114## easy 0.03893323 0.00000000 0.00000000 0.00000000## elected 0.05839984 0.00000000 0.00000000 0.01900057## found 0.00000000 0.04550626 0.01847746 0.07600228## i^ll 0.00000000 0.00000000 0.00000000 0.00000000## institutions 0.07786646 0.00000000 0.00000000 0.07600228## interests 0.00000000 0.00000000 0.01847746 0.00000000## iraqis 0.11679969 0.00000000 0.00000000 0.03800114## january 0.00000000 0.00000000 0.01847746 0.07600228## kennedy 0.00000000 0.02275313 0.00000000 0.00000000## labor 0.00000000 0.00000000 0.00000000 0.01900057## level 0.01946661 0.00000000 0.00000000 0.03800114## mass 0.03893323 0.02275313 0.09238729 0.05700171## nation^s 0.00000000 0.13651877 0.01847746 0.01900057## order 0.00000000 0.00000000 0.03695492 0.03800114## paying 0.05839984 0.02275313 0.00000000 0.00000000## personal 0.15573292 0.09101251 0.01847746 0.01900057## produce 0.00000000 0.04550626 0.09238729 0.01900057## production 0.01946661 0.00000000 0.05543237 0.00000000## referred 0.01946661 0.02275313 0.01847746 0.01900057## says 0.01946661 0.04550626 0.03695492 0.00000000## simple 0.00000000 0.00000000 0.01847746 0.00000000## soon 0.01946661 0.00000000 0.01847746 0.01900057## special 0.01946661 0.02275313 0.00000000 0.01900057## tough 0.00000000 0.04550626 0.01847746 0.01900057## toward 0.05839984 0.02275313 0.03695492 0.01900057## wall 0.01946661 0.00000000 0.01847746 0.01900057## win 0.00000000 0.00000000 0.00000000 0.01900057## advanced 0.00000000 0.00000000 0.01847746 0.01900057## age 0.03893323 0.00000000 0.03695492 0.01900057## asia 0.01946661 0.00000000 0.01847746 0.01900057## combat 0.00000000 0.00000000 0.00000000 0.01900057## compete 0.00000000 0.00000000 0.00000000 0.00000000## competitive 0.03893323 0.00000000 0.00000000 0.00000000## dangerous 0.03893323 0.02275313 0.01847746 0.09500285## differences 0.01946661 0.00000000 0.00000000 0.01900057## domestic 0.00000000 0.02275313 0.01847746 0.01900057## double 0.00000000 0.04550626 0.01847746 0.03800114## eliminate 0.00000000 0.00000000 0.00000000 0.03800114## executive 0.00000000 0.00000000 0.00000000 0.01900057## further 0.00000000 0.00000000 0.01847746 0.01900057## group 0.03893323 0.00000000 0.00000000 0.01900057## illegal 0.00000000 0.00000000 0.03695492 0.05700171## knows 0.01946661 0.02275313 0.00000000 0.00000000## local 0.00000000 0.06825939 0.00000000 0.00000000## marriage 0.03893323 0.04550626 0.01847746 0.17100513## none 0.01946661 0.02275313 0.01847746 0.00000000## party 0.00000000 0.00000000 0.00000000 0.00000000## path 0.03893323 0.02275313 0.00000000 0.03800114## pays 0.01946661 0.09101251 0.03695492 0.01900057## priorities 0.01946661 0.04550626 0.03695492 0.01900057## process 0.00000000 0.00000000 0.01847746 0.01900057## promotion 0.00000000 0.02275313 0.00000000 0.00000000## rise 0.05839984 0.04550626 0.03695492 0.03800114## supporting 0.01946661 0.06825939 0.03695492 0.00000000## task 0.01946661 0.00000000 0.00000000 0.01900057## thanks 0.00000000 0.00000000 0.00000000 0.00000000## third 0.01946661 0.02275313 0.01847746 0.05700171## yes 0.00000000 0.00000000 0.00000000 0.01900057## actions 0.03893323 0.00000000 0.01847746 0.03800114## break 0.01946661 0.04550626 0.00000000 0.01900057## campaign 0.00000000 0.02275313 0.00000000 0.01900057## character 0.01946661 0.02275313 0.01847746 0.07600228## chief 0.01946661 0.00000000 0.03695492 0.01900057## city 0.00000000 0.06825939 0.00000000 0.00000000## competition 0.00000000 0.00000000 0.00000000 0.01900057## creating 0.00000000 0.00000000 0.00000000 0.01900057## crime 0.01946661 0.00000000 0.00000000 0.03800114## dc 0.00000000 0.02275313 0.01847746 0.00000000## effective 0.05839984 0.04550626 0.03695492 0.03800114## evidence 0.01946661 0.00000000 0.11086475 0.00000000## evil 0.01946661 0.00000000 0.07390983 0.01900057## fall 0.03893323 0.02275313 0.01847746 0.01900057## fix 0.01946661 0.02275313 0.00000000 0.00000000## homeland 0.03893323 0.00000000 0.05543237 0.07600228## individuals 0.00000000 0.02275313 0.00000000 0.03800114## little 0.01946661 0.00000000 0.00000000 0.00000000## lose 0.00000000 0.02275313 0.00000000 0.01900057## neighbors 0.03893323 0.04550626 0.00000000 0.00000000## note 0.01946661 0.02275313 0.01847746 0.01900057## parts 0.03893323 0.00000000 0.01847746 0.00000000## presidential 0.01946661 0.06825939 0.01847746 0.01900057## proposal 0.01946661 0.00000000 0.00000000 0.01900057## proposing 0.00000000 0.00000000 0.03695492 0.00000000## question 0.03893323 0.00000000 0.00000000 0.01900057## remain 0.01946661 0.00000000 0.00000000 0.01900057## remarks 0.01946661 0.02275313 0.01847746 0.01900057## result 0.05839984 0.00000000 0.01847746 0.00000000## saw 0.00000000 0.00000000 0.00000000 0.00000000## scientists 0.00000000 0.00000000 0.07390983 0.00000000## shouldn^t 0.00000000 0.00000000 0.00000000 0.00000000## sign 0.00000000 0.00000000 0.01847746 0.00000000## syria 0.01946661 0.00000000 0.00000000 0.00000000## train 0.01946661 0.02275313 0.00000000 0.01900057## air 0.01946661 0.00000000 0.03695492 0.00000000## anyone 0.05839984 0.00000000 0.00000000 0.01900057## aren^t 0.00000000 0.00000000 0.00000000 0.00000000## average 0.00000000 0.02275313 0.03695492 0.01900057## based 0.01946661 0.04550626 0.00000000 0.00000000## begun 0.01946661 0.02275313 0.01847746 0.03800114## chemical 0.01946661 0.00000000 0.12934220 0.01900057## death 0.00000000 0.02275313 0.05543237 0.03800114## depends 0.00000000 0.00000000 0.00000000 0.00000000## destruction 0.01946661 0.02275313 0.07390983 0.03800114## earn 0.01946661 0.13651877 0.00000000 0.00000000## europe 0.01946661 0.00000000 0.01847746 0.00000000## exports 0.00000000 0.00000000 0.00000000 0.01900057## extremists 0.01946661 0.00000000 0.00000000 0.00000000## friend 0.00000000 0.02275313 0.00000000 0.03800114## gets 0.00000000 0.00000000 0.00000000 0.00000000## greatest 0.00000000 0.02275313 0.01847746 0.01900057## hand 0.00000000 0.02275313 0.00000000 0.01900057## hard-working 0.00000000 0.00000000 0.00000000 0.01900057## interest 0.00000000 0.02275313 0.00000000 0.01900057## internet 0.00000000 0.00000000 0.00000000 0.00000000## iraq^s 0.01946661 0.00000000 0.07390983 0.05700171## israel 0.05839984 0.00000000 0.01847746 0.00000000## jr 0.00000000 0.00000000 0.00000000 0.00000000## least 0.00000000 0.00000000 0.03695492 0.00000000## major 0.01946661 0.06825939 0.03695492 0.00000000## material 0.00000000 0.00000000 0.03695492 0.00000000## minimum 0.00000000 0.00000000 0.00000000 0.00000000## obama 0.00000000 0.00000000 0.00000000 0.00000000## opportunities 0.01946661 0.02275313 0.00000000 0.00000000## options 0.05839984 0.02275313 0.00000000 0.01900057## policies 0.01946661 0.00000000 0.00000000 0.01900057## projects 0.00000000 0.00000000 0.00000000 0.00000000## providing 0.01946661 0.02275313 0.01847746 0.03800114## purpose 0.01946661 0.04550626 0.01847746 0.00000000## recognize 0.03893323 0.00000000 0.01847746 0.00000000## resolve 0.00000000 0.02275313 0.01847746 0.03800114## risk 0.01946661 0.02275313 0.01847746 0.00000000## role 0.05839984 0.04550626 0.00000000 0.01900057## spent 0.01946661 0.00000000 0.01847746 0.00000000## story 0.01946661 0.00000000 0.00000000 0.00000000## talk 0.00000000 0.02275313 0.00000000 0.01900057## throughout 0.00000000 0.00000000 0.03695492 0.01900057## tomorrow 0.01946661 0.00000000 0.00000000 0.00000000## try 0.00000000 0.00000000 0.00000000 0.01900057## worker 0.01946661 0.00000000 0.00000000 0.03800114## worse 0.01946661 0.00000000 0.00000000 0.00000000## ability 0.00000000 0.04550626 0.01847746 0.00000000## accountability 0.01946661 0.02275313 0.00000000 0.01900057## beginning 0.01946661 0.00000000 0.01847746 0.03800114## bigger 0.01946661 0.04550626 0.00000000 0.00000000## borders 0.00000000 0.00000000 0.01847746 0.01900057## broken 0.01946661 0.00000000 0.01847746 0.01900057## deficits 0.00000000 0.02275313 0.00000000 0.00000000## deny 0.01946661 0.00000000 0.01847746 0.00000000## difference 0.00000000 0.06825939 0.00000000 0.01900057## disease 0.01946661 0.02275313 0.01847746 0.01900057## employers 0.00000000 0.00000000 0.01847746 0.03800114## entrepreneurs 0.01946661 0.00000000 0.00000000 0.01900057## faster 0.00000000 0.02275313 0.01847746 0.00000000## fully 0.00000000 0.04550626 0.03695492 0.00000000## gave 0.00000000 0.00000000 0.01847746 0.01900057## hit 0.00000000 0.00000000 0.00000000 0.00000000## learn 0.00000000 0.02275313 0.05543237 0.00000000## looking 0.00000000 0.00000000 0.00000000 0.00000000## patients 0.01946661 0.04550626 0.01847746 0.00000000## police 0.01946661 0.04550626 0.00000000 0.01900057## profits 0.00000000 0.00000000 0.03695492 0.00000000## representatives 0.00000000 0.00000000 0.00000000 0.03800114## responsibilities 0.01946661 0.00000000 0.00000000 0.01900057## road 0.03893323 0.11376564 0.00000000 0.00000000## test 0.01946661 0.11376564 0.01847746 0.00000000## they^ve 0.00000000 0.00000000 0.00000000 0.00000000## track 0.01946661 0.00000000 0.03695492 0.01900057## wait 0.01946661 0.00000000 0.00000000 0.00000000## whole 0.05839984 0.02275313 0.03695492 0.01900057## worst 0.00000000 0.00000000 0.00000000 0.01900057## york 0.00000000 0.00000000 0.01847746 0.00000000## become 0.01946661 0.02275313 0.00000000 0.00000000## biological 0.01946661 0.00000000 0.11086475 0.01900057## breaks 0.00000000 0.00000000 0.00000000 0.00000000## bringing 0.00000000 0.00000000 0.01847746 0.03800114## brought 0.00000000 0.00000000 0.00000000 0.07600228## cancer 0.00000000 0.02275313 0.00000000 0.00000000## changed 0.01946661 0.00000000 0.01847746 0.00000000## changes 0.01946661 0.02275313 0.00000000 0.00000000## changing 0.01946661 0.02275313 0.00000000 0.03800114## concerns 0.00000000 0.02275313 0.00000000 0.00000000## confident 0.01946661 0.00000000 0.01847746 0.01900057## creation 0.00000000 0.00000000 0.00000000 0.01900057## critical 0.00000000 0.00000000 0.00000000 0.01900057## current 0.05839984 0.06825939 0.03695492 0.01900057## demand 0.01946661 0.04550626 0.03695492 0.01900057## early 0.01946661 0.02275313 0.01847746 0.01900057## else 0.01946661 0.00000000 0.00000000 0.00000000## expanding 0.03893323 0.00000000 0.00000000 0.03800114## feel 0.00000000 0.04550626 0.00000000 0.00000000## fiscal 0.00000000 0.00000000 0.00000000 0.00000000## five 0.01946661 0.06825939 0.01847746 0.00000000## follow 0.00000000 0.00000000 0.01847746 0.00000000## gone 0.00000000 0.00000000 0.03695492 0.00000000## ground 0.03893323 0.02275313 0.00000000 0.00000000## he^s 0.00000000 0.02275313 0.09238729 0.00000000## hear 0.00000000 0.00000000 0.03695492 0.01900057## helps 0.00000000 0.00000000 0.00000000 0.00000000## hiv 0.01946661 0.00000000 0.01847746 0.00000000## hundreds 0.00000000 0.00000000 0.00000000 0.03800114## industries 0.00000000 0.00000000 0.00000000 0.01900057## intend 0.00000000 0.00000000 0.00000000 0.00000000## isn^t 0.00000000 0.00000000 0.00000000 0.00000000## jill 0.00000000 0.00000000 0.00000000 0.00000000## keeping 0.00000000 0.00000000 0.01847746 0.03800114## mean 0.00000000 0.00000000 0.01847746 0.00000000## met 0.00000000 0.02275313 0.01847746 0.01900057## mom 0.05839984 0.00000000 0.01847746 0.01900057## online 0.01946661 0.02275313 0.01847746 0.01900057## option 0.00000000 0.02275313 0.01847746 0.00000000## partners 0.01946661 0.00000000 0.01847746 0.05700171## pursue 0.01946661 0.00000000 0.00000000 0.01900057## rebuilding 0.00000000 0.00000000 0.00000000 0.00000000## results 0.03893323 0.04550626 0.00000000 0.03800114## safer 0.03893323 0.00000000 0.01847746 0.01900057## safety 0.00000000 0.00000000 0.03695492 0.01900057## spread 0.01946661 0.00000000 0.00000000 0.01900057## starting 0.01946661 0.00000000 0.00000000 0.03800114## stopped 0.00000000 0.00000000 0.01847746 0.00000000## takes 0.01946661 0.00000000 0.00000000 0.03800114## taxpayers 0.00000000 0.02275313 0.01847746 0.01900057## uniform 0.03893323 0.02275313 0.00000000 0.01900057## unless 0.00000000 0.00000000 0.00000000 0.09500285## upon 0.00000000 0.02275313 0.05543237 0.03800114## victory 0.05839984 0.00000000 0.01847746 0.01900057## whatever 0.00000000 0.00000000 0.05543237 0.00000000## wind 0.00000000 0.00000000 0.00000000 0.00000000## worth 0.00000000 0.00000000 0.00000000 0.00000000## account 0.11679969 0.00000000 0.01847746 0.03800114## achievement 0.01946661 0.02275313 0.00000000 0.00000000## advance 0.07786646 0.00000000 0.00000000 0.00000000## agents 0.00000000 0.00000000 0.09238729 0.00000000## allowed 0.00000000 0.00000000 0.00000000 0.01900057## available 0.00000000 0.04550626 0.01847746 0.00000000## began 0.00000000 0.02275313 0.01847746 0.03800114## brave 0.00000000 0.02275313 0.03695492 0.00000000## career 0.01946661 0.00000000 0.00000000 0.00000000## certain 0.01946661 0.02275313 0.00000000 0.01900057## committed 0.00000000 0.00000000 0.00000000 0.03800114## conflict 0.00000000 0.00000000 0.00000000 0.00000000## congressional 0.00000000 0.00000000 0.00000000 0.00000000## constitution 0.01946661 0.02275313 0.00000000 0.01900057## credits 0.01946661 0.02275313 0.00000000 0.00000000## debates 0.00000000 0.04550626 0.00000000 0.00000000## decline 0.00000000 0.00000000 0.00000000 0.00000000## diplomatic 0.00000000 0.00000000 0.00000000 0.00000000## easier 0.01946661 0.00000000 0.00000000 0.00000000## either 0.00000000 0.02275313 0.00000000 0.00000000## entire 0.01946661 0.02275313 0.00000000 0.00000000## equality 0.00000000 0.02275313 0.00000000 0.00000000## extend 0.03893323 0.02275313 0.01847746 0.01900057## fastest 0.01946661 0.00000000 0.00000000 0.03800114## fill 0.03893323 0.00000000 0.01847746 0.01900057## food 0.00000000 0.02275313 0.03695492 0.00000000## gives 0.01946661 0.02275313 0.00000000 0.00000000## killed 0.01946661 0.00000000 0.01847746 0.05700171## korean 0.00000000 0.00000000 0.09238729 0.00000000## later 0.00000000 0.00000000 0.00000000 0.00000000## lay 0.00000000 0.00000000 0.03695492 0.00000000## learning 0.00000000 0.06825939 0.01847746 0.01900057## lift 0.01946661 0.00000000 0.01847746 0.00000000## line 0.00000000 0.00000000 0.01847746 0.00000000## michelle 0.00000000 0.00000000 0.00000000 0.00000000## mortgage 0.00000000 0.00000000 0.00000000 0.00000000## murder 0.03893323 0.00000000 0.03695492 0.01900057## needed 0.03893323 0.00000000 0.00000000 0.01900057## networks 0.00000000 0.00000000 0.01847746 0.00000000## officers 0.03893323 0.04550626 0.01847746 0.01900057## ones 0.00000000 0.02275313 0.00000000 0.00000000## overseas 0.00000000 0.00000000 0.00000000 0.00000000## plans 0.01946661 0.02275313 0.01847746 0.03800114## prepare 0.05839984 0.04550626 0.00000000 0.03800114## prison 0.00000000 0.02275313 0.01847746 0.09500285## raising 0.01946661 0.00000000 0.01847746 0.01900057## rebuild 0.00000000 0.00000000 0.01847746 0.00000000## reducing 0.00000000 0.02275313 0.03695492 0.00000000## restore 0.00000000 0.00000000 0.00000000 0.00000000## sacrifice 0.01946661 0.00000000 0.01847746 0.00000000## services 0.00000000 0.00000000 0.00000000 0.03800114## size 0.01946661 0.00000000 0.01847746 0.00000000## source 0.01946661 0.00000000 0.00000000 0.01900057## st 0.01946661 0.02275313 0.00000000 0.01900057## standing 0.01946661 0.02275313 0.00000000 0.00000000## started 0.00000000 0.00000000 0.03695492 0.01900057## themselves 0.00000000 0.02275313 0.01847746 0.00000000## today^s 0.03893323 0.02275313 0.00000000 0.00000000## transportation 0.00000000 0.00000000 0.00000000 0.00000000## turned 0.00000000 0.00000000 0.03695492 0.00000000## welcome 0.01946661 0.09101251 0.00000000 0.01900057## you^ve 0.03893323 0.00000000 0.01847746 0.00000000## above 0.01946661 0.04550626 0.00000000 0.01900057## ambitions 0.01946661 0.00000000 0.07390983 0.01900057## areas 0.00000000 0.00000000 0.00000000 0.00000000## begins 0.00000000 0.00000000 0.00000000 0.00000000## biggest 0.01946661 0.02275313 0.00000000 0.00000000## burden 0.00000000 0.00000000 0.00000000 0.01900057## carbon 0.00000000 0.00000000 0.00000000 0.00000000## citizen 0.01946661 0.00000000 0.01847746 0.00000000## cleaner 0.00000000 0.02275313 0.03695492 0.00000000## cuba 0.00000000 0.00000000 0.00000000 0.00000000## customers 0.00000000 0.00000000 0.00000000 0.00000000## dangers 0.01946661 0.00000000 0.03695492 0.01900057## depend 0.00000000 0.00000000 0.03695492 0.00000000## deployment 0.00000000 0.00000000 0.00000000 0.00000000## destroyed 0.01946661 0.00000000 0.09238729 0.00000000## disarm 0.00000000 0.00000000 0.11086475 0.00000000## earned 0.03893323 0.02275313 0.00000000 0.00000000## failure 0.01946661 0.02275313 0.01847746 0.00000000## field 0.00000000 0.00000000 0.03695492 0.00000000## george 0.00000000 0.00000000 0.00000000 0.01900057## grateful 0.05839984 0.00000000 0.00000000 0.00000000## hands 0.00000000 0.02275313 0.00000000 0.01900057## here^s 0.01946661 0.00000000 0.00000000 0.00000000## hour 0.00000000 0.00000000 0.01847746 0.00000000## increased 0.00000000 0.09101251 0.00000000 0.00000000## isil 0.00000000 0.00000000 0.00000000 0.00000000## land 0.00000000 0.02275313 0.00000000 0.01900057## loopholes 0.00000000 0.00000000 0.00000000 0.00000000## munitions 0.00000000 0.00000000 0.03695492 0.00000000## names 0.00000000 0.00000000 0.00000000 0.00000000## officials 0.00000000 0.02275313 0.05543237 0.01900057## owners 0.00000000 0.00000000 0.00000000 0.03800114## payroll 0.03893323 0.02275313 0.00000000 0.00000000## permanent 0.01946661 0.00000000 0.01847746 0.01900057## play 0.00000000 0.00000000 0.00000000 0.01900057## pollution 0.01946661 0.00000000 0.01847746 0.00000000## prepared 0.00000000 0.06825939 0.01847746 0.00000000## presidency 0.00000000 0.00000000 0.00000000 0.00000000## press 0.01946661 0.00000000 0.01847746 0.05700171## prevention 0.01946661 0.00000000 0.00000000 0.00000000## prices 0.01946661 0.04550626 0.00000000 0.00000000## protecting 0.00000000 0.02275313 0.00000000 0.01900057## protection 0.00000000 0.00000000 0.00000000 0.00000000## relations 0.00000000 0.00000000 0.00000000 0.00000000## required 0.00000000 0.02275313 0.01847746 0.00000000## rule 0.00000000 0.00000000 0.00000000 0.01900057## sell 0.00000000 0.00000000 0.01847746 0.00000000## shape 0.00000000 0.02275313 0.00000000 0.00000000## simply 0.00000000 0.02275313 0.00000000 0.01900057## sound 0.05839984 0.11376564 0.01847746 0.00000000## stock 0.01946661 0.00000000 0.01847746 0.01900057## taliban 0.00000000 0.00000000 0.00000000 0.03800114## teacher 0.00000000 0.04550626 0.00000000 0.00000000## thousand 0.00000000 0.02275313 0.00000000 0.01900057## tools 0.01946661 0.00000000 0.00000000 0.01900057## tuition 0.01946661 0.02275313 0.00000000 0.00000000## universities 0.00000000 0.00000000 0.00000000 0.00000000## using 0.00000000 0.02275313 0.01847746 0.03800114## walk 0.00000000 0.02275313 0.00000000 0.00000000## wrong 0.00000000 0.04550626 0.00000000 0.03800114## you^ll 0.03893323 0.04550626 0.00000000 0.00000000## adding 0.00000000 0.02275313 0.01847746 0.01900057## agencies 0.01946661 0.02275313 0.01847746 0.00000000## agreements 0.00000000 0.02275313 0.00000000 0.00000000## aid 0.00000000 0.00000000 0.01847746 0.00000000## among 0.01946661 0.00000000 0.01847746 0.00000000## answer 0.03893323 0.00000000 0.01847746 0.00000000## authority 0.01946661 0.02275313 0.00000000 0.00000000## born 0.03893323 0.00000000 0.01847746 0.00000000## capital 0.01946661 0.04550626 0.00000000 0.01900057## center 0.01946661 0.00000000 0.01847746 0.01900057## charge 0.00000000 0.00000000 0.01847746 0.00000000## consumer 0.00000000 0.00000000 0.00000000 0.00000000## cooperation 0.00000000 0.02275313 0.00000000 0.00000000## cover 0.00000000 0.00000000 0.00000000 0.01900057## cutting 0.00000000 0.00000000 0.03695492 0.00000000## demands 0.00000000 0.02275313 0.00000000 0.01900057## directly 0.00000000 0.00000000 0.00000000 0.00000000## doubt 0.00000000 0.02275313 0.00000000 0.01900057## essential 0.03893323 0.00000000 0.01847746 0.01900057## faith-based 0.01946661 0.06825939 0.01847746 0.03800114## fewer 0.01946661 0.00000000 0.00000000 0.01900057## finish 0.00000000 0.02275313 0.00000000 0.01900057## forget 0.00000000 0.00000000 0.00000000 0.00000000## fuel 0.00000000 0.00000000 0.00000000 0.00000000## funds 0.03893323 0.06825939 0.00000000 0.01900057## grants 0.01946661 0.00000000 0.00000000 0.03800114## healthy 0.01946661 0.00000000 0.01847746 0.01900057## held 0.03893323 0.00000000 0.00000000 0.00000000## independent 0.05839984 0.04550626 0.00000000 0.00000000## influence 0.00000000 0.00000000 0.00000000 0.01900057## itself 0.01946661 0.02275313 0.01847746 0.00000000## joe 0.00000000 0.04550626 0.00000000 0.00000000## joseph 0.00000000 0.00000000 0.00000000 0.00000000## late 0.01946661 0.02275313 0.03695492 0.00000000## leads 0.03893323 0.00000000 0.01847746 0.00000000## lending 0.00000000 0.00000000 0.00000000 0.00000000## letter 0.01946661 0.00000000 0.00000000 0.05700171## lobbyists 0.00000000 0.00000000 0.00000000 0.00000000## majority 0.00000000 0.00000000 0.00000000 0.00000000## measures 0.01946661 0.00000000 0.05543237 0.01900057## naturalization 0.00000000 0.00000000 0.00000000 0.00000000## offensive 0.01946661 0.00000000 0.00000000 0.05700171## palestinian 0.09733307 0.00000000 0.00000000 0.00000000## partnership 0.00000000 0.00000000 0.00000000 0.00000000## paychecks 0.01946661 0.00000000 0.03695492 0.00000000## peaceful 0.01946661 0.00000000 0.01847746 0.01900057## per 0.01946661 0.02275313 0.01847746 0.00000000## planet 0.00000000 0.00000000 0.00000000 0.00000000## pledge 0.00000000 0.00000000 0.03695492 0.01900057## quickly 0.01946661 0.06825939 0.01847746 0.00000000## recently 0.03893323 0.00000000 0.03695492 0.00000000## reductions 0.00000000 0.02275313 0.03695492 0.01900057## released 0.01946661 0.00000000 0.01847746 0.05700171## review 0.01946661 0.06825939 0.00000000 0.00000000## reward 0.01946661 0.00000000 0.00000000 0.01900057## sector 0.00000000 0.00000000 0.00000000 0.01900057## senator 0.03893323 0.00000000 0.00000000 0.00000000## served 0.00000000 0.02275313 0.00000000 0.00000000## several 0.01946661 0.00000000 0.03695492 0.00000000## shared 0.00000000 0.00000000 0.01847746 0.01900057## showing 0.01946661 0.00000000 0.01847746 0.01900057## space 0.00000000 0.00000000 0.00000000 0.00000000## struggling 0.00000000 0.02275313 0.00000000 0.00000000## supported 0.00000000 0.00000000 0.00000000 0.00000000## surely 0.00000000 0.00000000 0.00000000 0.01900057## threaten 0.00000000 0.02275313 0.01847746 0.01900057## value 0.01946661 0.00000000 0.00000000 0.03800114## weeks 0.01946661 0.00000000 0.00000000 0.01900057## workforce 0.00000000 0.00000000 0.00000000 0.00000000## accept 0.00000000 0.00000000 0.03695492 0.00000000## added 0.01946661 0.00000000 0.00000000 0.01900057## anything 0.01946661 0.00000000 0.00000000 0.01900057## baghdad 0.03893323 0.00000000 0.00000000 0.03800114## base 0.00000000 0.00000000 0.01847746 0.01900057## benefit 0.01946661 0.04550626 0.00000000 0.03800114## bin 0.00000000 0.00000000 0.00000000 0.00000000## capacity 0.00000000 0.00000000 0.00000000 0.00000000## categories 0.00000000 0.02275313 0.00000000 0.00000000## civilians 0.00000000 0.00000000 0.00000000 0.00000000## complete 0.00000000 0.02275313 0.00000000 0.01900057## conditions 0.01946661 0.00000000 0.00000000 0.00000000## defeat 0.01946661 0.00000000 0.00000000 0.00000000## deserves 0.01946661 0.00000000 0.00000000 0.00000000## desire 0.03893323 0.00000000 0.01847746 0.05700171## distinguished 0.00000000 0.00000000 0.01847746 0.01900057## documents 0.01946661 0.02275313 0.03695492 0.01900057## drive 0.00000000 0.02275313 0.00000000 0.00000000## earmarks 0.00000000 0.00000000 0.00000000 0.00000000## effects 0.00000000 0.00000000 0.00000000 0.00000000## emergency 0.00000000 0.00000000 0.01847746 0.00000000## empower 0.00000000 0.00000000 0.00000000 0.00000000## ends 0.00000000 0.00000000 0.00000000 0.00000000## february 0.03893323 0.02275313 0.03695492 0.00000000## forced 0.00000000 0.02275313 0.05543237 0.00000000## forge 0.00000000 0.00000000 0.00000000 0.00000000## four 0.01946661 0.02275313 0.00000000 0.01900057## general 0.00000000 0.02275313 0.00000000 0.00000000## gift 0.00000000 0.00000000 0.05543237 0.00000000## girls 0.00000000 0.00000000 0.03695492 0.01900057## goes 0.00000000 0.00000000 0.01847746 0.00000000## goods 0.00000000 0.04550626 0.00000000 0.00000000## gov 0.01946661 0.02275313 0.01847746 0.01900057## governments 0.07786646 0.00000000 0.01847746 0.00000000## gun 0.00000000 0.00000000 0.00000000 0.00000000## having 0.00000000 0.00000000 0.00000000 0.03800114## high-speed 0.00000000 0.00000000 0.00000000 0.00000000## impact 0.00000000 0.02275313 0.00000000 0.00000000## includes 0.00000000 0.00000000 0.00000000 0.01900057## increasing 0.05839984 0.02275313 0.00000000 0.03800114## knew 0.00000000 0.02275313 0.00000000 0.00000000## laden 0.00000000 0.00000000 0.00000000 0.00000000## leaving 0.03893323 0.00000000 0.01847746 0.01900057## led 0.00000000 0.00000000 0.00000000 0.00000000## massive 0.01946661 0.00000000 0.00000000 0.00000000## operations 0.00000000 0.02275313 0.05543237 0.01900057## pakistan 0.01946661 0.00000000 0.00000000 0.01900057## passing 0.01946661 0.00000000 0.00000000 0.03800114## potential 0.00000000 0.00000000 0.01847746 0.00000000## powerful 0.03893323 0.00000000 0.00000000 0.00000000## priority 0.00000000 0.09101251 0.00000000 0.00000000## project 0.00000000 0.00000000 0.01847746 0.01900057## proposals 0.01946661 0.00000000 0.00000000 0.00000000## protections 0.00000000 0.00000000 0.00000000 0.00000000## putting 0.00000000 0.00000000 0.01847746 0.00000000## reading 0.00000000 0.13651877 0.00000000 0.03800114## reflect 0.01946661 0.02275313 0.00000000 0.01900057## renew 0.03893323 0.00000000 0.03695492 0.01900057## senior 0.01946661 0.06825939 0.00000000 0.05700171## son 0.00000000 0.00000000 0.00000000 0.00000000## stake 0.00000000 0.00000000 0.01847746 0.00000000## stands 0.01946661 0.02275313 0.01847746 0.01900057## streets 0.00000000 0.00000000 0.00000000 0.00000000## supports 0.00000000 0.02275313 0.03695492 0.00000000## tens 0.00000000 0.00000000 0.01847746 0.00000000## thought 0.00000000 0.00000000 0.00000000 0.01900057## unemployed 0.00000000 0.00000000 0.00000000 0.00000000## urgent 0.00000000 0.02275313 0.01847746 0.00000000## veto 0.00000000 0.00000000 0.00000000 0.01900057## vision 0.00000000 0.04550626 0.00000000 0.00000000## vulnerable 0.01946661 0.00000000 0.01847746 0.00000000## waiting 0.00000000 0.00000000 0.00000000 0.00000000## wants 0.00000000 0.00000000 0.00000000 0.00000000## waste 0.00000000 0.00000000 0.00000000 0.00000000## wealthiest 0.00000000 0.00000000 0.00000000 0.00000000## west 0.01946661 0.02275313 0.00000000 0.00000000## accountable 0.00000000 0.00000000 0.00000000 0.00000000## achieved 0.05839984 0.00000000 0.01847746 0.00000000## addiction 0.00000000 0.04550626 0.05543237 0.00000000## addresses 0.00000000 0.00000000 0.00000000 0.00000000## affordability 0.00000000 0.00000000 0.00000000 0.00000000## alliances 0.00000000 0.00000000 0.03695492 0.00000000## arguments 0.00000000 0.02275313 0.00000000 0.00000000## barack 0.00000000 0.00000000 0.00000000 0.00000000## believed 0.00000000 0.00000000 0.01847746 0.00000000## bipartisanship 0.00000000 0.02275313 0.00000000 0.00000000## car 0.01946661 0.00000000 0.03695492 0.00000000## citizenship 0.00000000 0.00000000 0.00000000 0.01900057## coal 0.01946661 0.00000000 0.00000000 0.00000000## commit 0.01946661 0.00000000 0.03695492 0.01900057## communications 0.00000000 0.00000000 0.01847746 0.00000000## confronting 0.00000000 0.04550626 0.01847746 0.01900057## conscience 0.00000000 0.04550626 0.00000000 0.00000000## continuing 0.01946661 0.00000000 0.00000000 0.01900057## corporations 0.00000000 0.00000000 0.00000000 0.00000000## cory 0.00000000 0.00000000 0.00000000 0.00000000## council 0.00000000 0.00000000 0.03695492 0.05700171## counterterrorism 0.00000000 0.00000000 0.00000000 0.00000000## deal 0.03893323 0.00000000 0.00000000 0.00000000## delivered 0.03893323 0.00000000 0.01847746 0.00000000## destiny 0.00000000 0.00000000 0.01847746 0.00000000## direct 0.00000000 0.02275313 0.00000000 0.00000000## diseases 0.00000000 0.00000000 0.01847746 0.03800114## dramatically 0.05839984 0.00000000 0.01847746 0.00000000## efficiency 0.00000000 0.00000000 0.01847746 0.00000000## ended 0.00000000 0.00000000 0.01847746 0.03800114## era 0.01946661 0.00000000 0.01847746 0.00000000## extra 0.01946661 0.00000000 0.01847746 0.01900057## faced 0.00000000 0.00000000 0.01847746 0.01900057## facilities 0.00000000 0.00000000 0.03695492 0.00000000## facts 0.00000000 0.00000000 0.01847746 0.01900057## fail 0.00000000 0.02275313 0.00000000 0.01900057## fast 0.00000000 0.00000000 0.03695492 0.00000000## foundation 0.01946661 0.04550626 0.00000000 0.00000000## g 0.00000000 0.00000000 0.00000000 0.00000000## gay 0.00000000 0.00000000 0.00000000 0.00000000## globe 0.01946661 0.00000000 0.00000000 0.00000000## grew 0.00000000 0.04550626 0.00000000 0.00000000## grows 0.00000000 0.00000000 0.05543237 0.00000000## guests 0.00000000 0.00000000 0.00000000 0.01900057## harder 0.00000000 0.00000000 0.00000000 0.00000000## hardship 0.00000000 0.00000000 0.01847746 0.00000000## honest 0.01946661 0.00000000 0.00000000 0.01900057## hours 0.01946661 0.02275313 0.03695492 0.01900057## immigrants 0.00000000 0.00000000 0.00000000 0.00000000## innocent 0.00000000 0.00000000 0.03695492 0.01900057## insist 0.00000000 0.02275313 0.01847746 0.01900057## kept 0.00000000 0.00000000 0.00000000 0.03800114## key 0.00000000 0.00000000 0.03695492 0.03800114## launch 0.00000000 0.00000000 0.00000000 0.00000000## launched 0.00000000 0.00000000 0.00000000 0.00000000## lawsuits 0.01946661 0.02275313 0.01847746 0.03800114## learned 0.00000000 0.00000000 0.01847746 0.01900057## lebanon 0.01946661 0.00000000 0.00000000 0.00000000## locations 0.00000000 0.00000000 0.00000000 0.00000000## low 0.00000000 0.06825939 0.00000000 0.03800114## low-income 0.01946661 0.00000000 0.00000000 0.03800114## matters 0.00000000 0.00000000 0.01847746 0.00000000## measure 0.00000000 0.00000000 0.00000000 0.01900057## moral 0.03893323 0.00000000 0.01847746 0.01900057## network 0.01946661 0.02275313 0.03695492 0.00000000## pages 0.01946661 0.02275313 0.01847746 0.01900057## partner 0.00000000 0.02275313 0.00000000 0.00000000## playing 0.00000000 0.00000000 0.00000000 0.00000000## premiums 0.00000000 0.00000000 0.00000000 0.01900057## price 0.00000000 0.00000000 0.00000000 0.01900057## principle 0.03893323 0.00000000 0.00000000 0.00000000## promised 0.00000000 0.00000000 0.01847746 0.00000000## pursuing 0.03893323 0.00000000 0.00000000 0.01900057## radical 0.00000000 0.02275313 0.00000000 0.00000000## ready 0.00000000 0.00000000 0.00000000 0.00000000## regimes 0.03893323 0.00000000 0.03695492 0.05700171## report 0.00000000 0.00000000 0.00000000 0.01900057## robert 0.00000000 0.00000000 0.00000000 0.00000000## rural 0.00000000 0.00000000 0.01847746 0.00000000## saving 0.00000000 0.02275313 0.00000000 0.05700171## shores 0.00000000 0.00000000 0.00000000 0.00000000## shot 0.00000000 0.02275313 0.00000000 0.00000000## spanish 0.01946661 0.02275313 0.01847746 0.01900057## standard 0.01946661 0.00000000 0.01847746 0.01900057## status 0.00000000 0.00000000 0.00000000 0.01900057## subjects 0.00000000 0.00000000 0.00000000 0.00000000## subsidies 0.00000000 0.00000000 0.00000000 0.00000000## suffering 0.01946661 0.00000000 0.03695492 0.00000000## supply 0.00000000 0.02275313 0.00000000 0.01900057## taxpayer 0.01946661 0.00000000 0.00000000 0.00000000## teaching 0.00000000 0.11376564 0.00000000 0.00000000## terrible 0.03893323 0.02275313 0.05543237 0.00000000## trained 0.01946661 0.00000000 0.01847746 0.00000000## transition 0.00000000 0.00000000 0.00000000 0.01900057## transparency 0.00000000 0.00000000 0.00000000 0.00000000## travel 0.00000000 0.02275313 0.00000000 0.00000000## truth 0.00000000 0.00000000 0.00000000 0.00000000## unprecedented 0.01946661 0.02275313 0.01847746 0.00000000## water 0.00000000 0.02275313 0.01847746 0.00000000## whose 0.01946661 0.00000000 0.00000000 0.00000000## wife 0.00000000 0.00000000 0.00000000 0.00000000## write 0.01946661 0.00000000 0.00000000 0.00000000## wrote 0.01946661 0.00000000 0.00000000 0.00000000## yemen 0.00000000 0.00000000 0.03695492 0.00000000## younger 0.07786646 0.04550626 0.01847746 0.01900057## advantage 0.01946661 0.00000000 0.00000000 0.00000000## announce 0.00000000 0.00000000 0.00000000 0.00000000## army 0.00000000 0.00000000 0.00000000 0.01900057## aside 0.03893323 0.02275313 0.00000000 0.00000000## attacked 0.01946661 0.00000000 0.00000000 0.01900057## attention 0.01946661 0.00000000 0.01847746 0.00000000## auto 0.00000000 0.00000000 0.00000000 0.00000000## baby 0.00000000 0.02275313 0.00000000 0.00000000## bank 0.01946661 0.00000000 0.00000000 0.00000000## billions 0.00000000 0.00000000 0.00000000 0.01900057## body 0.01946661 0.00000000 0.00000000 0.00000000## bridges 0.00000000 0.00000000 0.00000000 0.00000000## brings 0.03893323 0.02275313 0.00000000 0.00000000## calling 0.00000000 0.00000000 0.01847746 0.01900057## captured 0.01946661 0.00000000 0.00000000 0.05700171## carry 0.00000000 0.00000000 0.00000000 0.00000000## case 0.00000000 0.00000000 0.03695492 0.00000000## cells 0.01946661 0.00000000 0.01847746 0.01900057## chaos 0.01946661 0.00000000 0.01847746 0.01900057## childcare 0.00000000 0.00000000 0.00000000 0.00000000## claims 0.01946661 0.04550626 0.00000000 0.00000000## colombia 0.00000000 0.00000000 0.00000000 0.00000000## commitments 0.00000000 0.00000000 0.00000000 0.01900057## consumers 0.00000000 0.00000000 0.00000000 0.01900057## continued 0.00000000 0.00000000 0.01847746 0.01900057## corps 0.01946661 0.00000000 0.01847746 0.00000000## couldn^t 0.00000000 0.00000000 0.00000000 0.00000000## courts 0.03893323 0.02275313 0.00000000 0.00000000## d 0.00000000 0.00000000 0.00000000 0.00000000## decency 0.01946661 0.00000000 0.00000000 0.00000000## defeated 0.00000000 0.00000000 0.01847746 0.01900057## democrat 0.00000000 0.04550626 0.00000000 0.00000000## denied 0.00000000 0.00000000 0.00000000 0.01900057## dime 0.00000000 0.00000000 0.00000000 0.00000000## diploma 0.01946661 0.00000000 0.00000000 0.00000000## discipline 0.01946661 0.00000000 0.01847746 0.00000000## dollar 0.00000000 0.02275313 0.00000000 0.00000000## doubling 0.01946661 0.02275313 0.00000000 0.00000000## emissions 0.00000000 0.00000000 0.00000000 0.00000000## enterprise 0.00000000 0.00000000 0.00000000 0.03800114## equipment 0.01946661 0.00000000 0.00000000 0.01900057## everywhere 0.00000000 0.00000000 0.00000000 0.00000000## experience 0.00000000 0.00000000 0.00000000 0.01900057## factories 0.00000000 0.00000000 0.00000000 0.00000000## factory 0.00000000 0.00000000 0.00000000 0.00000000## failed 0.00000000 0.00000000 0.00000000 0.03800114## fought 0.00000000 0.00000000 0.00000000 0.00000000## freeze 0.00000000 0.00000000 0.00000000 0.00000000## gain 0.00000000 0.00000000 0.01847746 0.03800114## governor 0.00000000 0.00000000 0.00000000 0.00000000## gpo 0.01946661 0.02275313 0.01847746 0.01900057## graduate 0.00000000 0.00000000 0.00000000 0.00000000## grown 0.01946661 0.00000000 0.00000000 0.00000000## gulf 0.00000000 0.00000000 0.01847746 0.00000000## h 0.00000000 0.00000000 0.00000000 0.00000000## happened 0.00000000 0.00000000 0.01847746 0.00000000## hardest 0.00000000 0.02275313 0.00000000 0.03800114## haven 0.00000000 0.02275313 0.00000000 0.00000000## haven^t 0.00000000 0.00000000 0.00000000 0.00000000## havens 0.00000000 0.00000000 0.00000000 0.00000000## hidden 0.01946661 0.00000000 0.03695492 0.00000000## high-quality 0.00000000 0.00000000 0.00000000 0.00000000## high-tech 0.00000000 0.00000000 0.00000000 0.00000000## hiring 0.00000000 0.00000000 0.00000000 0.00000000## historic 0.00000000 0.00000000 0.01847746 0.03800114## homeowners 0.00000000 0.00000000 0.00000000 0.00000000## hopes 0.01946661 0.00000000 0.01847746 0.00000000## huge 0.00000000 0.00000000 0.00000000 0.00000000## hundred 0.00000000 0.00000000 0.00000000 0.01900057## ideals 0.00000000 0.00000000 0.00000000 0.00000000## independence 0.00000000 0.02275313 0.01847746 0.00000000## india 0.00000000 0.00000000 0.00000000 0.00000000## individual 0.00000000 0.00000000 0.00000000 0.03800114## islamic 0.00000000 0.00000000 0.00000000 0.00000000## japan 0.00000000 0.00000000 0.01847746 0.01900057## killers 0.00000000 0.00000000 0.01847746 0.09500285## language 0.01946661 0.00000000 0.01847746 0.01900057## lasting 0.00000000 0.00000000 0.00000000 0.00000000## legal 0.01946661 0.00000000 0.01847746 0.01900057## lie 0.00000000 0.00000000 0.01847746 0.00000000## march 0.00000000 0.02275313 0.00000000 0.03800114## meeting 0.00000000 0.00000000 0.00000000 0.03800114## missile 0.00000000 0.02275313 0.03695492 0.00000000## monday 0.01946661 0.02275313 0.01847746 0.01900057## moving 0.01946661 0.02275313 0.00000000 0.00000000## n 0.00000000 0.00000000 0.07390983 0.00000000## named 0.00000000 0.00000000 0.00000000 0.00000000## news 0.00000000 0.00000000 0.01847746 0.01900057## officer 0.00000000 0.00000000 0.00000000 0.01900057## opened 0.01946661 0.00000000 0.00000000 0.01900057## owe 0.00000000 0.04550626 0.00000000 0.00000000## pace 0.00000000 0.00000000 0.01847746 0.01900057## peninsula 0.00000000 0.00000000 0.03695492 0.00000000## poor 0.01946661 0.02275313 0.00000000 0.00000000## practices 0.00000000 0.02275313 0.00000000 0.00000000## president^s 0.00000000 0.00000000 0.00000000 0.00000000## presidents 0.00000000 0.04550626 0.01847746 0.00000000## pressure 0.00000000 0.00000000 0.00000000 0.00000000## privilege 0.03893323 0.06825939 0.00000000 0.00000000## protects 0.00000000 0.02275313 0.01847746 0.03800114## publishing 0.01946661 0.02275313 0.01847746 0.01900057## qaida^s 0.00000000 0.00000000 0.01847746 0.01900057## rather 0.03893323 0.00000000 0.00000000 0.00000000## read 0.00000000 0.02275313 0.01847746 0.01900057## refinancing 0.00000000 0.00000000 0.00000000 0.00000000## refuse 0.00000000 0.02275313 0.00000000 0.03800114## reject 0.00000000 0.00000000 0.00000000 0.00000000## risks 0.01946661 0.00000000 0.03695492 0.01900057## roads 0.00000000 0.00000000 0.00000000 0.00000000## seeing 0.01946661 0.00000000 0.00000000 0.00000000## sending 0.00000000 0.00000000 0.01847746 0.00000000## signed 0.00000000 0.00000000 0.01847746 0.03800114## solution 0.00000000 0.00000000 0.01847746 0.00000000## teach 0.00000000 0.02275313 0.00000000 0.03800114## town 0.00000000 0.00000000 0.00000000 0.00000000## transcript 0.01946661 0.00000000 0.01847746 0.01900057## tyranny 0.03893323 0.00000000 0.00000000 0.03800114## ukraine 0.03893323 0.00000000 0.00000000 0.01900057## uninsured 0.00000000 0.00000000 0.00000000 0.00000000## uranium 0.01946661 0.00000000 0.03695492 0.01900057## violent 0.00000000 0.00000000 0.00000000 0.03800114## voice 0.00000000 0.00000000 0.00000000 0.03800114## voices 0.00000000 0.00000000 0.00000000 0.00000000## volume 0.01946661 0.02275313 0.01847746 0.01900057## wars 0.00000000 0.00000000 0.00000000 0.00000000## watch 0.01946661 0.00000000 0.01847746 0.01900057## watching 0.00000000 0.00000000 0.00000000 0.00000000## weapon 0.00000000 0.00000000 0.01847746 0.00000000## went 0.01946661 0.00000000 0.00000000 0.00000000## who^s 0.00000000 0.00000000 0.00000000 0.00000000## worthy 0.00000000 0.02275313 0.00000000 0.00000000## www 0.01946661 0.02275313 0.01847746 0.01900057## absolutely 0.00000000 0.00000000 0.00000000 0.00000000## accounted 0.00000000 0.00000000 0.07390983 0.00000000## acted 0.00000000 0.00000000 0.00000000 0.01900057## acts 0.00000000 0.00000000 0.01847746 0.01900057## addicted 0.00000000 0.00000000 0.05543237 0.01900057## agreed 0.00000000 0.00000000 0.01847746 0.00000000## allen 0.00000000 0.00000000 0.00000000 0.00000000## allowing 0.00000000 0.04550626 0.00000000 0.01900057## ambitious 0.01946661 0.00000000 0.00000000 0.01900057## announcing 0.00000000 0.00000000 0.00000000 0.00000000## apart 0.00000000 0.00000000 0.00000000 0.01900057## argue 0.00000000 0.00000000 0.00000000 0.00000000## battle 0.01946661 0.00000000 0.01847746 0.01900057## belief 0.01946661 0.00000000 0.00000000 0.00000000## boehner 0.00000000 0.00000000 0.00000000 0.00000000## boys 0.00000000 0.00000000 0.03695492 0.01900057## breakthroughs 0.00000000 0.00000000 0.00000000 0.00000000## broader 0.05839984 0.02275313 0.00000000 0.00000000## buildings 0.00000000 0.00000000 0.00000000 0.00000000## burma 0.00000000 0.00000000 0.00000000 0.00000000## cases 0.03893323 0.00000000 0.00000000 0.00000000## causes 0.00000000 0.00000000 0.03695492 0.00000000## cheney 0.01946661 0.02275313 0.01847746 0.01900057## childhood 0.00000000 0.00000000 0.00000000 0.00000000## children^s 0.01946661 0.02275313 0.00000000 0.01900057## cities 0.01946661 0.00000000 0.00000000 0.01900057## classroom 0.00000000 0.00000000 0.01847746 0.00000000## commanders 0.03893323 0.00000000 0.01847746 0.00000000## compilation 0.01946661 0.02275313 0.01847746 0.01900057## concern 0.00000000 0.00000000 0.00000000 0.00000000## conservation 0.01946661 0.06825939 0.01847746 0.01900057## consider 0.00000000 0.00000000 0.03695492 0.01900057## culture 0.03893323 0.00000000 0.01847746 0.01900057## decision 0.00000000 0.00000000 0.01847746 0.00000000## decisive 0.00000000 0.00000000 0.01847746 0.00000000## declared 0.03893323 0.00000000 0.00000000 0.01900057## depression 0.00000000 0.00000000 0.00000000 0.00000000## desk 0.00000000 0.00000000 0.00000000 0.00000000## despite 0.00000000 0.00000000 0.01847746 0.00000000## determination 0.00000000 0.00000000 0.00000000 0.01900057## determine 0.00000000 0.00000000 0.03695492 0.00000000## discretionary 0.01946661 0.02275313 0.01847746 0.01900057## dominate 0.00000000 0.00000000 0.05543237 0.01900057## doubled 0.00000000 0.02275313 0.00000000 0.01900057## dropped 0.00000000 0.00000000 0.01847746 0.00000000## e 0.00000000 0.00000000 0.00000000 0.00000000## earlier 0.01946661 0.02275313 0.00000000 0.00000000## efficient 0.00000000 0.00000000 0.00000000 0.00000000## ending 0.01946661 0.00000000 0.00000000 0.00000000## exchange 0.00000000 0.00000000 0.00000000 0.00000000## expire 0.00000000 0.00000000 0.00000000 0.05700171## extremism 0.00000000 0.00000000 0.00000000 0.00000000## f 0.00000000 0.02275313 0.00000000 0.00000000## fallen 0.00000000 0.00000000 0.00000000 0.01900057## farmers 0.00000000 0.02275313 0.00000000 0.01900057## fears 0.00000000 0.00000000 0.00000000 0.00000000## felt 0.00000000 0.00000000 0.00000000 0.01900057## fields 0.00000000 0.00000000 0.00000000 0.03800114## final 0.00000000 0.00000000 0.01847746 0.00000000## fixing 0.01946661 0.00000000 0.00000000 0.00000000## gentlemen 0.01946661 0.00000000 0.01847746 0.00000000## goals 0.00000000 0.04550626 0.00000000 0.01900057## guantanamo 0.00000000 0.00000000 0.00000000 0.00000000## guarantee 0.01946661 0.00000000 0.00000000 0.00000000## hide 0.00000000 0.00000000 0.03695492 0.01900057## however 0.03893323 0.00000000 0.01847746 0.03800114## ideology 0.00000000 0.00000000 0.01847746 0.00000000## ignore 0.00000000 0.00000000 0.01847746 0.01900057## immediate 0.00000000 0.00000000 0.01847746 0.00000000## improving 0.00000000 0.00000000 0.03695492 0.01900057## incomes 0.00000000 0.02275313 0.00000000 0.00000000## intentions 0.00000000 0.00000000 0.01847746 0.00000000## investing 0.00000000 0.00000000 0.00000000 0.00000000## iranian 0.03893323 0.00000000 0.01847746 0.00000000## ladies 0.01946661 0.00000000 0.01847746 0.00000000## laid 0.00000000 0.00000000 0.00000000 0.00000000## large 0.01946661 0.00000000 0.00000000 0.00000000## liability 0.01946661 0.00000000 0.01847746 0.00000000## limit 0.00000000 0.00000000 0.01847746 0.03800114## listen 0.01946661 0.00000000 0.00000000 0.01900057## losing 0.01946661 0.00000000 0.01847746 0.00000000## main 0.03893323 0.00000000 0.00000000 0.00000000## manufacturers 0.00000000 0.00000000 0.00000000 0.01900057## maybe 0.00000000 0.00000000 0.00000000 0.00000000## mayor 0.00000000 0.11376564 0.00000000 0.00000000## mind 0.01946661 0.00000000 0.00000000 0.00000000## movement 0.00000000 0.00000000 0.00000000 0.00000000## nato 0.01946661 0.00000000 0.00000000 0.00000000## negotiations 0.00000000 0.00000000 0.00000000 0.01900057## neither 0.00000000 0.02275313 0.00000000 0.00000000## night 0.00000000 0.02275313 0.00000000 0.00000000## obligations 0.00000000 0.02275313 0.00000000 0.00000000## offered 0.00000000 0.00000000 0.01847746 0.00000000## ordered 0.00000000 0.00000000 0.01847746 0.00000000## ours 0.00000000 0.00000000 0.00000000 0.00000000## owner 0.00000000 0.00000000 0.00000000 0.00000000## panama 0.00000000 0.00000000 0.00000000 0.00000000## parent 0.01946661 0.02275313 0.00000000 0.00000000## paycheck 0.01946661 0.00000000 0.00000000 0.00000000## pennsylvania 0.00000000 0.02275313 0.01847746 0.00000000## pockets 0.00000000 0.00000000 0.00000000 0.00000000## preventive 0.00000000 0.00000000 0.01847746 0.01900057## prime 0.07786646 0.00000000 0.01847746 0.00000000## professionals 0.00000000 0.00000000 0.00000000 0.01900057## promises 0.00000000 0.04550626 0.00000000 0.00000000## provided 0.03893323 0.02275313 0.00000000 0.01900057## providers 0.00000000 0.00000000 0.00000000 0.00000000## provides 0.03893323 0.02275313 0.01847746 0.00000000## realize 0.00000000 0.00000000 0.00000000 0.00000000## rebekah 0.00000000 0.00000000 0.00000000 0.00000000## recent 0.00000000 0.02275313 0.01847746 0.00000000## redtape 0.00000000 0.00000000 0.00000000 0.00000000## regions 0.01946661 0.00000000 0.00000000 0.00000000## reliable 0.01946661 0.00000000 0.01847746 0.03800114## response 0.00000000 0.00000000 0.00000000 0.00000000## retreat 0.00000000 0.00000000 0.00000000 0.00000000## sergeant 0.03893323 0.00000000 0.00000000 0.00000000## serving 0.03893323 0.00000000 0.00000000 0.00000000## shown 0.01946661 0.02275313 0.01847746 0.05700171## significant 0.00000000 0.04550626 0.01847746 0.01900057## sit 0.00000000 0.00000000 0.00000000 0.00000000## situation 0.01946661 0.02275313 0.00000000 0.00000000## slow 0.00000000 0.00000000 0.00000000 0.00000000## someone 0.00000000 0.00000000 0.00000000 0.01900057## sometimes 0.00000000 0.00000000 0.01847746 0.00000000## speed 0.00000000 0.02275313 0.00000000 0.00000000## stability 0.01946661 0.00000000 0.00000000 0.00000000## stood 0.03893323 0.00000000 0.00000000 0.00000000## stories 0.00000000 0.00000000 0.00000000 0.00000000## strategic 0.00000000 0.02275313 0.00000000 0.00000000## study 0.00000000 0.00000000 0.00000000 0.01900057## sudden 0.03893323 0.00000000 0.01847746 0.00000000## supplies 0.01946661 0.00000000 0.03695492 0.01900057## surplus 0.00000000 0.11376564 0.00000000 0.00000000## surveillance 0.00000000 0.00000000 0.01847746 0.00000000## sustain 0.03893323 0.00000000 0.00000000 0.00000000## team 0.00000000 0.00000000 0.00000000 0.01900057## temporary 0.01946661 0.00000000 0.00000000 0.00000000## though 0.00000000 0.02275313 0.00000000 0.00000000## tired 0.00000000 0.02275313 0.00000000 0.00000000## trucks 0.00000000 0.00000000 0.00000000 0.00000000## turning 0.00000000 0.02275313 0.00000000 0.00000000## ultimately 0.00000000 0.00000000 0.00000000 0.00000000## unit 0.00000000 0.00000000 0.00000000 0.00000000## usama 0.00000000 0.00000000 0.00000000 0.00000000## w 0.00000000 0.00000000 0.00000000 0.01900057## weekly 0.01946661 0.02275313 0.01847746 0.01900057## word 0.00000000 0.00000000 0.00000000 0.01900057## -year 0.01946661 0.00000000 0.00000000 0.01900057## abandon 0.03893323 0.00000000 0.00000000 0.00000000## abuse 0.00000000 0.00000000 0.00000000 0.00000000## active 0.01946661 0.02275313 0.00000000 0.01900057## actually 0.00000000 0.00000000 0.00000000 0.00000000## african 0.01946661 0.00000000 0.00000000 0.00000000## agency 0.00000000 0.00000000 0.03695492 0.00000000## allows 0.01946661 0.00000000 0.00000000 0.01900057## amazing 0.00000000 0.00000000 0.01847746 0.01900057## amid 0.00000000 0.00000000 0.00000000 0.00000000## arrived 0.00000000 0.00000000 0.01847746 0.00000000## assembly 0.01946661 0.00000000 0.00000000 0.00000000## avoid 0.00000000 0.00000000 0.00000000 0.03800114## balance 0.00000000 0.00000000 0.00000000 0.00000000## balanced 0.00000000 0.04550626 0.01847746 0.00000000## battles 0.00000000 0.00000000 0.00000000 0.00000000## bay 0.00000000 0.00000000 0.00000000 0.00000000## birth 0.01946661 0.00000000 0.01847746 0.00000000## bold 0.00000000 0.00000000 0.01847746 0.00000000## bottom 0.01946661 0.00000000 0.01847746 0.00000000## bridge 0.00000000 0.02275313 0.00000000 0.00000000## broad 0.00000000 0.00000000 0.01847746 0.00000000## brothers 0.00000000 0.00000000 0.00000000 0.00000000## buffett 0.00000000 0.00000000 0.00000000 0.00000000## bush 0.01946661 0.00000000 0.00000000 0.01900057## buying 0.00000000 0.04550626 0.00000000 0.00000000## california 0.00000000 0.02275313 0.01847746 0.00000000## camps 0.00000000 0.00000000 0.01847746 0.00000000## carolina 0.00000000 0.00000000 0.00000000 0.00000000## ceo 0.00000000 0.00000000 0.00000000 0.00000000## chambers 0.00000000 0.02275313 0.01847746 0.01900057## charged 0.00000000 0.00000000 0.00000000 0.01900057## charter 0.00000000 0.04550626 0.01847746 0.00000000## cheaper 0.00000000 0.00000000 0.00000000 0.00000000## conduct 0.00000000 0.00000000 0.05543237 0.01900057## corruption 0.00000000 0.00000000 0.00000000 0.00000000## creates 0.00000000 0.00000000 0.00000000 0.00000000## criminals 0.01946661 0.00000000 0.01847746 0.01900057## crucial 0.00000000 0.00000000 0.05543237 0.00000000## cyber 0.00000000 0.00000000 0.00000000 0.00000000## dad 0.01946661 0.00000000 0.01847746 0.01900057## decent 0.00000000 0.00000000 0.00000000 0.00000000## dedication 0.00000000 0.00000000 0.00000000 0.00000000## deeply 0.00000000 0.00000000 0.01847746 0.00000000## defeating 0.00000000 0.00000000 0.01847746 0.01900057## degree 0.00000000 0.00000000 0.00000000 0.00000000## dependence 0.00000000 0.00000000 0.00000000 0.00000000## dependent 0.01946661 0.00000000 0.01847746 0.01900057## destroy 0.03893323 0.00000000 0.01847746 0.00000000## dictator 0.00000000 0.00000000 0.05543237 0.00000000## directed 0.00000000 0.02275313 0.03695492 0.00000000## division 0.00000000 0.00000000 0.01847746 0.00000000## doctor 0.00000000 0.02275313 0.01847746 0.00000000## door 0.01946661 0.00000000 0.00000000 0.01900057## earmark 0.00000000 0.00000000 0.00000000 0.00000000## educate 0.00000000 0.00000000 0.01847746 0.00000000## effect 0.00000000 0.00000000 0.00000000 0.00000000## egypt 0.01946661 0.00000000 0.00000000 0.00000000## electric 0.00000000 0.00000000 0.03695492 0.00000000## enforce 0.00000000 0.00000000 0.00000000 0.00000000## engineers 0.00000000 0.00000000 0.01847746 0.00000000## entrepreneur 0.00000000 0.00000000 0.00000000 0.00000000## events 0.03893323 0.00000000 0.00000000 0.00000000## exactly 0.00000000 0.00000000 0.01847746 0.00000000## experts 0.00000000 0.00000000 0.00000000 0.00000000## export 0.00000000 0.00000000 0.00000000 0.00000000## failing 0.00000000 0.02275313 0.00000000 0.00000000## fbi 0.01946661 0.00000000 0.03695492 0.00000000## feed 0.01946661 0.00000000 0.00000000 0.00000000## finance 0.00000000 0.00000000 0.00000000 0.00000000## founders 0.01946661 0.00000000 0.01847746 0.00000000## fraud 0.00000000 0.00000000 0.00000000 0.00000000## frivolous 0.01946661 0.02275313 0.01847746 0.03800114## fundamental 0.00000000 0.00000000 0.00000000 0.05700171## funded 0.00000000 0.06825939 0.00000000 0.00000000## gains 0.00000000 0.00000000 0.00000000 0.01900057## game 0.00000000 0.00000000 0.00000000 0.00000000## gather 0.00000000 0.02275313 0.01847746 0.01900057## girl 0.00000000 0.00000000 0.00000000 0.01900057## grandchildren 0.07786646 0.02275313 0.00000000 0.00000000## guide 0.00000000 0.00000000 0.03695492 0.00000000## harm 0.00000000 0.00000000 0.00000000 0.01900057## heard 0.00000000 0.00000000 0.00000000 0.01900057## holding 0.00000000 0.00000000 0.01847746 0.00000000## honored 0.03893323 0.02275313 0.00000000 0.03800114## hospitals 0.00000000 0.00000000 0.03695492 0.00000000## humanity 0.00000000 0.00000000 0.03695492 0.00000000## i^d 0.00000000 0.00000000 0.00000000 0.00000000## imagine 0.00000000 0.00000000 0.01847746 0.00000000## increases 0.00000000 0.02275313 0.01847746 0.00000000## incredible 0.00000000 0.00000000 0.00000000 0.00000000## inequality 0.00000000 0.00000000 0.00000000 0.00000000## inflation 0.01946661 0.04550626 0.00000000 0.01900057## innovative 0.01946661 0.00000000 0.00000000 0.00000000## intimidate 0.01946661 0.00000000 0.05543237 0.00000000## iran^s 0.00000000 0.00000000 0.00000000 0.00000000## joined 0.00000000 0.00000000 0.00000000 0.01900057## judges 0.03893323 0.00000000 0.00000000 0.03800114## keeps 0.00000000 0.00000000 0.00000000 0.00000000## libya 0.00000000 0.00000000 0.00000000 0.05700171## limits 0.01946661 0.00000000 0.00000000 0.00000000## lines 0.00000000 0.00000000 0.00000000 0.00000000## loan 0.00000000 0.00000000 0.00000000 0.00000000## madam 0.00000000 0.00000000 0.00000000 0.00000000## meanwhile 0.00000000 0.00000000 0.00000000 0.00000000## medicines 0.00000000 0.00000000 0.05543237 0.00000000## mentors 0.00000000 0.00000000 0.05543237 0.01900057## methods 0.00000000 0.00000000 0.03695492 0.01900057## minority 0.01946661 0.00000000 0.00000000 0.00000000## modern 0.00000000 0.00000000 0.00000000 0.03800114## modernization 0.00000000 0.00000000 0.00000000 0.00000000## mortgages 0.00000000 0.00000000 0.00000000 0.00000000## muslim 0.00000000 0.00000000 0.00000000 0.00000000## operatives 0.00000000 0.00000000 0.00000000 0.00000000## ordinary 0.01946661 0.00000000 0.00000000 0.00000000## organizations 0.01946661 0.02275313 0.00000000 0.00000000## outcome 0.01946661 0.00000000 0.00000000 0.01900057## outdated 0.01946661 0.02275313 0.00000000 0.00000000## overcome 0.03893323 0.00000000 0.01847746 0.00000000## participate 0.00000000 0.00000000 0.01847746 0.00000000## partisan 0.01946661 0.00000000 0.00000000 0.00000000## patient 0.00000000 0.00000000 0.00000000 0.00000000## period 0.00000000 0.00000000 0.00000000 0.00000000## personnel 0.00000000 0.00000000 0.01847746 0.07600228## please 0.00000000 0.02275313 0.00000000 0.03800114## preexisting 0.00000000 0.00000000 0.00000000 0.00000000## preserve 0.01946661 0.02275313 0.00000000 0.03800114## prevents 0.00000000 0.00000000 0.00000000 0.00000000## principles 0.01946661 0.02275313 0.00000000 0.00000000## prisoners 0.00000000 0.00000000 0.03695492 0.03800114## privacy 0.00000000 0.00000000 0.00000000 0.00000000## profitable 0.00000000 0.00000000 0.00000000 0.00000000## protected 0.01946661 0.02275313 0.00000000 0.00000000## pull 0.00000000 0.00000000 0.00000000 0.00000000## purchase 0.00000000 0.00000000 0.01847746 0.00000000## qaeda 0.00000000 0.00000000 0.00000000 0.00000000## quarter 0.00000000 0.00000000 0.00000000 0.01900057## quo 0.00000000 0.00000000 0.00000000 0.01900057## raised 0.03893323 0.00000000 0.00000000 0.00000000## reduced 0.00000000 0.02275313 0.00000000 0.03800114## regardless 0.00000000 0.04550626 0.00000000 0.00000000## rely 0.01946661 0.00000000 0.00000000 0.00000000## repeat 0.00000000 0.00000000 0.00000000 0.00000000## replace 0.01946661 0.00000000 0.00000000 0.00000000## rescue 0.00000000 0.00000000 0.00000000 0.00000000## rewarded 0.00000000 0.00000000 0.00000000 0.00000000## rich 0.00000000 0.00000000 0.00000000 0.00000000## rid 0.00000000 0.00000000 0.00000000 0.01900057## root 0.00000000 0.00000000 0.00000000 0.00000000## running 0.00000000 0.00000000 0.00000000 0.00000000## saudi 0.03893323 0.00000000 0.01847746 0.00000000## sectarian 0.00000000 0.00000000 0.00000000 0.00000000## setting 0.00000000 0.02275313 0.00000000 0.01900057## severe 0.01946661 0.00000000 0.01847746 0.00000000## shi 0.00000000 0.00000000 0.00000000 0.00000000## shift 0.00000000 0.00000000 0.00000000 0.00000000## skill 0.00000000 0.00000000 0.01847746 0.01900057## slowly 0.00000000 0.00000000 0.01847746 0.00000000## sold 0.01946661 0.00000000 0.00000000 0.00000000## straight 0.00000000 0.00000000 0.00000000 0.00000000## strike 0.00000000 0.00000000 0.01847746 0.00000000## strongly 0.00000000 0.00000000 0.03695492 0.00000000## suggested 0.03893323 0.00000000 0.00000000 0.00000000## summit 0.00000000 0.00000000 0.00000000 0.00000000## surge 0.00000000 0.00000000 0.00000000 0.00000000## suspected 0.00000000 0.00000000 0.01847746 0.00000000## t 0.00000000 0.00000000 0.00000000 0.00000000## talked 0.00000000 0.02275313 0.01847746 0.00000000## telling 0.00000000 0.02275313 0.00000000 0.00000000## treat 0.00000000 0.00000000 0.01847746 0.00000000## treated 0.00000000 0.02275313 0.00000000 0.00000000## treaty 0.00000000 0.00000000 0.00000000 0.00000000## truly 0.00000000 0.00000000 0.00000000 0.00000000## unfair 0.00000000 0.00000000 0.01847746 0.01900057## unnecessary 0.00000000 0.00000000 0.00000000 0.00000000## uphold 0.00000000 0.00000000 0.00000000 0.00000000## vast 0.00000000 0.00000000 0.00000000 0.00000000## voted 0.01946661 0.00000000 0.00000000 0.00000000## votes 0.01946661 0.00000000 0.00000000 0.01900057## wasteful 0.00000000 0.00000000 0.00000000 0.03800114## wealth 0.00000000 0.02275313 0.01847746 0.00000000## who^ve 0.00000000 0.00000000 0.00000000 0.00000000## winning 0.00000000 0.00000000 0.01847746 0.00000000## wisdom 0.00000000 0.00000000 0.00000000 0.00000000## wise 0.01946661 0.00000000 0.00000000 0.01900057## worry 0.00000000 0.02275313 0.00000000 0.00000000## abu 0.03893323 0.00000000 0.00000000 0.01900057## advances 0.03893323 0.00000000 0.00000000 0.00000000## adversity 0.00000000 0.00000000 0.01847746 0.01900057## affiliates 0.00000000 0.00000000 0.00000000 0.00000000## aggressive 0.01946661 0.00000000 0.00000000 0.07600228## alan 0.00000000 0.00000000 0.00000000 0.00000000## amount 0.00000000 0.02275313 0.00000000 0.00000000## anger 0.00000000 0.00000000 0.00000000 0.01900057## apply 0.00000000 0.02275313 0.01847746 0.00000000## appropriate 0.00000000 0.02275313 0.01847746 0.00000000## asian 0.00000000 0.00000000 0.00000000 0.00000000## aspirations 0.00000000 0.00000000 0.01847746 0.00000000## badly 0.00000000 0.00000000 0.00000000 0.00000000## beat 0.00000000 0.00000000 0.00000000 0.00000000## became 0.00000000 0.00000000 0.00000000 0.00000000## black 0.00000000 0.00000000 0.00000000 0.00000000## blind 0.00000000 0.00000000 0.01847746 0.00000000## bomb 0.00000000 0.00000000 0.01847746 0.00000000## bound 0.00000000 0.00000000 0.00000000 0.00000000## brandon 0.00000000 0.00000000 0.00000000 0.00000000## budgetary 0.00000000 0.00000000 0.00000000 0.00000000## card 0.00000000 0.00000000 0.00000000 0.01900057## caring 0.00000000 0.00000000 0.03695492 0.00000000## checks 0.00000000 0.00000000 0.01847746 0.00000000## civilized 0.00000000 0.00000000 0.03695492 0.01900057## closely 0.01946661 0.00000000 0.03695492 0.00000000## coast 0.00000000 0.00000000 0.00000000 0.00000000## collective 0.00000000 0.00000000 0.00000000 0.00000000## committee 0.00000000 0.00000000 0.00000000 0.00000000## commonsense 0.00000000 0.00000000 0.00000000 0.00000000## complicated 0.00000000 0.02275313 0.00000000 0.00000000## computer 0.00000000 0.00000000 0.00000000 0.00000000## congressman 0.01946661 0.04550626 0.00000000 0.00000000## consequence 0.01946661 0.00000000 0.01847746 0.01900057## constant 0.00000000 0.00000000 0.03695492 0.00000000## continent 0.00000000 0.00000000 0.03695492 0.00000000## contributions 0.01946661 0.02275313 0.00000000 0.01900057## conviction 0.01946661 0.00000000 0.03695492 0.00000000## costly 0.00000000 0.00000000 0.00000000 0.00000000## court 0.00000000 0.02275313 0.00000000 0.01900057## damage 0.00000000 0.00000000 0.00000000 0.00000000## date 0.00000000 0.00000000 0.03695492 0.00000000## decide 0.00000000 0.00000000 0.00000000 0.00000000## deep 0.00000000 0.00000000 0.00000000 0.00000000## defining 0.00000000 0.00000000 0.00000000 0.00000000## democracies 0.01946661 0.00000000 0.00000000 0.00000000## design 0.00000000 0.00000000 0.01847746 0.00000000## designed 0.00000000 0.00000000 0.01847746 0.00000000## detention 0.00000000 0.00000000 0.00000000 0.00000000## died 0.01946661 0.00000000 0.00000000 0.00000000## direction 0.01946661 0.00000000 0.00000000 0.00000000## disarming 0.00000000 0.00000000 0.05543237 0.00000000## disaster 0.00000000 0.00000000 0.00000000 0.00000000## disrupt 0.00000000 0.00000000 0.01847746 0.01900057## driven 0.00000000 0.00000000 0.01847746 0.00000000## driving 0.00000000 0.00000000 0.00000000 0.01900057## drop 0.00000000 0.00000000 0.00000000 0.00000000## ebola 0.00000000 0.00000000 0.01847746 0.00000000## economists 0.00000000 0.00000000 0.00000000 0.00000000## edward 0.00000000 0.00000000 0.00000000 0.00000000## electricity 0.01946661 0.02275313 0.00000000 0.01900057## electronic 0.00000000 0.00000000 0.00000000 0.00000000## elimination 0.00000000 0.00000000 0.00000000 0.00000000## emerge 0.00000000 0.00000000 0.01847746 0.00000000## encouraging 0.00000000 0.00000000 0.00000000 0.01900057## enduring 0.00000000 0.00000000 0.00000000 0.01900057## engineering 0.00000000 0.00000000 0.00000000 0.00000000## entitlement 0.00000000 0.02275313 0.00000000 0.00000000## establish 0.00000000 0.00000000 0.00000000 0.00000000## european 0.03893323 0.00000000 0.00000000 0.00000000## evening 0.03893323 0.00000000 0.00000000 0.01900057## eventually 0.01946661 0.02275313 0.00000000 0.01900057## expanded 0.03893323 0.00000000 0.00000000 0.00000000## expectations 0.00000000 0.00000000 0.00000000 0.00000000## expensive 0.00000000 0.00000000 0.00000000 0.00000000## facing 0.00000000 0.00000000 0.01847746 0.00000000## fairness 0.00000000 0.02275313 0.00000000 0.00000000## false 0.00000000 0.00000000 0.00000000 0.01900057## father 0.01946661 0.00000000 0.00000000 0.00000000## federally 0.00000000 0.00000000 0.00000000 0.00000000## fighters 0.00000000 0.00000000 0.00000000 0.00000000## financing 0.00000000 0.00000000 0.00000000 0.00000000## fine 0.00000000 0.02275313 0.01847746 0.01900057## fire 0.01946661 0.00000000 0.00000000 0.00000000## firm 0.01946661 0.00000000 0.01847746 0.00000000## followed 0.00000000 0.00000000 0.00000000 0.00000000## fuels 0.00000000 0.00000000 0.00000000 0.00000000## generate 0.00000000 0.00000000 0.00000000 0.00000000## graduates 0.00000000 0.00000000 0.00000000 0.00000000## graduation 0.00000000 0.00000000 0.00000000 0.00000000## hatred 0.03893323 0.00000000 0.00000000 0.00000000## heart 0.00000000 0.00000000 0.01847746 0.05700171## holy 0.00000000 0.00000000 0.00000000 0.00000000## ii 0.00000000 0.00000000 0.00000000 0.00000000## immediately 0.00000000 0.00000000 0.01847746 0.00000000## increasingly 0.03893323 0.00000000 0.00000000 0.00000000## initiatives 0.00000000 0.00000000 0.00000000 0.00000000## inside 0.00000000 0.00000000 0.00000000 0.01900057## institution 0.03893323 0.00000000 0.00000000 0.01900057## invite 0.01946661 0.04550626 0.00000000 0.01900057## isolation 0.00000000 0.00000000 0.03695492 0.00000000## kid 0.00000000 0.00000000 0.00000000 0.00000000## knowing 0.00000000 0.00000000 0.00000000 0.00000000## labs 0.00000000 0.00000000 0.01847746 0.00000000## lands 0.00000000 0.00000000 0.00000000 0.00000000## larger 0.00000000 0.00000000 0.00000000 0.01900057## launching 0.00000000 0.00000000 0.00000000 0.00000000## levels 0.00000000 0.00000000 0.00000000 0.00000000## liberation 0.01946661 0.00000000 0.01847746 0.01900057## lincoln 0.00000000 0.00000000 0.00000000 0.01900057## london 0.00000000 0.00000000 0.01847746 0.00000000## lonely 0.00000000 0.00000000 0.01847746 0.03800114## maintain 0.00000000 0.00000000 0.00000000 0.00000000## marine 0.03893323 0.00000000 0.00000000 0.00000000## marines 0.00000000 0.00000000 0.00000000 0.00000000## meaning 0.00000000 0.00000000 0.03695492 0.00000000## meaningful 0.00000000 0.00000000 0.00000000 0.00000000## member 0.00000000 0.00000000 0.00000000 0.00000000## minister 0.07786646 0.00000000 0.00000000 0.00000000## missions 0.00000000 0.00000000 0.00000000 0.00000000## moments 0.00000000 0.00000000 0.00000000 0.00000000## moved 0.00000000 0.00000000 0.01847746 0.00000000## neighborhoods 0.00000000 0.02275313 0.00000000 0.00000000## noble 0.00000000 0.04550626 0.00000000 0.01900057## nor 0.00000000 0.00000000 0.00000000 0.00000000## oak 0.00000000 0.00000000 0.00000000 0.00000000## onto 0.00000000 0.00000000 0.00000000 0.00000000## oppressed 0.00000000 0.00000000 0.03695492 0.01900057## participation 0.00000000 0.00000000 0.00000000 0.01900057## partnerships 0.00000000 0.00000000 0.00000000 0.00000000## payments 0.00000000 0.00000000 0.00000000 0.00000000## pell 0.01946661 0.00000000 0.00000000 0.01900057## penalty 0.00000000 0.02275313 0.01847746 0.01900057## performance 0.00000000 0.00000000 0.00000000 0.01900057## peril 0.00000000 0.00000000 0.03695492 0.00000000## plants 0.00000000 0.00000000 0.00000000 0.00000000## plot 0.00000000 0.00000000 0.00000000 0.01900057## politicians 0.00000000 0.00000000 0.00000000 0.00000000## pope 0.00000000 0.00000000 0.00000000 0.00000000## practice 0.00000000 0.00000000 0.01847746 0.00000000## preventing 0.01946661 0.00000000 0.01847746 0.00000000## producing 0.00000000 0.00000000 0.01847746 0.00000000## punish 0.03893323 0.04550626 0.00000000 0.01900057## questions 0.00000000 0.00000000 0.00000000 0.00000000## railroad 0.00000000 0.00000000 0.00000000 0.00000000## ran 0.00000000 0.00000000 0.00000000 0.01900057## really 0.00000000 0.00000000 0.00000000 0.03800114## recover 0.01946661 0.00000000 0.00000000 0.00000000## reforming 0.01946661 0.02275313 0.00000000 0.00000000## religious 0.00000000 0.02275313 0.00000000 0.05700171## renewed 0.01946661 0.00000000 0.00000000 0.00000000## respects 0.01946661 0.00000000 0.00000000 0.00000000## respond 0.00000000 0.00000000 0.00000000 0.01900057## retirees 0.05839984 0.02275313 0.00000000 0.00000000## revenues 0.00000000 0.00000000 0.01847746 0.00000000## revolution 0.00000000 0.00000000 0.00000000 0.00000000## room 0.00000000 0.00000000 0.00000000 0.00000000## roosevelt 0.01946661 0.00000000 0.00000000 0.00000000## sake 0.00000000 0.00000000 0.00000000 0.01900057## saved 0.00000000 0.00000000 0.00000000 0.00000000## saying 0.00000000 0.00000000 0.00000000 0.00000000## scores 0.01946661 0.00000000 0.00000000 0.00000000## secret 0.00000000 0.00000000 0.01847746 0.00000000## seize 0.00000000 0.00000000 0.00000000 0.01900057## selling 0.00000000 0.00000000 0.00000000 0.00000000## serves 0.00000000 0.00000000 0.00000000 0.00000000## servicemembers 0.00000000 0.00000000 0.00000000 0.00000000## ship 0.00000000 0.02275313 0.00000000 0.00000000## shoulder 0.01946661 0.00000000 0.00000000 0.00000000## smart 0.00000000 0.00000000 0.00000000 0.00000000## smarter 0.00000000 0.00000000 0.00000000 0.00000000## soldiers 0.01946661 0.00000000 0.00000000 0.00000000## sorrow 0.01946661 0.00000000 0.01847746 0.01900057## stabilization 0.00000000 0.00000000 0.00000000 0.00000000## stable 0.00000000 0.00000000 0.00000000 0.00000000## steven 0.00000000 0.11376564 0.00000000 0.00000000## stockpile 0.00000000 0.00000000 0.00000000 0.00000000## strive 0.01946661 0.00000000 0.03695492 0.00000000## strongest 0.00000000 0.00000000 0.00000000 0.00000000## summer 0.00000000 0.02275313 0.00000000 0.00000000## syrian 0.03893323 0.00000000 0.00000000 0.00000000## systems 0.00000000 0.00000000 0.00000000 0.00000000## tactics 0.00000000 0.00000000 0.00000000 0.00000000## testing 0.00000000 0.02275313 0.00000000 0.07600228## texas 0.01946661 0.00000000 0.00000000 0.00000000## thinking 0.00000000 0.00000000 0.00000000 0.00000000## threatens 0.00000000 0.00000000 0.01847746 0.00000000## torture 0.00000000 0.00000000 0.01847746 0.01900057## tougher 0.00000000 0.00000000 0.00000000 0.00000000## towards 0.00000000 0.00000000 0.00000000 0.00000000## towns 0.00000000 0.00000000 0.00000000 0.00000000## tragedy 0.00000000 0.00000000 0.00000000 0.01900057## transform 0.00000000 0.04550626 0.01847746 0.01900057## transformation 0.00000000 0.02275313 0.00000000 0.00000000## treatments 0.01946661 0.00000000 0.01847746 0.00000000## troubled 0.01946661 0.00000000 0.00000000 0.01900057## tucson 0.00000000 0.00000000 0.00000000 0.00000000## turns 0.00000000 0.00000000 0.01847746 0.00000000## tv 0.00000000 0.00000000 0.00000000 0.00000000## ultimate 0.01946661 0.00000000 0.01847746 0.01900057## uncertainty 0.01946661 0.02275313 0.00000000 0.00000000## unfinished 0.00000000 0.00000000 0.00000000 0.03800114## unity 0.01946661 0.00000000 0.01847746 0.00000000## victims 0.01946661 0.00000000 0.01847746 0.01900057## voting 0.01946661 0.00000000 0.00000000 0.00000000## warren 0.00000000 0.00000000 0.00000000 0.00000000## wasn^t 0.00000000 0.00000000 0.00000000 0.00000000## weak 0.03893323 0.00000000 0.01847746 0.00000000## weakened 0.00000000 0.00000000 0.00000000 0.00000000## wealthy 0.01946661 0.00000000 0.00000000 0.00000000## wherever 0.00000000 0.00000000 0.00000000 0.00000000## wisely 0.01946661 0.00000000 0.00000000 0.00000000## written 0.00000000 0.00000000 0.00000000 0.00000000## accomplish 0.00000000 0.04550626 0.00000000 0.00000000## activities 0.00000000 0.02275313 0.01847746 0.01900057## adults 0.00000000 0.00000000 0.00000000 0.01900057## affairs 0.00000000 0.00000000 0.01847746 0.00000000## aggressively 0.00000000 0.00000000 0.00000000 0.00000000## aim 0.01946661 0.00000000 0.00000000 0.03800114## airports 0.00000000 0.00000000 0.01847746 0.00000000## ally 0.01946661 0.00000000 0.00000000 0.00000000## amanda 0.00000000 0.00000000 0.00000000 0.00000000## americas 0.00000000 0.00000000 0.00000000 0.00000000## announced 0.00000000 0.00000000 0.01847746 0.00000000## anthrax 0.00000000 0.00000000 0.03695492 0.00000000## anywhere 0.00000000 0.00000000 0.00000000 0.00000000## arabia 0.03893323 0.00000000 0.00000000 0.00000000## assume 0.00000000 0.02275313 0.01847746 0.01900057## atlantic 0.00000000 0.00000000 0.00000000 0.00000000## attract 0.00000000 0.00000000 0.00000000 0.00000000## automobile 0.00000000 0.00000000 0.00000000 0.00000000## b 0.00000000 0.00000000 0.00000000 0.00000000## barriers 0.00000000 0.02275313 0.00000000 0.01900057## batteries 0.00000000 0.00000000 0.00000000 0.00000000## behalf 0.00000000 0.02275313 0.00000000 0.00000000## behavior 0.00000000 0.00000000 0.00000000 0.00000000## bench 0.03893323 0.00000000 0.00000000 0.00000000## biofuels 0.00000000 0.00000000 0.00000000 0.00000000## blessed 0.01946661 0.00000000 0.03695492 0.00000000## blow 0.00000000 0.00000000 0.00000000 0.00000000## bonds 0.01946661 0.00000000 0.00000000 0.00000000## boost 0.00000000 0.00000000 0.01847746 0.00000000## bought 0.01946661 0.00000000 0.00000000 0.00000000## brian 0.00000000 0.00000000 0.00000000 0.00000000## british 0.00000000 0.00000000 0.01847746 0.00000000## broadband 0.00000000 0.00000000 0.00000000 0.00000000## broke 0.00000000 0.00000000 0.00000000 0.00000000## brutal 0.01946661 0.00000000 0.01847746 0.01900057## bullet 0.00000000 0.00000000 0.00000000 0.00000000## careers 0.00000000 0.00000000 0.00000000 0.00000000## catastrophic 0.00000000 0.00000000 0.03695492 0.01900057## central 0.00000000 0.00000000 0.00000000 0.00000000## charitable 0.00000000 0.04550626 0.00000000 0.00000000## civilian 0.00000000 0.00000000 0.00000000 0.00000000## claim 0.00000000 0.02275313 0.01847746 0.00000000## clinton 0.01946661 0.00000000 0.00000000 0.01900057## closer 0.00000000 0.00000000 0.00000000 0.00000000## cold 0.00000000 0.02275313 0.00000000 0.00000000## collapse 0.00000000 0.00000000 0.00000000 0.00000000## compassionate 0.00000000 0.02275313 0.00000000 0.00000000## compromise 0.00000000 0.00000000 0.00000000 0.00000000## conflicts 0.00000000 0.00000000 0.00000000 0.00000000## connected 0.00000000 0.00000000 0.00000000 0.00000000## connecting 0.00000000 0.00000000 0.00000000 0.00000000## constitutional 0.03893323 0.00000000 0.00000000 0.01900057## courses 0.00000000 0.00000000 0.00000000 0.01900057## covered 0.00000000 0.00000000 0.00000000 0.00000000## currently 0.00000000 0.00000000 0.00000000 0.00000000## daughters 0.00000000 0.00000000 0.00000000 0.00000000## declined 0.01946661 0.00000000 0.00000000 0.01900057## deduction 0.00000000 0.00000000 0.00000000 0.00000000## defenses 0.01946661 0.04550626 0.00000000 0.00000000## desiline 0.00000000 0.00000000 0.00000000 0.00000000## despair 0.01946661 0.00000000 0.00000000 0.01900057## details 0.00000000 0.00000000 0.00000000 0.00000000## detroit 0.00000000 0.00000000 0.00000000 0.00000000## die 0.00000000 0.02275313 0.01847746 0.00000000## disabilities 0.01946661 0.04550626 0.00000000 0.00000000## disagree 0.00000000 0.02275313 0.00000000 0.00000000## discovery 0.00000000 0.00000000 0.01847746 0.00000000## doors 0.00000000 0.00000000 0.00000000 0.00000000## dozens 0.00000000 0.02275313 0.00000000 0.01900057## dramatic 0.00000000 0.00000000 0.00000000 0.01900057## drawing 0.03893323 0.00000000 0.00000000 0.01900057## drove 0.00000000 0.00000000 0.00000000 0.00000000## duties 0.00000000 0.00000000 0.00000000 0.03800114## eager 0.00000000 0.00000000 0.00000000 0.00000000## earns 0.00000000 0.02275313 0.00000000 0.00000000## economics 0.00000000 0.00000000 0.00000000 0.00000000## embassy 0.00000000 0.00000000 0.03695492 0.00000000## encourages 0.01946661 0.00000000 0.00000000 0.00000000## engine 0.00000000 0.00000000 0.00000000 0.00000000## enormous 0.00000000 0.00000000 0.01847746 0.00000000## epidemic 0.00000000 0.00000000 0.00000000 0.00000000## erler 0.00000000 0.00000000 0.00000000 0.00000000## ethanol 0.01946661 0.00000000 0.00000000 0.00000000## excuse 0.00000000 0.00000000 0.00000000 0.00000000## existing 0.00000000 0.00000000 0.00000000 0.00000000## expected 0.00000000 0.02275313 0.01847746 0.00000000## expenses 0.00000000 0.00000000 0.00000000 0.01900057## extending 0.00000000 0.00000000 0.00000000 0.00000000## extraordinary 0.00000000 0.00000000 0.00000000 0.00000000## faces 0.00000000 0.00000000 0.00000000 0.00000000## faithful 0.00000000 0.02275313 0.00000000 0.01900057## family^s 0.00000000 0.00000000 0.01847746 0.00000000## favor 0.00000000 0.00000000 0.00000000 0.00000000## fee 0.00000000 0.00000000 0.00000000 0.00000000## feet 0.00000000 0.00000000 0.00000000 0.00000000## finding 0.00000000 0.00000000 0.00000000 0.00000000## flag 0.00000000 0.00000000 0.01847746 0.00000000## focused 0.01946661 0.02275313 0.00000000 0.00000000## foreclosure 0.00000000 0.00000000 0.00000000 0.00000000## form 0.01946661 0.04550626 0.00000000 0.00000000## fourth 0.00000000 0.00000000 0.01847746 0.00000000## framework 0.00000000 0.02275313 0.01847746 0.00000000## freedom^s 0.03893323 0.00000000 0.00000000 0.00000000## gathered 0.00000000 0.00000000 0.00000000 0.00000000## giffords 0.00000000 0.00000000 0.00000000 0.00000000## govern 0.00000000 0.00000000 0.00000000 0.00000000## governing 0.00000000 0.04550626 0.00000000 0.03800114## governors 0.00000000 0.00000000 0.00000000 0.00000000## grant 0.00000000 0.00000000 0.00000000 0.01900057## gravest 0.00000000 0.00000000 0.03695492 0.00000000## grid 0.01946661 0.00000000 0.00000000 0.00000000## grief 0.00000000 0.00000000 0.00000000 0.01900057## grit 0.00000000 0.00000000 0.00000000 0.00000000## guard 0.00000000 0.00000000 0.01847746 0.00000000## haiti 0.00000000 0.00000000 0.00000000 0.00000000## hasn^t 0.00000000 0.00000000 0.03695492 0.00000000## hate 0.00000000 0.00000000 0.00000000 0.00000000## healing 0.00000000 0.00000000 0.01847746 0.00000000## healthier 0.00000000 0.00000000 0.00000000 0.00000000## highways 0.00000000 0.00000000 0.00000000 0.00000000## hizballah 0.00000000 0.00000000 0.00000000 0.00000000## honorable 0.00000000 0.00000000 0.01847746 0.00000000## hospital 0.00000000 0.00000000 0.00000000 0.00000000## hubs 0.00000000 0.00000000 0.00000000 0.00000000## hydrogen 0.00000000 0.00000000 0.03695492 0.00000000## ideological 0.00000000 0.00000000 0.00000000 0.00000000## impose 0.03893323 0.00000000 0.00000000 0.00000000## impossible 0.00000000 0.00000000 0.00000000 0.01900057## include 0.00000000 0.00000000 0.01847746 0.00000000## inspire 0.01946661 0.00000000 0.00000000 0.00000000## investors 0.00000000 0.00000000 0.01847746 0.00000000## irresponsible 0.01946661 0.00000000 0.00000000 0.00000000## islam 0.00000000 0.00000000 0.00000000 0.00000000## isolated 0.01946661 0.00000000 0.00000000 0.00000000## j 0.00000000 0.00000000 0.00000000 0.00000000## journey 0.01946661 0.00000000 0.00000000 0.00000000## julie 0.00000000 0.00000000 0.00000000 0.00000000## kentucky 0.00000000 0.00000000 0.00000000 0.00000000## l 0.00000000 0.00000000 0.00000000 0.00000000## lady 0.01946661 0.00000000 0.00000000 0.00000000## lawyers 0.01946661 0.00000000 0.01847746 0.00000000## laying 0.00000000 0.00000000 0.00000000 0.00000000## lessons 0.00000000 0.00000000 0.01847746 0.00000000## lets 0.01946661 0.00000000 0.00000000 0.00000000## lifting 0.00000000 0.00000000 0.00000000 0.00000000## loved 0.01946661 0.00000000 0.00000000 0.00000000## lowest 0.00000000 0.00000000 0.00000000 0.00000000## manufacturer 0.00000000 0.00000000 0.00000000 0.00000000## mccain 0.00000000 0.00000000 0.00000000 0.00000000## meant 0.00000000 0.00000000 0.00000000 0.00000000## measured 0.01946661 0.02275313 0.00000000 0.00000000## minds 0.00000000 0.00000000 0.00000000 0.00000000## minorities 0.01946661 0.00000000 0.00000000 0.00000000## modernize 0.00000000 0.00000000 0.00000000 0.01900057## modest 0.00000000 0.00000000 0.00000000 0.00000000## momentum 0.01946661 0.00000000 0.00000000 0.01900057## monthly 0.00000000 0.00000000 0.00000000 0.01900057## mother 0.00000000 0.00000000 0.00000000 0.00000000## muslims 0.00000000 0.00000000 0.00000000 0.00000000## near 0.00000000 0.00000000 0.01847746 0.00000000## needless 0.03893323 0.00000000 0.00000000 0.01900057## negotiate 0.00000000 0.02275313 0.00000000 0.01900057## newtown 0.00000000 0.00000000 0.00000000 0.00000000## nobody 0.00000000 0.00000000 0.00000000 0.00000000## numbers 0.00000000 0.00000000 0.00000000 0.01900057## nurses 0.00000000 0.00000000 0.01847746 0.00000000## opening 0.00000000 0.00000000 0.00000000 0.03800114## oppose 0.00000000 0.00000000 0.00000000 0.01900057## opposition 0.00000000 0.00000000 0.00000000 0.00000000## organized 0.00000000 0.00000000 0.00000000 0.00000000## otherwise 0.00000000 0.00000000 0.01847746 0.00000000## outside 0.00000000 0.00000000 0.00000000 0.00000000## painful 0.00000000 0.00000000 0.00000000 0.00000000## paris 0.00000000 0.00000000 0.01847746 0.00000000## passion 0.00000000 0.00000000 0.00000000 0.00000000## patriot 0.00000000 0.00000000 0.00000000 0.05700171## pentagon 0.00000000 0.00000000 0.01847746 0.00000000## performing 0.00000000 0.00000000 0.00000000 0.01900057## permanently 0.03893323 0.00000000 0.00000000 0.00000000## placed 0.01946661 0.00000000 0.00000000 0.00000000## pleased 0.00000000 0.00000000 0.00000000 0.00000000## pledged 0.00000000 0.02275313 0.00000000 0.01900057## plenty 0.00000000 0.00000000 0.00000000 0.00000000## points 0.01946661 0.04550626 0.00000000 0.00000000## population 0.00000000 0.00000000 0.01847746 0.00000000## ports 0.00000000 0.00000000 0.01847746 0.00000000## pose 0.00000000 0.00000000 0.00000000 0.00000000## possibility 0.01946661 0.00000000 0.01847746 0.00000000## prayers 0.00000000 0.02275313 0.00000000 0.00000000## preparing 0.00000000 0.00000000 0.00000000 0.00000000## prevented 0.00000000 0.00000000 0.01847746 0.00000000## principal 0.00000000 0.00000000 0.00000000 0.00000000## principled 0.00000000 0.00000000 0.00000000 0.03800114## productive 0.01946661 0.00000000 0.00000000 0.01900057## profound 0.00000000 0.00000000 0.01847746 0.00000000## prosperous 0.00000000 0.02275313 0.00000000 0.00000000## proven 0.00000000 0.00000000 0.00000000 0.01900057## pursuit 0.00000000 0.00000000 0.01847746 0.00000000## push 0.00000000 0.00000000 0.00000000 0.00000000## puts 0.00000000 0.02275313 0.00000000 0.00000000## quit 0.00000000 0.00000000 0.00000000 0.00000000## rail 0.00000000 0.00000000 0.00000000 0.00000000## range 0.00000000 0.02275313 0.00000000 0.00000000## reaching 0.00000000 0.00000000 0.00000000 0.00000000## reagan 0.00000000 0.02275313 0.00000000 0.00000000## reasons 0.00000000 0.02275313 0.00000000 0.00000000## reauthorize 0.01946661 0.00000000 0.00000000 0.00000000## recommendations 0.01946661 0.04550626 0.00000000 0.00000000## recruit 0.00000000 0.04550626 0.00000000 0.00000000## reduces 0.01946661 0.00000000 0.01847746 0.00000000## refinance 0.00000000 0.00000000 0.00000000 0.00000000## reflects 0.00000000 0.00000000 0.00000000 0.00000000## rejects 0.03893323 0.00000000 0.00000000 0.00000000## relationship 0.00000000 0.00000000 0.00000000 0.01900057## religion 0.00000000 0.00000000 0.00000000 0.00000000## remaining 0.00000000 0.00000000 0.01847746 0.01900057## reminded 0.01946661 0.02275313 0.00000000 0.00000000## removed 0.01946661 0.02275313 0.01847746 0.00000000## repair 0.00000000 0.00000000 0.00000000 0.00000000## repeal 0.00000000 0.02275313 0.00000000 0.00000000## reserve 0.00000000 0.02275313 0.00000000 0.00000000## resilience 0.00000000 0.00000000 0.00000000 0.00000000## restart 0.00000000 0.00000000 0.00000000 0.00000000## restraint 0.00000000 0.00000000 0.01847746 0.00000000## retire 0.01946661 0.02275313 0.00000000 0.00000000## revealed 0.00000000 0.00000000 0.01847746 0.03800114## rewarding 0.00000000 0.00000000 0.00000000 0.00000000## rewards 0.00000000 0.00000000 0.00000000 0.00000000## romney 0.00000000 0.00000000 0.00000000 0.00000000## ryan 0.01946661 0.00000000 0.00000000 0.00000000## sacred 0.01946661 0.00000000 0.00000000 0.00000000## sandy 0.00000000 0.00000000 0.00000000 0.00000000## season 0.00000000 0.00000000 0.01847746 0.00000000## seeking 0.01946661 0.00000000 0.00000000 0.01900057## seeks 0.00000000 0.00000000 0.03695492 0.00000000## seem 0.03893323 0.02275313 0.00000000 0.00000000## self-government 0.00000000 0.00000000 0.00000000 0.01900057## servants 0.00000000 0.02275313 0.00000000 0.00000000## sets 0.00000000 0.02275313 0.00000000 0.00000000## short 0.00000000 0.00000000 0.00000000 0.00000000## shows 0.00000000 0.00000000 0.00000000 0.00000000## shut 0.00000000 0.00000000 0.00000000 0.00000000## sides 0.00000000 0.00000000 0.00000000 0.00000000## skies 0.01946661 0.00000000 0.01847746 0.00000000## skilled 0.01946661 0.00000000 0.00000000 0.03800114## solved 0.00000000 0.00000000 0.01847746 0.01900057## somebody 0.00000000 0.00000000 0.00000000 0.00000000## somehow 0.01946661 0.00000000 0.00000000 0.00000000## specific 0.00000000 0.02275313 0.00000000 0.00000000## speech 0.01946661 0.00000000 0.00000000 0.00000000## spill 0.00000000 0.00000000 0.00000000 0.00000000## spring 0.00000000 0.02275313 0.00000000 0.00000000## stewards 0.01946661 0.02275313 0.00000000 0.01900057## stopping 0.00000000 0.02275313 0.00000000 0.00000000## strengths 0.00000000 0.00000000 0.00000000 0.01900057## strikes 0.00000000 0.00000000 0.01847746 0.00000000## subject 0.00000000 0.00000000 0.01847746 0.00000000## submit 0.00000000 0.00000000 0.00000000 0.00000000## subsidizing 0.00000000 0.00000000 0.00000000 0.00000000## succeeded 0.00000000 0.00000000 0.00000000 0.01900057## sunni 0.00000000 0.00000000 0.00000000 0.00000000## talks 0.00000000 0.00000000 0.00000000 0.00000000## tells 0.01946661 0.00000000 0.00000000 0.00000000## term 0.01946661 0.00000000 0.00000000 0.00000000## tested 0.01946661 0.02275313 0.00000000 0.00000000## thomas 0.00000000 0.02275313 0.00000000 0.00000000## tight-knit 0.00000000 0.00000000 0.00000000 0.00000000## tom 0.00000000 0.00000000 0.00000000 0.00000000## trapped 0.00000000 0.00000000 0.00000000 0.00000000## treating 0.00000000 0.00000000 0.01847746 0.00000000## trial 0.01946661 0.00000000 0.01847746 0.01900057## undermine 0.01946661 0.00000000 0.00000000 0.01900057## unfortunately 0.00000000 0.00000000 0.00000000 0.01900057## universal 0.00000000 0.00000000 0.00000000 0.00000000## university 0.00000000 0.00000000 0.00000000 0.00000000## veteran 0.00000000 0.00000000 0.00000000 0.00000000## view 0.00000000 0.00000000 0.00000000 0.01900057## violated 0.00000000 0.00000000 0.01847746 0.00000000## visit 0.00000000 0.00000000 0.00000000 0.00000000## volunteers 0.01946661 0.02275313 0.01847746 0.00000000## wake 0.00000000 0.00000000 0.00000000 0.00000000## watched 0.00000000 0.00000000 0.00000000 0.00000000## waters 0.00000000 0.00000000 0.00000000 0.00000000## whom 0.00000000 0.00000000 0.00000000 0.00000000## willingness 0.00000000 0.00000000 0.00000000 0.00000000## women^s 0.00000000 0.00000000 0.00000000 0.00000000## youth 0.01946661 0.00000000 0.00000000 0.00000000## abuses 0.00000000 0.02275313 0.00000000 0.00000000## achieving 0.00000000 0.02275313 0.00000000 0.00000000## acres 0.00000000 0.00000000 0.01847746 0.00000000## affected 0.00000000 0.00000000 0.00000000 0.00000000## afflicted 0.00000000 0.00000000 0.03695492 0.00000000## afghans 0.00000000 0.00000000 0.00000000 0.00000000## aggression 0.00000000 0.00000000 0.01847746 0.00000000## aging 0.00000000 0.00000000 0.00000000 0.00000000## aisle 0.00000000 0.00000000 0.00000000 0.00000000## alike 0.00000000 0.00000000 0.00000000 0.00000000## alliance 0.00000000 0.00000000 0.00000000 0.00000000## alltime 0.00000000 0.00000000 0.00000000 0.00000000## amnesty 0.01946661 0.00000000 0.00000000 0.01900057## analyze 0.00000000 0.00000000 0.03695492 0.00000000## andra 0.00000000 0.00000000 0.00000000 0.00000000## annual 0.01946661 0.00000000 0.00000000 0.00000000## appointed 0.01946661 0.00000000 0.00000000 0.00000000## approved 0.00000000 0.00000000 0.00000000 0.00000000## arbitrary 0.00000000 0.02275313 0.00000000 0.01900057## argued 0.00000000 0.00000000 0.00000000 0.00000000## argument 0.00000000 0.02275313 0.00000000 0.00000000## arrested 0.00000000 0.00000000 0.03695492 0.00000000## ashley 0.00000000 0.00000000 0.00000000 0.07600228## assembling 0.00000000 0.00000000 0.03695492 0.00000000## association 0.01946661 0.00000000 0.00000000 0.01900057## atomic 0.00000000 0.00000000 0.03695492 0.00000000## attempt 0.00000000 0.00000000 0.01847746 0.01900057## attorney 0.00000000 0.02275313 0.00000000 0.00000000## authorities 0.00000000 0.00000000 0.00000000 0.01900057## automakers 0.00000000 0.00000000 0.00000000 0.00000000## automobiles 0.00000000 0.00000000 0.01847746 0.00000000## aware 0.00000000 0.02275313 0.01847746 0.00000000## background 0.00000000 0.00000000 0.00000000 0.00000000## backgrounds 0.01946661 0.00000000 0.00000000 0.00000000## bankruptcy 0.01946661 0.00000000 0.00000000 0.00000000## barely 0.00000000 0.00000000 0.00000000 0.00000000## battery 0.00000000 0.00000000 0.00000000 0.00000000## bauer 0.00000000 0.00000000 0.00000000 0.00000000## bear 0.00000000 0.00000000 0.01847746 0.00000000## beliefs 0.00000000 0.00000000 0.00000000 0.01900057## believes 0.00000000 0.00000000 0.01847746 0.01900057## ben 0.00000000 0.00000000 0.00000000 0.00000000## benjamin 0.00000000 0.00000000 0.00000000 0.00000000## blame 0.00000000 0.00000000 0.00000000 0.00000000## blood 0.00000000 0.00000000 0.00000000 0.00000000## board 0.00000000 0.02275313 0.00000000 0.00000000## boldly 0.00000000 0.00000000 0.00000000 0.00000000## boom 0.00000000 0.02275313 0.00000000 0.00000000## booming 0.00000000 0.00000000 0.00000000 0.00000000## botulinum 0.00000000 0.00000000 0.03695492 0.00000000## branches 0.01946661 0.00000000 0.00000000 0.00000000## britain 0.00000000 0.00000000 0.00000000 0.05700171## broadly 0.01946661 0.00000000 0.01847746 0.00000000## bryan 0.00000000 0.00000000 0.00000000 0.00000000## builds 0.00000000 0.00000000 0.01847746 0.00000000## burdens 0.01946661 0.00000000 0.00000000 0.00000000## calls 0.00000000 0.00000000 0.00000000 0.00000000## calm 0.00000000 0.00000000 0.01847746 0.01900057## capabilities 0.00000000 0.00000000 0.00000000 0.00000000## capable 0.01946661 0.00000000 0.01847746 0.00000000## carried 0.00000000 0.00000000 0.01847746 0.01900057## carrying 0.00000000 0.00000000 0.00000000 0.00000000## cast 0.00000000 0.00000000 0.00000000 0.01900057## cell 0.00000000 0.00000000 0.00000000 0.01900057## centers 0.00000000 0.02275313 0.00000000 0.01900057## ceos 0.00000000 0.00000000 0.00000000 0.00000000## charities 0.00000000 0.04550626 0.00000000 0.03800114## chose 0.00000000 0.00000000 0.00000000 0.00000000## chosen 0.01946661 0.00000000 0.00000000 0.00000000## classrooms 0.00000000 0.00000000 0.00000000 0.00000000## clearly 0.00000000 0.00000000 0.01847746 0.00000000## cloning 0.00000000 0.00000000 0.01847746 0.00000000## closing 0.01946661 0.00000000 0.00000000 0.00000000## closure 0.00000000 0.00000000 0.00000000 0.00000000## coalitions 0.01946661 0.00000000 0.00000000 0.00000000## cochairs 0.00000000 0.00000000 0.00000000 0.00000000## combined 0.00000000 0.00000000 0.00000000 0.00000000## commander 0.00000000 0.00000000 0.00000000 0.00000000## competitors 0.00000000 0.00000000 0.00000000 0.00000000## concluded 0.00000000 0.00000000 0.03695492 0.00000000## condition 0.00000000 0.00000000 0.00000000 0.00000000## confirmation 0.00000000 0.00000000 0.00000000 0.00000000## confronted 0.01946661 0.00000000 0.01847746 0.00000000## congresses 0.00000000 0.00000000 0.01847746 0.00000000## conquest 0.00000000 0.00000000 0.03695492 0.00000000## consequences 0.00000000 0.00000000 0.00000000 0.01900057## conservative 0.01946661 0.00000000 0.00000000 0.00000000## consumed 0.00000000 0.00000000 0.00000000 0.00000000## contained 0.00000000 0.00000000 0.03695492 0.00000000## contentious 0.00000000 0.00000000 0.00000000 0.00000000## continues 0.00000000 0.00000000 0.00000000 0.00000000## contribute 0.00000000 0.00000000 0.00000000 0.00000000## convictions 0.00000000 0.00000000 0.00000000 0.00000000## convinced 0.00000000 0.00000000 0.00000000 0.00000000## cops 0.00000000 0.00000000 0.00000000 0.00000000## core 0.00000000 0.00000000 0.00000000 0.00000000## counsel 0.01946661 0.00000000 0.00000000 0.00000000## country^s 0.00000000 0.02275313 0.00000000 0.00000000## creativity 0.00000000 0.00000000 0.00000000 0.00000000## creed 0.00000000 0.00000000 0.00000000 0.01900057## creek 0.00000000 0.00000000 0.00000000 0.00000000## criminal 0.00000000 0.00000000 0.00000000 0.00000000## critics 0.00000000 0.02275313 0.00000000 0.01900057## cynical 0.00000000 0.00000000 0.00000000 0.00000000## daily 0.00000000 0.00000000 0.00000000 0.00000000## daughter 0.00000000 0.02275313 0.00000000 0.00000000## dealing 0.00000000 0.00000000 0.00000000 0.01900057## deals 0.00000000 0.00000000 0.00000000 0.00000000## dealt 0.00000000 0.00000000 0.01847746 0.01900057## debating 0.00000000 0.00000000 0.00000000 0.00000000## deceiving 0.00000000 0.00000000 0.03695492 0.00000000## decided 0.00000000 0.00000000 0.00000000 0.00000000## dedicated 0.00000000 0.02275313 0.01847746 0.00000000## deductions 0.00000000 0.00000000 0.00000000 0.00000000## deeper 0.00000000 0.00000000 0.00000000 0.00000000## delay 0.00000000 0.00000000 0.00000000 0.00000000## delivering 0.00000000 0.00000000 0.01847746 0.01900057## demanding 0.00000000 0.00000000 0.00000000 0.03800114## deploy 0.00000000 0.02275313 0.00000000 0.00000000## deploying 0.00000000 0.00000000 0.01847746 0.00000000## describes 0.00000000 0.00000000 0.01847746 0.00000000## diplomats 0.00000000 0.00000000 0.00000000 0.01900057## directing 0.00000000 0.00000000 0.00000000 0.00000000## disadvantaged 0.00000000 0.02275313 0.01847746 0.00000000## discuss 0.01946661 0.02275313 0.00000000 0.00000000## discussion 0.00000000 0.00000000 0.00000000 0.00000000## disruptions 0.00000000 0.00000000 0.00000000 0.00000000## divided 0.00000000 0.02275313 0.00000000 0.00000000## drawn 0.00000000 0.00000000 0.00000000 0.00000000## drilling 0.00000000 0.00000000 0.00000000 0.00000000## drives 0.00000000 0.00000000 0.00000000 0.00000000## earning 0.00000000 0.00000000 0.00000000 0.00000000## earnings 0.01946661 0.02275313 0.00000000 0.00000000## egg 0.01946661 0.00000000 0.00000000 0.01900057## elements 0.00000000 0.00000000 0.00000000 0.00000000## employer 0.00000000 0.00000000 0.00000000 0.00000000## empty 0.00000000 0.00000000 0.00000000 0.01900057## encouraged 0.00000000 0.02275313 0.00000000 0.00000000## endure 0.00000000 0.00000000 0.00000000 0.01900057## engage 0.00000000 0.00000000 0.00000000 0.00000000## engaged 0.00000000 0.04550626 0.00000000 0.00000000## enlisting 0.00000000 0.00000000 0.01847746 0.00000000## enter 0.00000000 0.00000000 0.00000000 0.00000000## entering 0.01946661 0.00000000 0.00000000 0.01900057## environmental 0.00000000 0.00000000 0.01847746 0.00000000## envy 0.00000000 0.00000000 0.00000000 0.00000000## ethical 0.01946661 0.00000000 0.00000000 0.00000000## excessive 0.00000000 0.00000000 0.01847746 0.00000000## extreme 0.00000000 0.00000000 0.00000000 0.00000000## falling 0.00000000 0.00000000 0.00000000 0.01900057## fate 0.00000000 0.00000000 0.01847746 0.00000000## feeding 0.00000000 0.00000000 0.01847746 0.01900057## finances 0.00000000 0.02275313 0.00000000 0.00000000## firefighters 0.01946661 0.00000000 0.00000000 0.00000000## flexibility 0.00000000 0.02275313 0.00000000 0.00000000## flowing 0.00000000 0.00000000 0.00000000 0.00000000## flying 0.00000000 0.00000000 0.00000000 0.00000000## forests 0.00000000 0.00000000 0.03695492 0.00000000## forever 0.01946661 0.00000000 0.01847746 0.00000000## forms 0.00000000 0.00000000 0.00000000 0.00000000## forth 0.01946661 0.00000000 0.00000000 0.00000000## francis 0.00000000 0.00000000 0.00000000 0.00000000## friendship 0.00000000 0.00000000 0.01847746 0.00000000## fulfill 0.01946661 0.00000000 0.01847746 0.00000000## fulfilled 0.01946661 0.00000000 0.00000000 0.00000000## full-time 0.00000000 0.00000000 0.00000000 0.00000000## gained 0.00000000 0.00000000 0.00000000 0.01900057## games 0.00000000 0.00000000 0.00000000 0.00000000## gap 0.01946661 0.00000000 0.00000000 0.00000000## gasoline 0.00000000 0.00000000 0.00000000 0.00000000## gate 0.00000000 0.00000000 0.01847746 0.00000000## gates 0.00000000 0.00000000 0.00000000 0.01900057## generates 0.00000000 0.00000000 0.01847746 0.00000000## generosity 0.00000000 0.00000000 0.00000000 0.00000000## grade 0.00000000 0.00000000 0.00000000 0.05700171## grades 0.00000000 0.02275313 0.00000000 0.01900057## gradually 0.01946661 0.00000000 0.01847746 0.00000000## grasp 0.00000000 0.00000000 0.01847746 0.00000000## gratitude 0.00000000 0.00000000 0.00000000 0.00000000## guest 0.05839984 0.00000000 0.00000000 0.00000000## guided 0.01946661 0.00000000 0.00000000 0.00000000## hall 0.00000000 0.04550626 0.00000000 0.01900057## happy 0.00000000 0.00000000 0.01847746 0.00000000## harbor 0.03893323 0.00000000 0.00000000 0.01900057## hatch 0.00000000 0.00000000 0.00000000 0.00000000## hated 0.00000000 0.00000000 0.00000000 0.00000000## hearing 0.01946661 0.00000000 0.00000000 0.00000000## hemisphere 0.00000000 0.00000000 0.00000000 0.00000000## heroes 0.00000000 0.00000000 0.00000000 0.00000000## hiding 0.00000000 0.00000000 0.03695492 0.00000000## highs 0.00000000 0.00000000 0.00000000 0.00000000## himself 0.00000000 0.00000000 0.01847746 0.01900057## hole 0.00000000 0.00000000 0.00000000 0.01900057## homeownership 0.01946661 0.00000000 0.00000000 0.01900057## hopeless 0.00000000 0.00000000 0.00000000 0.00000000## hot 0.00000000 0.02275313 0.01847746 0.00000000## humane 0.00000000 0.00000000 0.01847746 0.00000000## hunger 0.00000000 0.00000000 0.00000000 0.00000000## husband 0.01946661 0.00000000 0.00000000 0.00000000## idealism 0.01946661 0.00000000 0.01847746 0.00000000## identified 0.00000000 0.00000000 0.00000000 0.01900057## ideologies 0.01946661 0.00000000 0.00000000 0.00000000## illness 0.00000000 0.00000000 0.00000000 0.00000000## imagined 0.00000000 0.00000000 0.01847746 0.00000000## imports 0.00000000 0.00000000 0.00000000 0.00000000## improved 0.03893323 0.00000000 0.00000000 0.00000000## inspired 0.00000000 0.00000000 0.00000000 0.00000000## institutes 0.01946661 0.02275313 0.00000000 0.00000000## interested 0.00000000 0.00000000 0.00000000 0.00000000## jackie 0.00000000 0.00000000 0.00000000 0.00000000## jeopardize 0.01946661 0.00000000 0.00000000 0.00000000## johnson 0.00000000 0.00000000 0.00000000 0.00000000## jordan 0.01946661 0.00000000 0.00000000 0.00000000## josefina 0.00000000 0.09101251 0.00000000 0.00000000## july 0.00000000 0.00000000 0.00000000 0.00000000## junk 0.01946661 0.00000000 0.00000000 0.01900057## k 0.00000000 0.00000000 0.00000000 0.00000000## knowledge 0.00000000 0.00000000 0.00000000 0.00000000## latino 0.00000000 0.00000000 0.00000000 0.00000000## layoffs 0.00000000 0.02275313 0.00000000 0.00000000## legitimate 0.00000000 0.02275313 0.00000000 0.00000000## lenders 0.00000000 0.00000000 0.00000000 0.00000000## lesson 0.00000000 0.00000000 0.00000000 0.00000000## levant 0.00000000 0.00000000 0.00000000 0.00000000## leverage 0.00000000 0.00000000 0.00000000 0.00000000## liberal 0.00000000 0.00000000 0.00000000 0.00000000## lies 0.00000000 0.00000000 0.00000000 0.00000000## light 0.00000000 0.00000000 0.00000000 0.01900057## liters 0.00000000 0.00000000 0.03695492 0.00000000## lived 0.00000000 0.00000000 0.01847746 0.00000000## locate 0.00000000 0.00000000 0.00000000 0.00000000## losses 0.00000000 0.00000000 0.00000000 0.00000000## malaria 0.00000000 0.00000000 0.00000000 0.00000000## master 0.00000000 0.00000000 0.00000000 0.00000000## match 0.00000000 0.00000000 0.00000000 0.01900057## meets 0.00000000 0.02275313 0.00000000 0.03800114## mentor 0.00000000 0.04550626 0.01847746 0.00000000## mercy 0.00000000 0.00000000 0.03695492 0.00000000## mexico 0.00000000 0.00000000 0.00000000 0.00000000## midst 0.00000000 0.00000000 0.00000000 0.00000000## militia 0.00000000 0.00000000 0.00000000 0.00000000## millionaires 0.00000000 0.00000000 0.00000000 0.00000000## mine 0.00000000 0.00000000 0.00000000 0.00000000## mitt 0.00000000 0.00000000 0.00000000 0.00000000## morning 0.01946661 0.00000000 0.00000000 0.00000000## mourning 0.00000000 0.00000000 0.01847746 0.00000000## movements 0.01946661 0.00000000 0.00000000 0.01900057## moves 0.00000000 0.00000000 0.01847746 0.00000000## name 0.01946661 0.00000000 0.00000000 0.00000000## nancy 0.00000000 0.00000000 0.00000000 0.00000000## native 0.00000000 0.00000000 0.00000000 0.00000000## nature 0.00000000 0.00000000 0.01847746 0.00000000## naval 0.00000000 0.00000000 0.00000000 0.00000000## nearing 0.03893323 0.02275313 0.00000000 0.00000000## nest 0.01946661 0.00000000 0.00000000 0.01900057## newly 0.01946661 0.00000000 0.01847746 0.01900057## norwood 0.05839984 0.00000000 0.00000000 0.00000000## notice 0.00000000 0.00000000 0.01847746 0.00000000## notion 0.00000000 0.00000000 0.00000000 0.00000000## obesity 0.00000000 0.00000000 0.00000000 0.00000000## offering 0.00000000 0.00000000 0.00000000 0.00000000## offshore 0.00000000 0.00000000 0.00000000 0.00000000## ohio 0.00000000 0.00000000 0.00000000 0.00000000## ongoing 0.00000000 0.02275313 0.01847746 0.00000000## oppression 0.01946661 0.02275313 0.00000000 0.00000000## orrin 0.00000000 0.00000000 0.00000000 0.00000000## outlined 0.00000000 0.00000000 0.00000000 0.00000000## outsourcing 0.00000000 0.00000000 0.00000000 0.00000000## overnight 0.00000000 0.00000000 0.00000000 0.00000000## oversight 0.00000000 0.00000000 0.00000000 0.00000000## ownership 0.01946661 0.02275313 0.00000000 0.01900057## pacific 0.00000000 0.00000000 0.00000000 0.01900057## pain 0.00000000 0.00000000 0.00000000 0.00000000## palestine 0.01946661 0.00000000 0.01847746 0.00000000## palestinians 0.01946661 0.00000000 0.00000000 0.00000000## partnering 0.00000000 0.00000000 0.00000000 0.00000000## payment 0.00000000 0.00000000 0.00000000 0.00000000## pelosi 0.00000000 0.00000000 0.00000000 0.00000000## perhaps 0.00000000 0.02275313 0.00000000 0.00000000## permitted 0.00000000 0.00000000 0.03695492 0.00000000## persian 0.00000000 0.00000000 0.01847746 0.01900057## philadelphia 0.00000000 0.04550626 0.00000000 0.00000000## plague 0.00000000 0.00000000 0.03695492 0.00000000## plotting 0.00000000 0.00000000 0.00000000 0.03800114## pocket 0.00000000 0.00000000 0.00000000 0.00000000## position 0.00000000 0.00000000 0.00000000 0.00000000## positioned 0.00000000 0.00000000 0.00000000 0.00000000## possibilities 0.00000000 0.00000000 0.01847746 0.00000000## pray 0.00000000 0.00000000 0.00000000 0.00000000## pre-k 0.00000000 0.00000000 0.00000000 0.00000000## precisely 0.00000000 0.00000000 0.00000000 0.00000000## preschool 0.00000000 0.00000000 0.00000000 0.00000000## present 0.00000000 0.02275313 0.01847746 0.00000000## previous 0.00000000 0.02275313 0.00000000 0.00000000## pride 0.00000000 0.00000000 0.00000000 0.01900057## probably 0.00000000 0.00000000 0.00000000 0.00000000## profit 0.00000000 0.00000000 0.00000000 0.00000000## prohibited 0.00000000 0.00000000 0.01847746 0.00000000## prove 0.00000000 0.02275313 0.00000000 0.00000000## purposes 0.01946661 0.00000000 0.00000000 0.01900057## qualities 0.00000000 0.00000000 0.01847746 0.00000000## quantities 0.00000000 0.00000000 0.03695492 0.00000000## quiet 0.00000000 0.00000000 0.00000000 0.00000000## raclin 0.00000000 0.00000000 0.00000000 0.00000000## rapidly 0.00000000 0.00000000 0.00000000 0.01900057## reaction 0.00000000 0.00000000 0.01847746 0.00000000## reality 0.00000000 0.00000000 0.00000000 0.00000000## reckless 0.00000000 0.00000000 0.01847746 0.00000000## records 0.00000000 0.00000000 0.00000000 0.01900057## regulation 0.01946661 0.00000000 0.00000000 0.01900057## rein 0.00000000 0.00000000 0.00000000 0.00000000## release 0.00000000 0.00000000 0.00000000 0.00000000## relent 0.00000000 0.00000000 0.00000000 0.00000000## remind 0.00000000 0.00000000 0.00000000 0.00000000## reminder 0.00000000 0.00000000 0.00000000 0.01900057## repayment 0.00000000 0.00000000 0.00000000 0.00000000## reports 0.00000000 0.00000000 0.01847746 0.00000000## represent 0.01946661 0.00000000 0.00000000 0.00000000## representative 0.01946661 0.02275313 0.00000000 0.00000000## represents 0.00000000 0.00000000 0.00000000 0.00000000## requiring 0.00000000 0.00000000 0.00000000 0.01900057## rescued 0.00000000 0.00000000 0.00000000 0.00000000## responsibly 0.00000000 0.00000000 0.00000000 0.00000000## rigged 0.00000000 0.00000000 0.00000000 0.00000000## ronald 0.00000000 0.02275313 0.00000000 0.00000000## rostrum 0.00000000 0.00000000 0.00000000 0.01900057## ruin 0.00000000 0.00000000 0.00000000 0.00000000## san 0.00000000 0.00000000 0.00000000 0.00000000## scientific 0.01946661 0.00000000 0.00000000 0.00000000## search 0.00000000 0.00000000 0.01847746 0.00000000## seems 0.00000000 0.00000000 0.00000000 0.00000000## senators 0.00000000 0.02275313 0.00000000 0.00000000## shadow 0.00000000 0.00000000 0.00000000 0.01900057## shield 0.00000000 0.00000000 0.00000000 0.01900057## shore 0.00000000 0.00000000 0.00000000 0.00000000## showed 0.03893323 0.00000000 0.00000000 0.01900057## siemens 0.00000000 0.00000000 0.00000000 0.00000000## site 0.00000000 0.00000000 0.00000000 0.00000000## six 0.00000000 0.00000000 0.00000000 0.00000000## skeptical 0.00000000 0.00000000 0.00000000 0.00000000## slipped 0.00000000 0.00000000 0.01847746 0.00000000## somewhere 0.00000000 0.00000000 0.00000000 0.00000000## southeast 0.00000000 0.00000000 0.01847746 0.01900057## sparing 0.00000000 0.00000000 0.03695492 0.00000000## sports 0.01946661 0.00000000 0.00000000 0.03800114## spouses 0.00000000 0.00000000 0.00000000 0.00000000## spreading 0.00000000 0.00000000 0.00000000 0.00000000## spur 0.00000000 0.00000000 0.00000000 0.00000000## st-century 0.00000000 0.00000000 0.00000000 0.00000000## stamp 0.00000000 0.00000000 0.00000000 0.00000000## star 0.00000000 0.00000000 0.00000000 0.01900057## stays 0.01946661 0.00000000 0.00000000 0.00000000## storm 0.00000000 0.00000000 0.00000000 0.00000000## straits 0.00000000 0.00000000 0.03695492 0.00000000## strategies 0.00000000 0.00000000 0.01847746 0.01900057## strengthened 0.00000000 0.00000000 0.00000000 0.00000000## striving 0.00000000 0.00000000 0.00000000 0.00000000## strongholds 0.00000000 0.00000000 0.00000000 0.00000000## struggles 0.00000000 0.00000000 0.00000000 0.00000000## successful 0.01946661 0.00000000 0.00000000 0.00000000## sudan 0.00000000 0.00000000 0.00000000 0.00000000## sufficient 0.00000000 0.00000000 0.03695492 0.00000000## supposed 0.00000000 0.00000000 0.01847746 0.01900057## supreme 0.00000000 0.00000000 0.00000000 0.00000000## table 0.01946661 0.00000000 0.00000000 0.00000000## tackle 0.00000000 0.00000000 0.00000000 0.00000000## talented 0.00000000 0.00000000 0.00000000 0.00000000## talking 0.00000000 0.00000000 0.00000000 0.00000000## target 0.01946661 0.00000000 0.00000000 0.00000000## targeted 0.00000000 0.04550626 0.00000000 0.00000000## tech 0.00000000 0.00000000 0.00000000 0.00000000## tehran 0.01946661 0.00000000 0.00000000 0.00000000## territories 0.03893323 0.00000000 0.00000000 0.00000000## territory 0.01946661 0.00000000 0.00000000 0.00000000## they^d 0.00000000 0.00000000 0.00000000 0.00000000## thriving 0.00000000 0.00000000 0.00000000 0.00000000## tide 0.00000000 0.00000000 0.01847746 0.00000000## tie 0.00000000 0.04550626 0.00000000 0.00000000## ties 0.00000000 0.00000000 0.01847746 0.00000000## tone 0.00000000 0.04550626 0.00000000 0.00000000## tool 0.00000000 0.00000000 0.00000000 0.03800114## toxin 0.00000000 0.00000000 0.03695492 0.00000000## trading 0.00000000 0.00000000 0.00000000 0.00000000## trains 0.00000000 0.00000000 0.00000000 0.00000000## trans-pacific 0.00000000 0.00000000 0.00000000 0.00000000## transforming 0.00000000 0.00000000 0.03695492 0.00000000## treasury 0.00000000 0.00000000 0.00000000 0.00000000## trends 0.00000000 0.00000000 0.00000000 0.00000000## tribal 0.00000000 0.00000000 0.00000000 0.00000000## trusting 0.00000000 0.00000000 0.01847746 0.00000000## tunisia 0.00000000 0.00000000 0.00000000 0.00000000## tyrants 0.00000000 0.02275313 0.01847746 0.00000000## uncovered 0.00000000 0.00000000 0.01847746 0.00000000## understood 0.00000000 0.00000000 0.00000000 0.00000000## unfairly 0.00000000 0.00000000 0.01847746 0.01900057## unions 0.00000000 0.00000000 0.00000000 0.01900057## up-or-down 0.01946661 0.00000000 0.00000000 0.00000000## upgrade 0.00000000 0.00000000 0.00000000 0.00000000## upholds 0.00000000 0.00000000 0.00000000 0.00000000## usa 0.00000000 0.00000000 0.01847746 0.00000000## usher 0.00000000 0.00000000 0.00000000 0.00000000## verge 0.00000000 0.00000000 0.00000000 0.00000000## verify 0.00000000 0.00000000 0.01847746 0.00000000## wanted 0.01946661 0.00000000 0.01847746 0.00000000## warfare 0.00000000 0.00000000 0.01847746 0.00000000## warning 0.00000000 0.02275313 0.01847746 0.00000000## warriors 0.00000000 0.00000000 0.00000000 0.00000000## wave 0.00000000 0.00000000 0.00000000 0.00000000## weaken 0.00000000 0.00000000 0.00000000 0.00000000## wear 0.00000000 0.00000000 0.00000000 0.00000000## web 0.00000000 0.00000000 0.00000000 0.00000000## weight 0.00000000 0.00000000 0.00000000 0.00000000## welfare 0.00000000 0.00000000 0.00000000 0.00000000## western 0.00000000 0.00000000 0.01847746 0.00000000## won 0.01946661 0.00000000 0.00000000 0.00000000## wonder 0.00000000 0.00000000 0.00000000 0.00000000## world-class 0.00000000 0.00000000 0.00000000 0.00000000## wouldn^t 0.00000000 0.00000000 0.00000000 0.00000000## wounded 0.00000000 0.00000000 0.00000000 0.00000000## year^s 0.00000000 0.00000000 0.00000000 0.00000000## you^d 0.00000000 0.00000000 0.00000000 0.00000000## yours 0.01946661 0.02275313 0.00000000 0.00000000## zarqawi 0.03893323 0.00000000 0.00000000 0.00000000## -percent 0.00000000 0.00000000 0.01847746 0.01900057## -year-old 0.00000000 0.02275313 0.00000000 0.00000000## abbas 0.03893323 0.00000000 0.00000000 0.00000000## abortion 0.00000000 0.00000000 0.01847746 0.00000000## abortions 0.00000000 0.00000000 0.00000000 0.00000000## abraham 0.00000000 0.02275313 0.00000000 0.00000000## abstinence 0.00000000 0.00000000 0.00000000 0.03800114## accelerate 0.00000000 0.00000000 0.00000000 0.00000000## accepted 0.00000000 0.02275313 0.00000000 0.00000000## accompany 0.00000000 0.00000000 0.01847746 0.00000000## accomplished 0.01946661 0.00000000 0.01847746 0.00000000## accountants 0.00000000 0.00000000 0.00000000 0.00000000## achievements 0.01946661 0.00000000 0.00000000 0.01900057## acknowledge 0.00000000 0.00000000 0.00000000 0.00000000## acting 0.00000000 0.00000000 0.00000000 0.01900057## activist 0.01946661 0.00000000 0.00000000 0.01900057## addition 0.03893323 0.00000000 0.00000000 0.00000000## addressing 0.00000000 0.00000000 0.00000000 0.00000000## adds 0.00000000 0.00000000 0.00000000 0.00000000## administered 0.00000000 0.00000000 0.00000000 0.00000000## administrations 0.00000000 0.00000000 0.00000000 0.00000000## adult 0.00000000 0.00000000 0.01847746 0.00000000## advocate 0.00000000 0.00000000 0.00000000 0.00000000## affect 0.00000000 0.00000000 0.00000000 0.01900057## airline 0.00000000 0.00000000 0.00000000 0.01900057## alive 0.00000000 0.00000000 0.00000000 0.00000000## all-of-the-above 0.00000000 0.00000000 0.00000000 0.00000000## ambition 0.00000000 0.00000000 0.01847746 0.00000000## anew 0.00000000 0.00000000 0.00000000 0.00000000## answers 0.00000000 0.00000000 0.00000000 0.00000000## anxious 0.01946661 0.00000000 0.00000000 0.00000000## appreciate 0.00000000 0.02275313 0.00000000 0.00000000## arab 0.00000000 0.00000000 0.00000000 0.00000000## arabian 0.00000000 0.00000000 0.00000000 0.00000000## area 0.00000000 0.00000000 0.00000000 0.00000000## arizona 0.00000000 0.00000000 0.00000000 0.00000000## arm 0.00000000 0.00000000 0.00000000 0.00000000## armies 0.00000000 0.00000000 0.01847746 0.00000000## arsenal 0.00000000 0.00000000 0.01847746 0.00000000## arsenals 0.00000000 0.00000000 0.01847746 0.00000000## asia-pacific 0.00000000 0.00000000 0.00000000 0.00000000## asks 0.00000000 0.00000000 0.00000000 0.00000000## assassins 0.01946661 0.00000000 0.00000000 0.01900057## attempted 0.00000000 0.00000000 0.01847746 0.00000000## attitude 0.00000000 0.02275313 0.00000000 0.00000000## audience 0.00000000 0.00000000 0.00000000 0.00000000## august 0.00000000 0.00000000 0.00000000 0.01900057## aung 0.00000000 0.00000000 0.00000000 0.00000000## australia 0.00000000 0.00000000 0.00000000 0.03800114## authorize 0.00000000 0.00000000 0.00000000 0.00000000## avoiding 0.00000000 0.00000000 0.00000000 0.00000000## backed 0.00000000 0.00000000 0.00000000 0.00000000## bailouts 0.00000000 0.00000000 0.00000000 0.00000000## ballistic 0.00000000 0.00000000 0.01847746 0.00000000## ballot 0.00000000 0.00000000 0.00000000 0.00000000## bankrupt 0.01946661 0.00000000 0.00000000 0.00000000## bargain 0.00000000 0.00000000 0.00000000 0.00000000## battered 0.00000000 0.00000000 0.01847746 0.00000000## battlefield 0.00000000 0.00000000 0.00000000 0.00000000## becomes 0.00000000 0.00000000 0.00000000 0.01900057## becoming 0.00000000 0.00000000 0.00000000 0.01900057## belong 0.00000000 0.00000000 0.00000000 0.00000000## beloved 0.00000000 0.00000000 0.00000000 0.00000000## below 0.01946661 0.00000000 0.00000000 0.00000000## benghazi 0.00000000 0.00000000 0.00000000 0.00000000## berlin 0.00000000 0.00000000 0.00000000 0.00000000## bet 0.00000000 0.00000000 0.00000000 0.00000000## bioterrorism 0.00000000 0.00000000 0.01847746 0.00000000## bisexual 0.00000000 0.00000000 0.00000000 0.00000000## blows 0.00000000 0.00000000 0.00000000 0.00000000## blueprint 0.00000000 0.00000000 0.00000000 0.00000000## bob 0.00000000 0.00000000 0.00000000 0.00000000## bombing 0.00000000 0.00000000 0.00000000 0.00000000## bombs 0.00000000 0.02275313 0.00000000 0.00000000## boss 0.00000000 0.00000000 0.00000000 0.00000000## boston 0.00000000 0.00000000 0.00000000 0.00000000## brain 0.00000000 0.00000000 0.00000000 0.00000000## brand 0.00000000 0.00000000 0.00000000 0.00000000## breakthrough 0.00000000 0.00000000 0.00000000 0.00000000## bubble 0.00000000 0.00000000 0.00000000 0.00000000## bucks 0.00000000 0.00000000 0.00000000 0.00000000## budgets 0.00000000 0.00000000 0.00000000 0.00000000## burdened 0.01946661 0.00000000 0.00000000 0.00000000## bureaucrats 0.00000000 0.00000000 0.01847746 0.00000000## burn 0.00000000 0.00000000 0.01847746 0.00000000## burning 0.00000000 0.00000000 0.01847746 0.00000000## busy 0.00000000 0.00000000 0.00000000 0.00000000## byron 0.05839984 0.00000000 0.00000000 0.00000000## cabinet 0.00000000 0.00000000 0.00000000 0.00000000## candid 0.01946661 0.02275313 0.00000000 0.01900057## cap 0.00000000 0.00000000 0.00000000 0.00000000## cards 0.00000000 0.00000000 0.00000000 0.00000000## carefully 0.00000000 0.00000000 0.00000000 0.00000000## cents 0.00000000 0.00000000 0.00000000 0.00000000## centuries 0.00000000 0.00000000 0.00000000 0.00000000## certainly 0.00000000 0.00000000 0.00000000 0.00000000## chair 0.00000000 0.00000000 0.00000000 0.00000000## chances 0.00000000 0.00000000 0.00000000 0.00000000## chapter 0.00000000 0.00000000 0.00000000 0.00000000## charges 0.00000000 0.00000000 0.00000000 0.01900057## check 0.01946661 0.00000000 0.00000000 0.00000000## chicago 0.00000000 0.00000000 0.00000000 0.00000000## chile 0.00000000 0.00000000 0.00000000 0.00000000## chip 0.00000000 0.00000000 0.00000000 0.00000000## chips 0.00000000 0.00000000 0.00000000 0.00000000## choosing 0.01946661 0.00000000 0.00000000 0.00000000## christians 0.00000000 0.00000000 0.00000000 0.00000000## christmas 0.00000000 0.00000000 0.00000000 0.00000000## church 0.00000000 0.00000000 0.01847746 0.00000000## circumstances 0.01946661 0.00000000 0.00000000 0.00000000## civilization 0.00000000 0.00000000 0.00000000 0.03800114## claimed 0.00000000 0.00000000 0.00000000 0.00000000## classes 0.00000000 0.00000000 0.00000000 0.00000000## cleanup 0.00000000 0.02275313 0.00000000 0.00000000## clearing 0.00000000 0.00000000 0.00000000 0.00000000## clock 0.00000000 0.00000000 0.00000000 0.00000000## closest 0.00000000 0.00000000 0.00000000 0.01900057## cole 0.00000000 0.00000000 0.01847746 0.00000000## collection 0.01946661 0.00000000 0.00000000 0.00000000## comforted 0.00000000 0.00000000 0.00000000 0.00000000## command 0.01946661 0.00000000 0.00000000 0.00000000## communism 0.01946661 0.00000000 0.01847746 0.00000000## company^s 0.00000000 0.00000000 0.01847746 0.00000000## competent 0.01946661 0.00000000 0.00000000 0.00000000## complex 0.00000000 0.00000000 0.00000000 0.00000000## concerned 0.01946661 0.02275313 0.00000000 0.00000000## connect 0.00000000 0.00000000 0.00000000 0.00000000## consensus 0.00000000 0.00000000 0.00000000 0.00000000## considered 0.00000000 0.00000000 0.01847746 0.00000000## consistent 0.00000000 0.00000000 0.00000000 0.00000000## consolidate 0.00000000 0.00000000 0.00000000 0.00000000## constructive 0.00000000 0.00000000 0.00000000 0.00000000## contain 0.00000000 0.00000000 0.00000000 0.00000000## contracting 0.00000000 0.00000000 0.00000000 0.00000000## contracts 0.00000000 0.00000000 0.00000000 0.01900057## convene 0.00000000 0.00000000 0.01847746 0.00000000## cooperate 0.00000000 0.00000000 0.01847746 0.00000000## coordination 0.00000000 0.00000000 0.00000000 0.00000000## cordray 0.00000000 0.00000000 0.00000000 0.00000000## corner 0.00000000 0.00000000 0.00000000 0.00000000## counter 0.00000000 0.00000000 0.00000000 0.01900057## countless 0.00000000 0.00000000 0.00000000 0.00000000## creative 0.00000000 0.00000000 0.00000000 0.00000000## crimes 0.00000000 0.00000000 0.00000000 0.00000000## criticism 0.00000000 0.00000000 0.00000000 0.01900057## crossings 0.00000000 0.00000000 0.00000000 0.00000000## crowds 0.00000000 0.02275313 0.01847746 0.00000000## cruelty 0.00000000 0.00000000 0.01847746 0.00000000## cure 0.00000000 0.00000000 0.00000000 0.00000000## custody 0.00000000 0.00000000 0.01847746 0.01900057## custom 0.00000000 0.00000000 0.01847746 0.00000000## cybersecurity 0.00000000 0.00000000 0.00000000 0.00000000## dan 0.00000000 0.00000000 0.00000000 0.00000000## dark 0.00000000 0.00000000 0.00000000 0.00000000## deaths 0.00000000 0.00000000 0.00000000 0.00000000## declare 0.00000000 0.00000000 0.00000000 0.00000000## deepest 0.01946661 0.00000000 0.01847746 0.00000000## defiance 0.00000000 0.00000000 0.01847746 0.01900057## defined 0.00000000 0.00000000 0.00000000 0.00000000## demars 0.00000000 0.00000000 0.00000000 0.00000000## democratization 0.00000000 0.00000000 0.00000000 0.00000000## denying 0.00000000 0.00000000 0.01847746 0.00000000## deployed 0.00000000 0.00000000 0.00000000 0.01900057## derail 0.00000000 0.00000000 0.00000000 0.00000000## destructive 0.00000000 0.00000000 0.01847746 0.00000000## detect 0.01946661 0.00000000 0.01847746 0.00000000## devastate 0.00000000 0.00000000 0.01847746 0.00000000## dictatorship 0.00000000 0.00000000 0.00000000 0.00000000## differently 0.00000000 0.00000000 0.00000000 0.00000000## digital 0.00000000 0.00000000 0.00000000 0.00000000## dikembe 0.00000000 0.00000000 0.00000000 0.00000000## director 0.00000000 0.00000000 0.01847746 0.00000000## disasters 0.00000000 0.00000000 0.00000000 0.00000000## disclose 0.00000000 0.00000000 0.00000000 0.01900057## discover 0.00000000 0.00000000 0.00000000 0.00000000## discoveries 0.00000000 0.00000000 0.00000000 0.00000000## dismantle 0.00000000 0.00000000 0.00000000 0.01900057## dismiss 0.00000000 0.00000000 0.00000000 0.01900057## disposition 0.00000000 0.00000000 0.00000000 0.00000000## distance 0.00000000 0.00000000 0.00000000 0.00000000## districts 0.00000000 0.02275313 0.00000000 0.00000000## diversity 0.00000000 0.00000000 0.00000000 0.00000000## dividends 0.00000000 0.00000000 0.01847746 0.01900057## divisions 0.00000000 0.00000000 0.00000000 0.01900057## doha 0.00000000 0.00000000 0.00000000 0.00000000## doubts 0.00000000 0.00000000 0.00000000 0.01900057## dozen 0.00000000 0.00000000 0.00000000 0.00000000## draft 0.00000000 0.00000000 0.00000000 0.01900057## draw 0.00000000 0.00000000 0.00000000 0.00000000## drawdown 0.00000000 0.00000000 0.00000000 0.00000000## dropout 0.00000000 0.00000000 0.00000000 0.00000000## dynamic 0.01946661 0.00000000 0.00000000 0.00000000## edge 0.00000000 0.00000000 0.00000000 0.00000000## educational 0.00000000 0.00000000 0.00000000 0.00000000## einstein 0.00000000 0.00000000 0.00000000 0.00000000## el 0.00000000 0.00000000 0.00000000 0.01900057## elderly 0.00000000 0.00000000 0.00000000 0.00000000## eliminated 0.00000000 0.00000000 0.00000000 0.00000000## eliminating 0.01946661 0.00000000 0.00000000 0.00000000## embassies 0.00000000 0.00000000 0.01847746 0.00000000## embolden 0.01946661 0.00000000 0.00000000 0.00000000## embrace 0.00000000 0.00000000 0.00000000 0.00000000## embraced 0.01946661 0.00000000 0.00000000 0.00000000## embryos 0.01946661 0.00000000 0.00000000 0.00000000## emerged 0.00000000 0.00000000 0.00000000 0.00000000## empire 0.01946661 0.00000000 0.00000000 0.01900057## employ 0.00000000 0.00000000 0.01847746 0.00000000## employer-based 0.00000000 0.00000000 0.00000000 0.00000000## endless 0.00000000 0.00000000 0.01847746 0.00000000## engagement 0.00000000 0.00000000 0.00000000 0.00000000## english 0.00000000 0.00000000 0.00000000 0.00000000## enjoy 0.01946661 0.00000000 0.00000000 0.00000000## enriching 0.00000000 0.00000000 0.01847746 0.00000000## enrichment 0.01946661 0.00000000 0.00000000 0.01900057## ensures 0.00000000 0.00000000 0.00000000 0.00000000## ensuring 0.00000000 0.00000000 0.00000000 0.00000000## entirely 0.00000000 0.02275313 0.00000000 0.00000000## entitlements 0.00000000 0.00000000 0.00000000 0.00000000## envoy 0.00000000 0.00000000 0.00000000 0.00000000## equally 0.00000000 0.02275313 0.01847746 0.00000000## equip 0.00000000 0.00000000 0.00000000 0.00000000## eric 0.00000000 0.00000000 0.00000000 0.00000000## errors 0.00000000 0.00000000 0.00000000 0.00000000## escape 0.00000000 0.00000000 0.00000000 0.00000000## estiven 0.00000000 0.00000000 0.00000000 0.00000000## ethnic 0.00000000 0.00000000 0.00000000 0.00000000## except 0.00000000 0.00000000 0.00000000 0.00000000## exceptional 0.00000000 0.00000000 0.00000000 0.00000000## executives 0.00000000 0.00000000 0.00000000 0.00000000## exercise 0.00000000 0.00000000 0.01847746 0.00000000## exist 0.00000000 0.00000000 0.00000000 0.00000000## existence 0.00000000 0.00000000 0.01847746 0.00000000## expense 0.00000000 0.00000000 0.00000000 0.00000000## expressed 0.01946661 0.00000000 0.00000000 0.00000000## eyes 0.00000000 0.00000000 0.00000000 0.00000000## falter 0.00000000 0.00000000 0.00000000 0.01900057## familiar 0.01946661 0.00000000 0.01847746 0.00000000## fascism 0.01946661 0.00000000 0.00000000 0.00000000## fearful 0.00000000 0.00000000 0.00000000 0.00000000## feeling 0.00000000 0.00000000 0.00000000 0.00000000## feels 0.01946661 0.00000000 0.00000000 0.00000000## fees 0.01946661 0.00000000 0.00000000 0.00000000## fifteen 0.00000000 0.00000000 0.00000000 0.00000000## filled 0.00000000 0.00000000 0.00000000 0.01900057## filling 0.00000000 0.00000000 0.00000000 0.00000000## finest 0.00000000 0.00000000 0.00000000 0.00000000## first-responders 0.01946661 0.00000000 0.00000000 0.00000000## flights 0.00000000 0.00000000 0.01847746 0.00000000## floods 0.00000000 0.00000000 0.00000000 0.00000000## flow 0.00000000 0.00000000 0.00000000 0.00000000## fly 0.00000000 0.00000000 0.00000000 0.00000000## footing 0.00000000 0.02275313 0.00000000 0.00000000## forcing 0.00000000 0.00000000 0.00000000 0.01900057## ford 0.00000000 0.00000000 0.00000000 0.00000000## forgot 0.00000000 0.00000000 0.00000000 0.00000000## formed 0.00000000 0.00000000 0.00000000 0.00000000## founding 0.00000000 0.00000000 0.00000000 0.00000000## freedoms 0.01946661 0.00000000 0.00000000 0.00000000## freer 0.00000000 0.00000000 0.00000000 0.00000000## front 0.01946661 0.00000000 0.00000000 0.00000000## frustration 0.00000000 0.00000000 0.01847746 0.00000000## function 0.00000000 0.00000000 0.00000000 0.00000000## furniture 0.00000000 0.00000000 0.00000000 0.00000000## futures 0.00000000 0.00000000 0.00000000 0.01900057## gabrielle 0.00000000 0.00000000 0.00000000 0.00000000## gangs 0.03893323 0.00000000 0.00000000 0.00000000## gaps 0.00000000 0.00000000 0.00000000 0.00000000## gary 0.00000000 0.00000000 0.00000000 0.00000000## generation^s 0.00000000 0.00000000 0.00000000 0.00000000## generous 0.00000000 0.02275313 0.00000000 0.00000000## georgia 0.00000000 0.00000000 0.00000000 0.00000000## germany 0.00000000 0.00000000 0.00000000 0.00000000## gi 0.00000000 0.00000000 0.00000000 0.00000000## ginsberg 0.00000000 0.00000000 0.00000000 0.00000000## god^s 0.00000000 0.00000000 0.01847746 0.01900057## golden 0.00000000 0.00000000 0.00000000 0.00000000## good-paying 0.00000000 0.00000000 0.00000000 0.00000000## goodness 0.00000000 0.00000000 0.01847746 0.00000000## google 0.00000000 0.00000000 0.00000000 0.00000000## grace 0.00000000 0.00000000 0.00000000 0.01900057## grandfather 0.00000000 0.00000000 0.00000000 0.00000000## greatness 0.00000000 0.02275313 0.00000000 0.00000000## gross 0.00000000 0.00000000 0.00000000 0.00000000## guarantees 0.00000000 0.00000000 0.00000000 0.00000000## guys 0.00000000 0.00000000 0.00000000 0.00000000## halfway 0.00000000 0.00000000 0.00000000 0.00000000## happens 0.00000000 0.00000000 0.00000000 0.00000000## harsh 0.01946661 0.00000000 0.00000000 0.00000000## havoc 0.00000000 0.00000000 0.01847746 0.00000000## heads 0.00000000 0.00000000 0.00000000 0.00000000## hearts 0.01946661 0.00000000 0.00000000 0.00000000## heat 0.00000000 0.00000000 0.00000000 0.00000000## henry 0.00000000 0.00000000 0.00000000 0.00000000## heroic 0.00000000 0.00000000 0.00000000 0.00000000## hesitate 0.00000000 0.00000000 0.00000000 0.00000000## highway 0.00000000 0.00000000 0.00000000 0.00000000## hijackers 0.00000000 0.00000000 0.01847746 0.00000000## history^s 0.00000000 0.00000000 0.00000000 0.00000000## holds 0.01946661 0.00000000 0.00000000 0.00000000## homeless 0.00000000 0.00000000 0.01847746 0.01900057## homelessness 0.00000000 0.02275313 0.00000000 0.00000000## honors 0.00000000 0.00000000 0.00000000 0.00000000## hostile 0.00000000 0.00000000 0.00000000 0.00000000## households 0.00000000 0.00000000 0.00000000 0.00000000## howard 0.00000000 0.00000000 0.00000000 0.00000000## hugged 0.01946661 0.00000000 0.01847746 0.00000000## hungry 0.00000000 0.00000000 0.01847746 0.01900057## hunt 0.00000000 0.00000000 0.01847746 0.00000000## hurricane 0.00000000 0.00000000 0.00000000 0.00000000## hurt 0.00000000 0.00000000 0.00000000 0.00000000## hybrid 0.00000000 0.00000000 0.00000000 0.00000000## ideal 0.05839984 0.00000000 0.00000000 0.00000000## iii 0.00000000 0.00000000 0.00000000 0.00000000## ill 0.00000000 0.00000000 0.00000000 0.00000000## illinois 0.00000000 0.00000000 0.00000000 0.00000000## images 0.00000000 0.00000000 0.00000000 0.00000000## immigrant 0.00000000 0.00000000 0.00000000 0.00000000## improvements 0.00000000 0.00000000 0.00000000 0.00000000## inc 0.00000000 0.00000000 0.00000000 0.00000000## incentive 0.00000000 0.00000000 0.00000000 0.00000000## industrialized 0.01946661 0.00000000 0.00000000 0.00000000## infection 0.00000000 0.00000000 0.01847746 0.00000000## infections 0.00000000 0.00000000 0.01847746 0.00000000## ingenuity 0.00000000 0.00000000 0.00000000 0.00000000## inherited 0.00000000 0.00000000 0.00000000 0.00000000## insurgency 0.00000000 0.00000000 0.00000000 0.00000000## insurgents 0.03893323 0.00000000 0.00000000 0.00000000## integrity 0.00000000 0.00000000 0.01847746 0.01900057## interior 0.00000000 0.00000000 0.00000000 0.00000000## intimidation 0.00000000 0.00000000 0.01847746 0.00000000## invited 0.00000000 0.02275313 0.00000000 0.00000000## involved 0.00000000 0.00000000 0.00000000 0.00000000## involves 0.01946661 0.00000000 0.00000000 0.00000000## iowa 0.00000000 0.00000000 0.00000000 0.00000000## isolating 0.00000000 0.00000000 0.00000000 0.00000000## isolationism 0.00000000 0.00000000 0.00000000 0.00000000## israelis 0.00000000 0.00000000 0.00000000 0.00000000## jack 0.00000000 0.00000000 0.00000000 0.00000000## janet 0.05839984 0.00000000 0.00000000 0.00000000## jews 0.00000000 0.00000000 0.00000000 0.00000000## judged 0.00000000 0.04550626 0.00000000 0.01900057## judgment 0.00000000 0.00000000 0.00000000 0.00000000## judicial 0.01946661 0.00000000 0.00000000 0.00000000## katherine 0.00000000 0.00000000 0.00000000 0.00000000## kathy 0.00000000 0.00000000 0.00000000 0.00000000## kay 0.00000000 0.00000000 0.00000000 0.01900057## kennedy^s 0.00000000 0.02275313 0.00000000 0.00000000## killing 0.00000000 0.00000000 0.00000000 0.03800114## kindness 0.00000000 0.00000000 0.00000000 0.00000000## king 0.00000000 0.00000000 0.00000000 0.00000000## kyi 0.00000000 0.00000000 0.00000000 0.00000000## laboratory 0.00000000 0.00000000 0.01847746 0.00000000## lack 0.00000000 0.00000000 0.00000000 0.00000000## ladders 0.00000000 0.00000000 0.00000000 0.00000000## latin 0.00000000 0.00000000 0.00000000 0.00000000## laura 0.01946661 0.02275313 0.00000000 0.00000000## lawful 0.00000000 0.00000000 0.00000000 0.00000000## league 0.00000000 0.02275313 0.00000000 0.00000000## leaves 0.00000000 0.00000000 0.00000000 0.00000000## lend 0.00000000 0.00000000 0.00000000 0.00000000## lesbian 0.00000000 0.00000000 0.00000000 0.00000000## letters 0.00000000 0.00000000 0.00000000 0.00000000## liberate 0.00000000 0.00000000 0.01847746 0.00000000## lieberman 0.00000000 0.00000000 0.00000000 0.00000000## lifetime 0.00000000 0.00000000 0.00000000 0.00000000## likely 0.00000000 0.00000000 0.00000000 0.01900057## limiting 0.01946661 0.00000000 0.00000000 0.01900057## lined 0.00000000 0.00000000 0.00000000 0.00000000## list 0.00000000 0.00000000 0.00000000 0.00000000## litigation 0.00000000 0.00000000 0.01847746 0.00000000## lock 0.00000000 0.00000000 0.00000000 0.00000000## longest 0.00000000 0.00000000 0.00000000 0.00000000## looked 0.00000000 0.02275313 0.00000000 0.00000000## louisiana 0.00000000 0.00000000 0.01847746 0.00000000## loving 0.00000000 0.00000000 0.01847746 0.00000000## lowering 0.00000000 0.00000000 0.00000000 0.00000000## loyalty 0.01946661 0.00000000 0.00000000 0.00000000## luxury 0.00000000 0.00000000 0.00000000 0.00000000## madrid 0.00000000 0.00000000 0.01847746 0.00000000## mali 0.00000000 0.00000000 0.00000000 0.00000000## malpractice 0.00000000 0.00000000 0.00000000 0.00000000## mankind 0.00000000 0.00000000 0.01847746 0.01900057## manufacture 0.00000000 0.00000000 0.00000000 0.00000000## meantime 0.00000000 0.00000000 0.00000000 0.00000000## media 0.00000000 0.00000000 0.00000000 0.00000000## menchu 0.00000000 0.00000000 0.00000000 0.00000000## mental 0.00000000 0.00000000 0.00000000 0.00000000## merge 0.00000000 0.00000000 0.01847746 0.00000000## messy 0.00000000 0.00000000 0.00000000 0.00000000## miles 0.00000000 0.00000000 0.00000000 0.00000000## milk 0.00000000 0.00000000 0.00000000 0.00000000## mindful 0.00000000 0.00000000 0.00000000 0.00000000## minneapolis 0.00000000 0.00000000 0.00000000 0.00000000## miracle 0.00000000 0.00000000 0.01847746 0.00000000## misguided 0.00000000 0.00000000 0.00000000 0.00000000## missiles 0.00000000 0.00000000 0.01847746 0.00000000## mistakes 0.00000000 0.00000000 0.00000000 0.01900057## mistrust 0.00000000 0.00000000 0.00000000 0.00000000## misty 0.00000000 0.00000000 0.00000000 0.00000000## misunderstanding 0.00000000 0.00000000 0.01847746 0.00000000## mobile 0.00000000 0.00000000 0.01847746 0.00000000## model 0.00000000 0.00000000 0.01847746 0.00000000## moon 0.00000000 0.00000000 0.00000000 0.00000000## mosque 0.00000000 0.00000000 0.00000000 0.00000000## mothers 0.00000000 0.00000000 0.00000000 0.00000000## mountain 0.00000000 0.00000000 0.00000000 0.00000000## murphy 0.00000000 0.00000000 0.00000000 0.00000000## narrow 0.00000000 0.00000000 0.00000000 0.00000000## nationwide 0.01946661 0.00000000 0.00000000 0.00000000## negotiated 0.00000000 0.00000000 0.01847746 0.00000000## neighborhood 0.00000000 0.02275313 0.00000000 0.00000000## nick 0.00000000 0.00000000 0.00000000 0.00000000## nights 0.00000000 0.00000000 0.00000000 0.00000000## nine 0.01946661 0.00000000 0.00000000 0.01900057## nominate 0.01946661 0.00000000 0.00000000 0.00000000## nominee 0.01946661 0.00000000 0.00000000 0.00000000## nominees 0.00000000 0.00000000 0.00000000 0.00000000## nonpartisan 0.00000000 0.00000000 0.00000000 0.00000000## nonproliferation 0.00000000 0.00000000 0.00000000 0.00000000## november 0.00000000 0.00000000 0.00000000 0.00000000## number-one 0.00000000 0.00000000 0.00000000 0.00000000## nurse 0.00000000 0.00000000 0.00000000 0.00000000## oath 0.00000000 0.02275313 0.00000000 0.00000000## objective 0.00000000 0.00000000 0.00000000 0.00000000## obligation 0.00000000 0.00000000 0.00000000 0.00000000## ocean 0.00000000 0.00000000 0.00000000 0.00000000## odds 0.00000000 0.00000000 0.00000000 0.00000000## offers 0.00000000 0.04550626 0.00000000 0.00000000## offices 0.00000000 0.00000000 0.00000000 0.00000000## official 0.00000000 0.00000000 0.00000000 0.00000000## older 0.01946661 0.00000000 0.00000000 0.01900057## olympic 0.00000000 0.00000000 0.00000000 0.00000000## open-ended 0.00000000 0.00000000 0.00000000 0.00000000## openings 0.00000000 0.00000000 0.00000000 0.00000000## opens 0.01946661 0.00000000 0.00000000 0.00000000## operating 0.00000000 0.00000000 0.00000000 0.00000000## opinions 0.00000000 0.00000000 0.00000000 0.00000000## opponents 0.00000000 0.00000000 0.00000000 0.00000000## opposed 0.01946661 0.00000000 0.00000000 0.00000000## oppressive 0.00000000 0.00000000 0.01847746 0.00000000## optimism 0.00000000 0.00000000 0.00000000 0.00000000## optimistic 0.00000000 0.00000000 0.00000000 0.00000000## orderly 0.00000000 0.00000000 0.00000000 0.01900057## orders 0.01946661 0.00000000 0.00000000 0.00000000## orleans 0.00000000 0.00000000 0.00000000 0.00000000## outlaw 0.00000000 0.00000000 0.01847746 0.01900057## overtime 0.00000000 0.04550626 0.00000000 0.00000000## overwhelming 0.00000000 0.00000000 0.00000000 0.00000000## pad 0.00000000 0.00000000 0.00000000 0.00000000## panels 0.00000000 0.00000000 0.00000000 0.00000000## parliament 0.00000000 0.00000000 0.00000000 0.00000000## passage 0.00000000 0.00000000 0.00000000 0.00000000## passenger 0.00000000 0.00000000 0.00000000 0.01900057## patent 0.00000000 0.00000000 0.00000000 0.00000000## pathway 0.00000000 0.00000000 0.00000000 0.00000000## patience 0.00000000 0.00000000 0.00000000 0.00000000## patrick 0.01946661 0.00000000 0.00000000 0.00000000## patrol 0.00000000 0.00000000 0.00000000 0.01900057## pendleton 0.00000000 0.00000000 0.00000000 0.00000000## penny 0.01946661 0.00000000 0.00000000 0.00000000## peoples 0.00000000 0.00000000 0.01847746 0.00000000## percentage 0.01946661 0.04550626 0.00000000 0.00000000## periods 0.00000000 0.00000000 0.00000000 0.00000000## permit 0.00000000 0.00000000 0.01847746 0.00000000## persistent 0.00000000 0.02275313 0.00000000 0.00000000## personally 0.00000000 0.02275313 0.00000000 0.00000000## phase 0.01946661 0.00000000 0.00000000 0.01900057## philippines 0.00000000 0.00000000 0.00000000 0.01900057## physical 0.00000000 0.00000000 0.00000000 0.00000000## pick 0.00000000 0.00000000 0.00000000 0.00000000## picture 0.00000000 0.06825939 0.00000000 0.00000000## placing 0.00000000 0.00000000 0.01847746 0.00000000## planning 0.00000000 0.00000000 0.00000000 0.01900057## plant 0.00000000 0.00000000 0.00000000 0.00000000## planted 0.00000000 0.00000000 0.00000000 0.01900057## plays 0.00000000 0.00000000 0.00000000 0.00000000## plots 0.00000000 0.00000000 0.00000000 0.00000000## poised 0.00000000 0.00000000 0.00000000 0.00000000## polls 0.01946661 0.00000000 0.00000000 0.00000000## pollution-free 0.00000000 0.00000000 0.01847746 0.00000000## popular 0.00000000 0.00000000 0.00000000 0.00000000## possess 0.00000000 0.00000000 0.01847746 0.00000000## posted 0.00000000 0.00000000 0.01847746 0.00000000## posts 0.01946661 0.00000000 0.00000000 0.01900057## practical 0.00000000 0.00000000 0.00000000 0.00000000## praise 0.00000000 0.02275313 0.01847746 0.00000000## precious 0.00000000 0.00000000 0.00000000 0.00000000## presents 0.00000000 0.00000000 0.00000000 0.00000000## pressing 0.00000000 0.00000000 0.00000000 0.00000000## pretty 0.00000000 0.00000000 0.00000000 0.00000000## prevail 0.00000000 0.00000000 0.01847746 0.00000000## priced 0.00000000 0.00000000 0.00000000 0.00000000## primary 0.01946661 0.00000000 0.00000000 0.01900057## promising 0.00000000 0.00000000 0.00000000 0.00000000## promoting 0.00000000 0.02275313 0.00000000 0.01900057## proof 0.00000000 0.00000000 0.00000000 0.00000000## proportion 0.00000000 0.00000000 0.00000000 0.00000000## prosper 0.00000000 0.00000000 0.00000000 0.00000000## providence 0.01946661 0.00000000 0.01847746 0.00000000## proving 0.00000000 0.00000000 0.00000000 0.01900057## pushed 0.00000000 0.00000000 0.00000000 0.00000000## pushing 0.00000000 0.00000000 0.00000000 0.00000000## qadhafi 0.00000000 0.00000000 0.00000000 0.03800114## radicalism 0.01946661 0.00000000 0.00000000 0.00000000## raids 0.00000000 0.00000000 0.00000000 0.05700171## rallying 0.00000000 0.00000000 0.00000000 0.00000000## rancor 0.00000000 0.00000000 0.00000000 0.00000000## reasonable 0.00000000 0.04550626 0.00000000 0.00000000## received 0.00000000 0.00000000 0.00000000 0.00000000## receiving 0.00000000 0.00000000 0.01847746 0.00000000## recklessness 0.00000000 0.00000000 0.00000000 0.00000000## reckoning 0.00000000 0.00000000 0.01847746 0.00000000## recognition 0.00000000 0.00000000 0.00000000 0.00000000## reconciliation 0.00000000 0.00000000 0.00000000 0.00000000## reconstruction 0.00000000 0.00000000 0.00000000 0.00000000## recruiting 0.01946661 0.00000000 0.01847746 0.00000000## red 0.00000000 0.00000000 0.00000000 0.00000000## redesign 0.00000000 0.00000000 0.00000000 0.00000000## refighting 0.00000000 0.00000000 0.00000000 0.00000000## refugees 0.00000000 0.00000000 0.01847746 0.00000000## regard 0.00000000 0.00000000 0.00000000 0.01900057## reinvented 0.00000000 0.00000000 0.00000000 0.00000000## reinvestment 0.00000000 0.00000000 0.00000000 0.00000000## rejected 0.00000000 0.00000000 0.00000000 0.00000000## rejoin 0.00000000 0.00000000 0.00000000 0.00000000## relied 0.00000000 0.00000000 0.01847746 0.00000000## relieve 0.00000000 0.00000000 0.00000000 0.00000000## removing 0.00000000 0.00000000 0.00000000 0.00000000## remsburg 0.00000000 0.00000000 0.00000000 0.00000000## repaid 0.00000000 0.04550626 0.00000000 0.00000000## represented 0.01946661 0.00000000 0.00000000 0.00000000## researchers 0.01946661 0.00000000 0.00000000 0.00000000## resentment 0.00000000 0.00000000 0.00000000 0.00000000## resolute 0.00000000 0.00000000 0.01847746 0.00000000## resolution 0.00000000 0.00000000 0.00000000 0.00000000## resolved 0.00000000 0.00000000 0.00000000 0.00000000## resource 0.00000000 0.00000000 0.00000000 0.00000000## responded 0.00000000 0.00000000 0.00000000 0.00000000## restrictions 0.00000000 0.00000000 0.00000000 0.00000000## retired 0.01946661 0.00000000 0.00000000 0.00000000## returned 0.00000000 0.00000000 0.00000000 0.00000000## returns 0.00000000 0.02275313 0.00000000 0.00000000## reverse 0.00000000 0.00000000 0.00000000 0.00000000## reversed 0.00000000 0.00000000 0.00000000 0.00000000## richard 0.00000000 0.00000000 0.00000000 0.00000000## rieman 0.00000000 0.00000000 0.00000000 0.00000000## rigid 0.00000000 0.00000000 0.00000000 0.00000000## risen 0.00000000 0.00000000 0.01847746 0.00000000## risky 0.00000000 0.00000000 0.00000000 0.00000000## roaring 0.00000000 0.00000000 0.00000000 0.00000000## rock 0.00000000 0.00000000 0.00000000 0.00000000## rodriguez 0.00000000 0.00000000 0.00000000 0.00000000## roll 0.00000000 0.00000000 0.00000000 0.00000000## rubble 0.00000000 0.00000000 0.00000000 0.00000000## rush 0.00000000 0.00000000 0.00000000 0.00000000## sacrifices 0.00000000 0.00000000 0.00000000 0.01900057## safia 0.05839984 0.00000000 0.00000000 0.00000000## salvador 0.00000000 0.00000000 0.00000000 0.01900057## sanchez 0.00000000 0.00000000 0.00000000 0.00000000## sat 0.00000000 0.00000000 0.00000000 0.00000000## saves 0.00000000 0.00000000 0.00000000 0.00000000## scandals 0.00000000 0.00000000 0.01847746 0.01900057## schedule 0.00000000 0.00000000 0.00000000 0.01900057## sciences 0.00000000 0.00000000 0.00000000 0.00000000## scott 0.00000000 0.00000000 0.00000000 0.00000000## securing 0.00000000 0.00000000 0.00000000 0.01900057## sends 0.00000000 0.02275313 0.00000000 0.01900057## series 0.00000000 0.00000000 0.00000000 0.01900057## seriously 0.00000000 0.00000000 0.00000000 0.00000000## setbacks 0.00000000 0.00000000 0.00000000 0.00000000## settled 0.00000000 0.00000000 0.00000000 0.01900057## seven 0.00000000 0.02275313 0.00000000 0.00000000## severely 0.00000000 0.00000000 0.00000000 0.00000000## shadows 0.00000000 0.00000000 0.00000000 0.03800114## shake 0.00000000 0.00000000 0.00000000 0.01900057## she^d 0.00000000 0.00000000 0.00000000 0.00000000## she^s 0.00000000 0.00000000 0.00000000 0.00000000## shelley 0.00000000 0.00000000 0.00000000 0.00000000## shelter 0.00000000 0.00000000 0.01847746 0.00000000## shifts 0.00000000 0.00000000 0.00000000 0.00000000## shootings 0.00000000 0.00000000 0.00000000 0.00000000## shop 0.00000000 0.00000000 0.00000000 0.00000000## short-term 0.00000000 0.00000000 0.00000000 0.00000000## shrinking 0.00000000 0.00000000 0.00000000 0.00000000## sight 0.00000000 0.00000000 0.00000000 0.01900057## sights 0.00000000 0.00000000 0.00000000 0.00000000## signs 0.00000000 0.02275313 0.00000000 0.00000000## silver 0.00000000 0.00000000 0.00000000 0.00000000## similar 0.01946661 0.00000000 0.00000000 0.01900057## simplify 0.00000000 0.00000000 0.00000000 0.00000000## sits 0.00000000 0.00000000 0.00000000 0.01900057## sitting 0.00000000 0.00000000 0.00000000 0.00000000## sixty 0.00000000 0.00000000 0.00000000 0.00000000## skepticism 0.00000000 0.00000000 0.00000000 0.00000000## skin 0.00000000 0.00000000 0.01847746 0.00000000## skyrocketing 0.00000000 0.00000000 0.00000000 0.00000000## slashing 0.00000000 0.00000000 0.00000000 0.00000000## slavery 0.01946661 0.00000000 0.00000000 0.00000000## soil 0.00000000 0.00000000 0.00000000 0.01900057## solutions 0.01946661 0.00000000 0.00000000 0.00000000## somalia 0.00000000 0.00000000 0.00000000 0.00000000## sons 0.00000000 0.00000000 0.00000000 0.00000000## sought 0.00000000 0.00000000 0.01847746 0.01900057## soviet 0.00000000 0.00000000 0.01847746 0.00000000## spare 0.00000000 0.00000000 0.01847746 0.00000000## speaking 0.00000000 0.00000000 0.00000000 0.00000000## spends 0.00000000 0.02275313 0.00000000 0.00000000## sputnik 0.00000000 0.00000000 0.00000000 0.00000000## staff 0.00000000 0.00000000 0.00000000 0.00000000## stagnant 0.00000000 0.00000000 0.00000000 0.00000000## steadily 0.00000000 0.00000000 0.00000000 0.00000000## steady 0.00000000 0.00000000 0.00000000 0.00000000## steal 0.00000000 0.00000000 0.00000000 0.00000000## stepped 0.00000000 0.00000000 0.00000000 0.00000000## strain 0.00000000 0.00000000 0.00000000 0.00000000## strangers 0.00000000 0.00000000 0.01847746 0.00000000## streamline 0.00000000 0.02275313 0.00000000 0.00000000## strides 0.00000000 0.00000000 0.00000000 0.00000000## succeeding 0.00000000 0.00000000 0.00000000 0.00000000## succeeds 0.00000000 0.00000000 0.00000000 0.00000000## suffered 0.00000000 0.00000000 0.00000000 0.00000000## sums 0.00000000 0.00000000 0.01847746 0.00000000## sunday 0.01946661 0.00000000 0.00000000 0.00000000## superpower 0.00000000 0.00000000 0.00000000 0.00000000## supporters 0.00000000 0.00000000 0.00000000 0.03800114## surpluses 0.00000000 0.04550626 0.00000000 0.00000000## surrounding 0.00000000 0.00000000 0.01847746 0.00000000## sustainable 0.00000000 0.00000000 0.00000000 0.00000000## suu 0.00000000 0.00000000 0.00000000 0.00000000## symbol 0.01946661 0.00000000 0.00000000 0.00000000## takeover 0.00000000 0.00000000 0.00000000 0.00000000## talent 0.00000000 0.00000000 0.00000000 0.00000000## targeting 0.00000000 0.00000000 0.01847746 0.00000000## tax-free 0.00000000 0.00000000 0.00000000 0.01900057## teams 0.00000000 0.00000000 0.00000000 0.00000000## ted 0.00000000 0.00000000 0.00000000 0.00000000## teen 0.00000000 0.02275313 0.00000000 0.00000000## temporary- 0.00000000 0.00000000 0.00000000 0.03800114## tempting 0.00000000 0.00000000 0.00000000 0.01900057## tests 0.00000000 0.00000000 0.00000000 0.01900057## threatened 0.00000000 0.00000000 0.00000000 0.00000000## three-quarters 0.00000000 0.00000000 0.00000000 0.00000000## tirelessly 0.00000000 0.00000000 0.00000000 0.00000000## total 0.00000000 0.00000000 0.00000000 0.00000000## totalitarian 0.00000000 0.00000000 0.00000000 0.00000000## tpp 0.00000000 0.00000000 0.00000000 0.00000000## tradition 0.00000000 0.00000000 0.00000000 0.01900057## traffic 0.00000000 0.00000000 0.00000000 0.00000000## trafficking 0.00000000 0.00000000 0.00000000 0.00000000## transgender 0.00000000 0.00000000 0.00000000 0.00000000## transit 0.01946661 0.00000000 0.00000000 0.00000000## transitional 0.01946661 0.00000000 0.00000000 0.01900057## translate 0.00000000 0.00000000 0.00000000 0.00000000## tremendous 0.00000000 0.00000000 0.01847746 0.00000000## trend 0.00000000 0.00000000 0.00000000 0.00000000## tried 0.00000000 0.00000000 0.00000000 0.01900057## twenty-first 0.00000000 0.00000000 0.00000000 0.00000000## twice 0.00000000 0.02275313 0.00000000 0.00000000## typical 0.00000000 0.02275313 0.00000000 0.00000000## uncertain 0.00000000 0.00000000 0.00000000 0.00000000## understanding 0.00000000 0.00000000 0.00000000 0.00000000## unfolding 0.01946661 0.00000000 0.00000000 0.01900057## unified 0.00000000 0.00000000 0.00000000 0.00000000## unique 0.00000000 0.00000000 0.00000000 0.00000000## untold 0.00000000 0.00000000 0.01847746 0.00000000## unwarranted 0.00000000 0.00000000 0.00000000 0.00000000## update 0.03893323 0.00000000 0.00000000 0.00000000## upholding 0.00000000 0.00000000 0.00000000 0.00000000## upward 0.00000000 0.00000000 0.00000000 0.00000000## usual 0.00000000 0.00000000 0.00000000 0.00000000## va 0.00000000 0.00000000 0.00000000 0.00000000## vaccines 0.00000000 0.00000000 0.01847746 0.00000000## vehicles 0.00000000 0.00000000 0.00000000 0.00000000## vicious 0.00000000 0.00000000 0.00000000 0.00000000## villages 0.00000000 0.00000000 0.01847746 0.00000000## visiting 0.00000000 0.00000000 0.01847746 0.00000000## volunteer 0.00000000 0.00000000 0.00000000 0.00000000## volunteered 0.00000000 0.00000000 0.00000000 0.00000000## voter 0.00000000 0.00000000 0.00000000 0.00000000## waited 0.00000000 0.00000000 0.01847746 0.00000000## walked 0.00000000 0.00000000 0.00000000 0.00000000## walks 0.00000000 0.00000000 0.00000000 0.00000000## warmest 0.00000000 0.00000000 0.00000000 0.00000000## weatherization 0.00000000 0.00000000 0.00000000 0.00000000## welcoming 0.00000000 0.02275313 0.01847746 0.00000000## weren^t 0.00000000 0.00000000 0.00000000 0.00000000## wesley 0.00000000 0.00000000 0.00000000 0.00000000## whenever 0.00000000 0.00000000 0.01847746 0.00000000## witnessed 0.00000000 0.00000000 0.00000000 0.00000000## wonderful 0.00000000 0.02275313 0.00000000 0.00000000## writing 0.00000000 0.02275313 0.00000000 0.00000000## yield 0.00000000 0.02275313 0.00000000 0.00000000## youngest 0.00000000 0.00000000 0.00000000 0.01900057## yourself 0.00000000 0.00000000 0.00000000 0.01900057## zero 0.00000000 0.00000000 0.00000000 0.00000000## abandoning 0.00000000 0.00000000 0.00000000 0.00000000## abess 0.00000000 0.00000000 0.00000000 0.00000000## abide 0.00000000 0.00000000 0.00000000 0.00000000## abusive 0.00000000 0.00000000 0.00000000 0.00000000## accident 0.00000000 0.00000000 0.00000000 0.00000000## according 0.00000000 0.00000000 0.00000000 0.00000000## acid 0.00000000 0.00000000 0.01847746 0.00000000## actively 0.00000000 0.00000000 0.00000000 0.00000000## adapt 0.00000000 0.00000000 0.00000000 0.00000000## adhere 0.00000000 0.00000000 0.00000000 0.00000000## adjusted 0.00000000 0.00000000 0.00000000 0.00000000## adjustments 0.00000000 0.00000000 0.00000000 0.00000000## administrative 0.00000000 0.00000000 0.00000000 0.00000000## admit 0.00000000 0.00000000 0.00000000 0.00000000## adoption 0.00000000 0.00000000 0.00000000 0.00000000## advancement 0.01946661 0.00000000 0.00000000 0.00000000## advantages 0.00000000 0.02275313 0.00000000 0.00000000## adversaries 0.00000000 0.00000000 0.00000000 0.00000000## advice 0.00000000 0.00000000 0.00000000 0.00000000## advisory 0.00000000 0.00000000 0.00000000 0.00000000## advocates 0.01946661 0.00000000 0.00000000 0.00000000## afloat 0.01946661 0.00000000 0.00000000 0.00000000## afraid 0.01946661 0.00000000 0.00000000 0.00000000## agent 0.00000000 0.00000000 0.01847746 0.00000000## agrees 0.00000000 0.00000000 0.00000000 0.00000000## agricultural 0.00000000 0.00000000 0.00000000 0.00000000## agriculture 0.00000000 0.00000000 0.00000000 0.00000000## ahmed 0.00000000 0.00000000 0.00000000 0.00000000## aigner-clark 0.00000000 0.00000000 0.00000000 0.00000000## aims 0.00000000 0.00000000 0.00000000 0.01900057## airplane 0.00000000 0.00000000 0.00000000 0.00000000## airstrikes 0.00000000 0.00000000 0.00000000 0.00000000## al- 0.00000000 0.00000000 0.00000000 0.01900057## al-suhail 0.03893323 0.00000000 0.00000000 0.00000000## alabama 0.00000000 0.00000000 0.00000000 0.00000000## alarm 0.00000000 0.00000000 0.01847746 0.00000000## allah 0.00000000 0.00000000 0.00000000 0.00000000## allawi 0.03893323 0.00000000 0.00000000 0.00000000## aluminum 0.00000000 0.00000000 0.01847746 0.00000000## amendment 0.01946661 0.00000000 0.00000000 0.00000000## ample 0.00000000 0.00000000 0.00000000 0.00000000## anbar 0.00000000 0.00000000 0.00000000 0.00000000## angry 0.00000000 0.00000000 0.00000000 0.00000000## anniversary 0.00000000 0.00000000 0.00000000 0.00000000## antidrug 0.00000000 0.00000000 0.01847746 0.00000000## antiretroviral 0.00000000 0.00000000 0.01847746 0.00000000## anxieties 0.00000000 0.00000000 0.00000000 0.00000000## anybody 0.00000000 0.00000000 0.00000000 0.00000000## appeal 0.00000000 0.00000000 0.00000000 0.00000000## appeared 0.00000000 0.00000000 0.01847746 0.00000000## appetite 0.01946661 0.00000000 0.00000000 0.00000000## apple 0.00000000 0.00000000 0.00000000 0.00000000## application 0.00000000 0.00000000 0.00000000 0.00000000## applying 0.01946661 0.00000000 0.00000000 0.00000000## apprenticeships 0.00000000 0.00000000 0.00000000 0.00000000## appropriations 0.00000000 0.00000000 0.00000000 0.00000000## approve 0.00000000 0.00000000 0.00000000 0.00000000## approving 0.00000000 0.00000000 0.00000000 0.00000000## april 0.00000000 0.00000000 0.00000000 0.00000000## arabic 0.00000000 0.00000000 0.00000000 0.01900057## arc 0.01946661 0.00000000 0.00000000 0.00000000## arming 0.00000000 0.00000000 0.00000000 0.00000000## asad 0.00000000 0.00000000 0.00000000 0.00000000## aspiring 0.00000000 0.00000000 0.00000000 0.00000000## assemble 0.00000000 0.00000000 0.00000000 0.00000000## assets 0.00000000 0.00000000 0.00000000 0.01900057## assistant 0.00000000 0.00000000 0.00000000 0.00000000## assisting 0.00000000 0.00000000 0.00000000 0.00000000## associate 0.01946661 0.00000000 0.00000000 0.00000000## assure 0.00000000 0.00000000 0.00000000 0.00000000## assured 0.00000000 0.00000000 0.00000000 0.00000000## asthma 0.00000000 0.00000000 0.00000000 0.00000000## atrocity 0.00000000 0.00000000 0.00000000 0.00000000## attend 0.00000000 0.00000000 0.00000000 0.00000000## attractive 0.00000000 0.00000000 0.00000000 0.00000000## attracts 0.00000000 0.00000000 0.00000000 0.00000000## automaker 0.00000000 0.00000000 0.00000000 0.00000000## autrey 0.00000000 0.00000000 0.00000000 0.00000000## avert 0.01946661 0.00000000 0.00000000 0.00000000## awaken 0.00000000 0.02275313 0.00000000 0.00000000## awareness 0.00000000 0.00000000 0.01847746 0.00000000## ba 0.00000000 0.00000000 0.00000000 0.01900057## backlog 0.00000000 0.00000000 0.00000000 0.00000000## backs 0.00000000 0.00000000 0.00000000 0.00000000## bailey 0.00000000 0.00000000 0.00000000 0.00000000## ban 0.00000000 0.00000000 0.00000000 0.00000000## banned 0.00000000 0.00000000 0.01847746 0.00000000## banning 0.00000000 0.00000000 0.01847746 0.00000000## bans 0.00000000 0.00000000 0.00000000 0.00000000## bargaining 0.00000000 0.00000000 0.00000000 0.00000000## barra 0.00000000 0.00000000 0.00000000 0.00000000## baseball 0.00000000 0.02275313 0.00000000 0.01900057## bashar 0.00000000 0.00000000 0.00000000 0.00000000## basics 0.00000000 0.00000000 0.00000000 0.03800114## basis 0.00000000 0.00000000 0.00000000 0.00000000## baton 0.00000000 0.00000000 0.01847746 0.00000000## beach 0.00000000 0.00000000 0.00000000 0.00000000## beacon 0.00000000 0.00000000 0.00000000 0.00000000## beamer 0.00000000 0.00000000 0.00000000 0.00000000## bedrock 0.00000000 0.00000000 0.00000000 0.00000000## beijing 0.00000000 0.00000000 0.00000000 0.00000000## belarus 0.00000000 0.00000000 0.00000000 0.00000000## ben^s 0.00000000 0.00000000 0.00000000 0.00000000## benchmark 0.00000000 0.00000000 0.01847746 0.00000000## beneficiary 0.03893323 0.00000000 0.00000000 0.00000000## benefited 0.00000000 0.00000000 0.00000000 0.00000000## berkshire 0.00000000 0.00000000 0.00000000 0.00000000## berra 0.00000000 0.04550626 0.00000000 0.00000000## beshear 0.00000000 0.00000000 0.00000000 0.00000000## bethea 0.00000000 0.00000000 0.00000000 0.00000000## bets 0.00000000 0.00000000 0.00000000 0.00000000## billionaires 0.00000000 0.00000000 0.00000000 0.00000000## binding 0.00000000 0.00000000 0.01847746 0.00000000## bioshield 0.00000000 0.00000000 0.01847746 0.00000000## biotechnology 0.00000000 0.00000000 0.00000000 0.01900057## bite 0.00000000 0.00000000 0.00000000 0.00000000## bitter 0.00000000 0.00000000 0.01847746 0.00000000## blackmail 0.00000000 0.00000000 0.01847746 0.00000000## blackmailed 0.00000000 0.00000000 0.01847746 0.00000000## blessings 0.00000000 0.02275313 0.00000000 0.00000000## blocking 0.00000000 0.00000000 0.01847746 0.00000000## blue 0.00000000 0.00000000 0.00000000 0.00000000## boards 0.00000000 0.00000000 0.00000000 0.00000000## boggs 0.00000000 0.00000000 0.00000000 0.00000000## bombings 0.00000000 0.00000000 0.01847746 0.00000000## bonuses 0.00000000 0.00000000 0.00000000 0.00000000## books 0.00000000 0.00000000 0.00000000 0.00000000## boomers 0.00000000 0.00000000 0.00000000 0.00000000## boosted 0.00000000 0.00000000 0.00000000 0.00000000## boots 0.00000000 0.00000000 0.00000000 0.00000000## borrowing 0.01946661 0.00000000 0.00000000 0.00000000## bosanek 0.00000000 0.00000000 0.00000000 0.00000000## bounce 0.00000000 0.00000000 0.00000000 0.00000000## bowles 0.00000000 0.00000000 0.00000000 0.00000000## box 0.01946661 0.00000000 0.00000000 0.00000000## bray 0.00000000 0.00000000 0.00000000 0.00000000## breast 0.00000000 0.00000000 0.00000000 0.00000000## breaux 0.01946661 0.02275313 0.00000000 0.00000000## brighter 0.00000000 0.00000000 0.00000000 0.00000000## brink 0.00000000 0.00000000 0.00000000 0.00000000## broad-based 0.00000000 0.00000000 0.00000000 0.00000000## bruce 0.00000000 0.00000000 0.00000000 0.00000000## brutality 0.00000000 0.00000000 0.00000000 0.00000000## budged 0.00000000 0.00000000 0.00000000 0.00000000## buffalo 0.00000000 0.00000000 0.01847746 0.00000000## builders 0.00000000 0.00000000 0.00000000 0.00000000## bureau 0.00000000 0.00000000 0.00000000 0.00000000## bureaucracy 0.00000000 0.00000000 0.00000000 0.00000000## bureaucrat 0.00000000 0.00000000 0.00000000 0.00000000## buyers 0.00000000 0.00000000 0.00000000 0.00000000## cable 0.00000000 0.00000000 0.00000000 0.00000000## cairo 0.00000000 0.00000000 0.00000000 0.00000000## calculated 0.01946661 0.02275313 0.00000000 0.00000000## camp 0.00000000 0.00000000 0.00000000 0.00000000## canal 0.00000000 0.00000000 0.00000000 0.00000000## candor 0.00000000 0.00000000 0.00000000 0.00000000## canister 0.00000000 0.00000000 0.01847746 0.00000000## capability 0.00000000 0.00000000 0.00000000 0.00000000## caribbean 0.00000000 0.00000000 0.01847746 0.00000000## caroline 0.00000000 0.00000000 0.00000000 0.00000000## carries 0.00000000 0.00000000 0.01847746 0.00000000## casualties 0.00000000 0.00000000 0.00000000 0.00000000## casualty 0.00000000 0.00000000 0.01847746 0.00000000## catch 0.00000000 0.00000000 0.00000000 0.01900057## category 0.00000000 0.00000000 0.00000000 0.00000000## caused 0.00000000 0.00000000 0.00000000 0.00000000## cedar 0.00000000 0.00000000 0.00000000 0.00000000## certainty 0.00000000 0.00000000 0.00000000 0.00000000## chairman 0.00000000 0.02275313 0.00000000 0.00000000## challenging 0.00000000 0.00000000 0.00000000 0.00000000## charity 0.00000000 0.02275313 0.00000000 0.00000000## charlotte 0.00000000 0.00000000 0.00000000 0.00000000## cheapest 0.00000000 0.00000000 0.00000000 0.00000000## chiefs 0.00000000 0.00000000 0.00000000 0.00000000## child^s 0.00000000 0.00000000 0.00000000 0.00000000## chinese 0.00000000 0.00000000 0.00000000 0.00000000## chute 0.00000000 0.00000000 0.00000000 0.00000000## cia 0.00000000 0.00000000 0.01847746 0.00000000## circumstance 0.00000000 0.00000000 0.00000000 0.00000000## civic 0.01946661 0.00000000 0.00000000 0.00000000## civility 0.00000000 0.02275313 0.00000000 0.00000000## clarity 0.00000000 0.00000000 0.01847746 0.00000000## classmates 0.00000000 0.00000000 0.00000000 0.00000000## client 0.00000000 0.00000000 0.00000000 0.00000000## co 0.00000000 0.00000000 0.00000000 0.00000000## coach 0.00000000 0.00000000 0.00000000 0.00000000## coached 0.00000000 0.00000000 0.01847746 0.00000000## coaches 0.01946661 0.00000000 0.00000000 0.01900057## coburn 0.00000000 0.00000000 0.00000000 0.00000000## collapsed 0.00000000 0.00000000 0.00000000 0.00000000## colleague 0.00000000 0.00000000 0.00000000 0.00000000## collected 0.00000000 0.02275313 0.00000000 0.00000000## colorado 0.00000000 0.00000000 0.00000000 0.00000000## comfortable 0.00000000 0.02275313 0.00000000 0.00000000## companionship 0.00000000 0.00000000 0.01847746 0.00000000## compare 0.00000000 0.00000000 0.00000000 0.00000000## computers 0.00000000 0.00000000 0.00000000 0.00000000## comrades 0.00000000 0.00000000 0.00000000 0.00000000## concentrate 0.00000000 0.00000000 0.00000000 0.00000000## concessions 0.00000000 0.00000000 0.01847746 0.00000000## conclusion 0.00000000 0.00000000 0.00000000 0.00000000## concrete 0.00000000 0.00000000 0.00000000 0.00000000## condemn 0.00000000 0.00000000 0.00000000 0.00000000## conducting 0.00000000 0.00000000 0.00000000 0.01900057## confessions 0.00000000 0.00000000 0.01847746 0.00000000## confirmed 0.00000000 0.00000000 0.01847746 0.00000000## confound 0.00000000 0.00000000 0.01847746 0.00000000## confusing 0.00000000 0.00000000 0.00000000 0.00000000## congressmen 0.00000000 0.00000000 0.00000000 0.00000000## conrad 0.00000000 0.00000000 0.00000000 0.00000000## consequential 0.00000000 0.00000000 0.00000000 0.00000000## conspiracies 0.00000000 0.00000000 0.01847746 0.00000000## constructing 0.00000000 0.00000000 0.00000000 0.00000000## consult 0.00000000 0.00000000 0.01847746 0.00000000## consultation 0.01946661 0.00000000 0.00000000 0.00000000## containment 0.00000000 0.00000000 0.00000000 0.00000000## contempt 0.00000000 0.00000000 0.01847746 0.00000000## contest 0.00000000 0.00000000 0.01847746 0.00000000## contract 0.00000000 0.00000000 0.00000000 0.01900057## contrary 0.00000000 0.00000000 0.01847746 0.00000000## contributing 0.00000000 0.00000000 0.00000000 0.00000000## controlled 0.00000000 0.00000000 0.00000000 0.00000000## controls 0.00000000 0.00000000 0.00000000 0.00000000## controversies 0.00000000 0.00000000 0.00000000 0.00000000## conversation 0.00000000 0.00000000 0.00000000 0.00000000## convince 0.01946661 0.00000000 0.00000000 0.00000000## corrosive 0.00000000 0.00000000 0.00000000 0.00000000## count 0.00000000 0.00000000 0.00000000 0.00000000## counted 0.00000000 0.02275313 0.00000000 0.00000000## couple 0.00000000 0.02275313 0.00000000 0.00000000## covering 0.00000000 0.00000000 0.00000000 0.00000000## crate 0.00000000 0.00000000 0.01847746 0.00000000## credibility 0.00000000 0.00000000 0.00000000 0.00000000## credibly 0.00000000 0.00000000 0.01847746 0.00000000## creditworthiness 0.00000000 0.00000000 0.00000000 0.00000000## crippling 0.00000000 0.00000000 0.00000000 0.00000000## crises 0.00000000 0.00000000 0.00000000 0.00000000## crops 0.00000000 0.00000000 0.00000000 0.00000000## cross 0.00000000 0.00000000 0.00000000 0.01900057## crowd 0.00000000 0.00000000 0.00000000 0.00000000## cruise 0.00000000 0.00000000 0.01847746 0.00000000## crumbling 0.00000000 0.00000000 0.00000000 0.00000000## crushing 0.00000000 0.00000000 0.00000000 0.00000000## cuban 0.00000000 0.00000000 0.00000000 0.00000000## cultures 0.01946661 0.00000000 0.00000000 0.01900057## cures 0.01946661 0.00000000 0.00000000 0.00000000## curran 0.00000000 0.00000000 0.00000000 0.00000000## curve 0.00000000 0.00000000 0.00000000 0.00000000## cutting-edge 0.00000000 0.00000000 0.00000000 0.00000000## cycle 0.00000000 0.00000000 0.00000000 0.00000000## cynicism 0.00000000 0.00000000 0.00000000 0.00000000## cynics 0.00000000 0.00000000 0.00000000 0.00000000## damaged 0.00000000 0.00000000 0.00000000 0.00000000## darkness 0.00000000 0.00000000 0.00000000 0.00000000## dates 0.01946661 0.00000000 0.00000000 0.00000000## david 0.00000000 0.00000000 0.00000000 0.01900057## day^s 0.00000000 0.00000000 0.00000000 0.00000000## de 0.00000000 0.00000000 0.00000000 0.00000000## dead 0.00000000 0.00000000 0.01847746 0.00000000## deadly 0.00000000 0.00000000 0.01847746 0.00000000## dear 0.00000000 0.00000000 0.00000000 0.01900057## debated 0.00000000 0.00000000 0.00000000 0.00000000## debbie 0.00000000 0.00000000 0.00000000 0.00000000## december 0.00000000 0.00000000 0.00000000 0.00000000## decides 0.00000000 0.00000000 0.00000000 0.00000000## declaration 0.00000000 0.00000000 0.01847746 0.00000000## declares 0.00000000 0.00000000 0.00000000 0.01900057## declines 0.00000000 0.00000000 0.01847746 0.00000000## deduct 0.00000000 0.02275313 0.00000000 0.01900057## deeds 0.00000000 0.00000000 0.00000000 0.00000000## defectors 0.00000000 0.00000000 0.01847746 0.00000000## defended 0.00000000 0.00000000 0.01847746 0.00000000## defenders 0.01946661 0.00000000 0.00000000 0.01900057## defending 0.00000000 0.00000000 0.00000000 0.00000000## defensive 0.00000000 0.00000000 0.00000000 0.00000000## defines 0.00000000 0.00000000 0.00000000 0.01900057## degrees 0.00000000 0.00000000 0.00000000 0.00000000## delayed 0.00000000 0.00000000 0.00000000 0.00000000## demonstrate 0.01946661 0.00000000 0.00000000 0.00000000## denver 0.00000000 0.00000000 0.00000000 0.00000000## dependents 0.00000000 0.00000000 0.00000000 0.00000000## deportation 0.00000000 0.00000000 0.00000000 0.00000000## deposits 0.00000000 0.00000000 0.00000000 0.00000000## designs 0.00000000 0.00000000 0.01847746 0.00000000## desperately 0.00000000 0.00000000 0.00000000 0.00000000## despise 0.00000000 0.00000000 0.00000000 0.00000000## determining 0.01946661 0.00000000 0.00000000 0.00000000## devaney 0.00000000 0.00000000 0.00000000 0.00000000## developed 0.00000000 0.02275313 0.00000000 0.00000000## diabetes 0.00000000 0.00000000 0.00000000 0.01900057## diagnosis 0.00000000 0.00000000 0.01847746 0.00000000## dictate 0.00000000 0.00000000 0.00000000 0.00000000## dictates 0.00000000 0.00000000 0.01847746 0.00000000## dictators 0.00000000 0.00000000 0.00000000 0.01900057## difficulties 0.00000000 0.00000000 0.01847746 0.00000000## dingell 0.00000000 0.00000000 0.00000000 0.00000000## dioxide 0.00000000 0.00000000 0.00000000 0.00000000## dirtier 0.00000000 0.00000000 0.00000000 0.00000000## disadvantage 0.00000000 0.00000000 0.00000000 0.00000000## disagreements 0.00000000 0.00000000 0.00000000 0.00000000## disappear 0.00000000 0.00000000 0.00000000 0.00000000## discarded 0.00000000 0.00000000 0.00000000 0.00000000## disclosed 0.00000000 0.00000000 0.01847746 0.00000000## discourage 0.00000000 0.02275313 0.00000000 0.00000000## discouraged 0.00000000 0.00000000 0.00000000 0.00000000## discovered 0.00000000 0.00000000 0.00000000 0.00000000## discriminate 0.00000000 0.02275313 0.00000000 0.01900057## discrimination 0.00000000 0.00000000 0.00000000 0.00000000## disfigured 0.00000000 0.00000000 0.01847746 0.00000000## displaced 0.00000000 0.00000000 0.00000000 0.00000000## disputes 0.00000000 0.00000000 0.00000000 0.00000000## disrupted 0.00000000 0.00000000 0.00000000 0.00000000## disruption 0.00000000 0.00000000 0.00000000 0.00000000## district 0.00000000 0.02275313 0.00000000 0.00000000## diversify 0.00000000 0.00000000 0.00000000 0.00000000## divide 0.00000000 0.00000000 0.00000000 0.00000000## dividend 0.00000000 0.00000000 0.01847746 0.00000000## divides 0.00000000 0.02275313 0.00000000 0.00000000## divisive 0.00000000 0.00000000 0.00000000 0.00000000## dna 0.01946661 0.00000000 0.00000000 0.00000000## doctor-patient 0.00000000 0.00000000 0.00000000 0.01900057## dole 0.00000000 0.00000000 0.00000000 0.00000000## dominated 0.00000000 0.00000000 0.00000000 0.00000000## domination 0.00000000 0.00000000 0.01847746 0.00000000## donna 0.00000000 0.00000000 0.00000000 0.00000000## doses 0.00000000 0.00000000 0.01847746 0.00000000## download 0.00000000 0.00000000 0.00000000 0.00000000## dr 0.00000000 0.00000000 0.00000000 0.00000000## dragged 0.00000000 0.00000000 0.00000000 0.00000000## drastic 0.00000000 0.02275313 0.00000000 0.00000000## dread 0.00000000 0.00000000 0.01847746 0.00000000## dreaming 0.00000000 0.00000000 0.00000000 0.00000000## drills 0.00000000 0.00000000 0.01847746 0.00000000## dripping 0.00000000 0.00000000 0.01847746 0.00000000## drones 0.00000000 0.00000000 0.00000000 0.00000000## dropping 0.00000000 0.00000000 0.00000000 0.00000000## drought 0.00000000 0.00000000 0.00000000 0.00000000## droughts 0.00000000 0.00000000 0.00000000 0.00000000## due 0.00000000 0.00000000 0.00000000 0.00000000## durable 0.00000000 0.00000000 0.00000000 0.00000000## duration 0.00000000 0.00000000 0.01847746 0.00000000## dying 0.01946661 0.00000000 0.00000000 0.00000000## e-mails 0.00000000 0.00000000 0.00000000 0.00000000## earl 0.00000000 0.00000000 0.00000000 0.00000000## earliest 0.00000000 0.00000000 0.00000000 0.00000000## earned-income 0.00000000 0.00000000 0.00000000 0.00000000## earthquake 0.00000000 0.00000000 0.00000000 0.00000000## eased 0.00000000 0.00000000 0.00000000 0.00000000## easily 0.00000000 0.00000000 0.01847746 0.00000000## eaten 0.01946661 0.00000000 0.00000000 0.00000000## economies 0.00000000 0.00000000 0.00000000 0.00000000## edison 0.00000000 0.00000000 0.00000000 0.00000000## educating 0.00000000 0.00000000 0.00000000 0.00000000## effectively 0.00000000 0.00000000 0.00000000 0.00000000## eight 0.00000000 0.02275313 0.00000000 0.00000000## eighth 0.00000000 0.00000000 0.00000000 0.00000000## elaborate 0.00000000 0.00000000 0.01847746 0.00000000## electing 0.01946661 0.00000000 0.00000000 0.00000000## eliminates 0.01946661 0.00000000 0.00000000 0.00000000## else^s 0.00000000 0.00000000 0.00000000 0.00000000## embargo 0.00000000 0.00000000 0.00000000 0.00000000## emphasis 0.00000000 0.00000000 0.00000000 0.00000000## employee 0.00000000 0.00000000 0.00000000 0.00000000## enact 0.00000000 0.00000000 0.00000000 0.00000000## endured 0.00000000 0.00000000 0.00000000 0.00000000## endures 0.00000000 0.00000000 0.00000000 0.00000000## enemy^s 0.00000000 0.00000000 0.00000000 0.00000000## energy-efficient 0.00000000 0.00000000 0.00000000 0.00000000## enforced 0.00000000 0.00000000 0.00000000 0.01900057## enrich 0.00000000 0.00000000 0.00000000 0.00000000## enrolled 0.00000000 0.00000000 0.00000000 0.00000000## enshrined 0.00000000 0.00000000 0.00000000 0.00000000## entered 0.00000000 0.00000000 0.00000000 0.00000000## enthusiasm 0.01946661 0.00000000 0.00000000 0.00000000## entrenched 0.00000000 0.00000000 0.00000000 0.00000000## entrepreneurship 0.00000000 0.00000000 0.00000000 0.00000000## entry 0.00000000 0.00000000 0.01847746 0.00000000## environmentally 0.01946661 0.00000000 0.00000000 0.00000000## equivalent 0.00000000 0.00000000 0.00000000 0.00000000## eradicate 0.00000000 0.00000000 0.00000000 0.00000000## erskine 0.00000000 0.00000000 0.00000000 0.00000000## escalating 0.00000000 0.00000000 0.00000000 0.00000000## estimate 0.00000000 0.00000000 0.01847746 0.00000000## estimates 0.00000000 0.02275313 0.00000000 0.00000000## ethic 0.00000000 0.00000000 0.00000000 0.00000000## evade 0.00000000 0.00000000 0.01847746 0.00000000## event 0.00000000 0.00000000 0.00000000 0.00000000## everyone^s 0.00000000 0.00000000 0.00000000 0.00000000## evolving 0.00000000 0.00000000 0.00000000 0.00000000## examine 0.01946661 0.00000000 0.00000000 0.00000000## excel 0.00000000 0.00000000 0.00000000 0.00000000## exception 0.00000000 0.00000000 0.00000000 0.00000000## exchanges 0.00000000 0.00000000 0.00000000 0.00000000## excluded 0.00000000 0.00000000 0.00000000 0.00000000## excuses 0.00000000 0.00000000 0.00000000 0.00000000## exhaust 0.00000000 0.00000000 0.01847746 0.00000000## exists 0.00000000 0.02275313 0.00000000 0.00000000## expands 0.00000000 0.02275313 0.00000000 0.00000000## expeditionary 0.00000000 0.00000000 0.00000000 0.00000000## expelling 0.00000000 0.00000000 0.00000000 0.00000000## experiment 0.00000000 0.00000000 0.01847746 0.00000000## explained 0.00000000 0.00000000 0.01847746 0.00000000## explaining 0.00000000 0.00000000 0.00000000 0.00000000## explanation 0.00000000 0.00000000 0.01847746 0.00000000## exploited 0.00000000 0.00000000 0.00000000 0.00000000## exploration 0.00000000 0.00000000 0.00000000 0.00000000## explore 0.00000000 0.00000000 0.00000000 0.00000000## exporters 0.00000000 0.00000000 0.00000000 0.00000000## exposed 0.00000000 0.00000000 0.00000000 0.00000000## extended 0.00000000 0.00000000 0.00000000 0.00000000## extends 0.00000000 0.00000000 0.00000000 0.00000000## extension 0.00000000 0.00000000 0.00000000 0.00000000## eye 0.00000000 0.00000000 0.00000000 0.00000000## eyed 0.00000000 0.00000000 0.00000000 0.00000000## facility 0.00000000 0.00000000 0.00000000 0.00000000## fails 0.00000000 0.00000000 0.00000000 0.00000000## fairest 0.00000000 0.00000000 0.01847746 0.00000000## fairly 0.00000000 0.00000000 0.00000000 0.00000000## fallujah 0.01946661 0.00000000 0.00000000 0.00000000## famine 0.00000000 0.00000000 0.00000000 0.00000000## fanfare 0.00000000 0.00000000 0.00000000 0.00000000## far-reaching 0.00000000 0.02275313 0.00000000 0.00000000## farmer 0.00000000 0.00000000 0.00000000 0.00000000## fatherless 0.00000000 0.00000000 0.01847746 0.00000000## favorite 0.00000000 0.00000000 0.00000000 0.00000000## fierce 0.00000000 0.00000000 0.00000000 0.00000000## fiercely 0.00000000 0.00000000 0.00000000 0.00000000## fifty 0.00000000 0.00000000 0.00000000 0.00000000## fights 0.00000000 0.00000000 0.01847746 0.00000000## financed 0.00000000 0.00000000 0.00000000 0.00000000## fingerprints 0.00000000 0.00000000 0.01847746 0.00000000## fingers 0.00000000 0.00000000 0.00000000 0.00000000## finished 0.00000000 0.00000000 0.00000000 0.00000000## finishing 0.00000000 0.00000000 0.00000000 0.00000000## fires 0.00000000 0.00000000 0.01847746 0.00000000## firmly 0.00000000 0.02275313 0.00000000 0.00000000## firms 0.00000000 0.00000000 0.00000000 0.00000000## first-class 0.00000000 0.00000000 0.00000000 0.00000000## first-time 0.00000000 0.00000000 0.00000000 0.00000000## fiscally 0.03893323 0.00000000 0.00000000 0.00000000## fisher 0.00000000 0.00000000 0.00000000 0.00000000## fits 0.00000000 0.00000000 0.00000000 0.03800114## flags 0.00000000 0.00000000 0.00000000 0.00000000## flexible 0.01946661 0.00000000 0.00000000 0.00000000## floor 0.00000000 0.00000000 0.00000000 0.00000000## florida 0.00000000 0.00000000 0.00000000 0.00000000## following 0.00000000 0.00000000 0.00000000 0.00000000## forgiven 0.00000000 0.00000000 0.00000000 0.00000000## fork 0.00000000 0.04550626 0.00000000 0.00000000## forsyth 0.00000000 0.00000000 0.00000000 0.00000000## fortunately 0.00000000 0.00000000 0.00000000 0.00000000## fossil 0.00000000 0.00000000 0.00000000 0.00000000## foundations 0.00000000 0.00000000 0.00000000 0.00000000## founded 0.00000000 0.00000000 0.00000000 0.01900057## foy 0.00000000 0.00000000 0.00000000 0.00000000## fragile 0.00000000 0.00000000 0.00000000 0.00000000## freely 0.00000000 0.00000000 0.00000000 0.00000000## friday 0.00000000 0.00000000 0.00000000 0.00000000## fringe 0.00000000 0.00000000 0.00000000 0.00000000## frontline 0.01946661 0.00000000 0.00000000 0.00000000## frozen 0.00000000 0.00000000 0.00000000 0.00000000## frustrated 0.00000000 0.00000000 0.00000000 0.00000000## frustrating 0.00000000 0.00000000 0.00000000 0.00000000## fuel-efficient 0.00000000 0.00000000 0.00000000 0.00000000## fumes 0.00000000 0.00000000 0.01847746 0.00000000## gabby 0.00000000 0.00000000 0.00000000 0.00000000## gaining 0.00000000 0.00000000 0.01847746 0.00000000## gallon 0.00000000 0.00000000 0.00000000 0.00000000## gallons 0.00000000 0.00000000 0.00000000 0.00000000## gender 0.00000000 0.00000000 0.00000000 0.00000000## generals 0.00000000 0.00000000 0.00000000 0.00000000## generational 0.01946661 0.00000000 0.00000000 0.00000000## genocide 0.00000000 0.00000000 0.00000000 0.00000000## genome 0.00000000 0.00000000 0.00000000 0.00000000## georgetown 0.00000000 0.00000000 0.00000000 0.00000000## germ 0.00000000 0.00000000 0.01847746 0.00000000## gibraltar 0.00000000 0.00000000 0.01847746 0.00000000## gitmo 0.00000000 0.00000000 0.00000000 0.00000000## giuliani 0.00000000 0.00000000 0.00000000 0.00000000## giveaways 0.00000000 0.00000000 0.00000000 0.00000000## glad 0.00000000 0.00000000 0.00000000 0.00000000## god-given 0.00000000 0.00000000 0.00000000 0.00000000## gotten 0.00000000 0.00000000 0.00000000 0.00000000## governance 0.00000000 0.00000000 0.00000000 0.00000000## graders 0.00000000 0.00000000 0.00000000 0.01900057## graduating 0.00000000 0.00000000 0.00000000 0.00000000## grandmother 0.00000000 0.00000000 0.00000000 0.00000000## grassley 0.00000000 0.00000000 0.00000000 0.00000000## grassroots 0.00000000 0.00000000 0.00000000 0.01900057## gray 0.03893323 0.00000000 0.00000000 0.00000000## greenhouse 0.00000000 0.00000000 0.00000000 0.00000000## gregg 0.00000000 0.00000000 0.00000000 0.00000000## gridlock 0.00000000 0.00000000 0.00000000 0.00000000## grocery 0.00000000 0.02275313 0.00000000 0.00000000## grueling 0.00000000 0.00000000 0.00000000 0.00000000## guaranteeing 0.00000000 0.00000000 0.00000000 0.01900057## guess 0.00000000 0.00000000 0.00000000 0.00000000## guidance 0.00000000 0.00000000 0.01847746 0.00000000## guides 0.00000000 0.00000000 0.00000000 0.01900057## guiding 0.01946661 0.00000000 0.00000000 0.00000000## gut 0.00000000 0.00000000 0.00000000 0.00000000## hadiya 0.00000000 0.00000000 0.00000000 0.00000000## hadn^t 0.00000000 0.00000000 0.00000000 0.00000000## halls 0.00000000 0.00000000 0.00000000 0.00000000## halt 0.00000000 0.00000000 0.00000000 0.00000000## halted 0.00000000 0.00000000 0.00000000 0.00000000## hamas 0.00000000 0.00000000 0.00000000 0.00000000## hambali 0.00000000 0.00000000 0.00000000 0.03800114## hamburg 0.00000000 0.00000000 0.01847746 0.00000000## hamid 0.00000000 0.00000000 0.00000000 0.00000000## handful 0.00000000 0.00000000 0.00000000 0.00000000## hands-on 0.00000000 0.00000000 0.00000000 0.00000000## hardships 0.00000000 0.00000000 0.00000000 0.00000000## harkin 0.00000000 0.00000000 0.00000000 0.00000000## hathaway 0.00000000 0.00000000 0.00000000 0.00000000## haul 0.00000000 0.00000000 0.00000000 0.01900057## head 0.00000000 0.02275313 0.00000000 0.00000000## headlines 0.00000000 0.00000000 0.00000000 0.00000000## healed 0.00000000 0.00000000 0.01847746 0.00000000## heavy 0.00000000 0.00000000 0.00000000 0.00000000## height 0.00000000 0.00000000 0.00000000 0.00000000## heppner 0.00000000 0.00000000 0.00000000 0.00000000## hesitation 0.00000000 0.00000000 0.01847746 0.00000000## high-paying 0.00000000 0.00000000 0.00000000 0.00000000## high-strength 0.00000000 0.00000000 0.01847746 0.00000000## high-wage 0.00000000 0.00000000 0.00000000 0.00000000## highly 0.00000000 0.00000000 0.00000000 0.00000000## hillary 0.00000000 0.00000000 0.00000000 0.00000000## hills 0.00000000 0.00000000 0.00000000 0.00000000## hinder 0.00000000 0.02275313 0.00000000 0.00000000## hired 0.00000000 0.00000000 0.00000000 0.00000000## hitlerism 0.00000000 0.00000000 0.01847746 0.00000000## hmos 0.00000000 0.00000000 0.01847746 0.00000000## holiness 0.00000000 0.00000000 0.00000000 0.00000000## homeowner 0.00000000 0.00000000 0.00000000 0.00000000## homework 0.00000000 0.00000000 0.00000000 0.00000000## honesty 0.01946661 0.00000000 0.00000000 0.00000000## honey 0.00000000 0.00000000 0.00000000 0.00000000## hopelessness 0.00000000 0.00000000 0.01847746 0.00000000## horizon 0.00000000 0.00000000 0.00000000 0.00000000## hormuz 0.00000000 0.00000000 0.01847746 0.00000000## horrific 0.00000000 0.00000000 0.00000000 0.00000000## horror 0.00000000 0.00000000 0.01847746 0.00000000## horrors 0.00000000 0.00000000 0.00000000 0.00000000## hostage 0.00000000 0.00000000 0.00000000 0.00000000## hotter 0.00000000 0.00000000 0.00000000 0.00000000## household 0.00000000 0.00000000 0.00000000 0.00000000## houser 0.00000000 0.00000000 0.00000000 0.00000000## houses 0.00000000 0.00000000 0.00000000 0.00000000## humanitarian 0.00000000 0.00000000 0.00000000 0.00000000## humbled 0.00000000 0.00000000 0.00000000 0.00000000## hunting 0.00000000 0.00000000 0.00000000 0.03800114## hurting 0.00000000 0.00000000 0.00000000 0.00000000## hussein^s 0.00000000 0.00000000 0.00000000 0.03800114## hutchison 0.00000000 0.00000000 0.00000000 0.00000000## hybrids 0.00000000 0.00000000 0.00000000 0.00000000## hydrogen-powered 0.00000000 0.00000000 0.01847746 0.00000000## illegally 0.00000000 0.00000000 0.00000000 0.00000000## illusions 0.00000000 0.00000000 0.00000000 0.00000000## imminent 0.00000000 0.00000000 0.01847746 0.00000000## impartial 0.01946661 0.00000000 0.00000000 0.00000000## imperatives 0.00000000 0.00000000 0.00000000 0.00000000## import 0.00000000 0.00000000 0.00000000 0.00000000## imported 0.00000000 0.00000000 0.00000000 0.00000000## imposed 0.00000000 0.00000000 0.00000000 0.00000000## imposing 0.00000000 0.00000000 0.00000000 0.00000000## imprisoned 0.00000000 0.00000000 0.00000000 0.00000000## incite 0.00000000 0.00000000 0.01847746 0.00000000## incorporates 0.00000000 0.00000000 0.00000000 0.00000000## independents 0.00000000 0.00000000 0.00000000 0.00000000## indicate 0.00000000 0.00000000 0.01847746 0.00000000## indicates 0.00000000 0.00000000 0.01847746 0.00000000## indicted 0.00000000 0.00000000 0.00000000 0.01900057## inevitable 0.00000000 0.00000000 0.00000000 0.00000000## infants 0.00000000 0.00000000 0.01847746 0.00000000## informed 0.00000000 0.00000000 0.00000000 0.00000000## inherit 0.00000000 0.00000000 0.00000000 0.00000000## inner 0.00000000 0.00000000 0.00000000 0.00000000## inoculating 0.00000000 0.00000000 0.01847746 0.00000000## insisted 0.00000000 0.00000000 0.00000000 0.00000000## insists 0.00000000 0.00000000 0.00000000 0.00000000## inspection 0.00000000 0.00000000 0.01847746 0.00000000## inspections 0.00000000 0.00000000 0.00000000 0.00000000## inspector 0.00000000 0.00000000 0.00000000 0.00000000## inspiration 0.00000000 0.00000000 0.00000000 0.00000000## installing 0.00000000 0.00000000 0.00000000 0.00000000## instance 0.00000000 0.00000000 0.01847746 0.00000000## instant 0.00000000 0.00000000 0.00000000 0.00000000## institute 0.00000000 0.00000000 0.00000000 0.00000000## instructing 0.00000000 0.00000000 0.01847746 0.00000000## integration 0.00000000 0.00000000 0.01847746 0.00000000## intense 0.00000000 0.00000000 0.00000000 0.01900057## intensified 0.00000000 0.00000000 0.01847746 0.00000000## intention 0.03893323 0.00000000 0.00000000 0.00000000## interstate 0.00000000 0.00000000 0.00000000 0.00000000## interview 0.00000000 0.00000000 0.01847746 0.00000000## invent 0.00000000 0.00000000 0.00000000 0.00000000## invented 0.00000000 0.00000000 0.00000000 0.00000000## inventors 0.00000000 0.00000000 0.00000000 0.00000000## invested 0.00000000 0.00000000 0.00000000 0.00000000## investor 0.00000000 0.00000000 0.01847746 0.00000000## invitation 0.00000000 0.04550626 0.00000000 0.00000000## involve 0.00000000 0.00000000 0.00000000 0.00000000## involvement 0.00000000 0.00000000 0.00000000 0.00000000## invulnerability 0.00000000 0.00000000 0.01847746 0.00000000## ira 0.00000000 0.00000000 0.00000000 0.00000000## iranians 0.00000000 0.00000000 0.01847746 0.00000000## ironclad 0.00000000 0.00000000 0.00000000 0.00000000## irons 0.00000000 0.00000000 0.01847746 0.00000000## isil^s 0.00000000 0.00000000 0.00000000 0.00000000## issuing 0.00000000 0.00000000 0.00000000 0.00000000## items 0.00000000 0.00000000 0.00000000 0.00000000## jailed 0.00000000 0.00000000 0.00000000 0.00000000## james 0.00000000 0.00000000 0.00000000 0.00000000## jerusalem 0.00000000 0.00000000 0.00000000 0.01900057## jewish 0.00000000 0.00000000 0.00000000 0.00000000## jim 0.00000000 0.00000000 0.00000000 0.00000000## job-creating 0.00000000 0.00000000 0.00000000 0.00000000## john^s 0.00000000 0.00000000 0.00000000 0.00000000## joining 0.00000000 0.00000000 0.00000000 0.00000000## judd 0.00000000 0.00000000 0.00000000 0.00000000## jump-start 0.00000000 0.02275313 0.00000000 0.00000000## junior 0.00000000 0.00000000 0.01847746 0.00000000## kara 0.00000000 0.00000000 0.00000000 0.00000000## karzai 0.00000000 0.00000000 0.00000000 0.00000000## kathleen 0.00000000 0.00000000 0.00000000 0.00000000## kathryn 0.00000000 0.00000000 0.00000000 0.00000000## keeper 0.00000000 0.00000000 0.00000000 0.00000000## kelly 0.00000000 0.00000000 0.00000000 0.00000000## kent 0.00000000 0.00000000 0.00000000 0.00000000## kerry 0.00000000 0.00000000 0.00000000 0.00000000## khalid 0.00000000 0.00000000 0.00000000 0.03800114## khattala 0.00000000 0.00000000 0.00000000 0.00000000## kristin 0.00000000 0.00000000 0.00000000 0.00000000## landed 0.00000000 0.00000000 0.00000000 0.00000000## landmark 0.01946661 0.00000000 0.00000000 0.00000000## large-scale 0.00000000 0.00000000 0.00000000 0.00000000## launchers 0.00000000 0.00000000 0.00000000 0.00000000## lawsuit 0.00000000 0.00000000 0.01847746 0.00000000## lawyer 0.00000000 0.00000000 0.00000000 0.00000000## leg 0.00000000 0.00000000 0.00000000 0.00000000## legacy 0.00000000 0.00000000 0.00000000 0.00000000## legally 0.00000000 0.00000000 0.00000000 0.00000000## legislate 0.01946661 0.00000000 0.00000000 0.00000000## lender 0.00000000 0.00000000 0.00000000 0.00000000## lengths 0.00000000 0.00000000 0.01847746 0.00000000## leonard 0.00000000 0.00000000 0.00000000 0.00000000## lethal 0.00000000 0.00000000 0.01847746 0.00000000## letting 0.00000000 0.00000000 0.00000000 0.00000000## lifeblood 0.00000000 0.00000000 0.00000000 0.00000000## likewise 0.00000000 0.00000000 0.00000000 0.00000000## limited 0.00000000 0.02275313 0.00000000 0.00000000## linked 0.00000000 0.00000000 0.00000000 0.00000000## links 0.00000000 0.00000000 0.01847746 0.00000000## lisa 0.00000000 0.00000000 0.00000000 0.00000000## listening 0.00000000 0.00000000 0.00000000 0.01900057## lists 0.00000000 0.00000000 0.00000000 0.01900057## literacy 0.01946661 0.00000000 0.00000000 0.01900057## llp 0.00000000 0.00000000 0.00000000 0.00000000## load 0.00000000 0.00000000 0.00000000 0.00000000## location 0.00000000 0.00000000 0.01847746 0.00000000## locked 0.00000000 0.00000000 0.00000000 0.00000000## logistics 0.00000000 0.00000000 0.01847746 0.00000000## logs 0.00000000 0.00000000 0.00000000 0.00000000## loss 0.00000000 0.00000000 0.00000000 0.00000000## loves 0.00000000 0.00000000 0.00000000 0.00000000## lowered 0.00000000 0.02275313 0.00000000 0.01900057## lowers 0.00000000 0.00000000 0.00000000 0.00000000## luna 0.00000000 0.00000000 0.00000000 0.00000000## mahmoud 0.01946661 0.00000000 0.00000000 0.00000000## maintaining 0.00000000 0.00000000 0.00000000 0.00000000## manage 0.00000000 0.00000000 0.00000000 0.00000000## management 0.00000000 0.00000000 0.00000000 0.00000000## mandate 0.00000000 0.00000000 0.00000000 0.00000000## mandates 0.00000000 0.00000000 0.01847746 0.00000000## mandatory 0.00000000 0.00000000 0.00000000 0.00000000## manmade 0.00000000 0.00000000 0.01847746 0.00000000## map 0.00000000 0.00000000 0.00000000 0.00000000## marching 0.00000000 0.00000000 0.00000000 0.00000000## market-based 0.00000000 0.00000000 0.00000000 0.00000000## marketplace 0.00000000 0.00000000 0.00000000 0.00000000## marks 0.00000000 0.00000000 0.00000000 0.00000000## married 0.00000000 0.02275313 0.00000000 0.00000000## mars 0.00000000 0.00000000 0.00000000 0.00000000## marshals 0.01946661 0.00000000 0.00000000 0.00000000## mary 0.00000000 0.00000000 0.00000000 0.00000000## maryland 0.00000000 0.00000000 0.00000000 0.00000000## matched 0.00000000 0.00000000 0.00000000 0.00000000## mayors 0.00000000 0.00000000 0.00000000 0.00000000## maze 0.00000000 0.00000000 0.00000000 0.00000000## mazen 0.01946661 0.00000000 0.00000000 0.00000000## medicare^s 0.00000000 0.02275313 0.00000000 0.00000000## meetings 0.01946661 0.00000000 0.00000000 0.00000000## melting 0.00000000 0.00000000 0.00000000 0.00000000## memories 0.00000000 0.00000000 0.00000000 0.00000000## memory 0.01946661 0.00000000 0.00000000 0.00000000## mentioned 0.00000000 0.00000000 0.00000000 0.00000000## mentoring 0.00000000 0.00000000 0.00000000 0.03800114## mercury 0.00000000 0.00000000 0.00000000 0.00000000## merely 0.00000000 0.00000000 0.00000000 0.00000000## mess 0.00000000 0.00000000 0.00000000 0.01900057## messages 0.00000000 0.00000000 0.00000000 0.01900057## miami 0.00000000 0.00000000 0.00000000 0.00000000## michigan 0.00000000 0.00000000 0.00000000 0.00000000## midwest 0.00000000 0.00000000 0.00000000 0.00000000## milan 0.00000000 0.00000000 0.01847746 0.00000000## militarism 0.00000000 0.00000000 0.01847746 0.00000000## millennium 0.00000000 0.00000000 0.00000000 0.00000000## miller 0.00000000 0.00000000 0.00000000 0.00000000## miners 0.00000000 0.00000000 0.00000000 0.00000000## minutes 0.00000000 0.00000000 0.00000000 0.00000000## miracles 0.00000000 0.00000000 0.01847746 0.00000000## miraculous 0.00000000 0.00000000 0.01847746 0.00000000## mistake 0.00000000 0.00000000 0.00000000 0.00000000## mitchell 0.00000000 0.00000000 0.00000000 0.00000000## mobility 0.00000000 0.00000000 0.00000000 0.00000000## mobilized 0.00000000 0.00000000 0.00000000 0.00000000## mobilizing 0.00000000 0.00000000 0.01847746 0.00000000## moderate 0.00000000 0.00000000 0.00000000 0.00000000## modernized 0.01946661 0.02275313 0.00000000 0.00000000## mohammed 0.00000000 0.00000000 0.00000000 0.03800114## moms 0.00000000 0.00000000 0.00000000 0.00000000## monitoring 0.00000000 0.00000000 0.01847746 0.00000000## mostly 0.00000000 0.00000000 0.00000000 0.00000000## motors 0.00000000 0.00000000 0.00000000 0.00000000## mounting 0.00000000 0.00000000 0.01847746 0.00000000## multinational 0.00000000 0.00000000 0.00000000 0.00000000## murderers 0.00000000 0.00000000 0.00000000 0.00000000## music 0.00000000 0.00000000 0.00000000 0.00000000## mustard 0.00000000 0.00000000 0.01847746 0.00000000## muster 0.00000000 0.00000000 0.00000000 0.00000000## mutilation 0.00000000 0.00000000 0.01847746 0.00000000## mutombo 0.00000000 0.00000000 0.00000000 0.00000000## myra 0.00000000 0.00000000 0.00000000 0.00000000## naive 0.00000000 0.00000000 0.00000000 0.00000000## nasa 0.00000000 0.00000000 0.00000000 0.00000000## nationalized 0.00000000 0.00000000 0.01847746 0.00000000## necessities 0.00000000 0.00000000 0.00000000 0.00000000## necessity 0.00000000 0.00000000 0.00000000 0.00000000## negotiating 0.00000000 0.00000000 0.00000000 0.00000000## neighbor 0.00000000 0.00000000 0.00000000 0.00000000## nerve 0.00000000 0.00000000 0.01847746 0.00000000## neutrality 0.00000000 0.00000000 0.00000000 0.00000000## newer 0.00000000 0.00000000 0.00000000 0.00000000## newspaper 0.00000000 0.00000000 0.00000000 0.00000000## noise 0.00000000 0.00000000 0.00000000 0.00000000## nominations 0.00000000 0.00000000 0.00000000 0.00000000## normal 0.00000000 0.00000000 0.00000000 0.00000000## nowhere 0.00000000 0.00000000 0.00000000 0.00000000## nuclear-armed 0.00000000 0.00000000 0.00000000 0.00000000## o 0.00000000 0.00000000 0.00000000 0.00000000## object 0.00000000 0.00000000 0.01847746 0.00000000## objections 0.00000000 0.00000000 0.00000000 0.03800114## obstacles 0.00000000 0.00000000 0.01847746 0.00000000## obtained 0.00000000 0.00000000 0.01847746 0.00000000## occupations 0.00000000 0.00000000 0.00000000 0.01900057## offense 0.00000000 0.00000000 0.00000000 0.00000000## omaha 0.00000000 0.00000000 0.00000000 0.00000000## one-tenth 0.00000000 0.00000000 0.00000000 0.00000000## one-third 0.00000000 0.00000000 0.01847746 0.00000000## operative 0.00000000 0.00000000 0.01847746 0.00000000## opinion 0.00000000 0.00000000 0.01847746 0.00000000## orphaned 0.00000000 0.00000000 0.01847746 0.00000000## other^s 0.00000000 0.00000000 0.00000000 0.00000000## out-build 0.00000000 0.00000000 0.00000000 0.00000000## out-educate 0.00000000 0.00000000 0.00000000 0.00000000## out-innovate 0.00000000 0.00000000 0.00000000 0.00000000## outrage 0.00000000 0.00000000 0.00000000 0.00000000## outstanding 0.00000000 0.00000000 0.00000000 0.00000000## overlook 0.00000000 0.00000000 0.01847746 0.00000000## overthrow 0.00000000 0.00000000 0.00000000 0.00000000## owning 0.00000000 0.00000000 0.00000000 0.00000000## oxygen 0.00000000 0.00000000 0.01847746 0.00000000## package 0.00000000 0.00000000 0.00000000 0.00000000## paint 0.00000000 0.02275313 0.00000000 0.00000000## pandemic 0.00000000 0.00000000 0.00000000 0.00000000## panel 0.01946661 0.00000000 0.00000000 0.00000000## parental 0.00000000 0.00000000 0.00000000 0.00000000## park 0.00000000 0.00000000 0.00000000 0.00000000## parks 0.00000000 0.04550626 0.00000000 0.00000000## partial-birth 0.00000000 0.00000000 0.01847746 0.00000000## particular 0.00000000 0.00000000 0.00000000 0.01900057## partisanship 0.00000000 0.00000000 0.00000000 0.00000000## passengers 0.00000000 0.00000000 0.00000000 0.00000000## passions 0.00000000 0.00000000 0.00000000 0.00000000## pastors 0.01946661 0.00000000 0.00000000 0.00000000## pataki 0.00000000 0.00000000 0.00000000 0.00000000## patenting 0.00000000 0.00000000 0.00000000 0.00000000## patrolling 0.00000000 0.00000000 0.00000000 0.01900057## patrols 0.00000000 0.00000000 0.00000000 0.01900057## patterns 0.01946661 0.00000000 0.00000000 0.00000000## patton 0.00000000 0.00000000 0.00000000 0.00000000## paul 0.00000000 0.00000000 0.00000000 0.00000000## peacefully 0.00000000 0.00000000 0.00000000 0.00000000## pearson 0.00000000 0.00000000 0.00000000 0.03800114## penalties 0.00000000 0.00000000 0.00000000 0.00000000## pension 0.00000000 0.00000000 0.00000000 0.00000000## perfect 0.00000000 0.00000000 0.00000000 0.00000000## permits 0.01946661 0.00000000 0.00000000 0.00000000## permitting 0.01946661 0.00000000 0.00000000 0.00000000## perpetrator 0.00000000 0.00000000 0.00000000 0.00000000## perpetual 0.00000000 0.00000000 0.00000000 0.00000000## perseverance 0.00000000 0.00000000 0.01847746 0.00000000## persons 0.00000000 0.00000000 0.00000000 0.00000000## pet 0.00000000 0.00000000 0.00000000 0.00000000## petraeus 0.00000000 0.00000000 0.00000000 0.00000000## philosophical 0.00000000 0.00000000 0.00000000 0.00000000## philosophy 0.00000000 0.02275313 0.00000000 0.00000000## phony 0.00000000 0.00000000 0.00000000 0.00000000## physicians 0.00000000 0.00000000 0.01847746 0.00000000## pictures 0.00000000 0.02275313 0.00000000 0.00000000## pile 0.00000000 0.00000000 0.00000000 0.00000000## pizza 0.00000000 0.00000000 0.00000000 0.00000000## placement 0.00000000 0.00000000 0.00000000 0.03800114## planned 0.00000000 0.00000000 0.01847746 0.00000000## platform 0.00000000 0.00000000 0.00000000 0.00000000## plug-in 0.00000000 0.00000000 0.00000000 0.00000000## plunged 0.00000000 0.00000000 0.00000000 0.00000000## plus 0.00000000 0.00000000 0.00000000 0.00000000## poland 0.00000000 0.00000000 0.00000000 0.03800114## politely 0.00000000 0.00000000 0.01847746 0.00000000## poll 0.00000000 0.02275313 0.00000000 0.00000000## portion 0.03893323 0.00000000 0.00000000 0.00000000## poses 0.00000000 0.00000000 0.00000000 0.00000000## posing 0.00000000 0.00000000 0.01847746 0.00000000## possessed 0.00000000 0.00000000 0.00000000 0.00000000## post 0.00000000 0.00000000 0.00000000 0.00000000## pot 0.00000000 0.00000000 0.00000000 0.00000000## potter 0.00000000 0.00000000 0.00000000 0.00000000## pouring 0.00000000 0.00000000 0.00000000 0.00000000## powell 0.00000000 0.00000000 0.01847746 0.00000000## powered 0.00000000 0.00000000 0.01847746 0.00000000## powerplants 0.00000000 0.00000000 0.01847746 0.00000000## powers 0.00000000 0.00000000 0.00000000 0.00000000## practiced 0.00000000 0.00000000 0.00000000 0.00000000## prayer 0.00000000 0.00000000 0.00000000 0.00000000## praying 0.00000000 0.00000000 0.00000000 0.00000000## predecessor 0.01946661 0.00000000 0.00000000 0.00000000## prefer 0.00000000 0.00000000 0.00000000 0.00000000## pregnancy 0.00000000 0.02275313 0.00000000 0.00000000## pretend 0.00000000 0.00000000 0.00000000 0.00000000## pretending 0.00000000 0.00000000 0.00000000 0.00000000## prevailed 0.00000000 0.00000000 0.00000000 0.00000000## primarily 0.00000000 0.00000000 0.00000000 0.00000000## principals 0.00000000 0.00000000 0.00000000 0.00000000## prior 0.00000000 0.00000000 0.00000000 0.00000000## prisoner 0.00000000 0.00000000 0.00000000 0.01900057## prize 0.00000000 0.00000000 0.01847746 0.00000000## procedures 0.00000000 0.00000000 0.00000000 0.00000000## proctor 0.00000000 0.00000000 0.00000000 0.00000000## produced 0.00000000 0.00000000 0.00000000 0.00000000## productivity 0.00000000 0.00000000 0.00000000 0.01900057## progressive 0.00000000 0.00000000 0.00000000 0.00000000## progrowth 0.01946661 0.00000000 0.00000000 0.01900057## proliferation 0.01946661 0.00000000 0.00000000 0.00000000## prominent 0.00000000 0.00000000 0.00000000 0.00000000## prompt 0.00000000 0.00000000 0.00000000 0.00000000## propaganda 0.00000000 0.00000000 0.00000000 0.01900057## proper 0.00000000 0.00000000 0.00000000 0.00000000## properly 0.00000000 0.00000000 0.00000000 0.00000000## prosecution 0.00000000 0.00000000 0.00000000 0.00000000## prospect 0.00000000 0.00000000 0.01847746 0.00000000## protectionism 0.00000000 0.00000000 0.00000000 0.00000000## proved 0.00000000 0.00000000 0.00000000 0.00000000## province 0.00000000 0.00000000 0.00000000 0.00000000## provinces 0.00000000 0.00000000 0.00000000 0.00000000## provincial 0.00000000 0.00000000 0.00000000 0.00000000## provision 0.00000000 0.00000000 0.00000000 0.00000000## provisions 0.00000000 0.00000000 0.00000000 0.03800114## prudent 0.00000000 0.02275313 0.00000000 0.00000000## pulled 0.00000000 0.00000000 0.00000000 0.00000000## pump 0.00000000 0.00000000 0.00000000 0.00000000## pundits 0.00000000 0.00000000 0.00000000 0.00000000## punishing 0.00000000 0.00000000 0.00000000 0.00000000## purchases 0.00000000 0.00000000 0.00000000 0.00000000## purchasing 0.00000000 0.00000000 0.00000000 0.00000000## pursued 0.00000000 0.00000000 0.01847746 0.00000000## pursues 0.00000000 0.00000000 0.01847746 0.00000000## putin 0.00000000 0.00000000 0.00000000 0.00000000## qualified 0.01946661 0.00000000 0.00000000 0.00000000## quick 0.00000000 0.00000000 0.00000000 0.00000000## quite 0.00000000 0.00000000 0.00000000 0.00000000## quitters 0.00000000 0.00000000 0.00000000 0.00000000## quitting 0.00000000 0.00000000 0.00000000 0.00000000## races 0.01946661 0.00000000 0.00000000 0.00000000## rage 0.00000000 0.00000000 0.00000000 0.00000000## railroads 0.00000000 0.00000000 0.00000000 0.00000000## raises 0.00000000 0.00000000 0.00000000 0.00000000## raleigh 0.00000000 0.00000000 0.00000000 0.00000000## rallied 0.00000000 0.00000000 0.00000000 0.00000000## rally 0.00000000 0.00000000 0.00000000 0.00000000## randolph 0.00000000 0.00000000 0.00000000 0.00000000## rape 0.00000000 0.00000000 0.01847746 0.00000000## rarely 0.00000000 0.00000000 0.00000000 0.00000000## rational 0.00000000 0.00000000 0.00000000 0.00000000## rations 0.00000000 0.00000000 0.01847746 0.00000000## reached 0.00000000 0.00000000 0.00000000 0.00000000## reaches 0.00000000 0.00000000 0.00000000 0.00000000## reaffirm 0.00000000 0.00000000 0.00000000 0.00000000## realized 0.00000000 0.00000000 0.00000000 0.00000000## realizing 0.00000000 0.00000000 0.00000000 0.00000000## rebounding 0.00000000 0.00000000 0.00000000 0.00000000## rebuilt 0.00000000 0.00000000 0.00000000 0.00000000## recedes 0.00000000 0.00000000 0.00000000 0.00000000## reclaim 0.00000000 0.00000000 0.00000000 0.00000000## recognizes 0.00000000 0.00000000 0.00000000 0.00000000## recommended 0.01946661 0.00000000 0.00000000 0.00000000## recovered 0.00000000 0.00000000 0.00000000 0.00000000## recovering 0.00000000 0.00000000 0.01847746 0.00000000## recriminations 0.00000000 0.00000000 0.01847746 0.00000000## redefine 0.00000000 0.00000000 0.00000000 0.01900057## reformed 0.00000000 0.00000000 0.00000000 0.00000000## reformers 0.01946661 0.00000000 0.00000000 0.00000000## refund 0.00000000 0.02275313 0.00000000 0.00000000## refundable 0.00000000 0.02275313 0.00000000 0.01900057## refused 0.00000000 0.00000000 0.00000000 0.00000000## refuses 0.00000000 0.00000000 0.00000000 0.00000000## reignite 0.00000000 0.00000000 0.00000000 0.00000000## reinforcements 0.00000000 0.00000000 0.00000000 0.00000000## reinvent 0.00000000 0.00000000 0.00000000 0.00000000## related 0.00000000 0.00000000 0.00000000 0.00000000## relentless 0.00000000 0.00000000 0.00000000 0.00000000## religions 0.00000000 0.00000000 0.00000000 0.01900057## reluctantly 0.00000000 0.00000000 0.01847746 0.00000000## remaking 0.00000000 0.00000000 0.00000000 0.00000000## remnants 0.00000000 0.00000000 0.00000000 0.00000000## remote 0.00000000 0.00000000 0.00000000 0.00000000## renewal 0.00000000 0.00000000 0.00000000 0.00000000## renovation 0.00000000 0.00000000 0.00000000 0.00000000## reorganized 0.00000000 0.00000000 0.01847746 0.00000000## repairing 0.00000000 0.00000000 0.00000000 0.00000000## replaced 0.00000000 0.02275313 0.00000000 0.00000000## reporting 0.00000000 0.00000000 0.00000000 0.01900057## represses 0.00000000 0.00000000 0.01847746 0.00000000## repressing 0.00000000 0.00000000 0.00000000 0.00000000## republic 0.00000000 0.00000000 0.00000000 0.01900057## requested 0.00000000 0.00000000 0.01847746 0.00000000## requests 0.00000000 0.00000000 0.00000000 0.00000000## resentments 0.00000000 0.00000000 0.00000000 0.00000000## reshaping 0.00000000 0.00000000 0.00000000 0.00000000## resident 0.00000000 0.00000000 0.00000000 0.00000000## resilient 0.00000000 0.00000000 0.00000000 0.00000000## respected 0.00000000 0.00000000 0.00000000 0.01900057## respiratory 0.00000000 0.00000000 0.01847746 0.00000000## responders 0.00000000 0.00000000 0.01847746 0.00000000## restored 0.00000000 0.00000000 0.00000000 0.00000000## restoring 0.00000000 0.00000000 0.00000000 0.00000000## restrained 0.00000000 0.00000000 0.01847746 0.00000000## restructure 0.00000000 0.02275313 0.00000000 0.00000000## restructuring 0.00000000 0.00000000 0.00000000 0.00000000## resume 0.00000000 0.00000000 0.01847746 0.00000000## retail 0.00000000 0.00000000 0.00000000 0.01900057## retaliation 0.00000000 0.00000000 0.00000000 0.00000000## retool 0.00000000 0.00000000 0.00000000 0.00000000## retooled 0.00000000 0.00000000 0.00000000 0.00000000## retrain 0.00000000 0.00000000 0.00000000 0.00000000## retreating 0.00000000 0.00000000 0.00000000 0.00000000## returning 0.00000000 0.00000000 0.00000000 0.00000000## reveal 0.00000000 0.00000000 0.01847746 0.00000000## revival 0.00000000 0.00000000 0.01847746 0.00000000## revive 0.00000000 0.00000000 0.00000000 0.00000000## revolutionary 0.00000000 0.00000000 0.00000000 0.00000000## richness 0.00000000 0.00000000 0.01847746 0.00000000## riddled 0.00000000 0.00000000 0.00000000 0.00000000## ride 0.00000000 0.00000000 0.00000000 0.00000000## ridge 0.00000000 0.00000000 0.00000000 0.00000000## rigorous 0.00000000 0.00000000 0.00000000 0.00000000## ripped 0.00000000 0.00000000 0.00000000 0.00000000## risked 0.00000000 0.00000000 0.00000000 0.00000000## risking 0.00000000 0.00000000 0.01847746 0.00000000## ritterby 0.00000000 0.00000000 0.00000000 0.00000000## rival 0.00000000 0.00000000 0.00000000 0.00000000## roadside 0.00000000 0.00000000 0.00000000 0.00000000## robotics 0.00000000 0.00000000 0.00000000 0.00000000## robust 0.00000000 0.00000000 0.00000000 0.00000000## rolled 0.00000000 0.00000000 0.00000000 0.00000000## rolling 0.00000000 0.00000000 0.00000000 0.00000000## romney^s 0.00000000 0.00000000 0.00000000 0.00000000## roofing 0.00000000 0.00000000 0.00000000 0.00000000## rooted 0.00000000 0.00000000 0.00000000 0.00000000## rose 0.00000000 0.00000000 0.00000000 0.00000000## rouge 0.00000000 0.00000000 0.01847746 0.00000000## routes 0.00000000 0.00000000 0.00000000 0.00000000## routine 0.00000000 0.00000000 0.00000000 0.00000000## rubio 0.00000000 0.00000000 0.00000000 0.00000000## rudolph 0.00000000 0.00000000 0.00000000 0.00000000## rugged 0.00000000 0.00000000 0.00000000 0.00000000## ruins 0.00000000 0.00000000 0.01847746 0.00000000## rulers 0.01946661 0.00000000 0.00000000 0.00000000## ruling 0.00000000 0.00000000 0.01847746 0.00000000## rushed 0.00000000 0.00000000 0.00000000 0.00000000## sacrificed 0.00000000 0.00000000 0.00000000 0.00000000## sacrificing 0.00000000 0.00000000 0.00000000 0.00000000## sadly 0.00000000 0.00000000 0.00000000 0.00000000## safeguard 0.00000000 0.00000000 0.00000000 0.00000000## safeguards 0.00000000 0.00000000 0.00000000 0.00000000## safely 0.00000000 0.00000000 0.00000000 0.00000000## salaries 0.00000000 0.00000000 0.00000000 0.00000000## salary 0.00000000 0.00000000 0.00000000 0.00000000## salute 0.00000000 0.00000000 0.00000000 0.00000000## sanctuary 0.00000000 0.00000000 0.00000000 0.00000000## sanitizing 0.00000000 0.00000000 0.01847746 0.00000000## sanity 0.00000000 0.00000000 0.01847746 0.00000000## sarin 0.00000000 0.00000000 0.01847746 0.00000000## scale 0.00000000 0.00000000 0.00000000 0.00000000## scattered 0.00000000 0.00000000 0.01847746 0.00000000## scavenger 0.00000000 0.00000000 0.01847746 0.00000000## scenes 0.00000000 0.00000000 0.00000000 0.00000000## schip 0.00000000 0.00000000 0.00000000 0.00000000## scholarships 0.00000000 0.00000000 0.00000000 0.00000000## scope 0.00000000 0.00000000 0.00000000 0.00000000## screeners 0.00000000 0.00000000 0.01847746 0.00000000## sebelius 0.00000000 0.00000000 0.00000000 0.00000000## seconds 0.00000000 0.00000000 0.00000000 0.00000000## secretly 0.00000000 0.00000000 0.01847746 0.00000000## secrets 0.00000000 0.00000000 0.00000000 0.00000000## sectors 0.00000000 0.00000000 0.00000000 0.00000000## secured 0.00000000 0.00000000 0.00000000 0.00000000## seized 0.00000000 0.00000000 0.01847746 0.00000000## seldom 0.00000000 0.00000000 0.01847746 0.00000000## self-appointed 0.01946661 0.00000000 0.00000000 0.00000000## self-reliant 0.01946661 0.00000000 0.00000000 0.00000000## selma 0.00000000 0.00000000 0.00000000 0.00000000## sensible 0.00000000 0.00000000 0.00000000 0.00000000## sensors 0.00000000 0.00000000 0.01847746 0.00000000## sentence 0.00000000 0.00000000 0.01847746 0.00000000## seoul 0.00000000 0.00000000 0.00000000 0.00000000## separate 0.00000000 0.00000000 0.00000000 0.00000000## settle 0.00000000 0.00000000 0.00000000 0.00000000## sexually 0.00000000 0.00000000 0.00000000 0.03800114## shadowy 0.00000000 0.00000000 0.01847746 0.00000000## shaking 0.00000000 0.00000000 0.00000000 0.00000000## shalala 0.00000000 0.00000000 0.00000000 0.00000000## shale 0.00000000 0.00000000 0.00000000 0.00000000## shareholder 0.00000000 0.00000000 0.01847746 0.00000000## sharing 0.00000000 0.00000000 0.00000000 0.00000000## sharon 0.03893323 0.00000000 0.00000000 0.00000000## sharp 0.00000000 0.00000000 0.00000000 0.00000000## sheer 0.00000000 0.00000000 0.00000000 0.00000000## sheik 0.00000000 0.00000000 0.00000000 0.03800114## sheoma 0.00000000 0.00000000 0.00000000 0.00000000## shifting 0.00000000 0.00000000 0.00000000 0.00000000## shipment 0.00000000 0.00000000 0.01847746 0.00000000## ships 0.00000000 0.00000000 0.01847746 0.00000000## shock 0.00000000 0.00000000 0.01847746 0.00000000## shortchanging 0.00000000 0.00000000 0.00000000 0.00000000## shortcuts 0.00000000 0.00000000 0.00000000 0.01900057## shortfall 0.03893323 0.00000000 0.00000000 0.00000000## showroom 0.00000000 0.00000000 0.01847746 0.00000000## shrapnel 0.00000000 0.00000000 0.00000000 0.00000000## shrink 0.00000000 0.00000000 0.00000000 0.00000000## shuttered 0.00000000 0.00000000 0.00000000 0.00000000## sidelines 0.00000000 0.00000000 0.00000000 0.00000000## signal 0.00000000 0.00000000 0.00000000 0.01900057## significantly 0.00000000 0.00000000 0.01847746 0.00000000## simpson 0.00000000 0.00000000 0.00000000 0.00000000## singapore 0.00000000 0.00000000 0.01847746 0.00000000## sites 0.00000000 0.00000000 0.01847746 0.00000000## slash 0.00000000 0.00000000 0.00000000 0.00000000## sleepless 0.00000000 0.00000000 0.00000000 0.00000000## slip 0.00000000 0.00000000 0.00000000 0.01900057## slipping 0.00000000 0.00000000 0.00000000 0.00000000## smallpox 0.00000000 0.00000000 0.01847746 0.00000000## sobered 0.00000000 0.00000000 0.00000000 0.00000000## societies 0.00000000 0.00000000 0.00000000 0.00000000## soldier 0.00000000 0.00000000 0.00000000 0.00000000## solemn 0.00000000 0.00000000 0.00000000 0.00000000## solid 0.00000000 0.00000000 0.00000000 0.00000000## solving 0.00000000 0.00000000 0.00000000 0.00000000## someday 0.00000000 0.00000000 0.00000000 0.00000000## someplace 0.00000000 0.00000000 0.00000000 0.00000000## soranno 0.00000000 0.00000000 0.00000000 0.00000000## sort 0.00000000 0.00000000 0.00000000 0.00000000## soul 0.00000000 0.00000000 0.01847746 0.00000000## southern 0.00000000 0.00000000 0.00000000 0.00000000## sovereign 0.01946661 0.00000000 0.00000000 0.00000000## sovereignty 0.00000000 0.00000000 0.00000000 0.01900057## soviets 0.00000000 0.00000000 0.00000000 0.00000000## speaks 0.00000000 0.00000000 0.00000000 0.00000000## spiegel 0.00000000 0.00000000 0.00000000 0.00000000## sponsor 0.03893323 0.00000000 0.00000000 0.00000000## squads 0.00000000 0.00000000 0.00000000 0.00000000## stabilize 0.00000000 0.00000000 0.00000000 0.00000000## stabilized 0.00000000 0.00000000 0.00000000 0.00000000## staffs 0.00000000 0.00000000 0.01847746 0.00000000## stage 0.00000000 0.00000000 0.00000000 0.00000000## staggering 0.00000000 0.00000000 0.00000000 0.00000000## stagnation 0.00000000 0.00000000 0.01847746 0.00000000## stairs 0.00000000 0.00000000 0.00000000 0.00000000## stalled 0.00000000 0.00000000 0.00000000 0.00000000## stamped 0.00000000 0.00000000 0.00000000 0.00000000## stark 0.00000000 0.02275313 0.00000000 0.00000000## starts 0.00000000 0.02275313 0.00000000 0.00000000## startup 0.00000000 0.00000000 0.00000000 0.00000000## startups 0.00000000 0.00000000 0.00000000 0.00000000## starvation 0.00000000 0.00000000 0.01847746 0.00000000## statements 0.00000000 0.00000000 0.01847746 0.00000000## station 0.00000000 0.00000000 0.00000000 0.00000000## statistics 0.00000000 0.02275313 0.00000000 0.00000000## statute 0.00000000 0.00000000 0.00000000 0.01900057## stayed 0.00000000 0.00000000 0.00000000 0.00000000## staying 0.00000000 0.00000000 0.00000000 0.00000000## steadfast 0.00000000 0.00000000 0.00000000 0.01900057## steel 0.00000000 0.00000000 0.00000000 0.00000000## steroids 0.00000000 0.00000000 0.00000000 0.03800114## steve 0.00000000 0.00000000 0.00000000 0.00000000## stimulate 0.00000000 0.02275313 0.00000000 0.01900057## stockpiles 0.00000000 0.00000000 0.00000000 0.00000000## strained 0.00000000 0.02275313 0.00000000 0.00000000## street^s 0.00000000 0.02275313 0.00000000 0.00000000## strengthens 0.00000000 0.00000000 0.00000000 0.00000000## stretch 0.00000000 0.00000000 0.00000000 0.00000000## stretches 0.00000000 0.00000000 0.00000000 0.00000000## structure 0.01946661 0.00000000 0.00000000 0.00000000## struggled 0.00000000 0.00000000 0.00000000 0.00000000## stubborn 0.00000000 0.02275313 0.00000000 0.00000000## stuck 0.00000000 0.00000000 0.00000000 0.00000000## submitted 0.01946661 0.00000000 0.00000000 0.00000000## subsidized 0.00000000 0.00000000 0.00000000 0.00000000## substantial 0.00000000 0.00000000 0.00000000 0.00000000## substantially 0.01946661 0.00000000 0.00000000 0.00000000## suddenly 0.00000000 0.00000000 0.01847746 0.00000000## sued 0.00000000 0.00000000 0.01847746 0.00000000## suffer 0.00000000 0.00000000 0.00000000 0.00000000## suitable 0.00000000 0.00000000 0.01847746 0.00000000## summon 0.00000000 0.00000000 0.00000000 0.00000000## sunlight 0.00000000 0.00000000 0.00000000 0.00000000## superb 0.00000000 0.00000000 0.00000000 0.00000000## surgery 0.00000000 0.00000000 0.00000000 0.00000000## surprise 0.00000000 0.00000000 0.00000000 0.00000000## surrender 0.00000000 0.00000000 0.00000000 0.00000000## suspicion 0.00000000 0.02275313 0.00000000 0.00000000## swift 0.00000000 0.00000000 0.00000000 0.00000000## switch 0.00000000 0.00000000 0.00000000 0.00000000## sympathy 0.00000000 0.00000000 0.00000000 0.00000000## system^s 0.00000000 0.00000000 0.00000000 0.00000000## systematically 0.00000000 0.00000000 0.01847746 0.00000000## tables 0.00000000 0.00000000 0.00000000 0.00000000## taleb 0.03893323 0.00000000 0.00000000 0.00000000## talents 0.00000000 0.00000000 0.00000000 0.00000000## tallest 0.00000000 0.00000000 0.00000000 0.00000000## targets 0.00000000 0.00000000 0.00000000 0.00000000## tasks 0.00000000 0.00000000 0.00000000 0.01900057## taught 0.00000000 0.00000000 0.00000000 0.00000000## teachings 0.00000000 0.00000000 0.00000000 0.00000000## tear 0.00000000 0.00000000 0.00000000 0.00000000## technical 0.01946661 0.00000000 0.00000000 0.00000000## teddy 0.00000000 0.00000000 0.00000000 0.00000000## teenager 0.00000000 0.00000000 0.00000000 0.00000000## television 0.00000000 0.00000000 0.00000000 0.01900057## tennessee 0.00000000 0.00000000 0.00000000 0.00000000## testified 0.00000000 0.02275313 0.00000000 0.00000000## theirs 0.00000000 0.00000000 0.00000000 0.00000000## thereby 0.01946661 0.02275313 0.00000000 0.00000000## therefore 0.01946661 0.00000000 0.00000000 0.00000000## they^ll 0.00000000 0.00000000 0.00000000 0.00000000## thompson 0.00000000 0.00000000 0.00000000 0.00000000## thread 0.00000000 0.00000000 0.00000000 0.00000000## threatening 0.00000000 0.00000000 0.00000000 0.00000000## thrive 0.00000000 0.00000000 0.00000000 0.00000000## thugs 0.00000000 0.00000000 0.00000000 0.03800114## tighter 0.00000000 0.00000000 0.00000000 0.00000000## tim 0.01946661 0.00000000 0.00000000 0.00000000## toil 0.00000000 0.00000000 0.00000000 0.00000000## tolerance 0.00000000 0.00000000 0.00000000 0.00000000## tomorrow^s 0.00000000 0.00000000 0.00000000 0.00000000## tongues 0.00000000 0.00000000 0.01847746 0.00000000## tons 0.00000000 0.00000000 0.01847746 0.00000000## torturing 0.00000000 0.00000000 0.01847746 0.00000000## touch 0.00000000 0.00000000 0.00000000 0.00000000## touched 0.00000000 0.00000000 0.00000000 0.00000000## touching 0.00000000 0.00000000 0.00000000 0.00000000## towers 0.00000000 0.00000000 0.01847746 0.00000000## toxic 0.00000000 0.02275313 0.00000000 0.00000000## tracking 0.00000000 0.00000000 0.00000000 0.03800114## tracks 0.00000000 0.00000000 0.00000000 0.00000000## traditional 0.01946661 0.00000000 0.00000000 0.00000000## traditions 0.00000000 0.00000000 0.00000000 0.00000000## traffickers 0.00000000 0.00000000 0.00000000 0.01900057## trajectory 0.00000000 0.00000000 0.00000000 0.00000000## transcontinental 0.00000000 0.00000000 0.00000000 0.00000000## transfer 0.00000000 0.00000000 0.00000000 0.00000000## transformed 0.00000000 0.00000000 0.00000000 0.00000000## transmitted 0.00000000 0.00000000 0.00000000 0.03800114## transparent 0.00000000 0.00000000 0.00000000 0.00000000## treasured 0.00000000 0.00000000 0.01847746 0.00000000## treaties 0.00000000 0.00000000 0.01847746 0.00000000## trillion-dollar 0.00000000 0.00000000 0.00000000 0.00000000## triple 0.00000000 0.02275313 0.00000000 0.00000000## triumph 0.00000000 0.00000000 0.01847746 0.00000000## trivial 0.00000000 0.00000000 0.00000000 0.00000000## troop 0.00000000 0.00000000 0.00000000 0.00000000## truman 0.00000000 0.00000000 0.00000000 0.00000000## trusted 0.00000000 0.00000000 0.00000000 0.00000000## tubes 0.00000000 0.00000000 0.01847746 0.00000000## tuesday 0.00000000 0.00000000 0.00000000 0.00000000## turbine 0.00000000 0.00000000 0.00000000 0.00000000## tutoring 0.00000000 0.02275313 0.00000000 0.00000000## twelve 0.00000000 0.00000000 0.01847746 0.00000000## twenty 0.00000000 0.00000000 0.00000000 0.00000000## two-thirds 0.00000000 0.00000000 0.00000000 0.01900057## ty 0.00000000 0.00000000 0.00000000 0.00000000## typhoon 0.00000000 0.00000000 0.00000000 0.00000000## u- 0.00000000 0.00000000 0.01847746 0.00000000## unable 0.00000000 0.00000000 0.00000000 0.00000000## unanswered 0.00000000 0.00000000 0.00000000 0.00000000## unarmed 0.00000000 0.00000000 0.00000000 0.00000000## uncertainties 0.00000000 0.02275313 0.00000000 0.01900057## unconditional 0.00000000 0.00000000 0.00000000 0.00000000## underway 0.00000000 0.00000000 0.00000000 0.00000000## undo 0.00000000 0.00000000 0.00000000 0.00000000## undocumented 0.00000000 0.00000000 0.00000000 0.00000000## unethical 0.00000000 0.00000000 0.00000000 0.00000000## uninterrupted 0.00000000 0.00000000 0.00000000 0.00000000## unite 0.01946661 0.00000000 0.00000000 0.00000000## unleash 0.00000000 0.00000000 0.00000000 0.00000000## unleashed 0.00000000 0.00000000 0.00000000 0.00000000## unraveling 0.00000000 0.00000000 0.00000000 0.00000000## unstable 0.00000000 0.00000000 0.00000000 0.00000000## unsustainable 0.00000000 0.00000000 0.00000000 0.00000000## untouched 0.00000000 0.00000000 0.00000000 0.00000000## unused 0.00000000 0.00000000 0.00000000 0.00000000## unwavering 0.01946661 0.00000000 0.00000000 0.01900057## unyielding 0.00000000 0.00000000 0.00000000 0.00000000## upwards 0.00000000 0.00000000 0.01847746 0.00000000## utter 0.00000000 0.00000000 0.01847746 0.00000000## vacant 0.00000000 0.00000000 0.00000000 0.00000000## vatican 0.00000000 0.00000000 0.00000000 0.00000000## vets 0.00000000 0.00000000 0.00000000 0.00000000## vibrant 0.00000000 0.00000000 0.00000000 0.00000000## victor 0.00000000 0.00000000 0.00000000 0.00000000## victoria 0.00000000 0.00000000 0.00000000 0.00000000## victories 0.00000000 0.00000000 0.00000000 0.00000000## video 0.00000000 0.00000000 0.00000000 0.00000000## videos 0.00000000 0.00000000 0.00000000 0.00000000## views 0.00000000 0.00000000 0.00000000 0.00000000## vigilant 0.00000000 0.00000000 0.00000000 0.00000000## vigorous 0.00000000 0.00000000 0.00000000 0.00000000## violate 0.00000000 0.00000000 0.00000000 0.00000000## violating 0.00000000 0.00000000 0.00000000 0.00000000## violations 0.00000000 0.00000000 0.00000000 0.00000000## virginia 0.00000000 0.00000000 0.00000000 0.00000000## virus 0.00000000 0.00000000 0.01847746 0.00000000## viruses 0.00000000 0.00000000 0.01847746 0.00000000## visited 0.00000000 0.02275313 0.00000000 0.00000000## visitor 0.00000000 0.00000000 0.00000000 0.00000000## vladimir 0.00000000 0.00000000 0.00000000 0.00000000## vladimirovich 0.00000000 0.00000000 0.00000000 0.00000000## voluntarily 0.00000000 0.00000000 0.00000000 0.01900057## vx 0.00000000 0.00000000 0.01847746 0.00000000## waitress 0.00000000 0.04550626 0.00000000 0.00000000## walking 0.00000000 0.00000000 0.00000000 0.00000000## warned 0.00000000 0.00000000 0.00000000 0.00000000## wasted 0.00000000 0.00000000 0.00000000 0.00000000## wastes 0.00000000 0.00000000 0.00000000 0.00000000## watchdog 0.00000000 0.00000000 0.00000000 0.00000000## waves 0.00000000 0.00000000 0.00000000 0.00000000## weakening 0.00000000 0.00000000 0.00000000 0.03800114## weaker 0.00000000 0.00000000 0.00000000 0.00000000## weakest 0.00000000 0.00000000 0.01847746 0.00000000## weather 0.00000000 0.00000000 0.00000000 0.00000000## weighed 0.00000000 0.00000000 0.00000000 0.00000000## welcomed 0.00000000 0.00000000 0.00000000 0.00000000## wendell 0.00000000 0.00000000 0.00000000 0.00000000## whim 0.00000000 0.00000000 0.00000000 0.01900057## whirlwind 0.00000000 0.00000000 0.01847746 0.00000000## wide 0.00000000 0.00000000 0.00000000 0.00000000## wildfires 0.00000000 0.00000000 0.00000000 0.00000000## wildlife 0.00000000 0.00000000 0.01847746 0.00000000## window 0.00000000 0.02275313 0.00000000 0.00000000## windows 0.00000000 0.00000000 0.00000000 0.00000000## winner 0.00000000 0.00000000 0.00000000 0.00000000## wiped 0.00000000 0.00000000 0.00000000 0.00000000## wireless 0.00000000 0.00000000 0.00000000 0.00000000## wisconsin 0.00000000 0.00000000 0.00000000 0.00000000## wish 0.01946661 0.00000000 0.00000000 0.00000000## witness 0.00000000 0.00000000 0.00000000 0.01900057## witnesses 0.00000000 0.00000000 0.01847746 0.00000000## wondering 0.01946661 0.00000000 0.00000000 0.00000000## wood 0.00000000 0.00000000 0.00000000 0.00000000## workplace 0.00000000 0.00000000 0.00000000 0.00000000## worksite 0.00000000 0.00000000 0.00000000 0.00000000## worried 0.00000000 0.00000000 0.00000000 0.00000000## worsened 0.00000000 0.00000000 0.00000000 0.00000000## wounds 0.00000000 0.00000000 0.00000000 0.00000000## wright 0.00000000 0.00000000 0.00000000 0.00000000## yesterday 0.00000000 0.00000000 0.00000000 0.00000000## yogi 0.00000000 0.04550626 0.00000000 0.00000000## youngstown 0.00000000 0.00000000 0.00000000 0.00000000## yourselves 0.00000000 0.00000000 0.00000000 0.00000000## zimbabwe 0.00000000 0.00000000 0.00000000 0.00000000## -foot 0.00000000 0.00000000 0.00000000 0.00000000## -h 0.00000000 0.00000000 0.00000000 0.00000000## -something 0.00000000 0.00000000 0.00000000 0.00000000## -year-olds 0.00000000 0.00000000 0.00000000 0.00000000## abandoned 0.00000000 0.00000000 0.00000000 0.00000000## abetting 0.00000000 0.00000000 0.00000000 0.00000000## abolition 0.01946661 0.00000000 0.00000000 0.00000000## abruptly 0.00000000 0.00000000 0.00000000 0.00000000## absence 0.00000000 0.00000000 0.00000000 0.00000000## academy 0.00000000 0.00000000 0.00000000 0.00000000## accelerating 0.00000000 0.02275313 0.00000000 0.00000000## acceptable 0.00000000 0.00000000 0.00000000 0.00000000## acceptance 0.00000000 0.00000000 0.00000000 0.00000000## accepts 0.00000000 0.00000000 0.00000000 0.00000000## accessible 0.00000000 0.00000000 0.00000000 0.00000000## accessing 0.00000000 0.00000000 0.00000000 0.00000000## accompanied 0.00000000 0.00000000 0.00000000 0.00000000## accomplishment 0.00000000 0.00000000 0.00000000 0.01900057## accomplishments 0.00000000 0.00000000 0.00000000 0.00000000## accumulated 0.00000000 0.00000000 0.00000000 0.00000000## accumulates 0.01946661 0.00000000 0.00000000 0.00000000## aching 0.00000000 0.00000000 0.00000000 0.00000000## acknowledgment 0.00000000 0.00000000 0.00000000 0.00000000## acne 0.00000000 0.00000000 0.00000000 0.00000000## acquire 0.00000000 0.00000000 0.00000000 0.00000000## acrimony 0.00000000 0.00000000 0.00000000 0.00000000## across-the-board 0.00000000 0.00000000 0.00000000 0.00000000## activity 0.00000000 0.00000000 0.00000000 0.01900057## actual 0.00000000 0.00000000 0.00000000 0.00000000## adapting 0.01946661 0.00000000 0.00000000 0.00000000## addressed 0.00000000 0.00000000 0.00000000 0.00000000## adjustment 0.00000000 0.00000000 0.00000000 0.00000000## administer 0.00000000 0.00000000 0.00000000 0.00000000## administration^s 0.00000000 0.00000000 0.00000000 0.00000000## administrator 0.00000000 0.02275313 0.00000000 0.00000000## admirals 0.00000000 0.00000000 0.00000000 0.00000000## admire 0.00000000 0.00000000 0.00000000 0.00000000## admitted 0.00000000 0.00000000 0.00000000 0.00000000## adnan 0.00000000 0.00000000 0.00000000 0.01900057## adopt 0.00000000 0.00000000 0.00000000 0.00000000## adopting 0.00000000 0.00000000 0.00000000 0.00000000## adopts 0.00000000 0.02275313 0.00000000 0.00000000## ads 0.00000000 0.00000000 0.00000000 0.00000000## adulthood 0.01946661 0.00000000 0.00000000 0.00000000## advanced-placement 0.00000000 0.00000000 0.00000000 0.00000000## advancing 0.00000000 0.00000000 0.00000000 0.00000000## advisers 0.00000000 0.00000000 0.00000000 0.00000000## advocated 0.00000000 0.02275313 0.00000000 0.00000000## advocating 0.00000000 0.00000000 0.00000000 0.00000000## aeronautics 0.00000000 0.00000000 0.00000000 0.00000000## affecting 0.00000000 0.00000000 0.00000000 0.00000000## affects 0.00000000 0.00000000 0.00000000 0.00000000## affiliated 0.00000000 0.00000000 0.00000000 0.00000000## affluent 0.00000000 0.00000000 0.00000000 0.00000000## affront 0.00000000 0.00000000 0.00000000 0.00000000## afghanistan^s 0.00000000 0.00000000 0.00000000 0.00000000## afterward 0.01946661 0.00000000 0.00000000 0.00000000## afterwards 0.00000000 0.00000000 0.00000000 0.00000000## agribusiness 0.00000000 0.00000000 0.00000000 0.00000000## aided 0.00000000 0.00000000 0.00000000 0.00000000## aiding 0.00000000 0.00000000 0.00000000 0.00000000## aids-free 0.00000000 0.00000000 0.00000000 0.00000000## aimed 0.00000000 0.00000000 0.00000000 0.00000000## ain^t 0.00000000 0.00000000 0.00000000 0.00000000## airlines 0.00000000 0.00000000 0.00000000 0.00000000## airmen 0.00000000 0.00000000 0.00000000 0.00000000## airplanes 0.00000000 0.00000000 0.00000000 0.00000000## al-asad 0.00000000 0.00000000 0.00000000 0.00000000## alarming 0.00000000 0.00000000 0.00000000 0.00000000## alert 0.00000000 0.00000000 0.00000000 0.00000000## alesandro 0.00000000 0.00000000 0.00000000 0.00000000## alienating 0.00000000 0.00000000 0.00000000 0.00000000## aligned 0.00000000 0.00000000 0.00000000 0.00000000## alito 0.00000000 0.00000000 0.00000000 0.00000000## all-in 0.00000000 0.00000000 0.00000000 0.00000000## all-out 0.00000000 0.00000000 0.00000000 0.00000000## all-powerful 0.00000000 0.00000000 0.00000000 0.01900057## allegiance 0.00000000 0.00000000 0.00000000 0.00000000## allentown 0.00000000 0.00000000 0.00000000 0.00000000## allowance 0.00000000 0.00000000 0.00000000 0.00000000## although 0.00000000 0.00000000 0.00000000 0.00000000## altogether 0.00000000 0.00000000 0.00000000 0.00000000## alzheimer^s 0.00000000 0.00000000 0.00000000 0.00000000## american-made 0.00000000 0.00000000 0.00000000 0.00000000## ammunition 0.00000000 0.00000000 0.00000000 0.00000000## amounts 0.00000000 0.00000000 0.00000000 0.01900057## analysts 0.00000000 0.00000000 0.00000000 0.01900057## anchor 0.00000000 0.00000000 0.00000000 0.00000000## andrews 0.00000000 0.00000000 0.00000000 0.00000000## angeles 0.00000000 0.00000000 0.00000000 0.00000000## anguish 0.00000000 0.00000000 0.00000000 0.00000000## animosity 0.00000000 0.00000000 0.00000000 0.00000000## annapolis 0.00000000 0.00000000 0.00000000 0.00000000## anniversaries 0.00000000 0.00000000 0.00000000 0.00000000## announcement 0.00000000 0.00000000 0.00000000 0.00000000## answered 0.00000000 0.00000000 0.00000000 0.00000000## anthem 0.00000000 0.00000000 0.00000000 0.00000000## anti-semitism 0.00000000 0.00000000 0.00000000 0.00000000## antifraud 0.00000000 0.00000000 0.00000000 0.00000000## antipoverty 0.00000000 0.00000000 0.00000000 0.00000000## antsy 0.00000000 0.00000000 0.00000000 0.00000000## anymore 0.00000000 0.00000000 0.00000000 0.00000000## anyone^s 0.00000000 0.00000000 0.00000000 0.00000000## anytime 0.00000000 0.00000000 0.00000000 0.00000000## anyway 0.00000000 0.00000000 0.00000000 0.00000000## apartments 0.00000000 0.00000000 0.00000000 0.00000000## apathy 0.01946661 0.00000000 0.00000000 0.00000000## apollo 0.00000000 0.00000000 0.00000000 0.00000000## applaud 0.00000000 0.00000000 0.00000000 0.00000000## applauded 0.00000000 0.00000000 0.00000000 0.00000000## applications 0.00000000 0.00000000 0.00000000 0.00000000## apprenticeship 0.00000000 0.00000000 0.00000000 0.00000000## approaches 0.00000000 0.00000000 0.00000000 0.00000000## approval 0.00000000 0.00000000 0.00000000 0.00000000## april^s 0.00000000 0.00000000 0.00000000 0.00000000## arab-israeli 0.00000000 0.00000000 0.00000000 0.00000000## archaic 0.01946661 0.00000000 0.00000000 0.00000000## arguing 0.00000000 0.00000000 0.00000000 0.00000000## ariel 0.01946661 0.00000000 0.00000000 0.00000000## arlene 0.00000000 0.00000000 0.00000000 0.00000000## armored 0.00000000 0.00000000 0.00000000 0.01900057## arrivals 0.00000000 0.00000000 0.00000000 0.00000000## arrive 0.00000000 0.00000000 0.00000000 0.00000000## arrives 0.00000000 0.00000000 0.00000000 0.00000000## art 0.00000000 0.00000000 0.00000000 0.00000000## articles 0.00000000 0.00000000 0.00000000 0.00000000## artificial 0.01946661 0.00000000 0.00000000 0.00000000## artist 0.00000000 0.02275313 0.00000000 0.00000000## asbestos 0.01946661 0.00000000 0.00000000 0.00000000## ashcroft 0.00000000 0.02275313 0.00000000 0.00000000## aspect 0.01946661 0.00000000 0.00000000 0.00000000## aspects 0.00000000 0.00000000 0.00000000 0.00000000## aspires 0.00000000 0.00000000 0.00000000 0.00000000## assassin^s 0.00000000 0.00000000 0.00000000 0.00000000## assassinated 0.01946661 0.00000000 0.00000000 0.00000000## assault 0.01946661 0.00000000 0.00000000 0.00000000## assaulted 0.00000000 0.00000000 0.00000000 0.00000000## asserting 0.01946661 0.00000000 0.00000000 0.00000000## asset 0.00000000 0.00000000 0.00000000 0.00000000## assimilates 0.00000000 0.00000000 0.00000000 0.00000000## assisted 0.00000000 0.00000000 0.00000000 0.00000000## associate^s 0.00000000 0.00000000 0.00000000 0.00000000## assuming 0.00000000 0.00000000 0.00000000 0.01900057## assumptions 0.00000000 0.00000000 0.00000000 0.00000000## assuring 0.00000000 0.00000000 0.00000000 0.00000000## astronauts 0.00000000 0.00000000 0.00000000 0.00000000## at-risk 0.01946661 0.00000000 0.00000000 0.00000000## athification 0.00000000 0.00000000 0.00000000 0.00000000## athist 0.00000000 0.00000000 0.00000000 0.01900057## athletics 0.00000000 0.00000000 0.00000000 0.01900057## attached 0.00000000 0.00000000 0.00000000 0.00000000## attackers 0.00000000 0.00000000 0.00000000 0.00000000## attempts 0.00000000 0.00000000 0.00000000 0.00000000## attitudes 0.00000000 0.00000000 0.00000000 0.00000000## attorneys 0.00000000 0.00000000 0.00000000 0.00000000## aurora 0.00000000 0.00000000 0.00000000 0.00000000## austin 0.00000000 0.00000000 0.00000000 0.00000000## authorized 0.00000000 0.00000000 0.00000000 0.00000000## authorizing 0.00000000 0.00000000 0.00000000 0.00000000## authors 0.00000000 0.00000000 0.00000000 0.00000000## automated 0.00000000 0.00000000 0.00000000 0.00000000## automatic 0.00000000 0.00000000 0.00000000 0.00000000## automatically 0.00000000 0.00000000 0.00000000 0.00000000## autoworker 0.00000000 0.00000000 0.00000000 0.00000000## avenue 0.00000000 0.00000000 0.00000000 0.00000000## avenues 0.00000000 0.00000000 0.00000000 0.00000000## aviation 0.00000000 0.00000000 0.00000000 0.00000000## avoidance 0.00000000 0.00000000 0.00000000 0.00000000## avoided 0.00000000 0.00000000 0.00000000 0.00000000## avoids 0.00000000 0.00000000 0.00000000 0.00000000## awakened 0.00000000 0.00000000 0.00000000 0.00000000## awakening 0.00000000 0.00000000 0.00000000 0.00000000## awarded 0.00000000 0.00000000 0.00000000 0.00000000## awed 0.00000000 0.02275313 0.00000000 0.00000000## awful 0.00000000 0.00000000 0.00000000 0.00000000## awoke 0.00000000 0.00000000 0.00000000 0.01900057## ayad 0.01946661 0.00000000 0.00000000 0.00000000## az 0.00000000 0.00000000 0.00000000 0.00000000## backing 0.00000000 0.00000000 0.00000000 0.00000000## backsliding 0.00000000 0.00000000 0.00000000 0.00000000## backwards 0.00000000 0.00000000 0.00000000 0.00000000## bacteria 0.00000000 0.00000000 0.00000000 0.00000000## bag 0.00000000 0.00000000 0.00000000 0.00000000## bahrain 0.01946661 0.00000000 0.00000000 0.00000000## bailing 0.00000000 0.00000000 0.00000000 0.00000000## bailout 0.00000000 0.00000000 0.00000000 0.00000000## balances 0.00000000 0.00000000 0.00000000 0.00000000## bali 0.00000000 0.00000000 0.00000000 0.01900057## baltimore 0.00000000 0.00000000 0.00000000 0.00000000## band 0.00000000 0.00000000 0.00000000 0.01900057## bang 0.00000000 0.00000000 0.00000000 0.00000000## banker 0.00000000 0.00000000 0.00000000 0.00000000## bankers 0.00000000 0.00000000 0.00000000 0.00000000## banking 0.00000000 0.00000000 0.00000000 0.00000000## bankroll 0.00000000 0.00000000 0.00000000 0.00000000## bankrolled 0.00000000 0.00000000 0.00000000 0.00000000## banner 0.00000000 0.00000000 0.00000000 0.00000000## bar 0.00000000 0.00000000 0.00000000 0.00000000## barkeep 0.00000000 0.00000000 0.00000000 0.00000000## barrels 0.00000000 0.00000000 0.00000000 0.00000000## basement 0.00000000 0.00000000 0.00000000 0.00000000## basest 0.00000000 0.00000000 0.00000000 0.00000000## bashing 0.00000000 0.00000000 0.00000000 0.00000000## basically 0.00000000 0.00000000 0.00000000 0.00000000## basketball 0.00000000 0.00000000 0.00000000 0.00000000## battalions 0.00000000 0.00000000 0.00000000 0.00000000## battling 0.00000000 0.00000000 0.00000000 0.00000000## beard 0.00000000 0.00000000 0.00000000 0.00000000## bears 0.00000000 0.00000000 0.00000000 0.00000000## beaten 0.00000000 0.00000000 0.00000000 0.00000000## beauty 0.00000000 0.02275313 0.00000000 0.00000000## beginnings 0.01946661 0.00000000 0.00000000 0.00000000## begrudge 0.00000000 0.00000000 0.00000000 0.00000000## behead 0.00000000 0.00000000 0.00000000 0.00000000## beings 0.00000000 0.00000000 0.00000000 0.00000000## belongs 0.00000000 0.00000000 0.00000000 0.00000000## belt 0.00000000 0.00000000 0.00000000 0.00000000## belts 0.00000000 0.00000000 0.00000000 0.00000000## benchmarks 0.00000000 0.00000000 0.00000000 0.00000000## beneficial 0.00000000 0.00000000 0.00000000 0.00000000## beneficiaries 0.00000000 0.00000000 0.00000000 0.00000000## benefitted 0.00000000 0.00000000 0.00000000 0.00000000## berlin^s 0.00000000 0.00000000 0.00000000 0.00000000## beside 0.00000000 0.00000000 0.00000000 0.00000000## beslan 0.00000000 0.00000000 0.00000000 0.00000000## betray 0.00000000 0.00000000 0.00000000 0.00000000## betraying 0.00000000 0.00000000 0.00000000 0.00000000## betrays 0.00000000 0.00000000 0.00000000 0.00000000## bias 0.00000000 0.00000000 0.00000000 0.00000000## bickering 0.00000000 0.00000000 0.00000000 0.00000000## biden^s 0.00000000 0.00000000 0.00000000 0.00000000## big-hearted 0.00000000 0.00000000 0.00000000 0.00000000## billion-dollar 0.00000000 0.02275313 0.00000000 0.00000000## bush_23012007 bush_24092001 bush_28012003 bush_28012008## the 5.90438816 4.61188698 5.56776557 5.36358948## and 4.90545844 4.64436505 4.43223443 4.43527592## to 3.94220478 3.41019812 3.31501832 3.24909747## of 2.99678915 4.09223774 3.51648352 3.00842359## a 1.96218337 1.62390386 2.01465201 1.92539110## in 2.40813414 1.68886002 1.99633700 2.35516589## we 1.65893685 1.62390386 1.61172161 1.87381812## our 1.39136639 1.72133810 1.35531136 1.97696407## that 1.15947199 0.77947386 1.15384615 1.25494241## is 1.30217624 1.29912309 1.41025641 1.18617844## for 0.94541563 0.94186424 1.00732601 0.91112257## will 0.55297895 1.68886002 0.97069597 0.91112257## this 1.14163396 0.87690809 0.82417582 0.84235860## i 0.57081698 0.74699578 0.60439560 0.55011174## have 0.69568320 0.90938616 0.82417582 0.68763968## are 0.74919729 1.00682040 0.69597070 0.80797662## on 0.85622547 0.68203962 0.45787546 0.79078563## it 0.42811274 0.84443001 0.45787546 0.37820182## with 0.76703532 0.55212731 0.49450549 0.61887571## not 0.48162683 1.20168886 0.78754579 0.34381984## more 0.39243667 0.19486846 0.40293040 0.37820182## their 0.57081698 0.55212731 0.36630037 0.84235860## you 0.39243667 0.68203962 0.49450549 0.44696579## by 0.55297895 0.51964924 0.47619048 0.60168472## be 0.23189440 0.51964924 0.43956044 0.32662885## as 0.26757046 0.38973693 0.36630037 0.24067389## but 0.21405637 0.35725885 0.09157509 0.18910091## america 0.42811274 0.51964924 0.42124542 0.51572976## from 0.42811274 0.35725885 0.51282051 0.32662885## they 0.44595077 0.77947386 0.20146520 0.32662885## can 0.33892258 0.22734654 0.25641026 0.34381984## people 0.30324652 0.38973693 0.56776557 0.49853877## who 0.21405637 0.38973693 0.32967033 0.27505587## all 0.32108455 0.58460539 0.56776557 0.25786488## or 0.08919015 0.38973693 0.27472527 0.18910091## has 0.33892258 0.42221500 0.67765568 0.25786488## so 0.39243667 0.12991231 0.14652015 0.48134777## us 0.51730289 0.45469308 0.23809524 0.39539281## new 0.28540849 0.22734654 0.20146520 0.42977480## now 0.17838031 0.09743423 0.14652015 0.18910091## american 0.16054228 0.32478077 0.27472527 0.34381984## at 0.32108455 0.45469308 0.27472527 0.27505587## do 0.21405637 0.09743423 0.16483516 0.18910091## americans 0.21405637 0.45469308 0.31135531 0.18910091## an 0.23189440 0.35725885 0.27472527 0.15471893## health 0.32108455 0.00000000 0.14652015 0.13752794## than 0.16054228 0.19486846 0.21978022 0.18910091## congress 0.21405637 0.16239039 0.18315018 0.48134777## every 0.14270425 0.55212731 0.27472527 0.06876397## years 0.19621834 0.09743423 0.23809524 0.17190992## country 0.24973243 0.32478077 0.36630037 0.20629190## economy 0.12486621 0.09743423 0.18315018 0.10314595## these 0.26757046 0.22734654 0.32967033 0.42977480## work 0.21405637 0.12991231 0.18315018 0.12033694## one 0.10702818 0.19486846 0.25641026 0.15471893## world 0.17838031 0.55212731 0.45787546 0.22348289## make 0.16054228 0.12991231 0.14652015 0.08595496## must 0.32108455 0.09743423 0.32967033 0.49853877## jobs 0.03567606 0.00000000 0.03663004 0.08595496## year 0.07135212 0.00000000 0.23809524 0.41258381## them 0.26757046 0.29230270 0.27472527 0.44696579## care 0.10702818 0.00000000 0.18315018 0.10314595## when 0.26757046 0.03247808 0.14652015 0.20629190## government 0.28540849 0.09743423 0.23809524 0.20629190## if 0.05351409 0.09743423 0.10989011 0.13752794## that^s 0.03567606 0.00000000 0.00000000 0.00000000## no 0.12486621 0.25982462 0.29304029 0.08595496## because 0.10702818 0.09743423 0.10989011 0.03438198## what 0.12486621 0.38973693 0.03663004 0.05157298## tax 0.12486621 0.00000000 0.14652015 0.13752794## help 0.30324652 0.12991231 0.20146520 0.30943785## security 0.17838031 0.16239039 0.18315018 0.17190992## energy 0.05351409 0.00000000 0.14652015 0.08595496## tonight 0.21405637 0.42221500 0.20146520 0.13752794## time 0.16054228 0.12991231 0.09157509 0.13752794## education 0.00000000 0.00000000 0.03663004 0.06876397## need 0.28540849 0.06495615 0.10989011 0.10314595## should 0.07135212 0.06495615 0.14652015 0.10314595## those 0.12486621 0.12991231 0.18315018 0.10314595## it^s 0.08919015 0.03247808 0.00000000 0.01719099## also 0.08919015 0.06495615 0.10989011 0.30943785## know 0.10702818 0.16239039 0.10989011 0.06876397## some 0.08919015 0.12991231 0.09157509 0.10314595## nation 0.10702818 0.16239039 0.23809524 0.30943785## up 0.16054228 0.00000000 0.10989011 0.20629190## my 0.07135212 0.16239039 0.07326007 0.10314595## right 0.07135212 0.03247808 0.09157509 0.01719099## just 0.08919015 0.09743423 0.09157509 0.06876397## get 0.07135212 0.00000000 0.01831502 0.03438198## many 0.14270425 0.42221500 0.31135531 0.17190992## like 0.14270425 0.12991231 0.09157509 0.05157298## efforts 0.01783803 0.06495615 0.03663004 0.05157298## about 0.03567606 0.00000000 0.09157509 0.10314595## over 0.12486621 0.09743423 0.09157509 0.15471893## there 0.08919015 0.16239039 0.09157509 0.12033694## he 0.24973243 0.09743423 0.47619048 0.05157298## reform 0.12486621 0.00000000 0.09157509 0.10314595## was 0.17838031 0.12991231 0.03663004 0.12033694## been 0.08919015 0.25982462 0.05494505 0.10314595## we^re 0.24973243 0.03247808 0.00000000 0.17190992## s 0.00000000 0.06495615 0.07326007 0.01719099## your 0.03567606 0.42221500 0.14652015 0.24067389## insurance 0.24973243 0.00000000 0.01831502 0.01719099## here 0.07135212 0.16239039 0.03663004 0.06876397## would 0.21405637 0.03247808 0.09157509 0.10314595## out 0.16054228 0.09743423 0.12820513 0.10314595## we^ve 0.10702818 0.00000000 0.00000000 0.30943785## national 0.03567606 0.09743423 0.01831502 0.05157298## states 0.17838031 0.29230270 0.20146520 0.08595496## last 0.05351409 0.03247808 0.05494505 0.22348289## u 0.01783803 0.03247808 0.09157509 0.01719099## future 0.10702818 0.06495615 0.09157509 0.22348289## want 0.08919015 0.16239039 0.00000000 0.01719099## own 0.19621834 0.22734654 0.18315018 0.06876397## united 0.19621834 0.32478077 0.31135531 0.06876397## only 0.07135212 0.12991231 0.14652015 0.05157298## businesses 0.01783803 0.00000000 0.03663004 0.01719099## his 0.23189440 0.16239039 0.18315018 0.03438198## why 0.03567606 0.06495615 0.01831502 0.03438198## most 0.10702818 0.03247808 0.09157509 0.13752794## iraq 0.28540849 0.03247808 0.18315018 0.37820182## other 0.12486621 0.12991231 0.16483516 0.10314595## where 0.10702818 0.19486846 0.05494505 0.08595496## good 0.12486621 0.06495615 0.14652015 0.17190992## way 0.14270425 0.16239039 0.09157509 0.15471893## how 0.01783803 0.03247808 0.01831502 0.01719099## its 0.08919015 0.35725885 0.20146520 0.10314595## job 0.07135212 0.00000000 0.03663004 0.01719099## plan 0.08919015 0.00000000 0.10989011 0.01719099## together 0.17838031 0.25982462 0.05494505 0.15471893## next 0.12486621 0.03247808 0.12820513 0.08595496## families 0.03567606 0.03247808 0.05494505 0.10314595## take 0.23189440 0.09743423 0.05494505 0.06876397## president 0.07135212 0.06495615 0.07326007 0.10314595## come 0.07135212 0.29230270 0.07326007 0.18910091## even 0.17838031 0.09743423 0.09157509 0.03438198## federal 0.16054228 0.03247808 0.09157509 0.15471893## children 0.17838031 0.09743423 0.12820513 0.13752794## act 0.08919015 0.16239039 0.07326007 0.08595496## business 0.07135212 0.00000000 0.01831502 0.08595496## back 0.07135212 0.09743423 0.01831502 0.03438198## budget 0.07135212 0.00000000 0.07326007 0.03438198## first 0.10702818 0.03247808 0.10989011 0.03438198## great 0.17838031 0.29230270 0.12820513 0.05157298## workers 0.03567606 0.03247808 0.03663004 0.06876397## better 0.12486621 0.00000000 0.03663004 0.13752794## keep 0.07135212 0.03247808 0.10989011 0.13752794## into 0.21405637 0.00000000 0.07326007 0.13752794## support 0.08919015 0.16239039 0.03663004 0.13752794## war 0.17838031 0.32478077 0.20146520 0.05157298## give 0.10702818 0.12991231 0.03663004 0.06876397## don^t 0.01783803 0.00000000 0.00000000 0.01719099## me 0.01783803 0.09743423 0.03663004 0.03438198## system 0.03567606 0.00000000 0.09157509 0.03438198## terrorists 0.24973243 0.42221500 0.12820513 0.24067389## medical 0.05351409 0.00000000 0.03663004 0.08595496## let^s 0.00000000 0.00000000 0.01831502 0.00000000## weapons 0.05351409 0.00000000 0.51282051 0.00000000## ask 0.17838031 0.29230270 0.16483516 0.20629190## citizens 0.16054228 0.25982462 0.14652015 0.15471893## home 0.00000000 0.03247808 0.05494505 0.10314595## still 0.05351409 0.00000000 0.00000000 0.05157298## could 0.10702818 0.00000000 0.20146520 0.08595496## forces 0.19621834 0.06495615 0.01831502 0.22348289## freedom 0.03567606 0.38973693 0.09157509 0.15471893## against 0.08919015 0.19486846 0.18315018 0.12033694## before 0.08919015 0.22734654 0.07326007 0.10314595## million 0.08919015 0.00000000 0.21978022 0.06876397## too 0.03567606 0.00000000 0.05494505 0.01719099## i^m 0.00000000 0.00000000 0.00000000 0.03438198## day 0.10702818 0.09743423 0.10989011 0.06876397## military 0.07135212 0.12991231 0.05494505 0.10314595## change 0.01783803 0.00000000 0.03663004 0.01719099## law 0.14270425 0.06495615 0.05494505 0.10314595## money 0.03567606 0.03247808 0.09157509 0.05157298## down 0.05351409 0.06495615 0.00000000 0.06876397## middle 0.10702818 0.03247808 0.05494505 0.03438198## nuclear 0.05351409 0.00000000 0.21978022 0.06876397## put 0.05351409 0.06495615 0.05494505 0.01719099## today 0.01783803 0.06495615 0.09157509 0.12033694## industry 0.00000000 0.00000000 0.00000000 0.00000000## made 0.08919015 0.03247808 0.05494505 0.12033694## power 0.07135212 0.03247808 0.18315018 0.12033694## america^s 0.07135212 0.19486846 0.05494505 0.08595496## state 0.08919015 0.12991231 0.05494505 0.10314595## let 0.14270425 0.00000000 0.03663004 0.15471893## women 0.07135212 0.09743423 0.07326007 0.08595496## working 0.01783803 0.03247808 0.07326007 0.08595496## al 0.17838031 0.22734654 0.14652015 0.20629190## companies 0.01783803 0.00000000 0.01831502 0.01719099## men 0.10702818 0.03247808 0.10989011 0.10314595## continue 0.16054228 0.06495615 0.10989011 0.10314595## same 0.14270425 0.00000000 0.01831502 0.05157298## any 0.03567606 0.09743423 0.01831502 0.05157298## free 0.14270425 0.00000000 0.09157509 0.15471893## had 0.03567606 0.00000000 0.14652015 0.08595496## life 0.10702818 0.12991231 0.14652015 0.12033694## medicare 0.03567606 0.00000000 0.09157509 0.01719099## house 0.10702818 0.03247808 0.05494505 0.03438198## pass 0.05351409 0.03247808 0.09157509 0.15471893## see 0.07135212 0.09743423 0.07326007 0.03438198## afghanistan 0.07135212 0.19486846 0.05494505 0.08595496## nations 0.05351409 0.16239039 0.16483516 0.10314595## believe 0.03567606 0.03247808 0.01831502 0.03438198## coverage 0.01783803 0.00000000 0.05494505 0.01719099## protect 0.08919015 0.06495615 0.10989011 0.08595496## sure 0.03567606 0.03247808 0.07326007 0.00000000## yet 0.17838031 0.03247808 0.14652015 0.13752794## deficit 0.03567606 0.00000000 0.01831502 0.00000000## go 0.03567606 0.06495615 0.05494505 0.00000000## never 0.07135212 0.06495615 0.05494505 0.05157298## through 0.12486621 0.00000000 0.09157509 0.03438198## were 0.03567606 0.12991231 0.05494505 0.06876397## without 0.10702818 0.00000000 0.07326007 0.03438198## best 0.07135212 0.03247808 0.05494505 0.03438198## can^t 0.00000000 0.00000000 0.01831502 0.00000000## end 0.08919015 0.16239039 0.05494505 0.03438198## meet 0.05351409 0.06495615 0.05494505 0.08595496## millions 0.01783803 0.06495615 0.07326007 0.06876397## schools 0.07135212 0.00000000 0.01831502 0.10314595## spending 0.03567606 0.00000000 0.05494505 0.06876397## economic 0.01783803 0.00000000 0.05494505 0.05157298## pay 0.03567606 0.00000000 0.00000000 0.01719099## lives 0.08919015 0.16239039 0.07326007 0.06876397## peace 0.05351409 0.00000000 0.16483516 0.13752794## small 0.01783803 0.00000000 0.07326007 0.01719099## social 0.05351409 0.00000000 0.03663004 0.01719099## after 0.03567606 0.06495615 0.03663004 0.03438198## already 0.01783803 0.12991231 0.05494505 0.01719099## cut 0.03567606 0.00000000 0.01831502 0.05157298## programs 0.00000000 0.00000000 0.07326007 0.06876397## taxes 0.05351409 0.00000000 0.05494505 0.10314595## which 0.05351409 0.00000000 0.12820513 0.10314595## school 0.00000000 0.03247808 0.01831502 0.05157298## while 0.00000000 0.00000000 0.05494505 0.08595496## done 0.05351409 0.12991231 0.00000000 0.03438198## percent 0.03567606 0.00000000 0.05494505 0.01719099## union 0.05351409 0.09743423 0.07326007 0.03438198## fight 0.16054228 0.19486846 0.09157509 0.12033694## i^ve 0.01783803 0.03247808 0.00000000 0.05157298## making 0.03567606 0.03247808 0.01831502 0.03438198## qaida 0.17838031 0.19486846 0.00000000 0.15471893## we^ll 0.03567606 0.09743423 0.00000000 0.00000000## hard 0.01783803 0.03247808 0.00000000 0.03438198## office 0.03567606 0.06495615 0.01831502 0.05157298## college 0.00000000 0.00000000 0.00000000 0.01719099## goal 0.14270425 0.06495615 0.07326007 0.05157298## members 0.05351409 0.03247808 0.14652015 0.08595496## two 0.05351409 0.06495615 0.01831502 0.03438198## chamber 0.07135212 0.09743423 0.03663004 0.06876397## child 0.07135212 0.00000000 0.05494505 0.05157298## lead 0.03567606 0.06495615 0.05494505 0.00000000## leaders 0.08919015 0.16239039 0.03663004 0.15471893## long 0.08919015 0.09743423 0.00000000 0.06876397## responsibility 0.03567606 0.03247808 0.01831502 0.05157298## across 0.05351409 0.03247808 0.07326007 0.12033694## international 0.00000000 0.03247808 0.10989011 0.03438198## may 0.00000000 0.22734654 0.05494505 0.01719099## opportunity 0.14270425 0.00000000 0.03663004 0.03438198## page 0.12486621 0.12991231 0.05494505 0.13752794## again 0.00000000 0.03247808 0.07326007 0.00000000## away 0.00000000 0.00000000 0.07326007 0.01719099## build 0.07135212 0.00000000 0.01831502 0.15471893## laughter 0.03567606 0.00000000 0.00000000 0.03438198## set 0.03567606 0.00000000 0.07326007 0.03438198## she 0.03567606 0.00000000 0.00000000 0.00000000## terror 0.08919015 0.32478077 0.10989011 0.10314595## use 0.07135212 0.00000000 0.10989011 0.03438198## another 0.00000000 0.03247808 0.05494505 0.03438198## bill 0.01783803 0.00000000 0.01831502 0.05157298## both 0.05351409 0.00000000 0.05494505 0.06876397## each 0.05351409 0.06495615 0.03663004 0.01719099## much 0.12486621 0.00000000 0.10989011 0.01719099## oil 0.16054228 0.00000000 0.00000000 0.05157298## program 0.01783803 0.00000000 0.07326007 0.05157298## research 0.01783803 0.00000000 0.03663004 0.05157298## terrorist 0.03567606 0.22734654 0.10989011 0.06876397## hope 0.16054228 0.09743423 0.03663004 0.18910091## past 0.01783803 0.06495615 0.00000000 0.18910091## strong 0.05351409 0.06495615 0.03663004 0.05157298## democracy 0.07135212 0.00000000 0.01831502 0.06876397## her 0.14270425 0.03247808 0.00000000 0.00000000## high 0.01783803 0.00000000 0.03663004 0.03438198## history 0.01783803 0.00000000 0.09157509 0.08595496## iraqi 0.17838031 0.00000000 0.12820513 0.20629190## technology 0.07135212 0.00000000 0.03663004 0.08595496## address 0.05351409 0.03247808 0.05494505 0.05157298## ago 0.03567606 0.06495615 0.03663004 0.05157298## needs 0.03567606 0.06495615 0.03663004 0.03438198## rights 0.03567606 0.00000000 0.05494505 0.00000000## young 0.00000000 0.00000000 0.00000000 0.03438198## community 0.00000000 0.00000000 0.00000000 0.01719099## costs 0.01783803 0.00000000 0.03663004 0.00000000## higher 0.03567606 0.00000000 0.03663004 0.03438198## part 0.01783803 0.00000000 0.00000000 0.05157298## place 0.00000000 0.06495615 0.07326007 0.01719099## public 0.03567606 0.00000000 0.01831502 0.05157298## since 0.05351409 0.00000000 0.03663004 0.05157298## trade 0.01783803 0.03247808 0.00000000 0.12033694## troops 0.05351409 0.03247808 0.03663004 0.15471893## unemployment 0.01783803 0.00000000 0.01831502 0.00000000## washington 0.03567606 0.00000000 0.01831502 0.05157298## bring 0.01783803 0.09743423 0.10989011 0.01719099## chance 0.07135212 0.00000000 0.03663004 0.03438198## cost 0.01783803 0.00000000 0.03663004 0.03438198## global 0.01783803 0.06495615 0.03663004 0.05157298## training 0.00000000 0.06495615 0.05494505 0.01719099## administration 0.00000000 0.03247808 0.00000000 0.06876397## clean 0.07135212 0.00000000 0.01831502 0.06876397## financial 0.00000000 0.03247808 0.00000000 0.00000000## nearly 0.05351409 0.00000000 0.05494505 0.01719099## progress 0.03567606 0.03247808 0.03663004 0.10314595## always 0.00000000 0.03247808 0.01831502 0.00000000## afford 0.03567606 0.00000000 0.00000000 0.01719099## benefits 0.01783803 0.00000000 0.00000000 0.03438198## create 0.01783803 0.00000000 0.01831502 0.06876397## ever 0.01783803 0.03247808 0.05494505 0.01719099## fellow 0.05351409 0.12991231 0.07326007 0.08595496## thank 0.03567606 0.22734654 0.03663004 0.03438198## they^re 0.03567606 0.00000000 0.00000000 0.05157298## countries 0.01783803 0.16239039 0.07326007 0.01719099## credit 0.00000000 0.00000000 0.01831502 0.01719099## growth 0.01783803 0.00000000 0.01831502 0.08595496## iran 0.08919015 0.03247808 0.01831502 0.08595496## said 0.01783803 0.00000000 0.03663004 0.03438198## save 0.03567606 0.06495615 0.01831502 0.01719099## vote 0.08919015 0.03247808 0.00000000 0.05157298## cuts 0.01783803 0.00000000 0.00000000 0.01719099## housing 0.00000000 0.00000000 0.00000000 0.08595496## retirement 0.00000000 0.00000000 0.01831502 0.00000000## students 0.05351409 0.00000000 0.01831502 0.05157298## allies 0.03567606 0.00000000 0.05494505 0.05157298## different 0.03567606 0.06495615 0.07326007 0.00000000## east 0.10702818 0.03247808 0.07326007 0.03438198## human 0.03567606 0.06495615 0.09157509 0.05157298## live 0.07135212 0.06495615 0.01831502 0.06876397## number 0.07135212 0.06495615 0.01831502 0.10314595## provide 0.03567606 0.03247808 0.03663004 0.05157298## stand 0.01783803 0.06495615 0.03663004 0.03438198## threat 0.01783803 0.09743423 0.18315018 0.00000000## defense 0.00000000 0.00000000 0.03663004 0.00000000## foreign 0.07135212 0.09743423 0.01831502 0.05157298## growing 0.01783803 0.00000000 0.03663004 0.06876397## off 0.01783803 0.00000000 0.01831502 0.01719099## saddam 0.00000000 0.00000000 0.34798535 0.00000000## well 0.03567606 0.03247808 0.01831502 0.01719099## century 0.00000000 0.03247808 0.05494505 0.03438198## debt 0.03567606 0.00000000 0.00000000 0.00000000## fair 0.05351409 0.00000000 0.03663004 0.03438198## relief 0.03567606 0.00000000 0.07326007 0.08595496## republicans 0.00000000 0.03247808 0.00000000 0.01719099## crisis 0.00000000 0.00000000 0.01831502 0.00000000## did 0.05351409 0.06495615 0.00000000 0.01719099## recovery 0.03567606 0.00000000 0.03663004 0.00000000## say 0.01783803 0.00000000 0.01831502 0.05157298## seen 0.01783803 0.22734654 0.01831502 0.12033694## send 0.00000000 0.00000000 0.05494505 0.05157298## start 0.01783803 0.00000000 0.03663004 0.00000000## hussein 0.00000000 0.00000000 0.34798535 0.00000000## kids 0.00000000 0.00000000 0.00000000 0.01719099## reforms 0.01783803 0.00000000 0.01831502 0.01719099## science 0.01783803 0.00000000 0.00000000 0.01719099## secure 0.14270425 0.00000000 0.05494505 0.05157298## single 0.01783803 0.06495615 0.05494505 0.00000000## sources 0.00000000 0.00000000 0.09157509 0.01719099## values 0.00000000 0.03247808 0.01831502 0.00000000## class 0.00000000 0.00000000 0.00000000 0.00000000## democrats 0.00000000 0.03247808 0.00000000 0.01719099## does 0.00000000 0.06495615 0.05494505 0.01719099## half 0.03567606 0.00000000 0.00000000 0.06876397## policy 0.05351409 0.00000000 0.01831502 0.05157298## terrorism 0.00000000 0.16239039 0.03663004 0.00000000## ahead 0.05351409 0.09743423 0.03663004 0.06876397## aids 0.05351409 0.00000000 0.21978022 0.03438198## clear 0.07135212 0.00000000 0.03663004 0.08595496## commitment 0.03567606 0.00000000 0.05494505 0.01719099## dollars 0.00000000 0.00000000 0.00000000 0.01719099## enough 0.03567606 0.03247808 0.09157509 0.01719099## helping 0.01783803 0.00000000 0.01831502 0.03438198## market 0.01783803 0.00000000 0.01831502 0.03438198## passed 0.01783803 0.03247808 0.03663004 0.06876397## safe 0.10702818 0.03247808 0.00000000 0.10314595## show 0.07135212 0.06495615 0.05494505 0.06876397## things 0.05351409 0.00000000 0.00000000 0.00000000## around 0.01783803 0.06495615 0.01831502 0.00000000## find 0.07135212 0.06495615 0.03663004 0.03438198## forward 0.03567606 0.03247808 0.01831502 0.05157298## funding 0.05351409 0.03247808 0.03663004 0.13752794## important 0.05351409 0.03247808 0.03663004 0.05157298## intelligence 0.01783803 0.12991231 0.18315018 0.03438198## issue 0.00000000 0.00000000 0.00000000 0.03438198## share 0.08919015 0.03247808 0.00000000 0.01719099## speaker 0.07135212 0.06495615 0.01831502 0.03438198## able 0.00000000 0.00000000 0.01831502 0.00000000## behind 0.03567606 0.00000000 0.01831502 0.06876397## between 0.03567606 0.03247808 0.05494505 0.00000000## family 0.01783803 0.00000000 0.01831502 0.00000000## finally 0.01783803 0.03247808 0.00000000 0.00000000## gas 0.01783803 0.00000000 0.00000000 0.01719099## generation 0.00000000 0.03247808 0.01831502 0.05157298## immigration 0.07135212 0.00000000 0.00000000 0.05157298## income 0.07135212 0.00000000 0.10989011 0.00000000## invest 0.00000000 0.00000000 0.05494505 0.00000000## others 0.08919015 0.06495615 0.03663004 0.01719099## private 0.07135212 0.00000000 0.00000000 0.01719099## seniors 0.00000000 0.00000000 0.10989011 0.00000000## serve 0.07135212 0.03247808 0.03663004 0.05157298## action 0.03567606 0.00000000 0.03663004 0.00000000## billion 0.07135212 0.03247808 0.09157509 0.03438198## cannot 0.05351409 0.00000000 0.01831502 0.00000000## control 0.03567606 0.00000000 0.07326007 0.03438198## everyone 0.01783803 0.00000000 0.01831502 0.01719099## god 0.03567606 0.09743423 0.05494505 0.01719099## instead 0.01783803 0.00000000 0.09157509 0.01719099## justice 0.01783803 0.16239039 0.03663004 0.03438198## means 0.00000000 0.03247808 0.01831502 0.05157298## reduce 0.05351409 0.00000000 0.00000000 0.03438198## under 0.05351409 0.03247808 0.05494505 0.00000000## basic 0.03567606 0.00000000 0.00000000 0.01719099## big 0.01783803 0.00000000 0.00000000 0.00000000## challenges 0.07135212 0.03247808 0.03663004 0.01719099## communities 0.01783803 0.03247808 0.01831502 0.03438198## effort 0.01783803 0.06495615 0.03663004 0.01719099## employees 0.00000000 0.00000000 0.01831502 0.00000000## face 0.05351409 0.12991231 0.00000000 0.01719099## few 0.00000000 0.03247808 0.00000000 0.01719099## idea 0.01783803 0.00000000 0.00000000 0.00000000## leadership 0.00000000 0.09743423 0.00000000 0.00000000## look 0.05351409 0.03247808 0.00000000 0.03438198## months 0.00000000 0.03247808 0.01831502 0.03438198## possible 0.01783803 0.00000000 0.05494505 0.03438198## steps 0.03567606 0.06495615 0.01831502 0.06876397## thousands 0.00000000 0.09743423 0.07326007 0.05157298## veterans 0.00000000 0.00000000 0.00000000 0.03438198## vice 0.01783803 0.00000000 0.00000000 0.01719099## affordable 0.05351409 0.00000000 0.01831502 0.01719099## agree 0.00000000 0.00000000 0.00000000 0.01719099## attacks 0.07135212 0.09743423 0.07326007 0.06876397## going 0.01783803 0.03247808 0.00000000 0.01719099## increase 0.07135212 0.00000000 0.00000000 0.08595496## once 0.00000000 0.03247808 0.03663004 0.03438198## strengthen 0.00000000 0.12991231 0.05494505 0.03438198## stronger 0.00000000 0.00000000 0.00000000 0.03438198## thing 0.01783803 0.00000000 0.00000000 0.01719099## trust 0.00000000 0.00000000 0.01831502 0.29224686## being 0.00000000 0.00000000 0.01831502 0.03438198## courage 0.07135212 0.06495615 0.03663004 0.05157298## days 0.01783803 0.06495615 0.09157509 0.00000000## deserve 0.01783803 0.03247808 0.05494505 0.00000000## doing 0.01783803 0.03247808 0.05494505 0.00000000## friends 0.01783803 0.12991231 0.05494505 0.01719099## got 0.03567606 0.00000000 0.01831502 0.00000000## left 0.05351409 0.00000000 0.00000000 0.05157298## manufacturing 0.00000000 0.00000000 0.00000000 0.00000000## move 0.01783803 0.00000000 0.01831502 0.01719099## politics 0.00000000 0.00000000 0.00000000 0.00000000## sent 0.01783803 0.06495615 0.07326007 0.03438198## standards 0.07135212 0.00000000 0.01831502 0.00000000## strengthening 0.01783803 0.00000000 0.01831502 0.03438198## success 0.08919015 0.03247808 0.01831502 0.03438198## access 0.00000000 0.03247808 0.01831502 0.03438198## cause 0.10702818 0.09743423 0.07326007 0.01719099## choose 0.03567606 0.00000000 0.03663004 0.03438198## comes 0.03567606 0.00000000 0.03663004 0.01719099## development 0.00000000 0.00000000 0.01831502 0.01719099## greater 0.03567606 0.00000000 0.05494505 0.03438198## less 0.01783803 0.00000000 0.01831502 0.00000000## man 0.07135212 0.09743423 0.05494505 0.00000000## recession 0.00000000 0.00000000 0.03663004 0.00000000## africa 0.03567606 0.09743423 0.12820513 0.00000000## building 0.01783803 0.00000000 0.01831502 0.03438198## called 0.01783803 0.09743423 0.07326007 0.03438198## code 0.01783803 0.00000000 0.00000000 0.01719099## company 0.03567606 0.00000000 0.00000000 0.00000000## department 0.00000000 0.00000000 0.03663004 0.00000000## employment 0.00000000 0.00000000 0.00000000 0.00000000## including 0.00000000 0.09743423 0.05494505 0.03438198## innovation 0.00000000 0.00000000 0.05494505 0.00000000## makes 0.00000000 0.03247808 0.00000000 0.00000000## open 0.00000000 0.03247808 0.01831502 0.05157298## raise 0.01783803 0.00000000 0.00000000 0.00000000## regime 0.05351409 0.12991231 0.10989011 0.03438198## regulations 0.00000000 0.00000000 0.01831502 0.00000000## stop 0.03567606 0.03247808 0.00000000 0.08595496## there^s 0.01783803 0.00000000 0.00000000 0.01719099## threats 0.03567606 0.00000000 0.09157509 0.01719099## am 0.00000000 0.00000000 0.05494505 0.00000000## biden 0.00000000 0.00000000 0.00000000 0.00000000## built 0.01783803 0.00000000 0.01831502 0.03438198## challenge 0.07135212 0.00000000 0.00000000 0.03438198## decade 0.00000000 0.03247808 0.01831502 0.01719099## decades 0.00000000 0.00000000 0.00000000 0.01719099## grow 0.00000000 0.00000000 0.03663004 0.01719099## improvement 0.00000000 0.00000000 0.00000000 0.00000000## liberty 0.03567606 0.03247808 0.05494505 0.13752794## parents 0.00000000 0.00000000 0.01831502 0.03438198## parties 0.03567606 0.00000000 0.01831502 0.00000000## problem 0.00000000 0.00000000 0.01831502 0.00000000## promise 0.01783803 0.00000000 0.01831502 0.01719099## rules 0.00000000 0.00000000 0.01831502 0.00000000## savings 0.03567606 0.00000000 0.00000000 0.01719099## service 0.00000000 0.03247808 0.03663004 0.03438198## taken 0.03567606 0.03247808 0.01831502 0.08595496## white 0.00000000 0.00000000 0.00000000 0.01719099## abroad 0.03567606 0.00000000 0.07326007 0.03438198## applause 0.00000000 0.03247808 0.01831502 0.00000000## confidence 0.03567606 0.03247808 0.05494505 0.01719099## defend 0.03567606 0.03247808 0.07326007 0.05157298## democratic 0.07135212 0.00000000 0.01831502 0.05157298## drug 0.01783803 0.00000000 0.03663004 0.01719099## enemies 0.07135212 0.09743423 0.01831502 0.08595496## everything 0.01783803 0.00000000 0.01831502 0.03438198## full 0.03567606 0.03247808 0.03663004 0.01719099## john 0.05351409 0.00000000 0.00000000 0.00000000## leave 0.07135212 0.00000000 0.00000000 0.00000000## math 0.03567606 0.00000000 0.00000000 0.01719099## matter 0.03567606 0.00000000 0.00000000 0.00000000## mission 0.05351409 0.03247808 0.01831502 0.06876397## ourselves 0.03567606 0.00000000 0.05494505 0.00000000## postsecondary 0.00000000 0.00000000 0.00000000 0.00000000## prevent 0.00000000 0.03247808 0.05494505 0.00000000## seek 0.00000000 0.00000000 0.09157509 0.00000000## such 0.05351409 0.09743423 0.03663004 0.01719099## used 0.03567606 0.03247808 0.05494505 0.01719099## agreement 0.00000000 0.00000000 0.01831502 0.17190992## bipartisan 0.00000000 0.00000000 0.00000000 0.03438198## colleges 0.00000000 0.00000000 0.00000000 0.00000000## course 0.03567606 0.06495615 0.03663004 0.05157298## ensure 0.01783803 0.00000000 0.00000000 0.10314595## environment 0.03567606 0.00000000 0.05494505 0.01719099## example 0.00000000 0.00000000 0.00000000 0.00000000## fact 0.00000000 0.00000000 0.00000000 0.00000000## given 0.08919015 0.03247808 0.09157509 0.03438198## north 0.01783803 0.00000000 0.07326007 0.01719099## nothing 0.03567606 0.00000000 0.03663004 0.00000000## organization 0.00000000 0.03247808 0.00000000 0.01719099## paid 0.00000000 0.00000000 0.00000000 0.00000000## propose 0.03567606 0.00000000 0.07326007 0.00000000## prosperity 0.01783803 0.03247808 0.01831502 0.03438198## republican 0.00000000 0.00000000 0.00000000 0.01719099## require 0.01783803 0.00000000 0.03663004 0.01719099## september 0.05351409 0.16239039 0.05494505 0.01719099## student 0.01783803 0.00000000 0.00000000 0.00000000## teachers 0.00000000 0.00000000 0.00000000 0.01719099## technologies 0.01783803 0.00000000 0.03663004 0.03438198## then 0.03567606 0.00000000 0.01831502 0.00000000## times 0.03567606 0.03247808 0.00000000 0.03438198## almost 0.01783803 0.03247808 0.07326007 0.00000000## bless 0.01783803 0.03247808 0.01831502 0.01719099## call 0.03567606 0.00000000 0.05494505 0.10314595## civil 0.01783803 0.00000000 0.00000000 0.00000000## created 0.01783803 0.00000000 0.03663004 0.00000000## doesn^t 0.00000000 0.00000000 0.00000000 0.00000000## enforcement 0.01783803 0.06495615 0.01831502 0.03438198## faith 0.01783803 0.09743423 0.05494505 0.01719099## happen 0.05351409 0.00000000 0.00000000 0.01719099## ideas 0.01783803 0.00000000 0.00000000 0.00000000## laws 0.05351409 0.00000000 0.01831502 0.01719099## legislation 0.00000000 0.00000000 0.01831502 0.08595496## lower 0.01783803 0.00000000 0.01831502 0.00000000## markets 0.00000000 0.00000000 0.00000000 0.06876397## rates 0.00000000 0.00000000 0.00000000 0.00000000## skills 0.03567606 0.00000000 0.00000000 0.01719099## tell 0.00000000 0.00000000 0.05494505 0.00000000## took 0.03567606 0.00000000 0.00000000 0.00000000## violence 0.03567606 0.06495615 0.01831502 0.06876397## worked 0.01783803 0.00000000 0.01831502 0.00000000## climate 0.01783803 0.00000000 0.00000000 0.01719099## him 0.03567606 0.00000000 0.03663004 0.00000000## hire 0.01783803 0.00000000 0.00000000 0.00000000## information 0.01783803 0.03247808 0.05494505 0.03438198## korea 0.01783803 0.00000000 0.03663004 0.01719099## reach 0.05351409 0.03247808 0.00000000 0.03438198## secretary 0.03567606 0.00000000 0.01831502 0.05157298## session 0.03567606 0.03247808 0.01831502 0.03438198## speak 0.01783803 0.06495615 0.01831502 0.01719099## spirit 0.05351409 0.03247808 0.01831502 0.05157298## strength 0.03567606 0.00000000 0.03663004 0.05157298## very 0.01783803 0.00000000 0.05494505 0.00000000## begin 0.03567606 0.00000000 0.01831502 0.01719099## coming 0.05351409 0.06495615 0.00000000 0.08595496## enemy 0.14270425 0.06495615 0.05494505 0.12033694## expansion 0.00000000 0.00000000 0.00000000 0.00000000## far 0.01783803 0.03247808 0.00000000 0.03438198## focus 0.00000000 0.00000000 0.05494505 0.00000000## fund 0.01783803 0.00000000 0.01831502 0.05157298## join 0.03567606 0.03247808 0.05494505 0.01719099## lot 0.03567606 0.00000000 0.00000000 0.00000000## m 0.01783803 0.03247808 0.01831502 0.01719099## offer 0.00000000 0.00000000 0.01831502 0.01719099## race 0.00000000 0.00000000 0.00000000 0.00000000## rest 0.00000000 0.06495615 0.00000000 0.05157298## spend 0.01783803 0.00000000 0.01831502 0.00000000## taxation 0.00000000 0.00000000 0.01831502 0.00000000## th 0.03567606 0.09743423 0.03663004 0.01719099## think 0.00000000 0.00000000 0.01831502 0.03438198## wage 0.00000000 0.00000000 0.00000000 0.00000000## within 0.07135212 0.00000000 0.01831502 0.01719099## won^t 0.01783803 0.00000000 0.00000000 0.00000000## armed 0.03567606 0.03247808 0.03663004 0.01719099## china 0.01783803 0.00000000 0.01831502 0.01719099## decisions 0.03567606 0.00000000 0.01831502 0.06876397## generations 0.01783803 0.00000000 0.03663004 0.01719099## improve 0.00000000 0.03247808 0.03663004 0.03438198## infrastructure 0.01783803 0.00000000 0.00000000 0.00000000## initiative 0.00000000 0.00000000 0.05494505 0.03438198## investment 0.00000000 0.00000000 0.01831502 0.03438198## medicaid 0.03567606 0.00000000 0.00000000 0.01719099## mr 0.00000000 0.06495615 0.01831502 0.00000000## person 0.01783803 0.06495615 0.09157509 0.00000000## places 0.03567606 0.03247808 0.03663004 0.00000000## political 0.03567606 0.00000000 0.01831502 0.01719099## problems 0.01783803 0.00000000 0.05494505 0.00000000## proposed 0.01783803 0.00000000 0.00000000 0.01719099## rate 0.00000000 0.00000000 0.00000000 0.01719099## responsible 0.00000000 0.03247808 0.00000000 0.00000000## second 0.07135212 0.00000000 0.01831502 0.00000000## society 0.00000000 0.00000000 0.05494505 0.00000000## top 0.00000000 0.00000000 0.00000000 0.01719099## understand 0.03567606 0.03247808 0.00000000 0.01719099## achieve 0.07135212 0.00000000 0.01831502 0.03438198## asking 0.00000000 0.12991231 0.01831502 0.00000000## capitol 0.03567606 0.06495615 0.00000000 0.01719099## drugs 0.01783803 0.00000000 0.14652015 0.00000000## elections 0.05351409 0.00000000 0.00000000 0.01719099## encourage 0.01783803 0.00000000 0.03663004 0.00000000## fighting 0.00000000 0.00000000 0.01831502 0.13752794## force 0.03567606 0.00000000 0.01831502 0.03438198## former 0.01783803 0.00000000 0.03663004 0.03438198## investments 0.00000000 0.00000000 0.00000000 0.00000000## respect 0.03567606 0.03247808 0.01831502 0.01719099## rising 0.01783803 0.00000000 0.03663004 0.03438198## sense 0.01783803 0.00000000 0.01831502 0.00000000## serious 0.03567606 0.00000000 0.01831502 0.00000000## something 0.01783803 0.00000000 0.00000000 0.03438198## treatment 0.00000000 0.03247808 0.09157509 0.01719099## until 0.01783803 0.06495615 0.01831502 0.05157298## whether 0.01783803 0.03247808 0.00000000 0.00000000## words 0.03567606 0.03247808 0.03663004 0.03438198## additional 0.03567606 0.03247808 0.03663004 0.03438198## afghan 0.01783803 0.00000000 0.00000000 0.03438198## alone 0.03567606 0.00000000 0.01831502 0.00000000## asked 0.03567606 0.00000000 0.00000000 0.08595496## assistance 0.00000000 0.03247808 0.01831502 0.05157298## coalition 0.01783803 0.00000000 0.05494505 0.03438198## commerce 0.00000000 0.00000000 0.00000000 0.00000000## confront 0.03567606 0.00000000 0.05494505 0.03438198## difficult 0.01783803 0.00000000 0.00000000 0.05157298## doctors 0.03567606 0.00000000 0.05494505 0.01719099## earth 0.01783803 0.00000000 0.01831502 0.03438198## everybody 0.00000000 0.00000000 0.01831502 0.00000000## expand 0.03567606 0.03247808 0.03663004 0.01719099## joint 0.01783803 0.03247808 0.00000000 0.01719099## known 0.01783803 0.16239039 0.01831502 0.00000000## longer 0.00000000 0.03247808 0.01831502 0.00000000## promote 0.00000000 0.03247808 0.03663004 0.03438198## receive 0.03567606 0.00000000 0.07326007 0.00000000## south 0.01783803 0.03247808 0.03663004 0.01719099## told 0.00000000 0.00000000 0.01831502 0.00000000## trying 0.00000000 0.06495615 0.01831502 0.01719099## urge 0.00000000 0.00000000 0.09157509 0.00000000## willing 0.01783803 0.00000000 0.00000000 0.00000000## world^s 0.00000000 0.03247808 0.01831502 0.01719099## allow 0.05351409 0.03247808 0.01831502 0.06876397## banks 0.00000000 0.00000000 0.00000000 0.00000000## debate 0.01783803 0.00000000 0.00000000 0.06876397## didn^t 0.05351409 0.00000000 0.00000000 0.00000000## fear 0.00000000 0.09743423 0.03663004 0.00000000## folks 0.00000000 0.00000000 0.00000000 0.00000000## hold 0.01783803 0.00000000 0.00000000 0.03438198## incentives 0.00000000 0.00000000 0.00000000 0.01719099## issues 0.00000000 0.00000000 0.00000000 0.01719099## old 0.03567606 0.00000000 0.00000000 0.00000000## point 0.00000000 0.00000000 0.00000000 0.00000000## poverty 0.05351409 0.00000000 0.00000000 0.01719099## proud 0.01783803 0.06495615 0.00000000 0.03438198## stay 0.01783803 0.00000000 0.00000000 0.01719099## strategy 0.05351409 0.03247808 0.01831502 0.03438198## taking 0.01783803 0.00000000 0.01831502 0.08595496## three 0.07135212 0.00000000 0.01831502 0.00000000## trillion 0.00000000 0.00000000 0.00000000 0.00000000## true 0.01783803 0.06495615 0.00000000 0.00000000## approach 0.01783803 0.00000000 0.00000000 0.00000000## danger 0.05351409 0.03247808 0.05494505 0.01719099## expect 0.01783803 0.03247808 0.00000000 0.03438198## highest 0.00000000 0.03247808 0.00000000 0.03438198## honor 0.01783803 0.00000000 0.01831502 0.00000000## kind 0.00000000 0.03247808 0.00000000 0.00000000## largest 0.00000000 0.03247808 0.01831502 0.00000000## loans 0.00000000 0.00000000 0.00000000 0.00000000## love 0.03567606 0.00000000 0.00000000 0.00000000## message 0.01783803 0.03247808 0.05494505 0.03438198## p 0.01783803 0.03247808 0.01831502 0.01719099## products 0.00000000 0.00000000 0.00000000 0.05157298## r 0.01783803 0.03247808 0.00000000 0.01719099## region 0.03567606 0.03247808 0.05494505 0.05157298## russia 0.03567606 0.00000000 0.01831502 0.00000000## side 0.05351409 0.03247808 0.00000000 0.03438198## step 0.07135212 0.00000000 0.01831502 0.00000000## street 0.00000000 0.00000000 0.00000000 0.00000000## struggle 0.12486621 0.06495615 0.03663004 0.03438198## turn 0.03567606 0.03247808 0.01831502 0.00000000## vital 0.03567606 0.00000000 0.03663004 0.08595496## ways 0.07135212 0.00000000 0.03663004 0.01719099## what^s 0.00000000 0.00000000 0.00000000 0.00000000## accounts 0.01783803 0.00000000 0.01831502 0.01719099## attack 0.01783803 0.12991231 0.03663004 0.01719099## border 0.08919015 0.00000000 0.00000000 0.06876397## came 0.05351409 0.03247808 0.00000000 0.01719099## choice 0.00000000 0.00000000 0.01831502 0.05157298## choices 0.03567606 0.00000000 0.00000000 0.03438198## commission 0.00000000 0.00000000 0.00000000 0.01719099## comprehensive 0.01783803 0.03247808 0.03663004 0.00000000## corporate 0.00000000 0.00000000 0.03663004 0.00000000## getting 0.00000000 0.00000000 0.00000000 0.00000000## helped 0.01783803 0.00000000 0.01831502 0.00000000## inspectors 0.00000000 0.00000000 0.20146520 0.00000000## leading 0.00000000 0.00000000 0.01831502 0.08595496## living 0.03567606 0.00000000 0.01831502 0.00000000## lost 0.00000000 0.03247808 0.01831502 0.01719099## medicine 0.01783803 0.00000000 0.07326007 0.01719099## might 0.00000000 0.00000000 0.05494505 0.01719099## natural 0.00000000 0.03247808 0.00000000 0.00000000## necessary 0.01783803 0.03247808 0.01831502 0.00000000## remains 0.01783803 0.00000000 0.00000000 0.05157298## remember 0.01783803 0.12991231 0.03663004 0.00000000## resources 0.01783803 0.00000000 0.01831502 0.00000000## return 0.01783803 0.03247808 0.00000000 0.03438198## run 0.01783803 0.00000000 0.03663004 0.06876397## senate 0.08919015 0.00000000 0.01831502 0.01719099## small-business 0.00000000 0.00000000 0.00000000 0.00000000## spoke 0.01783803 0.03247808 0.00000000 0.01719099## succeed 0.03567606 0.00000000 0.01831502 0.01719099## wages 0.01783803 0.00000000 0.00000000 0.01719099## week 0.01783803 0.00000000 0.00000000 0.03438198## woman 0.00000000 0.00000000 0.01831502 0.00000000## you^re 0.00000000 0.00000000 0.00000000 0.00000000## add 0.01783803 0.00000000 0.01831502 0.01719099## alternative 0.03567606 0.00000000 0.00000000 0.00000000## beyond 0.00000000 0.00000000 0.01831502 0.03438198## bills 0.03567606 0.00000000 0.00000000 0.00000000## buy 0.00000000 0.00000000 0.00000000 0.00000000## cars 0.01783803 0.00000000 0.01831502 0.01719099## common 0.00000000 0.00000000 0.00000000 0.01719099## compassion 0.01783803 0.00000000 0.07326007 0.01719099## competitiveness 0.00000000 0.00000000 0.00000000 0.01719099## determined 0.03567606 0.03247808 0.01831502 0.01719099## develop 0.00000000 0.00000000 0.05494505 0.01719099## diplomacy 0.07135212 0.03247808 0.00000000 0.00000000## dream 0.00000000 0.00000000 0.00000000 0.00000000## dreams 0.01783803 0.00000000 0.00000000 0.01719099## during 0.00000000 0.03247808 0.03663004 0.01719099## duty 0.10702818 0.03247808 0.03663004 0.03438198## election 0.00000000 0.00000000 0.00000000 0.01719099## equal 0.00000000 0.00000000 0.00000000 0.01719099## especially 0.01783803 0.00000000 0.00000000 0.00000000## giving 0.03567606 0.06495615 0.01831502 0.00000000## groups 0.00000000 0.03247808 0.05494505 0.03438198## homes 0.00000000 0.03247808 0.00000000 0.01719099## hopeful 0.00000000 0.00000000 0.00000000 0.03438198## kill 0.07135212 0.09743423 0.05494505 0.00000000## leader 0.00000000 0.12991231 0.01831502 0.03438198## long-term 0.00000000 0.00000000 0.00000000 0.00000000## materials 0.00000000 0.00000000 0.12820513 0.00000000## moment 0.01783803 0.06495615 0.00000000 0.01719099## month 0.01783803 0.00000000 0.00000000 0.03438198## often 0.05351409 0.00000000 0.00000000 0.01719099## people^s 0.01783803 0.00000000 0.01831502 0.03438198## prescription 0.00000000 0.00000000 0.01831502 0.00000000## quality 0.00000000 0.00000000 0.00000000 0.01719099## real 0.00000000 0.00000000 0.01831502 0.00000000## reason 0.00000000 0.03247808 0.00000000 0.00000000## record 0.00000000 0.00000000 0.05494505 0.06876397## reduction 0.00000000 0.00000000 0.00000000 0.00000000## renewable 0.01783803 0.00000000 0.00000000 0.03438198## requires 0.08919015 0.00000000 0.00000000 0.03438198## sanctions 0.01783803 0.00000000 0.01831502 0.00000000## sick 0.01783803 0.00000000 0.00000000 0.00000000## solar 0.01783803 0.00000000 0.00000000 0.00000000## solve 0.01783803 0.00000000 0.00000000 0.00000000## works 0.00000000 0.00000000 0.01831502 0.00000000## agenda 0.00000000 0.00000000 0.00000000 0.00000000## along 0.00000000 0.00000000 0.05494505 0.01719099## arms 0.01783803 0.00000000 0.03663004 0.00000000## bad 0.01783803 0.00000000 0.00000000 0.00000000## close 0.01783803 0.03247808 0.00000000 0.00000000## construction 0.00000000 0.00000000 0.00000000 0.00000000## dcpd 0.00000000 0.00000000 0.00000000 0.00000000## deliver 0.03567606 0.03247808 0.00000000 0.03438198## developing 0.01783803 0.00000000 0.03663004 0.06876397## dignity 0.00000000 0.00000000 0.01831502 0.05157298## easy 0.01783803 0.00000000 0.00000000 0.00000000## elected 0.05351409 0.03247808 0.00000000 0.01719099## found 0.01783803 0.06495615 0.01831502 0.01719099## i^ll 0.01783803 0.00000000 0.00000000 0.03438198## institutions 0.00000000 0.00000000 0.00000000 0.00000000## interests 0.03567606 0.00000000 0.01831502 0.05157298## iraqis 0.05351409 0.00000000 0.00000000 0.08595496## january 0.03567606 0.00000000 0.01831502 0.01719099## kennedy 0.00000000 0.00000000 0.00000000 0.00000000## labor 0.00000000 0.00000000 0.00000000 0.00000000## level 0.01783803 0.03247808 0.00000000 0.03438198## mass 0.00000000 0.00000000 0.09157509 0.00000000## nation^s 0.05351409 0.00000000 0.01831502 0.01719099## order 0.01783803 0.00000000 0.05494505 0.01719099## paying 0.00000000 0.00000000 0.00000000 0.00000000## personal 0.00000000 0.00000000 0.01831502 0.00000000## produce 0.00000000 0.00000000 0.09157509 0.00000000## production 0.01783803 0.00000000 0.05494505 0.00000000## referred 0.01783803 0.03247808 0.00000000 0.01719099## says 0.03567606 0.00000000 0.03663004 0.01719099## simple 0.00000000 0.00000000 0.01831502 0.00000000## soon 0.00000000 0.00000000 0.01831502 0.01719099## special 0.05351409 0.00000000 0.00000000 0.01719099## tough 0.00000000 0.00000000 0.01831502 0.03438198## toward 0.03567606 0.00000000 0.03663004 0.03438198## wall 0.00000000 0.00000000 0.01831502 0.00000000## win 0.01783803 0.03247808 0.00000000 0.00000000## advanced 0.00000000 0.00000000 0.01831502 0.03438198## age 0.00000000 0.09743423 0.03663004 0.00000000## asia 0.00000000 0.06495615 0.01831502 0.00000000## combat 0.01783803 0.03247808 0.00000000 0.01719099## compete 0.00000000 0.00000000 0.00000000 0.05157298## competitive 0.01783803 0.00000000 0.00000000 0.01719099## dangerous 0.00000000 0.00000000 0.01831502 0.03438198## differences 0.03567606 0.00000000 0.00000000 0.01719099## domestic 0.01783803 0.03247808 0.01831502 0.00000000## double 0.01783803 0.00000000 0.01831502 0.03438198## eliminate 0.01783803 0.03247808 0.00000000 0.01719099## executive 0.00000000 0.00000000 0.00000000 0.01719099## further 0.01783803 0.00000000 0.01831502 0.01719099## group 0.01783803 0.06495615 0.00000000 0.00000000## illegal 0.01783803 0.00000000 0.03663004 0.03438198## knows 0.03567606 0.00000000 0.00000000 0.01719099## local 0.08919015 0.03247808 0.00000000 0.03438198## marriage 0.00000000 0.00000000 0.01831502 0.00000000## none 0.00000000 0.00000000 0.01831502 0.03438198## party 0.01783803 0.00000000 0.00000000 0.00000000## path 0.03567606 0.06495615 0.00000000 0.03438198## pays 0.00000000 0.00000000 0.03663004 0.00000000## priorities 0.01783803 0.00000000 0.03663004 0.00000000## process 0.01783803 0.00000000 0.01831502 0.00000000## promotion 0.00000000 0.00000000 0.00000000 0.00000000## rise 0.01783803 0.00000000 0.03663004 0.05157298## supporting 0.00000000 0.00000000 0.03663004 0.05157298## task 0.03567606 0.03247808 0.00000000 0.00000000## thanks 0.01783803 0.03247808 0.00000000 0.05157298## third 0.00000000 0.00000000 0.01831502 0.00000000## yes 0.00000000 0.00000000 0.00000000 0.00000000## actions 0.00000000 0.00000000 0.01831502 0.03438198## break 0.00000000 0.00000000 0.00000000 0.03438198## campaign 0.00000000 0.03247808 0.00000000 0.00000000## character 0.05351409 0.00000000 0.01831502 0.00000000## chief 0.00000000 0.00000000 0.03663004 0.00000000## city 0.01783803 0.09743423 0.00000000 0.01719099## competition 0.00000000 0.00000000 0.00000000 0.01719099## creating 0.00000000 0.00000000 0.00000000 0.01719099## crime 0.00000000 0.03247808 0.00000000 0.00000000## dc 0.01783803 0.00000000 0.01831502 0.01719099## effective 0.00000000 0.03247808 0.03663004 0.03438198## evidence 0.00000000 0.03247808 0.10989011 0.00000000## evil 0.03567606 0.06495615 0.07326007 0.01719099## fall 0.01783803 0.00000000 0.01831502 0.01719099## fix 0.01783803 0.00000000 0.00000000 0.00000000## homeland 0.01783803 0.06495615 0.05494505 0.01719099## individuals 0.00000000 0.00000000 0.00000000 0.03438198## little 0.01783803 0.00000000 0.00000000 0.00000000## lose 0.00000000 0.00000000 0.00000000 0.00000000## neighbors 0.00000000 0.00000000 0.00000000 0.03438198## note 0.01783803 0.03247808 0.00000000 0.01719099## parts 0.00000000 0.00000000 0.01831502 0.00000000## presidential 0.01783803 0.03247808 0.00000000 0.01719099## proposal 0.03567606 0.00000000 0.00000000 0.01719099## proposing 0.00000000 0.00000000 0.03663004 0.00000000## question 0.03567606 0.00000000 0.00000000 0.00000000## remain 0.00000000 0.00000000 0.00000000 0.01719099## remarks 0.00000000 0.03247808 0.00000000 0.01719099## result 0.03567606 0.00000000 0.01831502 0.01719099## saw 0.05351409 0.00000000 0.00000000 0.06876397## scientists 0.00000000 0.00000000 0.07326007 0.03438198## shouldn^t 0.00000000 0.00000000 0.00000000 0.00000000## sign 0.03567606 0.00000000 0.03663004 0.00000000## syria 0.01783803 0.00000000 0.00000000 0.00000000## train 0.03567606 0.00000000 0.00000000 0.01719099## air 0.01783803 0.09743423 0.03663004 0.00000000## anyone 0.00000000 0.00000000 0.00000000 0.01719099## aren^t 0.00000000 0.00000000 0.00000000 0.00000000## average 0.00000000 0.00000000 0.03663004 0.01719099## based 0.01783803 0.00000000 0.00000000 0.03438198## begun 0.01783803 0.00000000 0.01831502 0.00000000## chemical 0.00000000 0.00000000 0.12820513 0.00000000## death 0.05351409 0.00000000 0.05494505 0.00000000## depends 0.01783803 0.03247808 0.00000000 0.03438198## destruction 0.00000000 0.03247808 0.07326007 0.01719099## earn 0.00000000 0.00000000 0.00000000 0.01719099## europe 0.00000000 0.03247808 0.01831502 0.00000000## exports 0.00000000 0.00000000 0.00000000 0.01719099## extremists 0.12486621 0.00000000 0.00000000 0.12033694## friend 0.01783803 0.09743423 0.00000000 0.03438198## gets 0.00000000 0.00000000 0.00000000 0.00000000## greatest 0.05351409 0.00000000 0.01831502 0.00000000## hand 0.00000000 0.06495615 0.00000000 0.01719099## hard-working 0.00000000 0.00000000 0.00000000 0.00000000## interest 0.03567606 0.00000000 0.00000000 0.03438198## internet 0.00000000 0.00000000 0.00000000 0.00000000## iraq^s 0.08919015 0.00000000 0.07326007 0.00000000## israel 0.01783803 0.03247808 0.01831502 0.03438198## jr 0.03567606 0.00000000 0.00000000 0.00000000## least 0.01783803 0.00000000 0.03663004 0.00000000## major 0.00000000 0.00000000 0.03663004 0.01719099## material 0.00000000 0.00000000 0.05494505 0.00000000## minimum 0.00000000 0.00000000 0.00000000 0.00000000## obama 0.00000000 0.00000000 0.00000000 0.00000000## opportunities 0.00000000 0.00000000 0.00000000 0.01719099## options 0.03567606 0.00000000 0.00000000 0.01719099## policies 0.01783803 0.00000000 0.00000000 0.00000000## projects 0.00000000 0.00000000 0.00000000 0.01719099## providing 0.00000000 0.03247808 0.01831502 0.01719099## purpose 0.00000000 0.00000000 0.01831502 0.03438198## recognize 0.00000000 0.00000000 0.01831502 0.03438198## resolve 0.03567606 0.06495615 0.01831502 0.00000000## risk 0.01783803 0.00000000 0.01831502 0.00000000## role 0.00000000 0.00000000 0.00000000 0.00000000## spent 0.00000000 0.00000000 0.01831502 0.00000000## story 0.00000000 0.03247808 0.00000000 0.00000000## talk 0.00000000 0.00000000 0.00000000 0.00000000## throughout 0.00000000 0.03247808 0.03663004 0.00000000## tomorrow 0.00000000 0.00000000 0.00000000 0.03438198## try 0.01783803 0.00000000 0.00000000 0.01719099## worker 0.01783803 0.00000000 0.00000000 0.00000000## worse 0.03567606 0.00000000 0.00000000 0.00000000## ability 0.00000000 0.00000000 0.01831502 0.06876397## accountability 0.00000000 0.00000000 0.00000000 0.01719099## beginning 0.00000000 0.00000000 0.01831502 0.03438198## bigger 0.00000000 0.00000000 0.00000000 0.01719099## borders 0.03567606 0.00000000 0.01831502 0.01719099## broken 0.00000000 0.00000000 0.01831502 0.00000000## deficits 0.01783803 0.00000000 0.00000000 0.01719099## deny 0.00000000 0.00000000 0.01831502 0.10314595## difference 0.00000000 0.00000000 0.00000000 0.00000000## disease 0.03567606 0.00000000 0.01831502 0.01719099## employers 0.01783803 0.00000000 0.01831502 0.00000000## entrepreneurs 0.00000000 0.00000000 0.00000000 0.01719099## faster 0.00000000 0.00000000 0.01831502 0.01719099## fully 0.01783803 0.00000000 0.03663004 0.05157298## gave 0.00000000 0.00000000 0.01831502 0.01719099## hit 0.00000000 0.00000000 0.00000000 0.01719099## learn 0.00000000 0.00000000 0.05494505 0.03438198## looking 0.00000000 0.00000000 0.00000000 0.01719099## patients 0.01783803 0.00000000 0.01831502 0.01719099## police 0.00000000 0.06495615 0.00000000 0.03438198## profits 0.00000000 0.00000000 0.03663004 0.00000000## representatives 0.01783803 0.03247808 0.01831502 0.00000000## responsibilities 0.03567606 0.03247808 0.00000000 0.05157298## road 0.00000000 0.00000000 0.00000000 0.00000000## test 0.00000000 0.00000000 0.01831502 0.00000000## they^ve 0.00000000 0.00000000 0.00000000 0.00000000## track 0.00000000 0.03247808 0.03663004 0.03438198## wait 0.00000000 0.00000000 0.00000000 0.00000000## whole 0.00000000 0.00000000 0.03663004 0.01719099## worst 0.00000000 0.00000000 0.00000000 0.00000000## york 0.00000000 0.12991231 0.01831502 0.00000000## become 0.01783803 0.00000000 0.00000000 0.00000000## biological 0.00000000 0.00000000 0.10989011 0.00000000## breaks 0.00000000 0.00000000 0.00000000 0.00000000## bringing 0.01783803 0.00000000 0.01831502 0.01719099## brought 0.00000000 0.06495615 0.00000000 0.01719099## cancer 0.00000000 0.00000000 0.00000000 0.00000000## changed 0.01783803 0.00000000 0.01831502 0.06876397## changes 0.00000000 0.00000000 0.00000000 0.00000000## changing 0.03567606 0.00000000 0.00000000 0.01719099## concerns 0.00000000 0.00000000 0.00000000 0.00000000## confident 0.00000000 0.03247808 0.01831502 0.01719099## creation 0.00000000 0.03247808 0.00000000 0.00000000## critical 0.03567606 0.00000000 0.00000000 0.05157298## current 0.03567606 0.00000000 0.03663004 0.00000000## demand 0.00000000 0.00000000 0.03663004 0.03438198## early 0.00000000 0.00000000 0.01831502 0.00000000## else 0.00000000 0.00000000 0.00000000 0.00000000## expanding 0.00000000 0.00000000 0.00000000 0.06876397## feel 0.00000000 0.00000000 0.00000000 0.00000000## fiscal 0.00000000 0.00000000 0.00000000 0.00000000## five 0.05351409 0.00000000 0.01831502 0.00000000## follow 0.01783803 0.06495615 0.01831502 0.01719099## gone 0.01783803 0.03247808 0.03663004 0.00000000## ground 0.00000000 0.06495615 0.00000000 0.01719099## he^s 0.01783803 0.00000000 0.00000000 0.00000000## hear 0.03567606 0.00000000 0.03663004 0.00000000## helps 0.00000000 0.00000000 0.00000000 0.00000000## hiv 0.03567606 0.00000000 0.01831502 0.01719099## hundreds 0.00000000 0.03247808 0.00000000 0.03438198## industries 0.00000000 0.00000000 0.00000000 0.00000000## intend 0.01783803 0.00000000 0.00000000 0.00000000## isn^t 0.00000000 0.00000000 0.00000000 0.00000000## jill 0.00000000 0.00000000 0.00000000 0.00000000## keeping 0.00000000 0.00000000 0.01831502 0.01719099## mean 0.01783803 0.00000000 0.01831502 0.03438198## met 0.03567606 0.00000000 0.01831502 0.10314595## mom 0.00000000 0.03247808 0.01831502 0.00000000## online 0.01783803 0.03247808 0.01831502 0.01719099## option 0.00000000 0.00000000 0.01831502 0.01719099## partners 0.01783803 0.00000000 0.01831502 0.00000000## pursue 0.00000000 0.03247808 0.00000000 0.03438198## rebuilding 0.01783803 0.00000000 0.00000000 0.00000000## results 0.01783803 0.00000000 0.00000000 0.06876397## safer 0.00000000 0.00000000 0.01831502 0.01719099## safety 0.01783803 0.03247808 0.03663004 0.00000000## spread 0.01783803 0.00000000 0.00000000 0.01719099## starting 0.00000000 0.00000000 0.00000000 0.00000000## stopped 0.01783803 0.03247808 0.01831502 0.01719099## takes 0.00000000 0.00000000 0.00000000 0.00000000## taxpayers 0.00000000 0.00000000 0.01831502 0.01719099## uniform 0.01783803 0.03247808 0.00000000 0.00000000## unless 0.03567606 0.00000000 0.00000000 0.01719099## upon 0.00000000 0.03247808 0.05494505 0.00000000## victory 0.03567606 0.00000000 0.01831502 0.00000000## whatever 0.03567606 0.00000000 0.05494505 0.00000000## wind 0.01783803 0.00000000 0.00000000 0.00000000## worth 0.00000000 0.00000000 0.00000000 0.01719099## account 0.01783803 0.00000000 0.01831502 0.01719099## achievement 0.03567606 0.03247808 0.00000000 0.03438198## advance 0.01783803 0.03247808 0.00000000 0.01719099## agents 0.01783803 0.06495615 0.09157509 0.01719099## allowed 0.00000000 0.03247808 0.00000000 0.00000000## available 0.03567606 0.00000000 0.01831502 0.00000000## began 0.03567606 0.00000000 0.01831502 0.01719099## brave 0.05351409 0.00000000 0.03663004 0.01719099## career 0.00000000 0.00000000 0.00000000 0.00000000## certain 0.00000000 0.03247808 0.00000000 0.00000000## committed 0.01783803 0.03247808 0.00000000 0.01719099## conflict 0.05351409 0.03247808 0.00000000 0.00000000## congressional 0.00000000 0.00000000 0.03663004 0.01719099## constitution 0.03567606 0.00000000 0.00000000 0.03438198## credits 0.00000000 0.00000000 0.00000000 0.00000000## debates 0.01783803 0.00000000 0.00000000 0.01719099## decline 0.00000000 0.00000000 0.00000000 0.00000000## diplomatic 0.01783803 0.00000000 0.01831502 0.00000000## easier 0.00000000 0.00000000 0.00000000 0.00000000## either 0.00000000 0.03247808 0.00000000 0.01719099## entire 0.03567606 0.03247808 0.00000000 0.00000000## equality 0.00000000 0.00000000 0.00000000 0.00000000## extend 0.01783803 0.00000000 0.01831502 0.03438198## fastest 0.00000000 0.00000000 0.00000000 0.00000000## fill 0.00000000 0.00000000 0.01831502 0.00000000## food 0.00000000 0.00000000 0.03663004 0.05157298## gives 0.01783803 0.00000000 0.00000000 0.01719099## killed 0.00000000 0.00000000 0.01831502 0.03438198## korean 0.01783803 0.03247808 0.09157509 0.00000000## later 0.00000000 0.00000000 0.00000000 0.03438198## lay 0.00000000 0.00000000 0.01831502 0.00000000## learning 0.00000000 0.00000000 0.01831502 0.01719099## lift 0.03567606 0.03247808 0.01831502 0.00000000## line 0.00000000 0.00000000 0.01831502 0.00000000## michelle 0.00000000 0.00000000 0.00000000 0.00000000## mortgage 0.00000000 0.00000000 0.00000000 0.00000000## murder 0.01783803 0.06495615 0.03663004 0.00000000## needed 0.01783803 0.03247808 0.00000000 0.00000000## networks 0.00000000 0.00000000 0.01831502 0.00000000## officers 0.00000000 0.00000000 0.01831502 0.01719099## ones 0.00000000 0.00000000 0.00000000 0.00000000## overseas 0.01783803 0.00000000 0.00000000 0.01719099## plans 0.01783803 0.03247808 0.01831502 0.03438198## prepare 0.00000000 0.00000000 0.00000000 0.00000000## prison 0.00000000 0.00000000 0.01831502 0.00000000## raising 0.03567606 0.00000000 0.01831502 0.00000000## rebuild 0.00000000 0.06495615 0.01831502 0.03438198## reducing 0.00000000 0.00000000 0.03663004 0.01719099## restore 0.00000000 0.00000000 0.00000000 0.00000000## sacrifice 0.01783803 0.00000000 0.01831502 0.01719099## services 0.01783803 0.03247808 0.00000000 0.03438198## size 0.03567606 0.00000000 0.01831502 0.01719099## source 0.00000000 0.09743423 0.00000000 0.03438198## st 0.01783803 0.00000000 0.00000000 0.03438198## standing 0.00000000 0.00000000 0.00000000 0.03438198## started 0.00000000 0.00000000 0.03663004 0.01719099## themselves 0.01783803 0.00000000 0.01831502 0.00000000## today^s 0.00000000 0.00000000 0.00000000 0.00000000## transportation 0.00000000 0.00000000 0.00000000 0.00000000## turned 0.01783803 0.03247808 0.03663004 0.01719099## welcome 0.01783803 0.06495615 0.00000000 0.01719099## you^ve 0.01783803 0.00000000 0.01831502 0.00000000## above 0.05351409 0.03247808 0.00000000 0.01719099## ambitions 0.01783803 0.00000000 0.07326007 0.00000000## areas 0.00000000 0.00000000 0.00000000 0.03438198## begins 0.01783803 0.03247808 0.00000000 0.00000000## biggest 0.00000000 0.00000000 0.00000000 0.00000000## burden 0.01783803 0.00000000 0.00000000 0.00000000## carbon 0.00000000 0.00000000 0.00000000 0.01719099## citizen 0.03567606 0.00000000 0.01831502 0.01719099## cleaner 0.00000000 0.00000000 0.03663004 0.01719099## cuba 0.01783803 0.00000000 0.00000000 0.01719099## customers 0.00000000 0.00000000 0.00000000 0.01719099## dangers 0.03567606 0.03247808 0.03663004 0.01719099## depend 0.00000000 0.00000000 0.03663004 0.00000000## deployment 0.00000000 0.00000000 0.00000000 0.00000000## destroyed 0.00000000 0.00000000 0.09157509 0.00000000## disarm 0.00000000 0.00000000 0.10989011 0.00000000## earned 0.01783803 0.00000000 0.00000000 0.00000000## failure 0.05351409 0.00000000 0.01831502 0.00000000## field 0.03567606 0.00000000 0.03663004 0.01719099## george 0.00000000 0.09743423 0.00000000 0.00000000## grateful 0.00000000 0.03247808 0.00000000 0.03438198## hands 0.00000000 0.00000000 0.00000000 0.00000000## here^s 0.00000000 0.00000000 0.00000000 0.00000000## hour 0.05351409 0.03247808 0.01831502 0.00000000## increased 0.00000000 0.00000000 0.00000000 0.01719099## isil 0.00000000 0.00000000 0.00000000 0.00000000## land 0.03567606 0.03247808 0.00000000 0.06876397## loopholes 0.00000000 0.00000000 0.00000000 0.00000000## munitions 0.00000000 0.00000000 0.03663004 0.00000000## names 0.00000000 0.03247808 0.00000000 0.00000000## officials 0.00000000 0.00000000 0.05494505 0.00000000## owners 0.00000000 0.00000000 0.00000000 0.00000000## payroll 0.05351409 0.00000000 0.00000000 0.00000000## permanent 0.00000000 0.00000000 0.01831502 0.01719099## play 0.00000000 0.00000000 0.00000000 0.00000000## pollution 0.00000000 0.00000000 0.01831502 0.00000000## prepared 0.01783803 0.00000000 0.01831502 0.00000000## presidency 0.00000000 0.00000000 0.00000000 0.00000000## press 0.03567606 0.00000000 0.00000000 0.01719099## prevention 0.00000000 0.00000000 0.00000000 0.00000000## prices 0.00000000 0.00000000 0.00000000 0.03438198## protecting 0.00000000 0.00000000 0.00000000 0.03438198## protection 0.00000000 0.00000000 0.00000000 0.01719099## relations 0.00000000 0.00000000 0.00000000 0.00000000## required 0.01783803 0.00000000 0.01831502 0.00000000## rule 0.01783803 0.00000000 0.00000000 0.05157298## sell 0.00000000 0.00000000 0.01831502 0.01719099## shape 0.01783803 0.00000000 0.00000000 0.01719099## simply 0.00000000 0.00000000 0.00000000 0.00000000## sound 0.01783803 0.00000000 0.01831502 0.00000000## stock 0.01783803 0.00000000 0.01831502 0.00000000## taliban 0.03567606 0.16239039 0.00000000 0.03438198## teacher 0.00000000 0.00000000 0.00000000 0.00000000## thousand 0.00000000 0.00000000 0.00000000 0.00000000## tools 0.01783803 0.03247808 0.00000000 0.03438198## tuition 0.00000000 0.00000000 0.00000000 0.00000000## universities 0.00000000 0.00000000 0.00000000 0.00000000## using 0.03567606 0.00000000 0.01831502 0.01719099## walk 0.00000000 0.00000000 0.00000000 0.00000000## wrong 0.00000000 0.00000000 0.00000000 0.00000000## you^ll 0.00000000 0.00000000 0.00000000 0.00000000## adding 0.00000000 0.00000000 0.01831502 0.03438198## agencies 0.00000000 0.03247808 0.01831502 0.03438198## agreements 0.00000000 0.00000000 0.00000000 0.06876397## aid 0.01783803 0.09743423 0.01831502 0.03438198## among 0.03567606 0.03247808 0.01831502 0.01719099## answer 0.01783803 0.00000000 0.01831502 0.00000000## authority 0.00000000 0.00000000 0.00000000 0.01719099## born 0.03567606 0.00000000 0.01831502 0.00000000## capital 0.03567606 0.00000000 0.00000000 0.01719099## center 0.01783803 0.06495615 0.01831502 0.00000000## charge 0.00000000 0.00000000 0.01831502 0.01719099## consumer 0.00000000 0.00000000 0.00000000 0.01719099## cooperation 0.00000000 0.03247808 0.00000000 0.00000000## cover 0.01783803 0.00000000 0.00000000 0.00000000## cutting 0.01783803 0.00000000 0.03663004 0.00000000## demands 0.01783803 0.06495615 0.00000000 0.00000000## directly 0.00000000 0.06495615 0.00000000 0.03438198## doubt 0.00000000 0.00000000 0.00000000 0.01719099## essential 0.01783803 0.03247808 0.01831502 0.03438198## faith-based 0.00000000 0.00000000 0.01831502 0.05157298## fewer 0.00000000 0.00000000 0.00000000 0.00000000## finish 0.00000000 0.00000000 0.00000000 0.00000000## forget 0.01783803 0.16239039 0.00000000 0.00000000## fuel 0.05351409 0.00000000 0.00000000 0.00000000## funds 0.05351409 0.00000000 0.00000000 0.01719099## grants 0.03567606 0.00000000 0.00000000 0.05157298## healthy 0.00000000 0.00000000 0.01831502 0.00000000## held 0.05351409 0.00000000 0.00000000 0.01719099## independent 0.00000000 0.00000000 0.00000000 0.00000000## influence 0.00000000 0.06495615 0.00000000 0.01719099## itself 0.00000000 0.09743423 0.01831502 0.00000000## joe 0.00000000 0.00000000 0.00000000 0.00000000## joseph 0.00000000 0.00000000 0.00000000 0.00000000## late 0.03567606 0.00000000 0.03663004 0.00000000## leads 0.00000000 0.00000000 0.01831502 0.03438198## lending 0.00000000 0.00000000 0.00000000 0.00000000## letter 0.00000000 0.00000000 0.00000000 0.01719099## lobbyists 0.00000000 0.00000000 0.00000000 0.00000000## majority 0.03567606 0.06495615 0.00000000 0.00000000## measures 0.00000000 0.09743423 0.05494505 0.00000000## naturalization 0.00000000 0.00000000 0.00000000 0.00000000## offensive 0.01783803 0.00000000 0.00000000 0.00000000## palestinian 0.01783803 0.00000000 0.00000000 0.06876397## partnership 0.00000000 0.00000000 0.00000000 0.00000000## paychecks 0.00000000 0.00000000 0.03663004 0.01719099## peaceful 0.00000000 0.09743423 0.01831502 0.01719099## per 0.00000000 0.00000000 0.01831502 0.00000000## planet 0.00000000 0.00000000 0.00000000 0.00000000## pledge 0.00000000 0.00000000 0.03663004 0.03438198## quickly 0.00000000 0.00000000 0.01831502 0.01719099## recently 0.00000000 0.00000000 0.03663004 0.01719099## reductions 0.00000000 0.00000000 0.03663004 0.00000000## released 0.01783803 0.00000000 0.00000000 0.03438198## review 0.00000000 0.00000000 0.00000000 0.00000000## reward 0.00000000 0.00000000 0.00000000 0.00000000## sector 0.00000000 0.00000000 0.00000000 0.00000000## senator 0.01783803 0.03247808 0.00000000 0.03438198## served 0.00000000 0.00000000 0.00000000 0.00000000## several 0.00000000 0.00000000 0.03663004 0.00000000## shared 0.01783803 0.00000000 0.01831502 0.01719099## showing 0.01783803 0.00000000 0.01831502 0.00000000## space 0.01783803 0.00000000 0.00000000 0.00000000## struggling 0.00000000 0.00000000 0.00000000 0.03438198## supported 0.00000000 0.00000000 0.00000000 0.00000000## surely 0.01783803 0.00000000 0.00000000 0.00000000## threaten 0.00000000 0.03247808 0.01831502 0.01719099## value 0.00000000 0.03247808 0.00000000 0.00000000## weeks 0.03567606 0.00000000 0.00000000 0.00000000## workforce 0.00000000 0.00000000 0.00000000 0.00000000## accept 0.00000000 0.00000000 0.03663004 0.00000000## added 0.01783803 0.00000000 0.00000000 0.01719099## anything 0.00000000 0.00000000 0.00000000 0.00000000## baghdad 0.08919015 0.00000000 0.00000000 0.03438198## base 0.00000000 0.00000000 0.01831502 0.01719099## benefit 0.01783803 0.00000000 0.00000000 0.00000000## bin 0.01783803 0.06495615 0.00000000 0.03438198## capacity 0.01783803 0.00000000 0.00000000 0.00000000## categories 0.00000000 0.00000000 0.00000000 0.00000000## civilians 0.01783803 0.06495615 0.00000000 0.01719099## complete 0.01783803 0.00000000 0.00000000 0.03438198## conditions 0.01783803 0.00000000 0.00000000 0.03438198## defeat 0.00000000 0.06495615 0.00000000 0.00000000## deserves 0.00000000 0.00000000 0.00000000 0.01719099## desire 0.01783803 0.00000000 0.01831502 0.01719099## distinguished 0.01783803 0.03247808 0.01831502 0.01719099## documents 0.01783803 0.03247808 0.01831502 0.01719099## drive 0.01783803 0.09743423 0.00000000 0.00000000## earmarks 0.07135212 0.00000000 0.00000000 0.06876397## effects 0.00000000 0.00000000 0.00000000 0.00000000## emergency 0.01783803 0.03247808 0.01831502 0.01719099## empower 0.00000000 0.00000000 0.00000000 0.18910091## ends 0.00000000 0.03247808 0.00000000 0.00000000## february 0.00000000 0.00000000 0.01831502 0.03438198## forced 0.00000000 0.00000000 0.05494505 0.00000000## forge 0.00000000 0.00000000 0.00000000 0.00000000## four 0.01783803 0.00000000 0.01831502 0.01719099## general 0.00000000 0.00000000 0.00000000 0.03438198## gift 0.00000000 0.00000000 0.05494505 0.00000000## girls 0.03567606 0.00000000 0.03663004 0.03438198## goes 0.01783803 0.03247808 0.01831502 0.00000000## goods 0.00000000 0.00000000 0.00000000 0.01719099## gov 0.01783803 0.06495615 0.01831502 0.01719099## governments 0.01783803 0.09743423 0.01831502 0.00000000## gun 0.00000000 0.00000000 0.00000000 0.00000000## having 0.00000000 0.00000000 0.00000000 0.01719099## high-speed 0.00000000 0.00000000 0.00000000 0.00000000## impact 0.00000000 0.00000000 0.00000000 0.00000000## includes 0.00000000 0.00000000 0.00000000 0.05157298## increasing 0.00000000 0.00000000 0.00000000 0.03438198## knew 0.00000000 0.00000000 0.00000000 0.00000000## laden 0.01783803 0.06495615 0.00000000 0.03438198## leaving 0.00000000 0.00000000 0.01831502 0.00000000## led 0.00000000 0.00000000 0.00000000 0.00000000## massive 0.00000000 0.00000000 0.00000000 0.01719099## operations 0.00000000 0.03247808 0.05494505 0.01719099## pakistan 0.00000000 0.00000000 0.00000000 0.03438198## passing 0.00000000 0.00000000 0.00000000 0.01719099## potential 0.00000000 0.00000000 0.01831502 0.05157298## powerful 0.00000000 0.00000000 0.00000000 0.01719099## priority 0.00000000 0.00000000 0.00000000 0.00000000## project 0.01783803 0.00000000 0.01831502 0.00000000## proposals 0.00000000 0.00000000 0.00000000 0.03438198## protections 0.01783803 0.00000000 0.00000000 0.00000000## putting 0.00000000 0.00000000 0.01831502 0.00000000## reading 0.01783803 0.00000000 0.00000000 0.01719099## reflect 0.01783803 0.00000000 0.00000000 0.00000000## renew 0.00000000 0.00000000 0.03663004 0.00000000## senior 0.00000000 0.00000000 0.00000000 0.00000000## son 0.01783803 0.03247808 0.00000000 0.00000000## stake 0.00000000 0.03247808 0.01831502 0.00000000## stands 0.00000000 0.00000000 0.01831502 0.00000000## streets 0.00000000 0.03247808 0.00000000 0.01719099## supports 0.00000000 0.06495615 0.03663004 0.00000000## tens 0.00000000 0.00000000 0.01831502 0.01719099## thought 0.00000000 0.00000000 0.00000000 0.00000000## unemployed 0.00000000 0.00000000 0.00000000 0.00000000## urgent 0.00000000 0.00000000 0.01831502 0.00000000## veto 0.00000000 0.00000000 0.00000000 0.03438198## vision 0.01783803 0.03247808 0.00000000 0.00000000## vulnerable 0.01783803 0.00000000 0.01831502 0.00000000## waiting 0.01783803 0.00000000 0.00000000 0.00000000## wants 0.00000000 0.00000000 0.00000000 0.00000000## waste 0.00000000 0.00000000 0.00000000 0.00000000## wealthiest 0.00000000 0.00000000 0.00000000 0.00000000## west 0.01783803 0.00000000 0.00000000 0.00000000## accountable 0.01783803 0.00000000 0.00000000 0.00000000## achieved 0.00000000 0.00000000 0.01831502 0.05157298## addiction 0.00000000 0.00000000 0.05494505 0.00000000## addresses 0.00000000 0.00000000 0.00000000 0.00000000## affordability 0.00000000 0.00000000 0.00000000 0.00000000## alliances 0.00000000 0.00000000 0.03663004 0.00000000## arguments 0.01783803 0.00000000 0.00000000 0.00000000## barack 0.00000000 0.00000000 0.00000000 0.00000000## believed 0.00000000 0.00000000 0.01831502 0.01719099## bipartisanship 0.00000000 0.00000000 0.00000000 0.00000000## car 0.00000000 0.00000000 0.03663004 0.00000000## citizenship 0.00000000 0.00000000 0.00000000 0.00000000## coal 0.01783803 0.00000000 0.00000000 0.01719099## commit 0.00000000 0.03247808 0.03663004 0.00000000## communications 0.01783803 0.00000000 0.01831502 0.01719099## confronting 0.00000000 0.00000000 0.01831502 0.06876397## conscience 0.05351409 0.00000000 0.00000000 0.01719099## continuing 0.00000000 0.03247808 0.00000000 0.00000000## corporations 0.00000000 0.00000000 0.00000000 0.00000000## cory 0.00000000 0.00000000 0.00000000 0.00000000## council 0.01783803 0.00000000 0.03663004 0.00000000## counterterrorism 0.00000000 0.00000000 0.00000000 0.00000000## deal 0.00000000 0.00000000 0.00000000 0.01719099## delivered 0.00000000 0.03247808 0.01831502 0.01719099## destiny 0.00000000 0.00000000 0.01831502 0.01719099## direct 0.00000000 0.09743423 0.00000000 0.00000000## diseases 0.00000000 0.00000000 0.01831502 0.00000000## dramatically 0.01783803 0.03247808 0.01831502 0.00000000## efficiency 0.00000000 0.00000000 0.01831502 0.00000000## ended 0.01783803 0.03247808 0.01831502 0.03438198## era 0.00000000 0.00000000 0.01831502 0.00000000## extra 0.00000000 0.00000000 0.01831502 0.01719099## faced 0.01783803 0.00000000 0.01831502 0.01719099## facilities 0.00000000 0.00000000 0.03663004 0.00000000## facts 0.00000000 0.00000000 0.01831502 0.00000000## fail 0.01783803 0.03247808 0.00000000 0.01719099## fast 0.00000000 0.00000000 0.03663004 0.01719099## foundation 0.00000000 0.00000000 0.00000000 0.00000000## g 0.00000000 0.00000000 0.00000000 0.00000000## gay 0.00000000 0.00000000 0.00000000 0.00000000## globe 0.00000000 0.00000000 0.00000000 0.00000000## grew 0.05351409 0.00000000 0.00000000 0.01719099## grows 0.00000000 0.06495615 0.05494505 0.00000000## guests 0.01783803 0.00000000 0.03663004 0.03438198## harder 0.00000000 0.00000000 0.00000000 0.00000000## hardship 0.00000000 0.00000000 0.01831502 0.00000000## honest 0.00000000 0.00000000 0.00000000 0.00000000## hours 0.00000000 0.00000000 0.03663004 0.00000000## immigrants 0.01783803 0.00000000 0.00000000 0.00000000## innocent 0.03567606 0.00000000 0.03663004 0.00000000## insist 0.00000000 0.00000000 0.01831502 0.00000000## kept 0.00000000 0.00000000 0.00000000 0.00000000## key 0.00000000 0.00000000 0.03663004 0.01719099## launch 0.00000000 0.00000000 0.00000000 0.01719099## launched 0.00000000 0.00000000 0.00000000 0.03438198## lawsuits 0.01783803 0.00000000 0.01831502 0.01719099## learned 0.00000000 0.00000000 0.01831502 0.00000000## lebanon 0.03567606 0.00000000 0.00000000 0.06876397## locations 0.00000000 0.00000000 0.00000000 0.00000000## low 0.03567606 0.00000000 0.00000000 0.00000000## low-income 0.00000000 0.00000000 0.01831502 0.01719099## matters 0.01783803 0.00000000 0.01831502 0.05157298## measure 0.00000000 0.00000000 0.00000000 0.03438198## moral 0.00000000 0.00000000 0.01831502 0.01719099## network 0.00000000 0.06495615 0.03663004 0.00000000## pages 0.01783803 0.03247808 0.01831502 0.01719099## partner 0.00000000 0.00000000 0.00000000 0.03438198## playing 0.01783803 0.03247808 0.00000000 0.01719099## premiums 0.00000000 0.00000000 0.00000000 0.00000000## price 0.03567606 0.00000000 0.00000000 0.00000000## principle 0.01783803 0.00000000 0.00000000 0.01719099## promised 0.01783803 0.00000000 0.01831502 0.00000000## pursuing 0.08919015 0.00000000 0.00000000 0.01719099## radical 0.05351409 0.09743423 0.00000000 0.00000000## ready 0.03567606 0.03247808 0.00000000 0.00000000## regimes 0.01783803 0.00000000 0.03663004 0.00000000## report 0.03567606 0.06495615 0.00000000 0.01719099## robert 0.00000000 0.00000000 0.00000000 0.00000000## rural 0.00000000 0.00000000 0.01831502 0.00000000## saving 0.00000000 0.00000000 0.00000000 0.01719099## shores 0.00000000 0.00000000 0.00000000 0.00000000## shot 0.01783803 0.00000000 0.00000000 0.00000000## spanish 0.01783803 0.00000000 0.00000000 0.01719099## standard 0.05351409 0.00000000 0.01831502 0.00000000## status 0.03567606 0.00000000 0.00000000 0.00000000## subjects 0.00000000 0.00000000 0.00000000 0.00000000## subsidies 0.00000000 0.00000000 0.00000000 0.00000000## suffering 0.00000000 0.00000000 0.03663004 0.00000000## supply 0.10702818 0.00000000 0.00000000 0.00000000## taxpayer 0.00000000 0.00000000 0.00000000 0.00000000## teaching 0.00000000 0.00000000 0.00000000 0.00000000## terrible 0.00000000 0.00000000 0.05494505 0.00000000## trained 0.00000000 0.03247808 0.01831502 0.01719099## transition 0.00000000 0.00000000 0.00000000 0.01719099## transparency 0.01783803 0.00000000 0.00000000 0.01719099## travel 0.00000000 0.00000000 0.00000000 0.01719099## truth 0.01783803 0.00000000 0.00000000 0.00000000## unprecedented 0.00000000 0.00000000 0.01831502 0.00000000## water 0.00000000 0.00000000 0.01831502 0.00000000## whose 0.00000000 0.00000000 0.00000000 0.01719099## wife 0.00000000 0.03247808 0.00000000 0.00000000## write 0.00000000 0.00000000 0.00000000 0.00000000## wrote 0.00000000 0.00000000 0.00000000 0.00000000## yemen 0.00000000 0.00000000 0.03663004 0.00000000## younger 0.00000000 0.00000000 0.01831502 0.00000000## advantage 0.00000000 0.00000000 0.00000000 0.00000000## announce 0.00000000 0.06495615 0.00000000 0.01719099## army 0.05351409 0.00000000 0.00000000 0.03438198## aside 0.00000000 0.00000000 0.00000000 0.00000000## attacked 0.01783803 0.06495615 0.00000000 0.01719099## attention 0.01783803 0.00000000 0.01831502 0.00000000## auto 0.00000000 0.00000000 0.00000000 0.00000000## baby 0.05351409 0.00000000 0.00000000 0.00000000## bank 0.00000000 0.00000000 0.00000000 0.00000000## billions 0.00000000 0.00000000 0.00000000 0.00000000## body 0.01783803 0.00000000 0.00000000 0.05157298## bridges 0.00000000 0.00000000 0.00000000 0.00000000## brings 0.01783803 0.00000000 0.00000000 0.01719099## calling 0.01783803 0.00000000 0.01831502 0.01719099## captured 0.00000000 0.00000000 0.00000000 0.03438198## carry 0.01783803 0.06495615 0.00000000 0.01719099## case 0.01783803 0.00000000 0.03663004 0.00000000## cells 0.00000000 0.00000000 0.01831502 0.03438198## chaos 0.03567606 0.00000000 0.01831502 0.01719099## childcare 0.00000000 0.00000000 0.00000000 0.00000000## claims 0.00000000 0.00000000 0.00000000 0.00000000## colombia 0.00000000 0.00000000 0.00000000 0.03438198## commitments 0.03567606 0.00000000 0.00000000 0.01719099## consumers 0.00000000 0.00000000 0.00000000 0.00000000## continued 0.00000000 0.03247808 0.01831502 0.00000000## corps 0.05351409 0.00000000 0.03663004 0.00000000## couldn^t 0.00000000 0.00000000 0.00000000 0.00000000## courts 0.03567606 0.00000000 0.00000000 0.00000000## d 0.01783803 0.00000000 0.00000000 0.00000000## decency 0.00000000 0.03247808 0.00000000 0.01719099## defeated 0.00000000 0.03247808 0.01831502 0.05157298## democrat 0.01783803 0.00000000 0.00000000 0.00000000## denied 0.00000000 0.00000000 0.00000000 0.00000000## dime 0.00000000 0.00000000 0.00000000 0.00000000## diploma 0.00000000 0.00000000 0.00000000 0.00000000## discipline 0.01783803 0.00000000 0.01831502 0.00000000## dollar 0.00000000 0.00000000 0.00000000 0.00000000## doubling 0.01783803 0.00000000 0.00000000 0.00000000## emissions 0.00000000 0.00000000 0.00000000 0.01719099## enterprise 0.01783803 0.03247808 0.00000000 0.00000000## equipment 0.01783803 0.00000000 0.00000000 0.00000000## everywhere 0.00000000 0.06495615 0.00000000 0.00000000## experience 0.00000000 0.00000000 0.00000000 0.00000000## factories 0.00000000 0.00000000 0.00000000 0.00000000## factory 0.00000000 0.00000000 0.00000000 0.00000000## failed 0.00000000 0.00000000 0.00000000 0.03438198## fought 0.00000000 0.00000000 0.00000000 0.00000000## freeze 0.00000000 0.00000000 0.00000000 0.00000000## gain 0.01783803 0.00000000 0.01831502 0.00000000## governor 0.00000000 0.06495615 0.00000000 0.01719099## gpo 0.01783803 0.03247808 0.01831502 0.01719099## graduate 0.00000000 0.00000000 0.00000000 0.00000000## grown 0.03567606 0.00000000 0.00000000 0.00000000## gulf 0.01783803 0.00000000 0.01831502 0.03438198## h 0.00000000 0.00000000 0.07326007 0.01719099## happened 0.00000000 0.06495615 0.01831502 0.01719099## hardest 0.00000000 0.00000000 0.00000000 0.00000000## haven 0.03567606 0.03247808 0.00000000 0.03438198## haven^t 0.00000000 0.00000000 0.00000000 0.00000000## havens 0.03567606 0.00000000 0.00000000 0.01719099## hidden 0.00000000 0.00000000 0.03663004 0.00000000## high-quality 0.00000000 0.00000000 0.01831502 0.00000000## high-tech 0.00000000 0.00000000 0.00000000 0.00000000## hiring 0.00000000 0.00000000 0.00000000 0.01719099## historic 0.00000000 0.00000000 0.01831502 0.00000000## homeowners 0.00000000 0.00000000 0.00000000 0.03438198## hopes 0.01783803 0.03247808 0.01831502 0.00000000## huge 0.07135212 0.00000000 0.00000000 0.00000000## hundred 0.00000000 0.00000000 0.00000000 0.00000000## ideals 0.00000000 0.00000000 0.00000000 0.01719099## independence 0.01783803 0.00000000 0.01831502 0.01719099## india 0.00000000 0.03247808 0.00000000 0.01719099## individual 0.00000000 0.00000000 0.00000000 0.00000000## islamic 0.00000000 0.12991231 0.00000000 0.00000000## japan 0.01783803 0.03247808 0.01831502 0.00000000## killers 0.01783803 0.00000000 0.01831502 0.00000000## language 0.01783803 0.00000000 0.00000000 0.01719099## lasting 0.00000000 0.00000000 0.00000000 0.01719099## legal 0.03567606 0.00000000 0.00000000 0.00000000## lie 0.01783803 0.00000000 0.03663004 0.00000000## march 0.00000000 0.00000000 0.00000000 0.01719099## meeting 0.00000000 0.00000000 0.00000000 0.00000000## missile 0.00000000 0.00000000 0.03663004 0.00000000## monday 0.01783803 0.03247808 0.00000000 0.01719099## moving 0.00000000 0.00000000 0.00000000 0.01719099## n 0.01783803 0.00000000 0.07326007 0.00000000## named 0.00000000 0.09743423 0.00000000 0.00000000## news 0.00000000 0.03247808 0.01831502 0.00000000## officer 0.00000000 0.00000000 0.00000000 0.00000000## opened 0.00000000 0.00000000 0.00000000 0.01719099## owe 0.01783803 0.00000000 0.00000000 0.05157298## pace 0.00000000 0.00000000 0.01831502 0.01719099## peninsula 0.01783803 0.00000000 0.03663004 0.00000000## poor 0.03567606 0.00000000 0.00000000 0.01719099## practices 0.00000000 0.00000000 0.00000000 0.01719099## president^s 0.00000000 0.00000000 0.01831502 0.01719099## presidents 0.01783803 0.03247808 0.01831502 0.00000000## pressure 0.01783803 0.00000000 0.00000000 0.03438198## privilege 0.01783803 0.00000000 0.00000000 0.00000000## protects 0.00000000 0.00000000 0.01831502 0.00000000## publishing 0.01783803 0.03247808 0.01831502 0.01719099## qaida^s 0.00000000 0.03247808 0.00000000 0.03438198## rather 0.00000000 0.00000000 0.00000000 0.00000000## read 0.00000000 0.00000000 0.01831502 0.00000000## refinancing 0.00000000 0.00000000 0.00000000 0.00000000## refuse 0.00000000 0.00000000 0.00000000 0.01719099## reject 0.00000000 0.00000000 0.00000000 0.01719099## risks 0.00000000 0.00000000 0.03663004 0.00000000## roads 0.00000000 0.00000000 0.00000000 0.01719099## seeing 0.00000000 0.00000000 0.00000000 0.01719099## sending 0.01783803 0.00000000 0.01831502 0.00000000## signed 0.00000000 0.00000000 0.00000000 0.00000000## solution 0.00000000 0.00000000 0.01831502 0.01719099## teach 0.00000000 0.00000000 0.00000000 0.00000000## town 0.00000000 0.00000000 0.00000000 0.00000000## transcript 0.01783803 0.00000000 0.00000000 0.01719099## tyranny 0.00000000 0.00000000 0.00000000 0.03438198## ukraine 0.00000000 0.00000000 0.00000000 0.01719099## uninsured 0.01783803 0.00000000 0.00000000 0.00000000## uranium 0.00000000 0.00000000 0.03663004 0.01719099## violent 0.03567606 0.00000000 0.00000000 0.01719099## voice 0.00000000 0.03247808 0.00000000 0.00000000## voices 0.01783803 0.00000000 0.00000000 0.00000000## volume 0.01783803 0.03247808 0.01831502 0.01719099## wars 0.00000000 0.06495615 0.00000000 0.00000000## watch 0.00000000 0.03247808 0.01831502 0.00000000## watching 0.01783803 0.00000000 0.00000000 0.00000000## weapon 0.00000000 0.03247808 0.01831502 0.01719099## went 0.01783803 0.00000000 0.00000000 0.00000000## who^s 0.00000000 0.00000000 0.00000000 0.00000000## worthy 0.01783803 0.00000000 0.00000000 0.01719099## www 0.01783803 0.03247808 0.01831502 0.01719099## absolutely 0.00000000 0.00000000 0.00000000 0.00000000## accounted 0.00000000 0.00000000 0.07326007 0.00000000## acted 0.01783803 0.03247808 0.00000000 0.01719099## acts 0.00000000 0.00000000 0.01831502 0.01719099## addicted 0.00000000 0.00000000 0.05494505 0.00000000## agreed 0.00000000 0.00000000 0.01831502 0.00000000## allen 0.00000000 0.00000000 0.00000000 0.00000000## allowing 0.01783803 0.00000000 0.00000000 0.01719099## ambitious 0.01783803 0.00000000 0.00000000 0.00000000## announcing 0.00000000 0.00000000 0.00000000 0.00000000## apart 0.00000000 0.00000000 0.00000000 0.01719099## argue 0.00000000 0.00000000 0.00000000 0.01719099## battle 0.03567606 0.03247808 0.01831502 0.00000000## belief 0.00000000 0.00000000 0.00000000 0.00000000## boehner 0.00000000 0.00000000 0.00000000 0.01719099## boys 0.00000000 0.00000000 0.03663004 0.03438198## breakthroughs 0.01783803 0.00000000 0.00000000 0.01719099## broader 0.01783803 0.00000000 0.00000000 0.00000000## buildings 0.00000000 0.03247808 0.00000000 0.00000000## burma 0.01783803 0.00000000 0.00000000 0.01719099## cases 0.03567606 0.00000000 0.00000000 0.00000000## causes 0.01783803 0.00000000 0.03663004 0.00000000## cheney 0.01783803 0.00000000 0.01831502 0.01719099## childhood 0.00000000 0.00000000 0.00000000 0.00000000## children^s 0.01783803 0.00000000 0.00000000 0.00000000## cities 0.00000000 0.03247808 0.00000000 0.01719099## classroom 0.00000000 0.00000000 0.01831502 0.00000000## commanders 0.01783803 0.00000000 0.01831502 0.03438198## compilation 0.01783803 0.03247808 0.00000000 0.01719099## concern 0.00000000 0.00000000 0.00000000 0.01719099## conservation 0.00000000 0.00000000 0.01831502 0.00000000## consider 0.00000000 0.00000000 0.03663004 0.00000000## culture 0.00000000 0.00000000 0.01831502 0.00000000## decision 0.00000000 0.03247808 0.01831502 0.00000000## decisive 0.01783803 0.03247808 0.01831502 0.00000000## declared 0.01783803 0.00000000 0.00000000 0.01719099## depression 0.00000000 0.00000000 0.00000000 0.00000000## desk 0.01783803 0.00000000 0.00000000 0.01719099## despite 0.01783803 0.00000000 0.01831502 0.00000000## determination 0.01783803 0.00000000 0.00000000 0.01719099## determine 0.00000000 0.00000000 0.03663004 0.03438198## discretionary 0.00000000 0.00000000 0.01831502 0.00000000## dominate 0.01783803 0.00000000 0.05494505 0.00000000## doubled 0.00000000 0.00000000 0.00000000 0.01719099## dropped 0.01783803 0.00000000 0.01831502 0.00000000## e 0.00000000 0.00000000 0.00000000 0.01719099## earlier 0.00000000 0.00000000 0.00000000 0.00000000## efficient 0.00000000 0.00000000 0.00000000 0.01719099## ending 0.00000000 0.00000000 0.00000000 0.01719099## exchange 0.00000000 0.00000000 0.00000000 0.00000000## expire 0.00000000 0.00000000 0.00000000 0.03438198## extremism 0.01783803 0.03247808 0.00000000 0.03438198## f 0.00000000 0.00000000 0.00000000 0.00000000## fallen 0.00000000 0.00000000 0.00000000 0.00000000## farmers 0.00000000 0.00000000 0.00000000 0.01719099## fears 0.01783803 0.03247808 0.00000000 0.00000000## felt 0.01783803 0.00000000 0.00000000 0.00000000## fields 0.00000000 0.00000000 0.00000000 0.00000000## final 0.00000000 0.00000000 0.01831502 0.00000000## fixing 0.00000000 0.00000000 0.00000000 0.00000000## gentlemen 0.05351409 0.03247808 0.01831502 0.01719099## goals 0.01783803 0.00000000 0.00000000 0.01719099## guantanamo 0.00000000 0.00000000 0.00000000 0.00000000## guarantee 0.00000000 0.00000000 0.00000000 0.01719099## hide 0.00000000 0.06495615 0.03663004 0.00000000## however 0.00000000 0.03247808 0.01831502 0.00000000## ideology 0.03567606 0.00000000 0.01831502 0.00000000## ignore 0.01783803 0.00000000 0.01831502 0.01719099## immediate 0.01783803 0.00000000 0.01831502 0.00000000## improving 0.00000000 0.00000000 0.03663004 0.00000000## incomes 0.00000000 0.00000000 0.00000000 0.00000000## intentions 0.01783803 0.00000000 0.01831502 0.03438198## investing 0.01783803 0.00000000 0.00000000 0.01719099## iranian 0.00000000 0.00000000 0.01831502 0.01719099## ladies 0.05351409 0.03247808 0.01831502 0.01719099## laid 0.00000000 0.00000000 0.00000000 0.01719099## large 0.01783803 0.00000000 0.00000000 0.01719099## liability 0.01783803 0.00000000 0.01831502 0.01719099## limit 0.00000000 0.00000000 0.01831502 0.00000000## listen 0.01783803 0.00000000 0.00000000 0.00000000## losing 0.00000000 0.00000000 0.01831502 0.01719099## main 0.00000000 0.00000000 0.00000000 0.00000000## manufacturers 0.00000000 0.00000000 0.00000000 0.00000000## maybe 0.00000000 0.00000000 0.00000000 0.00000000## mayor 0.00000000 0.06495615 0.00000000 0.00000000## mind 0.01783803 0.00000000 0.00000000 0.00000000## movement 0.03567606 0.06495615 0.00000000 0.00000000## nato 0.03567606 0.03247808 0.00000000 0.01719099## negotiations 0.00000000 0.00000000 0.00000000 0.01719099## neither 0.00000000 0.00000000 0.00000000 0.03438198## night 0.00000000 0.03247808 0.00000000 0.01719099## obligations 0.00000000 0.00000000 0.00000000 0.00000000## offered 0.00000000 0.03247808 0.01831502 0.03438198## ordered 0.00000000 0.00000000 0.01831502 0.00000000## ours 0.01783803 0.00000000 0.00000000 0.00000000## owner 0.00000000 0.00000000 0.00000000 0.00000000## panama 0.00000000 0.00000000 0.00000000 0.01719099## parent 0.00000000 0.00000000 0.00000000 0.00000000## paycheck 0.00000000 0.00000000 0.00000000 0.00000000## pennsylvania 0.00000000 0.03247808 0.01831502 0.00000000## pockets 0.00000000 0.00000000 0.00000000 0.01719099## preventive 0.00000000 0.00000000 0.01831502 0.00000000## prime 0.00000000 0.06495615 0.01831502 0.00000000## professionals 0.00000000 0.00000000 0.00000000 0.00000000## promises 0.01783803 0.00000000 0.00000000 0.00000000## provided 0.00000000 0.00000000 0.00000000 0.00000000## providers 0.00000000 0.00000000 0.00000000 0.00000000## provides 0.03567606 0.00000000 0.01831502 0.00000000## realize 0.00000000 0.00000000 0.00000000 0.03438198## rebekah 0.00000000 0.00000000 0.00000000 0.00000000## recent 0.01783803 0.00000000 0.01831502 0.00000000## redtape 0.00000000 0.00000000 0.00000000 0.00000000## regions 0.00000000 0.03247808 0.00000000 0.01719099## reliable 0.00000000 0.00000000 0.01831502 0.01719099## response 0.01783803 0.06495615 0.00000000 0.00000000## retreat 0.03567606 0.00000000 0.00000000 0.00000000## sergeant 0.03567606 0.00000000 0.01831502 0.00000000## serving 0.00000000 0.00000000 0.00000000 0.01719099## shown 0.00000000 0.00000000 0.01831502 0.00000000## significant 0.00000000 0.00000000 0.01831502 0.00000000## sit 0.01783803 0.00000000 0.00000000 0.00000000## situation 0.01783803 0.00000000 0.00000000 0.00000000## slow 0.00000000 0.00000000 0.00000000 0.01719099## someone 0.00000000 0.00000000 0.00000000 0.00000000## sometimes 0.00000000 0.00000000 0.01831502 0.00000000## speed 0.00000000 0.00000000 0.00000000 0.00000000## stability 0.00000000 0.06495615 0.00000000 0.01719099## stood 0.00000000 0.00000000 0.00000000 0.01719099## stories 0.00000000 0.00000000 0.00000000 0.00000000## strategic 0.01783803 0.00000000 0.00000000 0.01719099## study 0.01783803 0.00000000 0.00000000 0.00000000## sudden 0.00000000 0.03247808 0.01831502 0.01719099## supplies 0.00000000 0.00000000 0.03663004 0.00000000## surplus 0.00000000 0.00000000 0.00000000 0.01719099## surveillance 0.00000000 0.00000000 0.01831502 0.00000000## sustain 0.00000000 0.00000000 0.00000000 0.01719099## team 0.01783803 0.00000000 0.00000000 0.01719099## temporary 0.01783803 0.00000000 0.00000000 0.00000000## though 0.00000000 0.00000000 0.00000000 0.00000000## tired 0.00000000 0.00000000 0.00000000 0.01719099## trucks 0.01783803 0.00000000 0.00000000 0.01719099## turning 0.01783803 0.00000000 0.00000000 0.00000000## ultimately 0.00000000 0.00000000 0.00000000 0.00000000## unit 0.00000000 0.00000000 0.00000000 0.01719099## usama 0.01783803 0.06495615 0.00000000 0.03438198## w 0.00000000 0.00000000 0.00000000 0.00000000## weekly 0.01783803 0.03247808 0.00000000 0.01719099## word 0.00000000 0.00000000 0.00000000 0.00000000## -year 0.00000000 0.00000000 0.00000000 0.00000000## abandon 0.01783803 0.00000000 0.00000000 0.01719099## abuse 0.00000000 0.00000000 0.00000000 0.00000000## active 0.01783803 0.06495615 0.00000000 0.00000000## actually 0.00000000 0.00000000 0.00000000 0.00000000## african 0.01783803 0.00000000 0.00000000 0.03438198## agency 0.00000000 0.00000000 0.03663004 0.00000000## allows 0.00000000 0.00000000 0.00000000 0.00000000## amazing 0.00000000 0.00000000 0.01831502 0.00000000## amid 0.01783803 0.00000000 0.00000000 0.01719099## arrived 0.00000000 0.00000000 0.01831502 0.00000000## assembly 0.00000000 0.00000000 0.00000000 0.00000000## avoid 0.00000000 0.00000000 0.00000000 0.01719099## balance 0.05351409 0.00000000 0.00000000 0.01719099## balanced 0.00000000 0.00000000 0.01831502 0.00000000## battles 0.00000000 0.00000000 0.00000000 0.00000000## bay 0.00000000 0.00000000 0.00000000 0.00000000## birth 0.01783803 0.00000000 0.01831502 0.00000000## bold 0.00000000 0.00000000 0.01831502 0.00000000## bottom 0.00000000 0.00000000 0.01831502 0.00000000## bridge 0.00000000 0.00000000 0.00000000 0.00000000## broad 0.00000000 0.00000000 0.01831502 0.00000000## brothers 0.00000000 0.00000000 0.00000000 0.00000000## buffett 0.00000000 0.00000000 0.00000000 0.00000000## bush 0.00000000 0.00000000 0.00000000 0.00000000## buying 0.00000000 0.00000000 0.00000000 0.01719099## california 0.00000000 0.00000000 0.01831502 0.00000000## camps 0.00000000 0.06495615 0.01831502 0.00000000## carolina 0.00000000 0.00000000 0.00000000 0.00000000## ceo 0.00000000 0.00000000 0.00000000 0.00000000## chambers 0.00000000 0.00000000 0.01831502 0.00000000## charged 0.00000000 0.00000000 0.00000000 0.00000000## charter 0.00000000 0.03247808 0.01831502 0.00000000## cheaper 0.00000000 0.00000000 0.00000000 0.00000000## conduct 0.00000000 0.00000000 0.03663004 0.00000000## corruption 0.01783803 0.00000000 0.00000000 0.00000000## creates 0.00000000 0.00000000 0.00000000 0.00000000## criminals 0.01783803 0.00000000 0.01831502 0.00000000## crucial 0.00000000 0.00000000 0.05494505 0.00000000## cyber 0.00000000 0.00000000 0.00000000 0.00000000## dad 0.00000000 0.00000000 0.01831502 0.00000000## decent 0.01783803 0.00000000 0.00000000 0.01719099## dedication 0.00000000 0.00000000 0.00000000 0.00000000## deeply 0.00000000 0.00000000 0.01831502 0.00000000## defeating 0.00000000 0.00000000 0.01831502 0.03438198## degree 0.00000000 0.00000000 0.00000000 0.00000000## dependence 0.03567606 0.00000000 0.00000000 0.01719099## dependent 0.03567606 0.00000000 0.01831502 0.00000000## destroy 0.00000000 0.03247808 0.01831502 0.00000000## dictator 0.00000000 0.00000000 0.05494505 0.00000000## directed 0.01783803 0.00000000 0.03663004 0.00000000## division 0.00000000 0.00000000 0.01831502 0.00000000## doctor 0.00000000 0.00000000 0.01831502 0.00000000## door 0.00000000 0.00000000 0.00000000 0.00000000## earmark 0.01783803 0.00000000 0.00000000 0.01719099## educate 0.00000000 0.00000000 0.01831502 0.00000000## effect 0.00000000 0.03247808 0.00000000 0.00000000## egypt 0.01783803 0.03247808 0.00000000 0.00000000## electric 0.01783803 0.00000000 0.03663004 0.00000000## enforce 0.01783803 0.00000000 0.00000000 0.00000000## engineers 0.00000000 0.00000000 0.01831502 0.01719099## entrepreneur 0.03567606 0.00000000 0.00000000 0.00000000## events 0.01783803 0.03247808 0.00000000 0.00000000## exactly 0.00000000 0.00000000 0.01831502 0.00000000## experts 0.00000000 0.00000000 0.00000000 0.00000000## export 0.00000000 0.00000000 0.00000000 0.00000000## failing 0.05351409 0.00000000 0.00000000 0.01719099## fbi 0.00000000 0.06495615 0.03663004 0.00000000## feed 0.00000000 0.00000000 0.00000000 0.00000000## finance 0.00000000 0.00000000 0.00000000 0.00000000## founders 0.00000000 0.00000000 0.01831502 0.03438198## fraud 0.00000000 0.00000000 0.00000000 0.00000000## frivolous 0.00000000 0.00000000 0.01831502 0.00000000## fundamental 0.00000000 0.00000000 0.00000000 0.00000000## funded 0.01783803 0.00000000 0.00000000 0.00000000## gains 0.00000000 0.00000000 0.00000000 0.01719099## game 0.00000000 0.00000000 0.00000000 0.00000000## gather 0.00000000 0.00000000 0.01831502 0.00000000## girl 0.00000000 0.00000000 0.00000000 0.00000000## grandchildren 0.00000000 0.00000000 0.00000000 0.01719099## guide 0.00000000 0.00000000 0.03663004 0.01719099## harm 0.03567606 0.03247808 0.00000000 0.01719099## heard 0.00000000 0.00000000 0.00000000 0.00000000## holding 0.01783803 0.00000000 0.01831502 0.01719099## honored 0.00000000 0.03247808 0.00000000 0.00000000## hospitals 0.00000000 0.00000000 0.03663004 0.01719099## humanity 0.01783803 0.00000000 0.03663004 0.01719099## i^d 0.00000000 0.00000000 0.00000000 0.00000000## imagine 0.00000000 0.00000000 0.01831502 0.00000000## increases 0.01783803 0.00000000 0.01831502 0.01719099## incredible 0.00000000 0.00000000 0.00000000 0.00000000## inequality 0.00000000 0.00000000 0.00000000 0.00000000## inflation 0.01783803 0.00000000 0.00000000 0.00000000## innovative 0.01783803 0.00000000 0.00000000 0.03438198## intimidate 0.00000000 0.00000000 0.05494505 0.00000000## iran^s 0.00000000 0.00000000 0.00000000 0.01719099## joined 0.00000000 0.06495615 0.00000000 0.00000000## judges 0.01783803 0.00000000 0.00000000 0.01719099## keeps 0.01783803 0.00000000 0.00000000 0.00000000## libya 0.00000000 0.00000000 0.00000000 0.00000000## limits 0.00000000 0.00000000 0.00000000 0.00000000## lines 0.00000000 0.00000000 0.00000000 0.00000000## loan 0.00000000 0.00000000 0.00000000 0.00000000## madam 0.05351409 0.00000000 0.00000000 0.01719099## meanwhile 0.00000000 0.00000000 0.00000000 0.00000000## medicines 0.00000000 0.00000000 0.05494505 0.00000000## mentors 0.00000000 0.00000000 0.05494505 0.00000000## methods 0.01783803 0.00000000 0.03663004 0.00000000## minority 0.01783803 0.03247808 0.00000000 0.00000000## modern 0.00000000 0.00000000 0.00000000 0.00000000## modernization 0.00000000 0.00000000 0.00000000 0.00000000## mortgages 0.00000000 0.00000000 0.00000000 0.01719099## muslim 0.01783803 0.12991231 0.00000000 0.00000000## operatives 0.01783803 0.03247808 0.00000000 0.01719099## ordinary 0.00000000 0.00000000 0.00000000 0.01719099## organizations 0.00000000 0.09743423 0.00000000 0.01719099## outcome 0.05351409 0.03247808 0.00000000 0.00000000## outdated 0.00000000 0.00000000 0.00000000 0.00000000## overcome 0.00000000 0.00000000 0.01831502 0.00000000## participate 0.00000000 0.00000000 0.01831502 0.00000000## partisan 0.01783803 0.00000000 0.00000000 0.00000000## patient 0.00000000 0.03247808 0.00000000 0.00000000## period 0.00000000 0.00000000 0.00000000 0.01719099## personnel 0.00000000 0.00000000 0.01831502 0.01719099## please 0.00000000 0.06495615 0.00000000 0.00000000## preexisting 0.00000000 0.00000000 0.00000000 0.00000000## preserve 0.00000000 0.00000000 0.00000000 0.00000000## prevents 0.00000000 0.00000000 0.00000000 0.00000000## principles 0.00000000 0.03247808 0.00000000 0.01719099## prisoners 0.00000000 0.00000000 0.03663004 0.00000000## privacy 0.00000000 0.00000000 0.00000000 0.01719099## profitable 0.00000000 0.00000000 0.00000000 0.00000000## protected 0.01783803 0.00000000 0.00000000 0.00000000## pull 0.00000000 0.00000000 0.00000000 0.00000000## purchase 0.01783803 0.00000000 0.01831502 0.00000000## qaeda 0.00000000 0.00000000 0.12820513 0.00000000## quarter 0.00000000 0.00000000 0.00000000 0.00000000## quo 0.00000000 0.00000000 0.00000000 0.00000000## raised 0.01783803 0.00000000 0.00000000 0.01719099## reduced 0.00000000 0.00000000 0.00000000 0.00000000## regardless 0.00000000 0.00000000 0.00000000 0.00000000## rely 0.00000000 0.00000000 0.00000000 0.00000000## repeat 0.00000000 0.00000000 0.00000000 0.00000000## replace 0.00000000 0.00000000 0.00000000 0.00000000## rescue 0.00000000 0.03247808 0.00000000 0.00000000## rewarded 0.00000000 0.00000000 0.00000000 0.00000000## rich 0.00000000 0.00000000 0.00000000 0.00000000## rid 0.00000000 0.00000000 0.00000000 0.00000000## root 0.00000000 0.00000000 0.00000000 0.00000000## running 0.01783803 0.00000000 0.00000000 0.00000000## saudi 0.01783803 0.03247808 0.01831502 0.00000000## sectarian 0.03567606 0.00000000 0.00000000 0.03438198## setting 0.01783803 0.00000000 0.00000000 0.00000000## severe 0.01783803 0.00000000 0.01831502 0.00000000## shi 0.10702818 0.00000000 0.00000000 0.01719099## shift 0.00000000 0.00000000 0.00000000 0.00000000## skill 0.00000000 0.00000000 0.01831502 0.01719099## slowly 0.00000000 0.00000000 0.01831502 0.00000000## sold 0.01783803 0.00000000 0.00000000 0.00000000## straight 0.00000000 0.00000000 0.00000000 0.01719099## strike 0.00000000 0.03247808 0.01831502 0.00000000## strongly 0.00000000 0.00000000 0.03663004 0.00000000## suggested 0.00000000 0.00000000 0.00000000 0.00000000## summit 0.00000000 0.00000000 0.00000000 0.03438198## surge 0.00000000 0.00000000 0.00000000 0.08595496## suspected 0.00000000 0.00000000 0.01831502 0.00000000## t 0.00000000 0.00000000 0.00000000 0.00000000## talked 0.00000000 0.00000000 0.01831502 0.00000000## telling 0.00000000 0.00000000 0.00000000 0.00000000## treat 0.00000000 0.00000000 0.01831502 0.00000000## treated 0.01783803 0.00000000 0.00000000 0.01719099## treaty 0.00000000 0.00000000 0.00000000 0.00000000## truly 0.00000000 0.00000000 0.00000000 0.01719099## unfair 0.00000000 0.03247808 0.01831502 0.00000000## unnecessary 0.00000000 0.00000000 0.00000000 0.00000000## uphold 0.01783803 0.03247808 0.00000000 0.00000000## vast 0.01783803 0.06495615 0.00000000 0.00000000## voted 0.01783803 0.00000000 0.00000000 0.01719099## votes 0.00000000 0.00000000 0.00000000 0.01719099## wasteful 0.00000000 0.00000000 0.00000000 0.01719099## wealth 0.01783803 0.00000000 0.01831502 0.00000000## who^ve 0.00000000 0.00000000 0.00000000 0.00000000## winning 0.00000000 0.00000000 0.01831502 0.00000000## wisdom 0.01783803 0.03247808 0.00000000 0.03438198## wise 0.00000000 0.00000000 0.00000000 0.01719099## worry 0.00000000 0.00000000 0.00000000 0.01719099## abu 0.00000000 0.00000000 0.00000000 0.01719099## advances 0.01783803 0.00000000 0.00000000 0.01719099## adversity 0.00000000 0.00000000 0.01831502 0.00000000## affiliates 0.00000000 0.00000000 0.00000000 0.00000000## aggressive 0.00000000 0.00000000 0.00000000 0.00000000## alan 0.00000000 0.00000000 0.00000000 0.00000000## amount 0.00000000 0.00000000 0.00000000 0.00000000## anger 0.00000000 0.09743423 0.00000000 0.00000000## apply 0.00000000 0.00000000 0.01831502 0.01719099## appropriate 0.00000000 0.03247808 0.01831502 0.00000000## asian 0.01783803 0.00000000 0.00000000 0.00000000## aspirations 0.00000000 0.00000000 0.01831502 0.00000000## badly 0.00000000 0.00000000 0.00000000 0.00000000## beat 0.00000000 0.00000000 0.00000000 0.00000000## became 0.01783803 0.00000000 0.00000000 0.00000000## black 0.00000000 0.00000000 0.00000000 0.00000000## blind 0.01783803 0.00000000 0.01831502 0.00000000## bomb 0.00000000 0.00000000 0.01831502 0.00000000## bound 0.01783803 0.00000000 0.00000000 0.03438198## brandon 0.00000000 0.00000000 0.00000000 0.00000000## budgetary 0.00000000 0.00000000 0.00000000 0.00000000## card 0.00000000 0.00000000 0.00000000 0.00000000## caring 0.00000000 0.00000000 0.03663004 0.00000000## checks 0.00000000 0.00000000 0.01831502 0.01719099## civilized 0.00000000 0.03247808 0.03663004 0.00000000## closely 0.00000000 0.00000000 0.03663004 0.00000000## coast 0.01783803 0.00000000 0.00000000 0.03438198## collective 0.00000000 0.00000000 0.00000000 0.01719099## committee 0.01783803 0.00000000 0.01831502 0.01719099## commonsense 0.00000000 0.00000000 0.00000000 0.00000000## complicated 0.00000000 0.00000000 0.00000000 0.01719099## computer 0.00000000 0.00000000 0.00000000 0.00000000## congressman 0.03567606 0.00000000 0.00000000 0.00000000## consequence 0.00000000 0.00000000 0.01831502 0.00000000## constant 0.00000000 0.00000000 0.03663004 0.00000000## continent 0.01783803 0.00000000 0.03663004 0.00000000## contributions 0.00000000 0.03247808 0.00000000 0.00000000## conviction 0.00000000 0.00000000 0.03663004 0.00000000## costly 0.00000000 0.00000000 0.00000000 0.00000000## court 0.00000000 0.00000000 0.01831502 0.00000000## damage 0.00000000 0.00000000 0.00000000 0.00000000## date 0.00000000 0.00000000 0.03663004 0.00000000## decide 0.00000000 0.00000000 0.00000000 0.00000000## deep 0.01783803 0.00000000 0.00000000 0.00000000## defining 0.03567606 0.00000000 0.00000000 0.01719099## democracies 0.00000000 0.00000000 0.00000000 0.00000000## design 0.01783803 0.00000000 0.01831502 0.00000000## designed 0.01783803 0.00000000 0.01831502 0.00000000## detention 0.00000000 0.00000000 0.00000000 0.00000000## died 0.00000000 0.09743423 0.00000000 0.00000000## direction 0.01783803 0.00000000 0.00000000 0.00000000## disarming 0.00000000 0.00000000 0.05494505 0.00000000## disaster 0.00000000 0.00000000 0.00000000 0.00000000## disrupt 0.00000000 0.03247808 0.00000000 0.00000000## driven 0.00000000 0.00000000 0.01831502 0.01719099## driving 0.00000000 0.00000000 0.00000000 0.00000000## drop 0.00000000 0.00000000 0.00000000 0.00000000## ebola 0.00000000 0.00000000 0.01831502 0.00000000## economists 0.00000000 0.00000000 0.00000000 0.00000000## edward 0.00000000 0.00000000 0.00000000 0.00000000## electricity 0.00000000 0.00000000 0.00000000 0.00000000## electronic 0.00000000 0.00000000 0.00000000 0.00000000## elimination 0.00000000 0.00000000 0.00000000 0.00000000## emerge 0.01783803 0.00000000 0.01831502 0.01719099## encouraging 0.00000000 0.00000000 0.00000000 0.01719099## enduring 0.00000000 0.00000000 0.00000000 0.00000000## engineering 0.00000000 0.00000000 0.00000000 0.00000000## entitlement 0.00000000 0.00000000 0.00000000 0.03438198## establish 0.07135212 0.00000000 0.00000000 0.01719099## european 0.00000000 0.00000000 0.00000000 0.00000000## evening 0.00000000 0.03247808 0.00000000 0.01719099## eventually 0.00000000 0.00000000 0.00000000 0.03438198## expanded 0.01783803 0.00000000 0.00000000 0.01719099## expectations 0.00000000 0.00000000 0.00000000 0.00000000## expensive 0.00000000 0.00000000 0.00000000 0.00000000## facing 0.00000000 0.00000000 0.01831502 0.00000000## fairness 0.00000000 0.00000000 0.00000000 0.00000000## false 0.00000000 0.00000000 0.00000000 0.01719099## father 0.00000000 0.00000000 0.00000000 0.00000000## federally 0.00000000 0.00000000 0.00000000 0.00000000## fighters 0.01783803 0.00000000 0.00000000 0.03438198## financing 0.01783803 0.00000000 0.00000000 0.00000000## fine 0.00000000 0.00000000 0.01831502 0.00000000## fire 0.03567606 0.03247808 0.00000000 0.00000000## firm 0.00000000 0.00000000 0.01831502 0.00000000## followed 0.01783803 0.00000000 0.00000000 0.03438198## fuels 0.05351409 0.00000000 0.00000000 0.01719099## generate 0.00000000 0.00000000 0.00000000 0.01719099## graduates 0.00000000 0.00000000 0.00000000 0.00000000## graduation 0.00000000 0.00000000 0.00000000 0.00000000## hatred 0.03567606 0.00000000 0.00000000 0.00000000## heart 0.00000000 0.00000000 0.01831502 0.01719099## holy 0.01783803 0.00000000 0.00000000 0.05157298## ii 0.00000000 0.00000000 0.00000000 0.00000000## immediately 0.00000000 0.06495615 0.01831502 0.00000000## increasingly 0.00000000 0.00000000 0.00000000 0.03438198## initiatives 0.01783803 0.00000000 0.00000000 0.01719099## inside 0.01783803 0.00000000 0.00000000 0.00000000## institution 0.00000000 0.00000000 0.00000000 0.00000000## invite 0.01783803 0.00000000 0.00000000 0.00000000## isolation 0.00000000 0.00000000 0.03663004 0.00000000## kid 0.00000000 0.00000000 0.00000000 0.00000000## knowing 0.00000000 0.00000000 0.00000000 0.00000000## labs 0.00000000 0.00000000 0.01831502 0.00000000## lands 0.00000000 0.00000000 0.00000000 0.00000000## larger 0.00000000 0.00000000 0.00000000 0.00000000## launching 0.00000000 0.00000000 0.00000000 0.01719099## levels 0.00000000 0.00000000 0.00000000 0.01719099## liberation 0.00000000 0.03247808 0.01831502 0.00000000## lincoln 0.00000000 0.00000000 0.00000000 0.00000000## london 0.00000000 0.00000000 0.01831502 0.01719099## lonely 0.00000000 0.00000000 0.01831502 0.00000000## maintain 0.00000000 0.00000000 0.00000000 0.01719099## marine 0.01783803 0.00000000 0.00000000 0.03438198## marines 0.03567606 0.00000000 0.00000000 0.03438198## meaning 0.00000000 0.00000000 0.03663004 0.01719099## meaningful 0.00000000 0.00000000 0.00000000 0.00000000## member 0.00000000 0.00000000 0.00000000 0.01719099## minister 0.00000000 0.06495615 0.00000000 0.00000000## missions 0.01783803 0.00000000 0.00000000 0.00000000## moments 0.00000000 0.03247808 0.00000000 0.01719099## moved 0.00000000 0.00000000 0.01831502 0.00000000## neighborhoods 0.01783803 0.03247808 0.00000000 0.03438198## noble 0.00000000 0.00000000 0.00000000 0.01719099## nor 0.00000000 0.03247808 0.00000000 0.00000000## oak 0.00000000 0.00000000 0.00000000 0.00000000## onto 0.03567606 0.00000000 0.00000000 0.00000000## oppressed 0.00000000 0.00000000 0.03663004 0.00000000## participation 0.00000000 0.03247808 0.00000000 0.00000000## partnerships 0.00000000 0.00000000 0.00000000 0.00000000## payments 0.00000000 0.00000000 0.00000000 0.00000000## pell 0.00000000 0.00000000 0.00000000 0.03438198## penalty 0.00000000 0.00000000 0.01831502 0.00000000## performance 0.00000000 0.00000000 0.00000000 0.00000000## peril 0.00000000 0.00000000 0.03663004 0.00000000## plants 0.00000000 0.00000000 0.01831502 0.00000000## plot 0.03567606 0.03247808 0.00000000 0.01719099## politicians 0.00000000 0.00000000 0.00000000 0.00000000## pope 0.00000000 0.00000000 0.00000000 0.00000000## practice 0.01783803 0.03247808 0.01831502 0.00000000## preventing 0.00000000 0.00000000 0.01831502 0.00000000## producing 0.03567606 0.00000000 0.01831502 0.00000000## punish 0.00000000 0.00000000 0.00000000 0.00000000## questions 0.01783803 0.03247808 0.00000000 0.00000000## railroad 0.00000000 0.00000000 0.00000000 0.00000000## ran 0.00000000 0.00000000 0.00000000 0.00000000## really 0.00000000 0.00000000 0.00000000 0.00000000## recover 0.00000000 0.00000000 0.00000000 0.00000000## reforming 0.00000000 0.00000000 0.00000000 0.00000000## religious 0.00000000 0.03247808 0.00000000 0.00000000## renewed 0.00000000 0.00000000 0.00000000 0.00000000## respects 0.01783803 0.03247808 0.00000000 0.00000000## respond 0.00000000 0.03247808 0.00000000 0.00000000## retirees 0.00000000 0.00000000 0.00000000 0.00000000## revenues 0.01783803 0.00000000 0.01831502 0.01719099## revolution 0.03567606 0.00000000 0.00000000 0.00000000## room 0.01783803 0.00000000 0.00000000 0.00000000## roosevelt 0.01783803 0.00000000 0.00000000 0.00000000## sake 0.01783803 0.00000000 0.00000000 0.00000000## saved 0.01783803 0.00000000 0.00000000 0.00000000## saying 0.00000000 0.03247808 0.00000000 0.01719099## scores 0.00000000 0.00000000 0.00000000 0.03438198## secret 0.00000000 0.03247808 0.01831502 0.01719099## seize 0.00000000 0.00000000 0.00000000 0.00000000## selling 0.00000000 0.00000000 0.00000000 0.01719099## serves 0.01783803 0.00000000 0.00000000 0.00000000## servicemembers 0.00000000 0.00000000 0.00000000 0.00000000## ship 0.00000000 0.00000000 0.00000000 0.00000000## shoulder 0.00000000 0.00000000 0.00000000 0.00000000## smart 0.00000000 0.00000000 0.00000000 0.00000000## smarter 0.00000000 0.00000000 0.00000000 0.00000000## soldiers 0.01783803 0.00000000 0.00000000 0.03438198## sorrow 0.01783803 0.03247808 0.01831502 0.00000000## stabilization 0.00000000 0.00000000 0.00000000 0.00000000## stable 0.01783803 0.00000000 0.00000000 0.00000000## steven 0.00000000 0.00000000 0.00000000 0.00000000## stockpile 0.00000000 0.00000000 0.00000000 0.00000000## strive 0.00000000 0.00000000 0.03663004 0.00000000## strongest 0.00000000 0.00000000 0.00000000 0.00000000## summer 0.00000000 0.00000000 0.00000000 0.00000000## syrian 0.01783803 0.00000000 0.00000000 0.00000000## systems 0.00000000 0.03247808 0.00000000 0.00000000## tactics 0.01783803 0.03247808 0.00000000 0.00000000## testing 0.00000000 0.00000000 0.00000000 0.00000000## texas 0.00000000 0.00000000 0.00000000 0.00000000## thinking 0.01783803 0.00000000 0.00000000 0.00000000## threatens 0.00000000 0.00000000 0.01831502 0.00000000## torture 0.00000000 0.00000000 0.01831502 0.00000000## tougher 0.00000000 0.00000000 0.00000000 0.00000000## towards 0.00000000 0.00000000 0.00000000 0.00000000## towns 0.00000000 0.00000000 0.00000000 0.00000000## tragedy 0.01783803 0.06495615 0.00000000 0.00000000## transform 0.00000000 0.00000000 0.01831502 0.00000000## transformation 0.00000000 0.00000000 0.00000000 0.00000000## treatments 0.00000000 0.00000000 0.01831502 0.01719099## troubled 0.00000000 0.00000000 0.00000000 0.01719099## tucson 0.00000000 0.00000000 0.00000000 0.00000000## turns 0.00000000 0.00000000 0.01831502 0.00000000## tv 0.00000000 0.03247808 0.00000000 0.00000000## ultimate 0.00000000 0.00000000 0.01831502 0.00000000## uncertainty 0.01783803 0.00000000 0.00000000 0.03438198## unfinished 0.00000000 0.00000000 0.00000000 0.01719099## unity 0.00000000 0.03247808 0.01831502 0.00000000## victims 0.00000000 0.06495615 0.01831502 0.00000000## voting 0.00000000 0.00000000 0.00000000 0.00000000## warren 0.00000000 0.00000000 0.00000000 0.00000000## wasn^t 0.00000000 0.00000000 0.00000000 0.00000000## weak 0.00000000 0.00000000 0.01831502 0.00000000## weakened 0.00000000 0.00000000 0.00000000 0.01719099## wealthy 0.00000000 0.00000000 0.00000000 0.00000000## wherever 0.00000000 0.00000000 0.00000000 0.03438198## wisely 0.01783803 0.00000000 0.00000000 0.01719099## written 0.00000000 0.00000000 0.00000000 0.00000000## accomplish 0.00000000 0.00000000 0.00000000 0.00000000## activities 0.00000000 0.00000000 0.01831502 0.00000000## adults 0.00000000 0.00000000 0.00000000 0.00000000## affairs 0.00000000 0.00000000 0.01831502 0.00000000## aggressively 0.00000000 0.00000000 0.00000000 0.00000000## aim 0.00000000 0.00000000 0.00000000 0.01719099## airports 0.00000000 0.00000000 0.01831502 0.00000000## ally 0.05351409 0.00000000 0.00000000 0.00000000## amanda 0.00000000 0.00000000 0.00000000 0.00000000## americas 0.00000000 0.00000000 0.00000000 0.00000000## announced 0.00000000 0.00000000 0.01831502 0.00000000## anthrax 0.01783803 0.00000000 0.03663004 0.00000000## anywhere 0.00000000 0.00000000 0.00000000 0.01719099## arabia 0.01783803 0.03247808 0.00000000 0.00000000## assume 0.00000000 0.00000000 0.01831502 0.00000000## atlantic 0.03567606 0.00000000 0.00000000 0.01719099## attract 0.00000000 0.00000000 0.00000000 0.00000000## automobile 0.00000000 0.00000000 0.00000000 0.00000000## b 0.00000000 0.00000000 0.00000000 0.00000000## barriers 0.00000000 0.00000000 0.00000000 0.01719099## batteries 0.00000000 0.00000000 0.00000000 0.00000000## behalf 0.00000000 0.03247808 0.00000000 0.00000000## behavior 0.00000000 0.00000000 0.00000000 0.01719099## bench 0.01783803 0.00000000 0.00000000 0.00000000## biofuels 0.00000000 0.00000000 0.00000000 0.00000000## blessed 0.00000000 0.00000000 0.03663004 0.00000000## blow 0.01783803 0.00000000 0.00000000 0.01719099## bonds 0.00000000 0.00000000 0.00000000 0.01719099## boost 0.00000000 0.00000000 0.01831502 0.00000000## bought 0.00000000 0.00000000 0.00000000 0.00000000## brian 0.00000000 0.00000000 0.00000000 0.00000000## british 0.01783803 0.06495615 0.01831502 0.00000000## broadband 0.00000000 0.00000000 0.00000000 0.00000000## broke 0.01783803 0.00000000 0.00000000 0.00000000## brutal 0.00000000 0.00000000 0.01831502 0.00000000## bullet 0.00000000 0.00000000 0.00000000 0.00000000## careers 0.00000000 0.00000000 0.00000000 0.00000000## catastrophic 0.00000000 0.00000000 0.03663004 0.00000000## central 0.00000000 0.03247808 0.00000000 0.00000000## charitable 0.00000000 0.00000000 0.00000000 0.03438198## civilian 0.01783803 0.00000000 0.00000000 0.03438198## claim 0.00000000 0.00000000 0.01831502 0.00000000## clinton 0.00000000 0.00000000 0.00000000 0.00000000## closer 0.00000000 0.00000000 0.00000000 0.00000000## cold 0.00000000 0.00000000 0.00000000 0.00000000## collapse 0.00000000 0.00000000 0.00000000 0.00000000## compassionate 0.00000000 0.00000000 0.00000000 0.05157298## compromise 0.00000000 0.00000000 0.00000000 0.00000000## conflicts 0.00000000 0.00000000 0.00000000 0.00000000## connected 0.00000000 0.00000000 0.00000000 0.00000000## connecting 0.00000000 0.00000000 0.00000000 0.00000000## constitutional 0.00000000 0.00000000 0.00000000 0.00000000## courses 0.00000000 0.00000000 0.00000000 0.00000000## covered 0.01783803 0.00000000 0.00000000 0.00000000## currently 0.00000000 0.03247808 0.00000000 0.00000000## daughters 0.00000000 0.00000000 0.00000000 0.00000000## declined 0.00000000 0.00000000 0.00000000 0.01719099## deduction 0.05351409 0.00000000 0.00000000 0.00000000## defenses 0.00000000 0.00000000 0.00000000 0.00000000## desiline 0.00000000 0.00000000 0.00000000 0.00000000## despair 0.00000000 0.00000000 0.00000000 0.03438198## details 0.00000000 0.00000000 0.00000000 0.00000000## detroit 0.00000000 0.00000000 0.00000000 0.00000000## die 0.00000000 0.00000000 0.01831502 0.00000000## disabilities 0.00000000 0.00000000 0.00000000 0.00000000## disagree 0.00000000 0.03247808 0.00000000 0.00000000## discovery 0.00000000 0.00000000 0.01831502 0.00000000## doors 0.00000000 0.00000000 0.00000000 0.01719099## dozens 0.00000000 0.06495615 0.00000000 0.00000000## dramatic 0.01783803 0.03247808 0.00000000 0.01719099## drawing 0.00000000 0.00000000 0.00000000 0.00000000## drove 0.03567606 0.00000000 0.00000000 0.00000000## duties 0.01783803 0.00000000 0.00000000 0.00000000## eager 0.00000000 0.00000000 0.00000000 0.00000000## earns 0.00000000 0.00000000 0.00000000 0.00000000## economics 0.00000000 0.00000000 0.00000000 0.00000000## embassy 0.00000000 0.03247808 0.03663004 0.00000000## encourages 0.00000000 0.00000000 0.00000000 0.00000000## engine 0.00000000 0.00000000 0.00000000 0.00000000## enormous 0.00000000 0.00000000 0.01831502 0.00000000## epidemic 0.00000000 0.00000000 0.00000000 0.01719099## erler 0.00000000 0.00000000 0.00000000 0.00000000## ethanol 0.01783803 0.00000000 0.00000000 0.00000000## excuse 0.01783803 0.00000000 0.00000000 0.00000000## existing 0.01783803 0.03247808 0.00000000 0.00000000## expected 0.00000000 0.03247808 0.01831502 0.00000000## expenses 0.00000000 0.00000000 0.00000000 0.00000000## extending 0.03567606 0.00000000 0.01831502 0.01719099## extraordinary 0.00000000 0.03247808 0.00000000 0.00000000## faces 0.03567606 0.00000000 0.00000000 0.00000000## faithful 0.01783803 0.00000000 0.00000000 0.00000000## family^s 0.00000000 0.00000000 0.01831502 0.00000000## favor 0.00000000 0.00000000 0.00000000 0.01719099## fee 0.00000000 0.00000000 0.00000000 0.00000000## feet 0.00000000 0.00000000 0.00000000 0.00000000## finding 0.01783803 0.00000000 0.00000000 0.00000000## flag 0.00000000 0.00000000 0.01831502 0.00000000## focused 0.00000000 0.00000000 0.00000000 0.00000000## foreclosure 0.00000000 0.00000000 0.00000000 0.01719099## form 0.00000000 0.03247808 0.00000000 0.00000000## fourth 0.00000000 0.00000000 0.01831502 0.01719099## framework 0.00000000 0.00000000 0.01831502 0.00000000## freedom^s 0.00000000 0.00000000 0.00000000 0.01719099## gathered 0.01783803 0.03247808 0.00000000 0.00000000## giffords 0.00000000 0.00000000 0.00000000 0.00000000## govern 0.00000000 0.00000000 0.00000000 0.00000000## governing 0.00000000 0.00000000 0.00000000 0.00000000## governors 0.01783803 0.00000000 0.00000000 0.00000000## grant 0.00000000 0.03247808 0.00000000 0.00000000## gravest 0.00000000 0.00000000 0.03663004 0.00000000## grid 0.00000000 0.00000000 0.00000000 0.00000000## grief 0.00000000 0.12991231 0.00000000 0.00000000## grit 0.00000000 0.00000000 0.00000000 0.00000000## guard 0.03567606 0.00000000 0.01831502 0.00000000## haiti 0.00000000 0.00000000 0.00000000 0.00000000## hasn^t 0.00000000 0.00000000 0.00000000 0.00000000## hate 0.00000000 0.09743423 0.00000000 0.00000000## healing 0.00000000 0.00000000 0.01831502 0.01719099## healthier 0.00000000 0.00000000 0.00000000 0.00000000## highways 0.00000000 0.00000000 0.00000000 0.00000000## hizballah 0.03567606 0.00000000 0.00000000 0.01719099## honorable 0.01783803 0.00000000 0.01831502 0.00000000## hospital 0.01783803 0.00000000 0.00000000 0.00000000## hubs 0.00000000 0.00000000 0.00000000 0.00000000## hydrogen 0.00000000 0.00000000 0.03663004 0.00000000## ideological 0.01783803 0.00000000 0.00000000 0.01719099## impose 0.01783803 0.00000000 0.00000000 0.00000000## impossible 0.00000000 0.00000000 0.00000000 0.01719099## include 0.00000000 0.03247808 0.01831502 0.01719099## inspire 0.01783803 0.00000000 0.00000000 0.01719099## investors 0.00000000 0.00000000 0.01831502 0.00000000## irresponsible 0.00000000 0.00000000 0.00000000 0.00000000## islam 0.01783803 0.06495615 0.00000000 0.00000000## isolated 0.00000000 0.03247808 0.00000000 0.00000000## j 0.00000000 0.00000000 0.00000000 0.00000000## journey 0.00000000 0.03247808 0.00000000 0.00000000## julie 0.08919015 0.00000000 0.00000000 0.00000000## kentucky 0.01783803 0.00000000 0.00000000 0.00000000## l 0.00000000 0.00000000 0.00000000 0.00000000## lady 0.00000000 0.00000000 0.00000000 0.00000000## lawyers 0.00000000 0.00000000 0.01831502 0.00000000## laying 0.00000000 0.00000000 0.00000000 0.00000000## lessons 0.01783803 0.00000000 0.01831502 0.00000000## lets 0.00000000 0.00000000 0.00000000 0.00000000## lifting 0.01783803 0.00000000 0.00000000 0.00000000## loved 0.00000000 0.00000000 0.00000000 0.01719099## lowest 0.00000000 0.00000000 0.00000000 0.00000000## manufacturer 0.00000000 0.00000000 0.00000000 0.00000000## mccain 0.00000000 0.00000000 0.00000000 0.00000000## meant 0.00000000 0.00000000 0.00000000 0.00000000## measured 0.01783803 0.00000000 0.00000000 0.00000000## minds 0.00000000 0.00000000 0.00000000 0.00000000## minorities 0.00000000 0.00000000 0.00000000 0.00000000## modernize 0.01783803 0.00000000 0.00000000 0.01719099## modest 0.00000000 0.00000000 0.00000000 0.00000000## momentum 0.00000000 0.00000000 0.00000000 0.01719099## monthly 0.00000000 0.00000000 0.00000000 0.00000000## mother 0.00000000 0.00000000 0.00000000 0.00000000## muslims 0.00000000 0.03247808 0.00000000 0.00000000## near 0.00000000 0.00000000 0.01831502 0.00000000## needless 0.01783803 0.00000000 0.00000000 0.00000000## negotiate 0.00000000 0.00000000 0.00000000 0.00000000## newtown 0.00000000 0.00000000 0.00000000 0.00000000## nobody 0.00000000 0.00000000 0.00000000 0.00000000## numbers 0.00000000 0.00000000 0.00000000 0.01719099## nurses 0.00000000 0.00000000 0.01831502 0.00000000## opening 0.00000000 0.00000000 0.00000000 0.01719099## oppose 0.00000000 0.00000000 0.00000000 0.03438198## opposition 0.00000000 0.00000000 0.00000000 0.00000000## organized 0.00000000 0.00000000 0.00000000 0.00000000## otherwise 0.00000000 0.00000000 0.01831502 0.00000000## outside 0.01783803 0.03247808 0.00000000 0.00000000## painful 0.00000000 0.00000000 0.00000000 0.01719099## paris 0.00000000 0.03247808 0.01831502 0.00000000## passion 0.00000000 0.00000000 0.00000000 0.00000000## patriot 0.00000000 0.03247808 0.00000000 0.00000000## pentagon 0.00000000 0.03247808 0.01831502 0.00000000## performing 0.01783803 0.00000000 0.00000000 0.01719099## permanently 0.01783803 0.03247808 0.00000000 0.01719099## placed 0.00000000 0.00000000 0.00000000 0.00000000## pleased 0.01783803 0.00000000 0.00000000 0.03438198## pledged 0.01783803 0.00000000 0.00000000 0.00000000## plenty 0.00000000 0.00000000 0.00000000 0.00000000## points 0.00000000 0.03247808 0.00000000 0.00000000## population 0.00000000 0.00000000 0.01831502 0.00000000## ports 0.00000000 0.00000000 0.01831502 0.00000000## pose 0.00000000 0.00000000 0.00000000 0.00000000## possibility 0.00000000 0.00000000 0.01831502 0.00000000## prayers 0.01783803 0.09743423 0.00000000 0.00000000## preparing 0.00000000 0.00000000 0.00000000 0.01719099## prevented 0.01783803 0.00000000 0.01831502 0.00000000## principal 0.00000000 0.00000000 0.00000000 0.00000000## principled 0.00000000 0.00000000 0.00000000 0.00000000## productive 0.00000000 0.00000000 0.00000000 0.00000000## profound 0.00000000 0.00000000 0.01831502 0.00000000## prosperous 0.00000000 0.00000000 0.00000000 0.03438198## proven 0.00000000 0.00000000 0.00000000 0.00000000## pursuit 0.00000000 0.00000000 0.01831502 0.01719099## push 0.00000000 0.00000000 0.00000000 0.00000000## puts 0.00000000 0.00000000 0.00000000 0.00000000## quit 0.00000000 0.00000000 0.00000000 0.00000000## rail 0.00000000 0.00000000 0.00000000 0.00000000## range 0.00000000 0.00000000 0.00000000 0.01719099## reaching 0.00000000 0.00000000 0.00000000 0.00000000## reagan 0.00000000 0.00000000 0.00000000 0.00000000## reasons 0.00000000 0.00000000 0.00000000 0.00000000## reauthorize 0.01783803 0.00000000 0.00000000 0.01719099## recommendations 0.00000000 0.00000000 0.00000000 0.01719099## recruit 0.00000000 0.00000000 0.00000000 0.00000000## reduces 0.00000000 0.00000000 0.01831502 0.01719099## refinance 0.00000000 0.00000000 0.00000000 0.01719099## reflects 0.00000000 0.03247808 0.00000000 0.00000000## rejects 0.00000000 0.00000000 0.00000000 0.00000000## relationship 0.00000000 0.00000000 0.00000000 0.00000000## religion 0.00000000 0.06495615 0.00000000 0.00000000## remaining 0.00000000 0.00000000 0.01831502 0.00000000## reminded 0.00000000 0.00000000 0.00000000 0.00000000## removed 0.00000000 0.00000000 0.01831502 0.00000000## repair 0.00000000 0.00000000 0.00000000 0.00000000## repeal 0.00000000 0.00000000 0.00000000 0.00000000## reserve 0.05351409 0.00000000 0.00000000 0.00000000## resilience 0.00000000 0.00000000 0.00000000 0.03438198## restart 0.00000000 0.00000000 0.00000000 0.00000000## restraint 0.00000000 0.00000000 0.01831502 0.00000000## retire 0.00000000 0.00000000 0.00000000 0.00000000## revealed 0.00000000 0.00000000 0.01831502 0.00000000## rewarding 0.00000000 0.00000000 0.00000000 0.00000000## rewards 0.00000000 0.00000000 0.00000000 0.00000000## romney 0.00000000 0.00000000 0.00000000 0.00000000## ryan 0.00000000 0.00000000 0.00000000 0.00000000## sacred 0.01783803 0.00000000 0.00000000 0.00000000## sandy 0.00000000 0.00000000 0.00000000 0.00000000## season 0.00000000 0.00000000 0.01831502 0.00000000## seeking 0.01783803 0.00000000 0.00000000 0.00000000## seeks 0.00000000 0.00000000 0.03663004 0.00000000## seem 0.00000000 0.00000000 0.00000000 0.00000000## self-government 0.00000000 0.00000000 0.00000000 0.01719099## servants 0.01783803 0.00000000 0.00000000 0.01719099## sets 0.00000000 0.00000000 0.00000000 0.00000000## short 0.03567606 0.00000000 0.00000000 0.01719099## shows 0.00000000 0.00000000 0.00000000 0.00000000## shut 0.00000000 0.00000000 0.00000000 0.00000000## sides 0.01783803 0.00000000 0.00000000 0.01719099## skies 0.00000000 0.00000000 0.01831502 0.00000000## skilled 0.00000000 0.00000000 0.00000000 0.01719099## solved 0.00000000 0.00000000 0.01831502 0.00000000## somebody 0.00000000 0.00000000 0.00000000 0.00000000## somehow 0.01783803 0.00000000 0.00000000 0.00000000## specific 0.00000000 0.00000000 0.00000000 0.00000000## speech 0.00000000 0.03247808 0.00000000 0.00000000## spill 0.01783803 0.00000000 0.00000000 0.00000000## spring 0.00000000 0.00000000 0.00000000 0.00000000## stewards 0.01783803 0.00000000 0.00000000 0.00000000## stopping 0.01783803 0.00000000 0.00000000 0.00000000## strengths 0.00000000 0.06495615 0.00000000 0.00000000## strikes 0.00000000 0.06495615 0.01831502 0.00000000## subject 0.00000000 0.00000000 0.01831502 0.01719099## submit 0.01783803 0.00000000 0.00000000 0.01719099## subsidizing 0.00000000 0.00000000 0.00000000 0.00000000## succeeded 0.01783803 0.00000000 0.00000000 0.00000000## sunni 0.07135212 0.00000000 0.00000000 0.01719099## talks 0.00000000 0.00000000 0.00000000 0.01719099## tells 0.00000000 0.00000000 0.00000000 0.00000000## term 0.00000000 0.00000000 0.00000000 0.00000000## tested 0.00000000 0.00000000 0.00000000 0.01719099## thomas 0.01783803 0.00000000 0.00000000 0.00000000## tight-knit 0.00000000 0.00000000 0.00000000 0.00000000## tom 0.00000000 0.03247808 0.00000000 0.00000000## trapped 0.00000000 0.00000000 0.00000000 0.01719099## treating 0.00000000 0.00000000 0.01831502 0.01719099## trial 0.00000000 0.00000000 0.01831502 0.00000000## undermine 0.01783803 0.00000000 0.00000000 0.01719099## unfortunately 0.00000000 0.00000000 0.00000000 0.03438198## universal 0.00000000 0.00000000 0.00000000 0.00000000## university 0.03567606 0.00000000 0.00000000 0.00000000## veteran 0.00000000 0.03247808 0.00000000 0.00000000## view 0.01783803 0.00000000 0.00000000 0.00000000## violated 0.01783803 0.00000000 0.01831502 0.00000000## visit 0.00000000 0.00000000 0.00000000 0.00000000## volunteers 0.00000000 0.00000000 0.01831502 0.00000000## wake 0.00000000 0.00000000 0.00000000 0.00000000## watched 0.03567606 0.00000000 0.00000000 0.01719099## waters 0.00000000 0.00000000 0.00000000 0.00000000## whom 0.03567606 0.03247808 0.00000000 0.00000000## willingness 0.01783803 0.00000000 0.00000000 0.00000000## women^s 0.00000000 0.00000000 0.00000000 0.00000000## youth 0.00000000 0.00000000 0.00000000 0.00000000## abuses 0.00000000 0.00000000 0.00000000 0.00000000## achieving 0.01783803 0.00000000 0.00000000 0.03438198## acres 0.00000000 0.00000000 0.01831502 0.00000000## affected 0.01783803 0.00000000 0.00000000 0.00000000## afflicted 0.00000000 0.00000000 0.03663004 0.00000000## afghans 0.00000000 0.00000000 0.00000000 0.03438198## aggression 0.00000000 0.00000000 0.01831502 0.00000000## aging 0.00000000 0.00000000 0.00000000 0.00000000## aisle 0.03567606 0.00000000 0.00000000 0.00000000## alike 0.00000000 0.00000000 0.00000000 0.00000000## alliance 0.01783803 0.00000000 0.00000000 0.01719099## alltime 0.00000000 0.00000000 0.00000000 0.01719099## amnesty 0.01783803 0.00000000 0.00000000 0.00000000## analyze 0.00000000 0.00000000 0.03663004 0.00000000## andra 0.00000000 0.00000000 0.00000000 0.00000000## annual 0.00000000 0.00000000 0.00000000 0.00000000## appointed 0.00000000 0.00000000 0.00000000 0.00000000## approved 0.00000000 0.00000000 0.00000000 0.01719099## arbitrary 0.00000000 0.00000000 0.00000000 0.00000000## argued 0.00000000 0.00000000 0.00000000 0.00000000## argument 0.00000000 0.00000000 0.00000000 0.00000000## arrested 0.00000000 0.00000000 0.03663004 0.00000000## ashley 0.00000000 0.00000000 0.00000000 0.00000000## assembling 0.00000000 0.00000000 0.03663004 0.00000000## association 0.01783803 0.00000000 0.00000000 0.01719099## atomic 0.00000000 0.00000000 0.03663004 0.00000000## attempt 0.00000000 0.00000000 0.00000000 0.00000000## attorney 0.00000000 0.00000000 0.00000000 0.00000000## authorities 0.01783803 0.06495615 0.00000000 0.00000000## automakers 0.00000000 0.00000000 0.00000000 0.00000000## automobiles 0.00000000 0.00000000 0.01831502 0.00000000## aware 0.00000000 0.00000000 0.01831502 0.00000000## background 0.00000000 0.03247808 0.00000000 0.00000000## backgrounds 0.00000000 0.00000000 0.00000000 0.01719099## bankruptcy 0.00000000 0.00000000 0.00000000 0.00000000## barely 0.00000000 0.00000000 0.00000000 0.00000000## battery 0.01783803 0.00000000 0.00000000 0.01719099## bauer 0.00000000 0.00000000 0.00000000 0.00000000## bear 0.00000000 0.00000000 0.01831502 0.00000000## beliefs 0.00000000 0.03247808 0.00000000 0.00000000## believes 0.01783803 0.00000000 0.01831502 0.00000000## ben 0.00000000 0.00000000 0.00000000 0.00000000## benjamin 0.00000000 0.00000000 0.00000000 0.00000000## blame 0.00000000 0.00000000 0.00000000 0.00000000## blood 0.01783803 0.03247808 0.00000000 0.00000000## board 0.00000000 0.00000000 0.00000000 0.00000000## boldly 0.00000000 0.00000000 0.00000000 0.00000000## boom 0.00000000 0.00000000 0.00000000 0.00000000## booming 0.00000000 0.00000000 0.00000000 0.00000000## botulinum 0.00000000 0.00000000 0.03663004 0.00000000## branches 0.01783803 0.00000000 0.00000000 0.00000000## britain 0.00000000 0.03247808 0.00000000 0.00000000## broadly 0.00000000 0.00000000 0.01831502 0.00000000## bryan 0.00000000 0.00000000 0.00000000 0.00000000## builds 0.00000000 0.00000000 0.01831502 0.00000000## burdens 0.00000000 0.00000000 0.00000000 0.00000000## calls 0.00000000 0.00000000 0.00000000 0.00000000## calm 0.00000000 0.03247808 0.01831502 0.00000000## capabilities 0.00000000 0.03247808 0.00000000 0.00000000## capable 0.00000000 0.00000000 0.01831502 0.00000000## carried 0.00000000 0.00000000 0.01831502 0.00000000## carrying 0.01783803 0.00000000 0.00000000 0.03438198## cast 0.00000000 0.00000000 0.00000000 0.00000000## cell 0.03567606 0.00000000 0.00000000 0.00000000## centers 0.00000000 0.00000000 0.00000000 0.00000000## ceos 0.00000000 0.00000000 0.00000000 0.00000000## charities 0.00000000 0.00000000 0.00000000 0.00000000## chose 0.03567606 0.00000000 0.00000000 0.00000000## chosen 0.00000000 0.00000000 0.00000000 0.00000000## classrooms 0.00000000 0.00000000 0.00000000 0.00000000## clearly 0.00000000 0.00000000 0.01831502 0.00000000## cloning 0.00000000 0.00000000 0.01831502 0.01719099## closing 0.01783803 0.00000000 0.00000000 0.00000000## closure 0.00000000 0.00000000 0.00000000 0.00000000## coalitions 0.00000000 0.00000000 0.00000000 0.00000000## cochairs 0.00000000 0.00000000 0.00000000 0.01719099## combined 0.00000000 0.00000000 0.00000000 0.00000000## commander 0.00000000 0.00000000 0.00000000 0.01719099## competitors 0.00000000 0.00000000 0.00000000 0.00000000## concluded 0.00000000 0.00000000 0.03663004 0.00000000## condition 0.00000000 0.00000000 0.00000000 0.00000000## confirmation 0.00000000 0.00000000 0.00000000 0.01719099## confronted 0.00000000 0.00000000 0.01831502 0.00000000## congresses 0.00000000 0.00000000 0.01831502 0.00000000## conquest 0.00000000 0.00000000 0.03663004 0.00000000## consequences 0.01783803 0.00000000 0.00000000 0.00000000## conservative 0.00000000 0.00000000 0.00000000 0.00000000## consumed 0.00000000 0.00000000 0.00000000 0.00000000## contained 0.00000000 0.00000000 0.03663004 0.00000000## contentious 0.00000000 0.00000000 0.00000000 0.00000000## continues 0.01783803 0.03247808 0.00000000 0.01719099## contribute 0.00000000 0.00000000 0.00000000 0.00000000## convictions 0.05351409 0.00000000 0.00000000 0.00000000## convinced 0.00000000 0.00000000 0.00000000 0.00000000## cops 0.00000000 0.00000000 0.00000000 0.00000000## core 0.00000000 0.00000000 0.00000000 0.00000000## counsel 0.00000000 0.00000000 0.00000000 0.00000000## country^s 0.00000000 0.00000000 0.00000000 0.00000000## creativity 0.00000000 0.03247808 0.00000000 0.00000000## creed 0.00000000 0.00000000 0.00000000 0.00000000## creek 0.00000000 0.00000000 0.00000000 0.00000000## criminal 0.00000000 0.00000000 0.00000000 0.00000000## critics 0.00000000 0.00000000 0.00000000 0.00000000## cynical 0.00000000 0.00000000 0.00000000 0.00000000## daily 0.00000000 0.00000000 0.00000000 0.03438198## daughter 0.03567606 0.00000000 0.00000000 0.00000000## dealing 0.00000000 0.00000000 0.00000000 0.00000000## deals 0.00000000 0.00000000 0.00000000 0.00000000## dealt 0.00000000 0.00000000 0.01831502 0.00000000## debating 0.01783803 0.00000000 0.00000000 0.01719099## deceiving 0.00000000 0.00000000 0.03663004 0.00000000## decided 0.00000000 0.00000000 0.00000000 0.00000000## dedicated 0.00000000 0.00000000 0.01831502 0.01719099## deductions 0.00000000 0.00000000 0.00000000 0.00000000## deeper 0.00000000 0.00000000 0.00000000 0.00000000## delay 0.00000000 0.00000000 0.00000000 0.01719099## delivering 0.00000000 0.03247808 0.01831502 0.00000000## demanding 0.00000000 0.00000000 0.00000000 0.00000000## deploy 0.01783803 0.00000000 0.00000000 0.00000000## deploying 0.01783803 0.00000000 0.01831502 0.01719099## describes 0.00000000 0.00000000 0.01831502 0.00000000## diplomats 0.00000000 0.03247808 0.00000000 0.00000000## directing 0.00000000 0.00000000 0.00000000 0.00000000## disadvantaged 0.00000000 0.00000000 0.01831502 0.00000000## discuss 0.01783803 0.00000000 0.00000000 0.00000000## discussion 0.00000000 0.03247808 0.00000000 0.01719099## disruptions 0.03567606 0.00000000 0.00000000 0.00000000## divided 0.01783803 0.00000000 0.00000000 0.00000000## drawn 0.03567606 0.00000000 0.00000000 0.00000000## drilling 0.00000000 0.00000000 0.00000000 0.00000000## drives 0.00000000 0.00000000 0.00000000 0.00000000## earning 0.00000000 0.00000000 0.00000000 0.00000000## earnings 0.00000000 0.00000000 0.00000000 0.00000000## egg 0.00000000 0.00000000 0.00000000 0.00000000## elements 0.01783803 0.00000000 0.00000000 0.00000000## employer 0.00000000 0.00000000 0.00000000 0.01719099## empty 0.00000000 0.00000000 0.00000000 0.00000000## encouraged 0.00000000 0.00000000 0.00000000 0.00000000## endure 0.00000000 0.00000000 0.00000000 0.01719099## engage 0.00000000 0.00000000 0.00000000 0.00000000## engaged 0.00000000 0.00000000 0.00000000 0.01719099## enlisting 0.00000000 0.00000000 0.01831502 0.00000000## enter 0.03567606 0.00000000 0.00000000 0.01719099## entering 0.00000000 0.00000000 0.00000000 0.00000000## environmental 0.00000000 0.00000000 0.01831502 0.00000000## envy 0.00000000 0.00000000 0.00000000 0.00000000## ethical 0.00000000 0.00000000 0.00000000 0.01719099## excessive 0.00000000 0.00000000 0.01831502 0.00000000## extreme 0.00000000 0.00000000 0.00000000 0.00000000## falling 0.00000000 0.00000000 0.00000000 0.00000000## fate 0.00000000 0.03247808 0.01831502 0.00000000## feeding 0.00000000 0.00000000 0.01831502 0.00000000## finances 0.00000000 0.00000000 0.00000000 0.01719099## firefighters 0.00000000 0.00000000 0.00000000 0.00000000## flexibility 0.03567606 0.00000000 0.00000000 0.00000000## flowing 0.01783803 0.00000000 0.00000000 0.01719099## flying 0.00000000 0.03247808 0.00000000 0.00000000## forests 0.00000000 0.00000000 0.03663004 0.00000000## forever 0.00000000 0.03247808 0.01831502 0.00000000## forms 0.00000000 0.00000000 0.00000000 0.00000000## forth 0.01783803 0.00000000 0.00000000 0.01719099## francis 0.00000000 0.00000000 0.00000000 0.00000000## friendship 0.00000000 0.03247808 0.01831502 0.00000000## fulfill 0.00000000 0.00000000 0.01831502 0.00000000## fulfilled 0.01783803 0.00000000 0.00000000 0.00000000## full-time 0.00000000 0.00000000 0.00000000 0.00000000## gained 0.00000000 0.00000000 0.00000000 0.00000000## games 0.00000000 0.00000000 0.00000000 0.00000000## gap 0.01783803 0.00000000 0.00000000 0.00000000## gasoline 0.03567606 0.00000000 0.00000000 0.00000000## gate 0.00000000 0.03247808 0.01831502 0.00000000## gates 0.00000000 0.00000000 0.00000000 0.00000000## generates 0.01783803 0.00000000 0.01831502 0.00000000## generosity 0.01783803 0.00000000 0.00000000 0.00000000## grade 0.00000000 0.00000000 0.00000000 0.00000000## grades 0.00000000 0.00000000 0.00000000 0.00000000## gradually 0.00000000 0.00000000 0.01831502 0.00000000## grasp 0.00000000 0.00000000 0.01831502 0.00000000## gratitude 0.03567606 0.00000000 0.00000000 0.01719099## guest 0.00000000 0.00000000 0.00000000 0.00000000## guided 0.01783803 0.00000000 0.00000000 0.01719099## hall 0.00000000 0.00000000 0.01831502 0.00000000## happy 0.00000000 0.00000000 0.01831502 0.01719099## harbor 0.00000000 0.03247808 0.00000000 0.00000000## hatch 0.00000000 0.00000000 0.00000000 0.00000000## hated 0.00000000 0.00000000 0.00000000 0.00000000## hearing 0.01783803 0.00000000 0.00000000 0.00000000## hemisphere 0.00000000 0.00000000 0.00000000 0.01719099## heroes 0.00000000 0.00000000 0.00000000 0.00000000## hiding 0.00000000 0.00000000 0.03663004 0.00000000## highs 0.00000000 0.00000000 0.00000000 0.01719099## himself 0.00000000 0.00000000 0.01831502 0.00000000## hole 0.00000000 0.00000000 0.00000000 0.00000000## homeownership 0.00000000 0.00000000 0.00000000 0.01719099## hopeless 0.00000000 0.00000000 0.00000000 0.00000000## hot 0.00000000 0.00000000 0.01831502 0.00000000## humane 0.00000000 0.00000000 0.01831502 0.01719099## hunger 0.01783803 0.00000000 0.00000000 0.01719099## husband 0.00000000 0.00000000 0.00000000 0.00000000## idealism 0.00000000 0.00000000 0.01831502 0.00000000## identified 0.00000000 0.00000000 0.00000000 0.00000000## ideologies 0.01783803 0.03247808 0.00000000 0.00000000## illness 0.00000000 0.00000000 0.00000000 0.00000000## imagined 0.00000000 0.00000000 0.01831502 0.03438198## imports 0.01783803 0.00000000 0.00000000 0.00000000## improved 0.00000000 0.00000000 0.00000000 0.01719099## inspired 0.01783803 0.00000000 0.00000000 0.01719099## institutes 0.00000000 0.00000000 0.00000000 0.00000000## interested 0.00000000 0.00000000 0.00000000 0.00000000## jackie 0.00000000 0.00000000 0.00000000 0.00000000## jeopardize 0.00000000 0.00000000 0.00000000 0.00000000## johnson 0.01783803 0.00000000 0.00000000 0.00000000## jordan 0.01783803 0.03247808 0.00000000 0.01719099## josefina 0.00000000 0.00000000 0.00000000 0.00000000## july 0.00000000 0.00000000 0.00000000 0.00000000## junk 0.01783803 0.00000000 0.00000000 0.01719099## k 0.00000000 0.00000000 0.00000000 0.00000000## knowledge 0.01783803 0.00000000 0.00000000 0.00000000## latino 0.00000000 0.00000000 0.00000000 0.00000000## layoffs 0.00000000 0.00000000 0.00000000 0.00000000## legitimate 0.00000000 0.03247808 0.00000000 0.00000000## lenders 0.00000000 0.00000000 0.00000000 0.00000000## lesson 0.00000000 0.00000000 0.00000000 0.00000000## levant 0.00000000 0.00000000 0.00000000 0.00000000## leverage 0.00000000 0.00000000 0.00000000 0.00000000## liberal 0.00000000 0.00000000 0.00000000 0.00000000## lies 0.00000000 0.06495615 0.00000000 0.01719099## light 0.03567606 0.00000000 0.00000000 0.00000000## liters 0.00000000 0.00000000 0.03663004 0.00000000## lived 0.00000000 0.00000000 0.01831502 0.00000000## locate 0.00000000 0.00000000 0.00000000 0.00000000## losses 0.00000000 0.00000000 0.00000000 0.00000000## malaria 0.01783803 0.00000000 0.00000000 0.00000000## master 0.00000000 0.00000000 0.00000000 0.00000000## match 0.00000000 0.00000000 0.00000000 0.00000000## meets 0.00000000 0.00000000 0.00000000 0.00000000## mentor 0.00000000 0.00000000 0.01831502 0.00000000## mercy 0.00000000 0.00000000 0.03663004 0.00000000## mexico 0.00000000 0.03247808 0.00000000 0.01719099## midst 0.01783803 0.00000000 0.00000000 0.00000000## militia 0.00000000 0.00000000 0.00000000 0.06876397## millionaires 0.00000000 0.00000000 0.00000000 0.00000000## mine 0.00000000 0.00000000 0.00000000 0.00000000## mitt 0.00000000 0.00000000 0.00000000 0.00000000## morning 0.01783803 0.03247808 0.00000000 0.00000000## mourning 0.00000000 0.03247808 0.01831502 0.00000000## movements 0.00000000 0.00000000 0.00000000 0.01719099## moves 0.00000000 0.00000000 0.01831502 0.00000000## name 0.00000000 0.06495615 0.00000000 0.00000000## nancy 0.01783803 0.00000000 0.00000000 0.00000000## native 0.00000000 0.00000000 0.00000000 0.00000000## nature 0.01783803 0.00000000 0.01831502 0.00000000## naval 0.00000000 0.00000000 0.00000000 0.00000000## nearing 0.00000000 0.00000000 0.00000000 0.00000000## nest 0.00000000 0.00000000 0.00000000 0.00000000## newly 0.00000000 0.00000000 0.01831502 0.00000000## norwood 0.01783803 0.00000000 0.00000000 0.00000000## notice 0.00000000 0.03247808 0.01831502 0.00000000## notion 0.00000000 0.00000000 0.00000000 0.00000000## obesity 0.00000000 0.00000000 0.00000000 0.00000000## offering 0.00000000 0.00000000 0.00000000 0.00000000## offshore 0.00000000 0.00000000 0.00000000 0.00000000## ohio 0.00000000 0.00000000 0.00000000 0.00000000## ongoing 0.00000000 0.00000000 0.01831502 0.00000000## oppression 0.00000000 0.00000000 0.00000000 0.01719099## orrin 0.00000000 0.00000000 0.00000000 0.00000000## outlined 0.00000000 0.00000000 0.00000000 0.00000000## outsourcing 0.00000000 0.00000000 0.00000000 0.00000000## overnight 0.00000000 0.00000000 0.00000000 0.00000000## oversight 0.00000000 0.00000000 0.00000000 0.00000000## ownership 0.00000000 0.00000000 0.00000000 0.00000000## pacific 0.00000000 0.00000000 0.00000000 0.00000000## pain 0.00000000 0.00000000 0.00000000 0.01719099## palestine 0.00000000 0.00000000 0.01831502 0.01719099## palestinians 0.00000000 0.00000000 0.00000000 0.01719099## partnering 0.00000000 0.00000000 0.00000000 0.01719099## payment 0.00000000 0.00000000 0.00000000 0.00000000## pelosi 0.00000000 0.00000000 0.00000000 0.01719099## perhaps 0.00000000 0.03247808 0.00000000 0.00000000## permitted 0.00000000 0.00000000 0.03663004 0.00000000## persian 0.00000000 0.00000000 0.01831502 0.01719099## philadelphia 0.00000000 0.00000000 0.00000000 0.01719099## plague 0.00000000 0.00000000 0.03663004 0.00000000## plotting 0.00000000 0.00000000 0.00000000 0.00000000## pocket 0.00000000 0.00000000 0.00000000 0.00000000## position 0.03567606 0.03247808 0.00000000 0.00000000## positioned 0.00000000 0.00000000 0.00000000 0.00000000## possibilities 0.00000000 0.03247808 0.01831502 0.00000000## pray 0.01783803 0.03247808 0.00000000 0.00000000## pre-k 0.00000000 0.00000000 0.00000000 0.00000000## precisely 0.01783803 0.00000000 0.00000000 0.00000000## preschool 0.00000000 0.00000000 0.00000000 0.00000000## present 0.00000000 0.00000000 0.01831502 0.00000000## previous 0.00000000 0.00000000 0.00000000 0.00000000## pride 0.00000000 0.00000000 0.00000000 0.00000000## probably 0.00000000 0.00000000 0.00000000 0.00000000## profit 0.00000000 0.00000000 0.00000000 0.00000000## prohibited 0.00000000 0.00000000 0.01831502 0.00000000## prove 0.00000000 0.00000000 0.00000000 0.00000000## purposes 0.03567606 0.00000000 0.00000000 0.00000000## qualities 0.01783803 0.00000000 0.01831502 0.00000000## quantities 0.00000000 0.00000000 0.03663004 0.00000000## quiet 0.00000000 0.00000000 0.00000000 0.00000000## raclin 0.00000000 0.00000000 0.00000000 0.00000000## rapidly 0.00000000 0.00000000 0.00000000 0.00000000## reaction 0.01783803 0.00000000 0.01831502 0.00000000## reality 0.00000000 0.00000000 0.00000000 0.00000000## reckless 0.00000000 0.00000000 0.01831502 0.00000000## records 0.00000000 0.00000000 0.00000000 0.00000000## regulation 0.00000000 0.00000000 0.00000000 0.00000000## rein 0.00000000 0.00000000 0.00000000 0.00000000## release 0.00000000 0.03247808 0.00000000 0.00000000## relent 0.00000000 0.03247808 0.00000000 0.00000000## remind 0.00000000 0.00000000 0.00000000 0.00000000## reminder 0.01783803 0.03247808 0.00000000 0.01719099## repayment 0.00000000 0.00000000 0.00000000 0.00000000## reports 0.01783803 0.00000000 0.01831502 0.01719099## represent 0.00000000 0.00000000 0.00000000 0.00000000## representative 0.00000000 0.00000000 0.00000000 0.00000000## represents 0.01783803 0.00000000 0.00000000 0.00000000## requiring 0.00000000 0.00000000 0.00000000 0.00000000## rescued 0.00000000 0.00000000 0.00000000 0.00000000## responsibly 0.00000000 0.00000000 0.00000000 0.00000000## rigged 0.00000000 0.00000000 0.00000000 0.00000000## ronald 0.00000000 0.00000000 0.00000000 0.00000000## rostrum 0.01783803 0.00000000 0.00000000 0.01719099## ruin 0.00000000 0.00000000 0.00000000 0.00000000## san 0.00000000 0.00000000 0.00000000 0.00000000## scientific 0.00000000 0.00000000 0.00000000 0.01719099## search 0.00000000 0.00000000 0.01831502 0.00000000## seems 0.00000000 0.00000000 0.00000000 0.01719099## senators 0.00000000 0.00000000 0.00000000 0.00000000## shadow 0.00000000 0.00000000 0.00000000 0.00000000## shield 0.01783803 0.03247808 0.00000000 0.00000000## shore 0.00000000 0.00000000 0.00000000 0.00000000## showed 0.00000000 0.00000000 0.00000000 0.01719099## siemens 0.00000000 0.00000000 0.00000000 0.00000000## site 0.00000000 0.00000000 0.00000000 0.00000000## six 0.00000000 0.00000000 0.00000000 0.01719099## skeptical 0.00000000 0.00000000 0.00000000 0.00000000## slipped 0.01783803 0.00000000 0.01831502 0.00000000## somewhere 0.00000000 0.00000000 0.00000000 0.00000000## southeast 0.01783803 0.00000000 0.01831502 0.00000000## sparing 0.00000000 0.00000000 0.03663004 0.00000000## sports 0.00000000 0.00000000 0.00000000 0.00000000## spouses 0.00000000 0.00000000 0.00000000 0.03438198## spreading 0.01783803 0.00000000 0.00000000 0.01719099## spur 0.00000000 0.00000000 0.00000000 0.00000000## st-century 0.00000000 0.00000000 0.00000000 0.00000000## stamp 0.00000000 0.00000000 0.00000000 0.00000000## star 0.03567606 0.00000000 0.00000000 0.00000000## stays 0.00000000 0.00000000 0.00000000 0.01719099## storm 0.00000000 0.00000000 0.00000000 0.00000000## straits 0.00000000 0.00000000 0.03663004 0.00000000## strategies 0.00000000 0.00000000 0.01831502 0.00000000## strengthened 0.00000000 0.00000000 0.00000000 0.00000000## striving 0.00000000 0.00000000 0.00000000 0.00000000## strongholds 0.00000000 0.00000000 0.00000000 0.03438198## struggles 0.00000000 0.03247808 0.00000000 0.00000000## successful 0.00000000 0.03247808 0.00000000 0.01719099## sudan 0.00000000 0.00000000 0.00000000 0.01719099## sufficient 0.00000000 0.00000000 0.03663004 0.00000000## supposed 0.00000000 0.00000000 0.01831502 0.00000000## supreme 0.00000000 0.00000000 0.01831502 0.00000000## table 0.00000000 0.00000000 0.00000000 0.00000000## tackle 0.00000000 0.00000000 0.00000000 0.00000000## talented 0.01783803 0.00000000 0.00000000 0.01719099## talking 0.00000000 0.00000000 0.00000000 0.01719099## target 0.01783803 0.00000000 0.00000000 0.00000000## targeted 0.00000000 0.00000000 0.00000000 0.00000000## tech 0.00000000 0.00000000 0.00000000 0.00000000## tehran 0.01783803 0.00000000 0.00000000 0.03438198## territories 0.00000000 0.00000000 0.00000000 0.01719099## territory 0.00000000 0.03247808 0.00000000 0.00000000## they^d 0.00000000 0.00000000 0.00000000 0.00000000## thriving 0.00000000 0.00000000 0.00000000 0.00000000## tide 0.00000000 0.00000000 0.01831502 0.00000000## tie 0.00000000 0.00000000 0.00000000 0.00000000## ties 0.00000000 0.00000000 0.01831502 0.00000000## tone 0.00000000 0.00000000 0.00000000 0.00000000## tool 0.01783803 0.03247808 0.00000000 0.00000000## toxin 0.00000000 0.00000000 0.03663004 0.00000000## trading 0.00000000 0.00000000 0.00000000 0.00000000## trains 0.00000000 0.00000000 0.00000000 0.01719099## trans-pacific 0.00000000 0.00000000 0.00000000 0.00000000## transforming 0.00000000 0.00000000 0.03663004 0.00000000## treasury 0.00000000 0.00000000 0.00000000 0.00000000## trends 0.00000000 0.00000000 0.00000000 0.00000000## tribal 0.00000000 0.00000000 0.00000000 0.03438198## trusting 0.00000000 0.00000000 0.01831502 0.03438198## tunisia 0.00000000 0.00000000 0.00000000 0.00000000## tyrants 0.00000000 0.00000000 0.01831502 0.00000000## uncovered 0.03567606 0.00000000 0.01831502 0.00000000## understood 0.00000000 0.00000000 0.00000000 0.00000000## unfairly 0.00000000 0.00000000 0.01831502 0.01719099## unions 0.00000000 0.00000000 0.00000000 0.00000000## up-or-down 0.01783803 0.00000000 0.00000000 0.01719099## upgrade 0.00000000 0.00000000 0.00000000 0.00000000## upholds 0.01783803 0.00000000 0.00000000 0.01719099## usa 0.00000000 0.00000000 0.01831502 0.03438198## usher 0.00000000 0.00000000 0.00000000 0.00000000## verge 0.01783803 0.00000000 0.00000000 0.00000000## verify 0.01783803 0.00000000 0.01831502 0.00000000## wanted 0.00000000 0.00000000 0.01831502 0.00000000## warfare 0.00000000 0.00000000 0.01831502 0.00000000## warning 0.01783803 0.00000000 0.01831502 0.00000000## warriors 0.00000000 0.00000000 0.00000000 0.03438198## wave 0.00000000 0.00000000 0.00000000 0.00000000## weaken 0.00000000 0.00000000 0.00000000 0.00000000## wear 0.01783803 0.00000000 0.00000000 0.00000000## web 0.00000000 0.00000000 0.00000000 0.00000000## weight 0.00000000 0.00000000 0.00000000 0.00000000## welfare 0.00000000 0.00000000 0.00000000 0.01719099## western 0.00000000 0.00000000 0.01831502 0.00000000## won 0.01783803 0.00000000 0.00000000 0.00000000## wonder 0.00000000 0.03247808 0.00000000 0.00000000## world-class 0.00000000 0.00000000 0.00000000 0.00000000## wouldn^t 0.00000000 0.00000000 0.00000000 0.00000000## wounded 0.00000000 0.00000000 0.00000000 0.03438198## year^s 0.00000000 0.00000000 0.00000000 0.01719099## you^d 0.00000000 0.00000000 0.00000000 0.00000000## yours 0.00000000 0.00000000 0.00000000 0.00000000## zarqawi 0.01783803 0.00000000 0.00000000 0.00000000## -percent 0.00000000 0.00000000 0.00000000 0.00000000## -year-old 0.00000000 0.00000000 0.00000000 0.00000000## abbas 0.00000000 0.00000000 0.00000000 0.01719099## abortion 0.00000000 0.00000000 0.01831502 0.00000000## abortions 0.00000000 0.00000000 0.00000000 0.00000000## abraham 0.00000000 0.00000000 0.00000000 0.00000000## abstinence 0.00000000 0.00000000 0.00000000 0.00000000## accelerate 0.00000000 0.00000000 0.00000000 0.00000000## accepted 0.00000000 0.00000000 0.00000000 0.00000000## accompany 0.00000000 0.03247808 0.01831502 0.00000000## accomplished 0.00000000 0.00000000 0.01831502 0.00000000## accountants 0.00000000 0.00000000 0.00000000 0.00000000## achievements 0.00000000 0.00000000 0.00000000 0.00000000## acknowledge 0.00000000 0.00000000 0.00000000 0.01719099## acting 0.00000000 0.00000000 0.01831502 0.00000000## activist 0.00000000 0.00000000 0.00000000 0.00000000## addition 0.00000000 0.00000000 0.00000000 0.00000000## addressing 0.00000000 0.00000000 0.00000000 0.00000000## adds 0.00000000 0.00000000 0.00000000 0.00000000## administered 0.00000000 0.00000000 0.00000000 0.00000000## administrations 0.00000000 0.00000000 0.00000000 0.00000000## adult 0.00000000 0.00000000 0.01831502 0.01719099## advocate 0.00000000 0.00000000 0.00000000 0.00000000## affect 0.00000000 0.00000000 0.00000000 0.01719099## airline 0.00000000 0.00000000 0.00000000 0.00000000## alive 0.00000000 0.00000000 0.00000000 0.00000000## all-of-the-above 0.00000000 0.00000000 0.00000000 0.00000000## ambition 0.00000000 0.00000000 0.01831502 0.00000000## anew 0.00000000 0.00000000 0.00000000 0.00000000## answers 0.00000000 0.00000000 0.00000000 0.00000000## anxious 0.00000000 0.00000000 0.00000000 0.00000000## appreciate 0.00000000 0.00000000 0.00000000 0.00000000## arab 0.01783803 0.03247808 0.00000000 0.00000000## arabian 0.00000000 0.00000000 0.00000000 0.00000000## area 0.01783803 0.00000000 0.00000000 0.00000000## arizona 0.00000000 0.00000000 0.00000000 0.00000000## arm 0.01783803 0.00000000 0.00000000 0.00000000## armies 0.00000000 0.00000000 0.01831502 0.01719099## arsenal 0.00000000 0.00000000 0.01831502 0.00000000## arsenals 0.00000000 0.00000000 0.01831502 0.00000000## asia-pacific 0.00000000 0.00000000 0.00000000 0.00000000## asks 0.00000000 0.00000000 0.00000000 0.00000000## assassins 0.01783803 0.00000000 0.00000000 0.00000000## attempted 0.00000000 0.00000000 0.01831502 0.00000000## attitude 0.00000000 0.03247808 0.00000000 0.00000000## audience 0.00000000 0.00000000 0.00000000 0.00000000## august 0.01783803 0.00000000 0.00000000 0.00000000## aung 0.00000000 0.00000000 0.00000000 0.00000000## australia 0.00000000 0.03247808 0.00000000 0.00000000## authorize 0.01783803 0.00000000 0.00000000 0.00000000## avoiding 0.00000000 0.00000000 0.00000000 0.00000000## backed 0.01783803 0.00000000 0.00000000 0.00000000## bailouts 0.00000000 0.00000000 0.00000000 0.00000000## ballistic 0.00000000 0.00000000 0.01831502 0.01719099## ballot 0.00000000 0.00000000 0.00000000 0.00000000## bankrupt 0.00000000 0.00000000 0.00000000 0.00000000## bargain 0.00000000 0.00000000 0.00000000 0.00000000## battered 0.00000000 0.00000000 0.01831502 0.00000000## battlefield 0.00000000 0.00000000 0.00000000 0.00000000## becomes 0.00000000 0.00000000 0.00000000 0.00000000## becoming 0.00000000 0.00000000 0.00000000 0.00000000## belong 0.00000000 0.00000000 0.00000000 0.00000000## beloved 0.00000000 0.00000000 0.00000000 0.01719099## below 0.00000000 0.00000000 0.00000000 0.00000000## benghazi 0.00000000 0.00000000 0.00000000 0.00000000## berlin 0.00000000 0.00000000 0.00000000 0.00000000## bet 0.00000000 0.00000000 0.00000000 0.00000000## bioterrorism 0.00000000 0.00000000 0.01831502 0.00000000## bisexual 0.00000000 0.00000000 0.00000000 0.00000000## blows 0.00000000 0.00000000 0.00000000 0.00000000## blueprint 0.00000000 0.00000000 0.00000000 0.00000000## bob 0.00000000 0.00000000 0.00000000 0.03438198## bombing 0.00000000 0.06495615 0.00000000 0.00000000## bombs 0.01783803 0.00000000 0.00000000 0.01719099## boss 0.00000000 0.00000000 0.00000000 0.00000000## boston 0.00000000 0.00000000 0.00000000 0.00000000## brain 0.00000000 0.00000000 0.00000000 0.00000000## brand 0.01783803 0.00000000 0.00000000 0.00000000## breakthrough 0.00000000 0.00000000 0.00000000 0.01719099## bubble 0.00000000 0.00000000 0.00000000 0.00000000## bucks 0.00000000 0.00000000 0.00000000 0.00000000## budgets 0.00000000 0.00000000 0.00000000 0.01719099## burdened 0.00000000 0.00000000 0.00000000 0.00000000## bureaucrats 0.00000000 0.00000000 0.01831502 0.00000000## burn 0.00000000 0.00000000 0.01831502 0.00000000## burning 0.00000000 0.00000000 0.01831502 0.00000000## busy 0.00000000 0.00000000 0.00000000 0.00000000## byron 0.00000000 0.00000000 0.00000000 0.00000000## cabinet 0.00000000 0.00000000 0.01831502 0.00000000## candid 0.00000000 0.00000000 0.00000000 0.00000000## cap 0.00000000 0.00000000 0.00000000 0.00000000## cards 0.00000000 0.00000000 0.00000000 0.00000000## carefully 0.01783803 0.00000000 0.00000000 0.00000000## cents 0.00000000 0.00000000 0.00000000 0.00000000## centuries 0.00000000 0.00000000 0.00000000 0.00000000## certainly 0.00000000 0.00000000 0.00000000 0.00000000## chair 0.00000000 0.00000000 0.00000000 0.00000000## chances 0.00000000 0.00000000 0.00000000 0.00000000## chapter 0.00000000 0.00000000 0.00000000 0.00000000## charges 0.00000000 0.00000000 0.00000000 0.00000000## check 0.00000000 0.00000000 0.00000000 0.00000000## chicago 0.00000000 0.00000000 0.00000000 0.00000000## chile 0.00000000 0.00000000 0.00000000 0.00000000## chip 0.00000000 0.00000000 0.00000000 0.00000000## chips 0.01783803 0.00000000 0.00000000 0.00000000## choosing 0.01783803 0.00000000 0.00000000 0.00000000## christians 0.00000000 0.06495615 0.00000000 0.00000000## christmas 0.00000000 0.00000000 0.00000000 0.00000000## church 0.00000000 0.00000000 0.01831502 0.00000000## circumstances 0.00000000 0.00000000 0.00000000 0.00000000## civilization 0.01783803 0.00000000 0.00000000 0.00000000## claimed 0.00000000 0.00000000 0.00000000 0.00000000## classes 0.00000000 0.00000000 0.00000000 0.00000000## cleanup 0.00000000 0.00000000 0.00000000 0.00000000## clearing 0.00000000 0.00000000 0.00000000 0.01719099## clock 0.00000000 0.00000000 0.01831502 0.00000000## closest 0.00000000 0.00000000 0.00000000 0.00000000## cole 0.00000000 0.03247808 0.01831502 0.00000000## collection 0.00000000 0.03247808 0.00000000 0.00000000## comforted 0.00000000 0.03247808 0.00000000 0.00000000## command 0.00000000 0.03247808 0.01831502 0.00000000## communism 0.00000000 0.00000000 0.01831502 0.00000000## company^s 0.00000000 0.00000000 0.01831502 0.00000000## competent 0.00000000 0.00000000 0.00000000 0.00000000## complex 0.00000000 0.00000000 0.00000000 0.00000000## concerned 0.00000000 0.00000000 0.00000000 0.00000000## connect 0.00000000 0.00000000 0.00000000 0.00000000## consensus 0.00000000 0.00000000 0.00000000 0.00000000## considered 0.00000000 0.00000000 0.01831502 0.00000000## consistent 0.00000000 0.00000000 0.00000000 0.00000000## consolidate 0.00000000 0.00000000 0.00000000 0.00000000## constructive 0.00000000 0.00000000 0.00000000 0.00000000## contain 0.00000000 0.00000000 0.00000000 0.00000000## contracting 0.00000000 0.00000000 0.00000000 0.00000000## contracts 0.00000000 0.00000000 0.00000000 0.00000000## convene 0.00000000 0.00000000 0.01831502 0.01719099## cooperate 0.00000000 0.00000000 0.01831502 0.01719099## coordination 0.00000000 0.00000000 0.00000000 0.00000000## cordray 0.00000000 0.00000000 0.00000000 0.00000000## corner 0.00000000 0.00000000 0.00000000 0.00000000## counter 0.00000000 0.00000000 0.00000000 0.00000000## countless 0.00000000 0.00000000 0.00000000 0.00000000## creative 0.00000000 0.00000000 0.00000000 0.01719099## crimes 0.00000000 0.00000000 0.00000000 0.00000000## criticism 0.00000000 0.00000000 0.00000000 0.00000000## crossings 0.00000000 0.00000000 0.00000000 0.01719099## crowds 0.00000000 0.00000000 0.01831502 0.00000000## cruelty 0.00000000 0.03247808 0.01831502 0.00000000## cure 0.00000000 0.00000000 0.00000000 0.00000000## custody 0.00000000 0.00000000 0.01831502 0.00000000## custom 0.01783803 0.00000000 0.01831502 0.00000000## cybersecurity 0.00000000 0.00000000 0.00000000 0.00000000## dan 0.00000000 0.00000000 0.00000000 0.00000000## dark 0.00000000 0.03247808 0.00000000 0.00000000## deaths 0.00000000 0.00000000 0.00000000 0.03438198## declare 0.00000000 0.00000000 0.00000000 0.00000000## deepest 0.00000000 0.00000000 0.01831502 0.00000000## defiance 0.00000000 0.00000000 0.01831502 0.00000000## defined 0.00000000 0.03247808 0.00000000 0.00000000## demars 0.00000000 0.00000000 0.00000000 0.00000000## democratization 0.00000000 0.00000000 0.00000000 0.00000000## denying 0.00000000 0.00000000 0.01831502 0.00000000## deployed 0.01783803 0.00000000 0.00000000 0.00000000## derail 0.00000000 0.00000000 0.00000000 0.01719099## destructive 0.00000000 0.00000000 0.01831502 0.00000000## detect 0.00000000 0.00000000 0.01831502 0.00000000## devastate 0.00000000 0.00000000 0.01831502 0.00000000## dictatorship 0.00000000 0.00000000 0.00000000 0.01719099## differently 0.00000000 0.00000000 0.00000000 0.00000000## digital 0.00000000 0.00000000 0.00000000 0.00000000## dikembe 0.05351409 0.00000000 0.00000000 0.00000000## director 0.00000000 0.00000000 0.01831502 0.00000000## disasters 0.00000000 0.00000000 0.00000000 0.00000000## disclose 0.00000000 0.00000000 0.00000000 0.00000000## discover 0.00000000 0.00000000 0.00000000 0.01719099## discoveries 0.00000000 0.00000000 0.00000000 0.00000000## dismantle 0.00000000 0.00000000 0.00000000 0.00000000## dismiss 0.00000000 0.00000000 0.00000000 0.00000000## disposition 0.00000000 0.00000000 0.00000000 0.00000000## distance 0.01783803 0.00000000 0.00000000 0.01719099## districts 0.00000000 0.00000000 0.00000000 0.01719099## diversity 0.00000000 0.00000000 0.00000000 0.00000000## dividends 0.00000000 0.00000000 0.01831502 0.00000000## divisions 0.00000000 0.00000000 0.00000000 0.00000000## doha 0.00000000 0.00000000 0.00000000 0.01719099## doubts 0.00000000 0.00000000 0.00000000 0.00000000## dozen 0.00000000 0.00000000 0.00000000 0.00000000## draft 0.00000000 0.00000000 0.00000000 0.01719099## draw 0.00000000 0.00000000 0.00000000 0.00000000## drawdown 0.00000000 0.00000000 0.00000000 0.03438198## dropout 0.00000000 0.00000000 0.00000000 0.00000000## dynamic 0.00000000 0.00000000 0.00000000 0.01719099## edge 0.00000000 0.00000000 0.00000000 0.01719099## educational 0.00000000 0.00000000 0.00000000 0.00000000## einstein 0.05351409 0.00000000 0.00000000 0.00000000## el 0.00000000 0.03247808 0.00000000 0.00000000## elderly 0.01783803 0.00000000 0.00000000 0.00000000## eliminated 0.00000000 0.00000000 0.00000000 0.00000000## eliminating 0.01783803 0.00000000 0.00000000 0.00000000## embassies 0.00000000 0.03247808 0.01831502 0.00000000## embolden 0.00000000 0.00000000 0.00000000 0.03438198## embrace 0.00000000 0.00000000 0.00000000 0.00000000## embraced 0.00000000 0.00000000 0.00000000 0.00000000## embryos 0.00000000 0.00000000 0.00000000 0.00000000## emerged 0.00000000 0.00000000 0.00000000 0.00000000## empire 0.00000000 0.00000000 0.00000000 0.00000000## employ 0.00000000 0.00000000 0.01831502 0.00000000## employer-based 0.00000000 0.00000000 0.00000000 0.00000000## endless 0.01783803 0.00000000 0.01831502 0.00000000## engagement 0.00000000 0.00000000 0.00000000 0.00000000## english 0.00000000 0.03247808 0.00000000 0.00000000## enjoy 0.00000000 0.00000000 0.00000000 0.00000000## enriching 0.00000000 0.00000000 0.01831502 0.00000000## enrichment 0.00000000 0.00000000 0.00000000 0.01719099## ensures 0.00000000 0.00000000 0.00000000 0.00000000## ensuring 0.00000000 0.00000000 0.00000000 0.00000000## entirely 0.00000000 0.00000000 0.00000000 0.00000000## entitlements 0.01783803 0.00000000 0.00000000 0.00000000## envoy 0.00000000 0.00000000 0.00000000 0.00000000## equally 0.00000000 0.00000000 0.01831502 0.00000000## equip 0.00000000 0.00000000 0.00000000 0.00000000## eric 0.00000000 0.00000000 0.00000000 0.00000000## errors 0.01783803 0.00000000 0.00000000 0.00000000## escape 0.00000000 0.00000000 0.00000000 0.00000000## estiven 0.00000000 0.00000000 0.00000000 0.00000000## ethnic 0.00000000 0.03247808 0.00000000 0.00000000## except 0.00000000 0.06495615 0.00000000 0.00000000## exceptional 0.01783803 0.03247808 0.00000000 0.00000000## executives 0.00000000 0.00000000 0.00000000 0.00000000## exercise 0.00000000 0.00000000 0.01831502 0.00000000## exist 0.00000000 0.00000000 0.00000000 0.00000000## existence 0.00000000 0.00000000 0.01831502 0.00000000## expense 0.00000000 0.00000000 0.00000000 0.00000000## expressed 0.00000000 0.00000000 0.00000000 0.00000000## eyes 0.00000000 0.00000000 0.00000000 0.00000000## falter 0.00000000 0.03247808 0.00000000 0.00000000## familiar 0.00000000 0.00000000 0.01831502 0.00000000## fascism 0.00000000 0.03247808 0.00000000 0.00000000## fearful 0.00000000 0.03247808 0.00000000 0.00000000## feeling 0.00000000 0.00000000 0.00000000 0.00000000## feels 0.00000000 0.00000000 0.00000000 0.00000000## fees 0.00000000 0.00000000 0.00000000 0.00000000## fifteen 0.00000000 0.00000000 0.00000000 0.00000000## filled 0.00000000 0.00000000 0.00000000 0.00000000## filling 0.00000000 0.00000000 0.00000000 0.00000000## finest 0.00000000 0.00000000 0.00000000 0.01719099## first-responders 0.00000000 0.00000000 0.00000000 0.00000000## flights 0.00000000 0.03247808 0.01831502 0.00000000## floods 0.00000000 0.00000000 0.00000000 0.00000000## flow 0.00000000 0.00000000 0.00000000 0.01719099## fly 0.01783803 0.00000000 0.00000000 0.01719099## footing 0.00000000 0.00000000 0.00000000 0.00000000## forcing 0.00000000 0.00000000 0.00000000 0.00000000## ford 0.00000000 0.00000000 0.00000000 0.00000000## forgot 0.01783803 0.00000000 0.00000000 0.00000000## formed 0.01783803 0.00000000 0.00000000 0.00000000## founding 0.00000000 0.00000000 0.00000000 0.00000000## freedoms 0.01783803 0.03247808 0.00000000 0.00000000## freer 0.00000000 0.00000000 0.00000000 0.01719099## front 0.00000000 0.00000000 0.00000000 0.00000000## frustration 0.00000000 0.00000000 0.01831502 0.00000000## function 0.01783803 0.00000000 0.00000000 0.00000000## furniture 0.00000000 0.00000000 0.00000000 0.00000000## futures 0.00000000 0.00000000 0.00000000 0.01719099## gabrielle 0.00000000 0.00000000 0.00000000 0.00000000## gangs 0.00000000 0.00000000 0.00000000 0.00000000## gaps 0.00000000 0.00000000 0.00000000 0.00000000## gary 0.00000000 0.00000000 0.00000000 0.00000000## generation^s 0.00000000 0.00000000 0.00000000 0.00000000## generous 0.01783803 0.00000000 0.00000000 0.00000000## georgia 0.00000000 0.00000000 0.00000000 0.01719099## germany 0.00000000 0.00000000 0.00000000 0.00000000## gi 0.00000000 0.00000000 0.00000000 0.00000000## ginsberg 0.00000000 0.00000000 0.00000000 0.00000000## god^s 0.00000000 0.00000000 0.01831502 0.00000000## golden 0.01783803 0.00000000 0.00000000 0.00000000## good-paying 0.00000000 0.00000000 0.00000000 0.00000000## goodness 0.00000000 0.00000000 0.01831502 0.00000000## google 0.00000000 0.00000000 0.00000000 0.00000000## grace 0.00000000 0.03247808 0.00000000 0.00000000## grandfather 0.00000000 0.00000000 0.00000000 0.00000000## greatness 0.00000000 0.00000000 0.00000000 0.01719099## gross 0.00000000 0.00000000 0.00000000 0.00000000## guarantees 0.00000000 0.00000000 0.00000000 0.00000000## guys 0.01783803 0.00000000 0.00000000 0.00000000## halfway 0.00000000 0.00000000 0.00000000 0.00000000## happens 0.00000000 0.00000000 0.00000000 0.00000000## harsh 0.01783803 0.00000000 0.00000000 0.00000000## havoc 0.00000000 0.00000000 0.01831502 0.01719099## heads 0.01783803 0.00000000 0.00000000 0.00000000## hearts 0.00000000 0.00000000 0.00000000 0.01719099## heat 0.00000000 0.00000000 0.00000000 0.00000000## henry 0.00000000 0.00000000 0.00000000 0.00000000## heroic 0.01783803 0.00000000 0.00000000 0.00000000## hesitate 0.00000000 0.00000000 0.00000000 0.00000000## highway 0.00000000 0.00000000 0.00000000 0.00000000## hijackers 0.00000000 0.00000000 0.01831502 0.00000000## history^s 0.00000000 0.03247808 0.00000000 0.00000000## holds 0.00000000 0.00000000 0.00000000 0.00000000## homeless 0.00000000 0.00000000 0.01831502 0.00000000## homelessness 0.00000000 0.00000000 0.00000000 0.00000000## honors 0.00000000 0.00000000 0.00000000 0.03438198## hostile 0.03567606 0.03247808 0.00000000 0.00000000## households 0.00000000 0.00000000 0.00000000 0.00000000## howard 0.00000000 0.03247808 0.00000000 0.00000000## hugged 0.00000000 0.00000000 0.01831502 0.00000000## hungry 0.00000000 0.00000000 0.01831502 0.00000000## hunt 0.00000000 0.00000000 0.01831502 0.00000000## hurricane 0.00000000 0.00000000 0.00000000 0.00000000## hurt 0.00000000 0.00000000 0.00000000 0.00000000## hybrid 0.01783803 0.00000000 0.00000000 0.00000000## ideal 0.00000000 0.00000000 0.00000000 0.00000000## iii 0.00000000 0.00000000 0.00000000 0.00000000## ill 0.00000000 0.00000000 0.00000000 0.00000000## illinois 0.00000000 0.00000000 0.00000000 0.00000000## images 0.00000000 0.00000000 0.00000000 0.05157298## immigrant 0.00000000 0.00000000 0.00000000 0.00000000## improvements 0.00000000 0.00000000 0.00000000 0.01719099## inc 0.00000000 0.00000000 0.00000000 0.00000000## incentive 0.00000000 0.00000000 0.00000000 0.00000000## industrialized 0.00000000 0.00000000 0.00000000 0.00000000## infection 0.00000000 0.00000000 0.01831502 0.00000000## infections 0.00000000 0.00000000 0.01831502 0.00000000## ingenuity 0.00000000 0.00000000 0.00000000 0.00000000## inherited 0.00000000 0.00000000 0.00000000 0.00000000## insurgency 0.00000000 0.00000000 0.00000000 0.00000000## insurgents 0.01783803 0.00000000 0.00000000 0.00000000## integrity 0.00000000 0.00000000 0.01831502 0.00000000## interior 0.00000000 0.00000000 0.00000000 0.00000000## intimidation 0.00000000 0.00000000 0.01831502 0.00000000## invited 0.00000000 0.00000000 0.01831502 0.00000000## involved 0.00000000 0.03247808 0.00000000 0.00000000## involves 0.00000000 0.03247808 0.00000000 0.00000000## iowa 0.00000000 0.00000000 0.00000000 0.00000000## isolating 0.00000000 0.00000000 0.00000000 0.00000000## isolationism 0.00000000 0.00000000 0.00000000 0.00000000## israelis 0.00000000 0.03247808 0.00000000 0.01719099## jack 0.00000000 0.00000000 0.00000000 0.00000000## janet 0.00000000 0.00000000 0.00000000 0.00000000## jews 0.00000000 0.06495615 0.00000000 0.00000000## judged 0.00000000 0.00000000 0.00000000 0.00000000## judgment 0.00000000 0.00000000 0.00000000 0.00000000## judicial 0.00000000 0.00000000 0.00000000 0.01719099## katherine 0.00000000 0.00000000 0.00000000 0.00000000## kathy 0.00000000 0.00000000 0.00000000 0.00000000## kay 0.00000000 0.00000000 0.00000000 0.00000000## kennedy^s 0.00000000 0.00000000 0.00000000 0.00000000## killing 0.01783803 0.00000000 0.00000000 0.00000000## kindness 0.01783803 0.00000000 0.00000000 0.00000000## king 0.00000000 0.00000000 0.00000000 0.00000000## kyi 0.00000000 0.00000000 0.00000000 0.00000000## laboratory 0.00000000 0.00000000 0.01831502 0.00000000## lack 0.00000000 0.00000000 0.00000000 0.01719099## ladders 0.00000000 0.00000000 0.00000000 0.00000000## latin 0.00000000 0.06495615 0.00000000 0.00000000## laura 0.00000000 0.00000000 0.00000000 0.00000000## lawful 0.01783803 0.00000000 0.00000000 0.03438198## league 0.00000000 0.00000000 0.00000000 0.00000000## leaves 0.01783803 0.00000000 0.00000000 0.00000000## lend 0.00000000 0.00000000 0.00000000 0.00000000## lesbian 0.00000000 0.00000000 0.00000000 0.00000000## letters 0.00000000 0.00000000 0.00000000 0.00000000## liberate 0.00000000 0.00000000 0.01831502 0.01719099## lieberman 0.00000000 0.00000000 0.00000000 0.00000000## lifetime 0.00000000 0.00000000 0.00000000 0.00000000## likely 0.00000000 0.00000000 0.00000000 0.00000000## limiting 0.00000000 0.00000000 0.00000000 0.00000000## lined 0.00000000 0.00000000 0.00000000 0.00000000## list 0.00000000 0.00000000 0.00000000 0.00000000## litigation 0.00000000 0.00000000 0.01831502 0.00000000## lock 0.00000000 0.00000000 0.00000000 0.00000000## longest 0.00000000 0.00000000 0.00000000 0.00000000## looked 0.00000000 0.00000000 0.00000000 0.00000000## louisiana 0.00000000 0.00000000 0.01831502 0.00000000## loving 0.00000000 0.03247808 0.01831502 0.00000000## lowering 0.00000000 0.00000000 0.00000000 0.00000000## loyalty 0.00000000 0.00000000 0.00000000 0.00000000## luxury 0.00000000 0.00000000 0.00000000 0.00000000## madrid 0.00000000 0.00000000 0.01831502 0.01719099## mali 0.00000000 0.00000000 0.00000000 0.00000000## malpractice 0.00000000 0.00000000 0.00000000 0.00000000## mankind 0.00000000 0.00000000 0.01831502 0.00000000## manufacture 0.00000000 0.00000000 0.00000000 0.00000000## meantime 0.00000000 0.00000000 0.00000000 0.00000000## media 0.00000000 0.00000000 0.00000000 0.00000000## menchu 0.00000000 0.00000000 0.00000000 0.00000000## mental 0.00000000 0.00000000 0.00000000 0.00000000## merge 0.00000000 0.00000000 0.01831502 0.00000000## messy 0.00000000 0.00000000 0.00000000 0.00000000## miles 0.00000000 0.03247808 0.00000000 0.00000000## milk 0.00000000 0.00000000 0.00000000 0.00000000## mindful 0.00000000 0.00000000 0.00000000 0.00000000## minneapolis 0.00000000 0.00000000 0.00000000 0.00000000## miracle 0.00000000 0.00000000 0.01831502 0.01719099## misguided 0.00000000 0.00000000 0.00000000 0.00000000## missiles 0.00000000 0.00000000 0.01831502 0.01719099## mistakes 0.00000000 0.00000000 0.00000000 0.00000000## mistrust 0.00000000 0.00000000 0.00000000 0.00000000## misty 0.00000000 0.00000000 0.00000000 0.00000000## misunderstanding 0.00000000 0.00000000 0.01831502 0.00000000## mobile 0.00000000 0.00000000 0.01831502 0.00000000## model 0.00000000 0.00000000 0.01831502 0.00000000## moon 0.00000000 0.00000000 0.00000000 0.00000000## mosque 0.01783803 0.03247808 0.00000000 0.00000000## mothers 0.00000000 0.00000000 0.00000000 0.00000000## mountain 0.00000000 0.00000000 0.00000000 0.00000000## murphy 0.00000000 0.00000000 0.00000000 0.00000000## narrow 0.01783803 0.00000000 0.00000000 0.00000000## nationwide 0.00000000 0.00000000 0.00000000 0.00000000## negotiated 0.00000000 0.00000000 0.01831502 0.00000000## neighborhood 0.00000000 0.00000000 0.00000000 0.00000000## nick 0.00000000 0.00000000 0.00000000 0.00000000## nights 0.00000000 0.00000000 0.00000000 0.01719099## nine 0.00000000 0.00000000 0.00000000 0.00000000## nominate 0.01783803 0.00000000 0.00000000 0.00000000## nominee 0.00000000 0.00000000 0.00000000 0.00000000## nominees 0.01783803 0.00000000 0.00000000 0.03438198## nonpartisan 0.00000000 0.00000000 0.00000000 0.00000000## nonproliferation 0.00000000 0.00000000 0.00000000 0.00000000## november 0.01783803 0.00000000 0.00000000 0.01719099## number-one 0.00000000 0.00000000 0.00000000 0.00000000## nurse 0.00000000 0.00000000 0.00000000 0.00000000## oath 0.00000000 0.00000000 0.00000000 0.01719099## objective 0.01783803 0.00000000 0.00000000 0.01719099## obligation 0.03567606 0.00000000 0.00000000 0.00000000## ocean 0.01783803 0.03247808 0.00000000 0.00000000## odds 0.00000000 0.00000000 0.00000000 0.00000000## offers 0.00000000 0.00000000 0.00000000 0.00000000## offices 0.00000000 0.00000000 0.00000000 0.00000000## official 0.00000000 0.00000000 0.00000000 0.00000000## older 0.00000000 0.00000000 0.00000000 0.00000000## olympic 0.00000000 0.00000000 0.00000000 0.00000000## open-ended 0.01783803 0.00000000 0.00000000 0.00000000## openings 0.00000000 0.00000000 0.00000000 0.00000000## opens 0.00000000 0.00000000 0.00000000 0.00000000## operating 0.01783803 0.03247808 0.00000000 0.00000000## opinions 0.00000000 0.00000000 0.00000000 0.00000000## opponents 0.00000000 0.00000000 0.00000000 0.00000000## opposed 0.00000000 0.00000000 0.00000000 0.01719099## oppressive 0.00000000 0.00000000 0.01831502 0.00000000## optimism 0.00000000 0.00000000 0.00000000 0.00000000## optimistic 0.00000000 0.00000000 0.00000000 0.00000000## orderly 0.01783803 0.00000000 0.00000000 0.00000000## orders 0.01783803 0.00000000 0.00000000 0.01719099## orleans 0.00000000 0.00000000 0.00000000 0.01719099## outlaw 0.00000000 0.00000000 0.01831502 0.00000000## overtime 0.00000000 0.00000000 0.00000000 0.00000000## overwhelming 0.00000000 0.00000000 0.00000000 0.00000000## pad 0.00000000 0.00000000 0.00000000 0.00000000## panels 0.00000000 0.00000000 0.00000000 0.00000000## parliament 0.00000000 0.00000000 0.00000000 0.03438198## passage 0.00000000 0.00000000 0.00000000 0.03438198## passenger 0.01783803 0.00000000 0.00000000 0.01719099## patent 0.00000000 0.00000000 0.00000000 0.00000000## pathway 0.00000000 0.00000000 0.00000000 0.00000000## patience 0.00000000 0.06495615 0.00000000 0.00000000## patrick 0.00000000 0.00000000 0.00000000 0.00000000## patrol 0.01783803 0.00000000 0.00000000 0.01719099## pendleton 0.00000000 0.00000000 0.00000000 0.00000000## penny 0.00000000 0.00000000 0.00000000 0.00000000## peoples 0.00000000 0.00000000 0.01831502 0.01719099## percentage 0.00000000 0.00000000 0.00000000 0.00000000## periods 0.00000000 0.00000000 0.00000000 0.00000000## permit 0.00000000 0.00000000 0.01831502 0.00000000## persistent 0.00000000 0.00000000 0.00000000 0.00000000## personally 0.00000000 0.00000000 0.00000000 0.01719099## phase 0.00000000 0.00000000 0.00000000 0.01719099## philippines 0.00000000 0.00000000 0.00000000 0.00000000## physical 0.00000000 0.00000000 0.00000000 0.01719099## pick 0.00000000 0.00000000 0.00000000 0.00000000## picture 0.00000000 0.00000000 0.00000000 0.00000000## placing 0.00000000 0.00000000 0.01831502 0.00000000## planning 0.00000000 0.00000000 0.00000000 0.01719099## plant 0.00000000 0.00000000 0.00000000 0.00000000## planted 0.00000000 0.00000000 0.00000000 0.00000000## plays 0.00000000 0.00000000 0.00000000 0.00000000## plots 0.00000000 0.00000000 0.00000000 0.00000000## poised 0.00000000 0.00000000 0.00000000 0.00000000## polls 0.00000000 0.00000000 0.00000000 0.00000000## pollution-free 0.00000000 0.00000000 0.01831502 0.00000000## popular 0.00000000 0.00000000 0.00000000 0.01719099## possess 0.00000000 0.00000000 0.01831502 0.00000000## posted 0.00000000 0.00000000 0.01831502 0.01719099## posts 0.00000000 0.00000000 0.00000000 0.00000000## practical 0.00000000 0.00000000 0.00000000 0.00000000## praise 0.00000000 0.00000000 0.01831502 0.00000000## precious 0.00000000 0.00000000 0.00000000 0.00000000## presents 0.00000000 0.00000000 0.00000000 0.00000000## pressing 0.00000000 0.00000000 0.00000000 0.03438198## pretty 0.00000000 0.00000000 0.00000000 0.00000000## prevail 0.01783803 0.00000000 0.01831502 0.00000000## priced 0.00000000 0.00000000 0.00000000 0.00000000## primary 0.00000000 0.00000000 0.00000000 0.00000000## promising 0.00000000 0.00000000 0.00000000 0.01719099## promoting 0.00000000 0.00000000 0.00000000 0.00000000## proof 0.00000000 0.00000000 0.00000000 0.00000000## proportion 0.00000000 0.00000000 0.00000000 0.00000000## prosper 0.00000000 0.00000000 0.00000000 0.01719099## providence 0.00000000 0.00000000 0.01831502 0.00000000## proving 0.00000000 0.00000000 0.00000000 0.00000000## pushed 0.00000000 0.00000000 0.00000000 0.00000000## pushing 0.00000000 0.00000000 0.00000000 0.00000000## qadhafi 0.00000000 0.00000000 0.00000000 0.00000000## radicalism 0.00000000 0.00000000 0.00000000 0.00000000## raids 0.00000000 0.00000000 0.00000000 0.00000000## rallying 0.01783803 0.03247808 0.00000000 0.00000000## rancor 0.00000000 0.00000000 0.00000000 0.00000000## reasonable 0.00000000 0.00000000 0.00000000 0.00000000## received 0.01783803 0.00000000 0.00000000 0.00000000## receiving 0.01783803 0.00000000 0.01831502 0.00000000## recklessness 0.00000000 0.00000000 0.00000000 0.00000000## reckoning 0.00000000 0.00000000 0.01831502 0.00000000## recognition 0.00000000 0.00000000 0.00000000 0.00000000## reconciliation 0.01783803 0.00000000 0.00000000 0.03438198## reconstruction 0.00000000 0.00000000 0.00000000 0.01719099## recruiting 0.00000000 0.00000000 0.01831502 0.00000000## red 0.00000000 0.00000000 0.00000000 0.00000000## redesign 0.00000000 0.00000000 0.00000000 0.00000000## refighting 0.00000000 0.00000000 0.00000000 0.00000000## refugees 0.00000000 0.00000000 0.01831502 0.00000000## regard 0.00000000 0.00000000 0.00000000 0.00000000## reinvented 0.00000000 0.00000000 0.00000000 0.00000000## reinvestment 0.00000000 0.00000000 0.00000000 0.00000000## rejected 0.00000000 0.03247808 0.00000000 0.00000000## rejoin 0.00000000 0.00000000 0.00000000 0.01719099## relied 0.00000000 0.00000000 0.01831502 0.00000000## relieve 0.00000000 0.00000000 0.00000000 0.00000000## removing 0.00000000 0.00000000 0.00000000 0.00000000## remsburg 0.00000000 0.00000000 0.00000000 0.00000000## repaid 0.00000000 0.00000000 0.00000000 0.00000000## represented 0.00000000 0.00000000 0.00000000 0.00000000## researchers 0.00000000 0.00000000 0.00000000 0.03438198## resentment 0.00000000 0.00000000 0.00000000 0.01719099## resolute 0.00000000 0.03247808 0.01831502 0.00000000## resolution 0.00000000 0.03247808 0.00000000 0.00000000## resolved 0.00000000 0.00000000 0.00000000 0.03438198## resource 0.00000000 0.03247808 0.00000000 0.00000000## responded 0.00000000 0.03247808 0.00000000 0.01719099## restrictions 0.01783803 0.00000000 0.00000000 0.00000000## retired 0.00000000 0.00000000 0.01831502 0.00000000## returned 0.01783803 0.00000000 0.00000000 0.00000000## returns 0.00000000 0.00000000 0.00000000 0.00000000## reverse 0.00000000 0.00000000 0.00000000 0.01719099## reversed 0.00000000 0.00000000 0.00000000 0.00000000## richard 0.00000000 0.00000000 0.00000000 0.00000000## rieman 0.05351409 0.00000000 0.00000000 0.00000000## rigid 0.00000000 0.00000000 0.00000000 0.00000000## risen 0.00000000 0.00000000 0.01831502 0.00000000## risky 0.00000000 0.00000000 0.00000000 0.00000000## roaring 0.00000000 0.00000000 0.00000000 0.00000000## rock 0.00000000 0.00000000 0.00000000 0.00000000## rodriguez 0.00000000 0.00000000 0.00000000 0.00000000## roll 0.00000000 0.00000000 0.00000000 0.00000000## rubble 0.00000000 0.00000000 0.00000000 0.00000000## rush 0.00000000 0.00000000 0.00000000 0.00000000## sacrifices 0.00000000 0.00000000 0.00000000 0.00000000## safia 0.00000000 0.00000000 0.00000000 0.00000000## salvador 0.00000000 0.03247808 0.00000000 0.00000000## sanchez 0.00000000 0.00000000 0.00000000 0.00000000## sat 0.00000000 0.00000000 0.00000000 0.00000000## saves 0.00000000 0.00000000 0.00000000 0.00000000## scandals 0.00000000 0.00000000 0.01831502 0.00000000## schedule 0.01783803 0.00000000 0.00000000 0.00000000## sciences 0.00000000 0.00000000 0.00000000 0.01719099## scott 0.00000000 0.00000000 0.00000000 0.00000000## securing 0.00000000 0.00000000 0.00000000 0.00000000## sends 0.00000000 0.00000000 0.00000000 0.00000000## series 0.01783803 0.00000000 0.00000000 0.00000000## seriously 0.00000000 0.00000000 0.00000000 0.00000000## setbacks 0.00000000 0.00000000 0.00000000 0.00000000## settled 0.01783803 0.00000000 0.00000000 0.00000000## seven 0.00000000 0.00000000 0.00000000 0.01719099## severely 0.00000000 0.00000000 0.00000000 0.00000000## shadows 0.00000000 0.00000000 0.00000000 0.00000000## shake 0.00000000 0.00000000 0.00000000 0.00000000## she^d 0.00000000 0.00000000 0.00000000 0.00000000## she^s 0.00000000 0.00000000 0.00000000 0.00000000## shelley 0.00000000 0.00000000 0.00000000 0.00000000## shelter 0.00000000 0.00000000 0.01831502 0.00000000## shifts 0.00000000 0.00000000 0.00000000 0.00000000## shootings 0.00000000 0.00000000 0.00000000 0.00000000## shop 0.00000000 0.00000000 0.00000000 0.00000000## short-term 0.00000000 0.00000000 0.00000000 0.00000000## shrinking 0.00000000 0.00000000 0.00000000 0.00000000## sight 0.01783803 0.00000000 0.00000000 0.00000000## sights 0.00000000 0.00000000 0.00000000 0.00000000## signs 0.00000000 0.00000000 0.00000000 0.01719099## silver 0.01783803 0.00000000 0.00000000 0.00000000## similar 0.00000000 0.00000000 0.00000000 0.01719099## simplify 0.00000000 0.00000000 0.00000000 0.00000000## sits 0.00000000 0.00000000 0.00000000 0.00000000## sitting 0.00000000 0.00000000 0.00000000 0.00000000## sixty 0.00000000 0.00000000 0.00000000 0.00000000## skepticism 0.00000000 0.00000000 0.00000000 0.00000000## skin 0.00000000 0.00000000 0.01831502 0.01719099## skyrocketing 0.00000000 0.00000000 0.00000000 0.00000000## slashing 0.00000000 0.00000000 0.00000000 0.00000000## slavery 0.00000000 0.00000000 0.00000000 0.00000000## soil 0.00000000 0.03247808 0.00000000 0.01719099## solutions 0.00000000 0.00000000 0.00000000 0.00000000## somalia 0.00000000 0.00000000 0.00000000 0.00000000## sons 0.00000000 0.00000000 0.00000000 0.00000000## sought 0.00000000 0.00000000 0.01831502 0.00000000## soviet 0.00000000 0.00000000 0.01831502 0.00000000## spare 0.01783803 0.00000000 0.01831502 0.00000000## speaking 0.00000000 0.00000000 0.00000000 0.00000000## spends 0.00000000 0.00000000 0.00000000 0.00000000## sputnik 0.00000000 0.00000000 0.00000000 0.00000000## staff 0.00000000 0.00000000 0.00000000 0.00000000## stagnant 0.00000000 0.00000000 0.00000000 0.00000000## steadily 0.00000000 0.00000000 0.00000000 0.00000000## steady 0.01783803 0.00000000 0.00000000 0.00000000## steal 0.00000000 0.00000000 0.00000000 0.00000000## stepped 0.00000000 0.00000000 0.00000000 0.03438198## strain 0.00000000 0.00000000 0.00000000 0.00000000## strangers 0.00000000 0.03247808 0.01831502 0.00000000## streamline 0.00000000 0.00000000 0.00000000 0.00000000## strides 0.00000000 0.00000000 0.00000000 0.00000000## succeeding 0.00000000 0.00000000 0.00000000 0.05157298## succeeds 0.00000000 0.00000000 0.00000000 0.00000000## suffered 0.00000000 0.03247808 0.00000000 0.00000000## sums 0.00000000 0.00000000 0.01831502 0.00000000## sunday 0.00000000 0.03247808 0.00000000 0.00000000## superpower 0.00000000 0.00000000 0.00000000 0.00000000## supporters 0.01783803 0.00000000 0.00000000 0.00000000## surpluses 0.00000000 0.00000000 0.00000000 0.00000000## surrounding 0.00000000 0.00000000 0.01831502 0.00000000## sustainable 0.00000000 0.00000000 0.00000000 0.00000000## suu 0.00000000 0.00000000 0.00000000 0.00000000## symbol 0.00000000 0.06495615 0.00000000 0.00000000## takeover 0.00000000 0.00000000 0.00000000 0.00000000## talent 0.00000000 0.00000000 0.00000000 0.00000000## targeting 0.00000000 0.00000000 0.01831502 0.00000000## tax-free 0.00000000 0.00000000 0.00000000 0.01719099## teams 0.00000000 0.00000000 0.00000000 0.01719099## ted 0.00000000 0.00000000 0.00000000 0.00000000## teen 0.00000000 0.00000000 0.00000000 0.00000000## temporary- 0.01783803 0.00000000 0.00000000 0.00000000## tempting 0.00000000 0.00000000 0.00000000 0.00000000## tests 0.00000000 0.00000000 0.00000000 0.00000000## threatened 0.00000000 0.00000000 0.00000000 0.00000000## three-quarters 0.01783803 0.00000000 0.00000000 0.00000000## tirelessly 0.00000000 0.00000000 0.00000000 0.00000000## total 0.01783803 0.00000000 0.00000000 0.00000000## totalitarian 0.03567606 0.00000000 0.00000000 0.00000000## tpp 0.00000000 0.00000000 0.00000000 0.00000000## tradition 0.01783803 0.00000000 0.00000000 0.00000000## traffic 0.00000000 0.00000000 0.00000000 0.00000000## trafficking 0.00000000 0.00000000 0.00000000 0.00000000## transgender 0.00000000 0.00000000 0.00000000 0.00000000## transit 0.00000000 0.00000000 0.00000000 0.00000000## transitional 0.01783803 0.00000000 0.00000000 0.00000000## translate 0.00000000 0.00000000 0.00000000 0.00000000## tremendous 0.00000000 0.00000000 0.01831502 0.00000000## trend 0.00000000 0.00000000 0.00000000 0.00000000## tried 0.01783803 0.00000000 0.00000000 0.00000000## twenty-first 0.00000000 0.00000000 0.00000000 0.00000000## twice 0.00000000 0.00000000 0.00000000 0.00000000## typical 0.00000000 0.00000000 0.00000000 0.00000000## uncertain 0.00000000 0.00000000 0.00000000 0.00000000## understanding 0.00000000 0.00000000 0.00000000 0.00000000## unfolding 0.00000000 0.00000000 0.00000000 0.00000000## unified 0.00000000 0.00000000 0.00000000 0.00000000## unique 0.00000000 0.00000000 0.00000000 0.00000000## untold 0.00000000 0.00000000 0.01831502 0.00000000## unwarranted 0.00000000 0.00000000 0.00000000 0.00000000## update 0.00000000 0.00000000 0.00000000 0.00000000## upholding 0.00000000 0.00000000 0.00000000 0.00000000## upward 0.00000000 0.00000000 0.00000000 0.00000000## usual 0.00000000 0.00000000 0.00000000 0.00000000## va 0.00000000 0.00000000 0.00000000 0.00000000## vaccines 0.00000000 0.00000000 0.01831502 0.00000000## vehicles 0.03567606 0.00000000 0.00000000 0.00000000## vicious 0.00000000 0.00000000 0.00000000 0.00000000## villages 0.00000000 0.00000000 0.01831502 0.00000000## visiting 0.00000000 0.00000000 0.01831502 0.00000000## volunteer 0.01783803 0.00000000 0.00000000 0.00000000## volunteered 0.01783803 0.00000000 0.00000000 0.01719099## voter 0.00000000 0.00000000 0.00000000 0.00000000## waited 0.00000000 0.00000000 0.01831502 0.00000000## walked 0.00000000 0.00000000 0.00000000 0.00000000## walks 0.00000000 0.00000000 0.00000000 0.00000000## warmest 0.00000000 0.00000000 0.00000000 0.00000000## weatherization 0.00000000 0.00000000 0.00000000 0.00000000## welcoming 0.00000000 0.00000000 0.01831502 0.00000000## weren^t 0.00000000 0.00000000 0.00000000 0.00000000## wesley 0.05351409 0.00000000 0.00000000 0.00000000## whenever 0.00000000 0.00000000 0.01831502 0.00000000## witnessed 0.00000000 0.00000000 0.00000000 0.03438198## wonderful 0.01783803 0.00000000 0.00000000 0.00000000## writing 0.00000000 0.00000000 0.00000000 0.00000000## yield 0.00000000 0.03247808 0.00000000 0.00000000## youngest 0.00000000 0.00000000 0.00000000 0.00000000## yourself 0.00000000 0.00000000 0.00000000 0.00000000## zero 0.00000000 0.00000000 0.00000000 0.00000000## abandoning 0.00000000 0.03247808 0.00000000 0.00000000## abess 0.00000000 0.00000000 0.00000000 0.00000000## abide 0.00000000 0.00000000 0.00000000 0.00000000## abusive 0.00000000 0.00000000 0.00000000 0.00000000## accident 0.00000000 0.00000000 0.00000000 0.00000000## according 0.00000000 0.00000000 0.00000000 0.00000000## acid 0.00000000 0.00000000 0.01831502 0.00000000## actively 0.00000000 0.00000000 0.00000000 0.00000000## adapt 0.00000000 0.00000000 0.00000000 0.00000000## adhere 0.00000000 0.00000000 0.00000000 0.00000000## adjusted 0.01783803 0.00000000 0.00000000 0.00000000## adjustments 0.00000000 0.00000000 0.00000000 0.00000000## administrative 0.00000000 0.00000000 0.00000000 0.00000000## admit 0.00000000 0.00000000 0.00000000 0.00000000## adoption 0.00000000 0.00000000 0.00000000 0.00000000## advancement 0.00000000 0.00000000 0.00000000 0.00000000## advantages 0.00000000 0.00000000 0.00000000 0.00000000## adversaries 0.00000000 0.00000000 0.00000000 0.00000000## advice 0.00000000 0.00000000 0.00000000 0.00000000## advisory 0.01783803 0.00000000 0.00000000 0.00000000## advocates 0.00000000 0.00000000 0.00000000 0.00000000## afloat 0.00000000 0.00000000 0.00000000 0.00000000## afraid 0.00000000 0.00000000 0.00000000 0.00000000## agent 0.00000000 0.00000000 0.01831502 0.00000000## agrees 0.00000000 0.00000000 0.00000000 0.00000000## agricultural 0.01783803 0.00000000 0.00000000 0.00000000## agriculture 0.00000000 0.00000000 0.00000000 0.01719099## ahmed 0.00000000 0.00000000 0.00000000 0.00000000## aigner-clark 0.03567606 0.00000000 0.00000000 0.00000000## aims 0.00000000 0.00000000 0.00000000 0.00000000## airplane 0.01783803 0.00000000 0.00000000 0.00000000## airstrikes 0.00000000 0.00000000 0.00000000 0.00000000## al- 0.00000000 0.00000000 0.00000000 0.00000000## al-suhail 0.00000000 0.00000000 0.00000000 0.00000000## alabama 0.00000000 0.00000000 0.00000000 0.00000000## alarm 0.00000000 0.00000000 0.01831502 0.00000000## allah 0.00000000 0.06495615 0.00000000 0.00000000## allawi 0.00000000 0.00000000 0.00000000 0.00000000## aluminum 0.00000000 0.00000000 0.01831502 0.00000000## amendment 0.00000000 0.00000000 0.00000000 0.00000000## ample 0.00000000 0.00000000 0.00000000 0.01719099## anbar 0.01783803 0.00000000 0.00000000 0.01719099## angry 0.00000000 0.00000000 0.00000000 0.00000000## anniversary 0.00000000 0.00000000 0.00000000 0.00000000## antidrug 0.00000000 0.00000000 0.01831502 0.00000000## antiretroviral 0.00000000 0.00000000 0.01831502 0.00000000## anxieties 0.00000000 0.00000000 0.00000000 0.00000000## anybody 0.00000000 0.00000000 0.00000000 0.00000000## appeal 0.00000000 0.00000000 0.00000000 0.00000000## appeared 0.00000000 0.00000000 0.01831502 0.00000000## appetite 0.01783803 0.00000000 0.00000000 0.00000000## apple 0.00000000 0.00000000 0.00000000 0.00000000## application 0.00000000 0.00000000 0.00000000 0.00000000## applying 0.00000000 0.00000000 0.00000000 0.00000000## apprenticeships 0.00000000 0.00000000 0.00000000 0.00000000## appropriations 0.00000000 0.00000000 0.00000000 0.01719099## approve 0.00000000 0.00000000 0.00000000 0.01719099## approving 0.00000000 0.00000000 0.00000000 0.03438198## april 0.00000000 0.00000000 0.00000000 0.01719099## arabic 0.00000000 0.03247808 0.00000000 0.00000000## arc 0.00000000 0.00000000 0.00000000 0.00000000## arming 0.01783803 0.00000000 0.00000000 0.00000000## asad 0.00000000 0.00000000 0.00000000 0.00000000## aspiring 0.00000000 0.00000000 0.00000000 0.00000000## assemble 0.00000000 0.03247808 0.00000000 0.00000000## assets 0.00000000 0.00000000 0.00000000 0.00000000## assistant 0.00000000 0.00000000 0.00000000 0.00000000## assisting 0.00000000 0.00000000 0.00000000 0.00000000## associate 0.00000000 0.00000000 0.01831502 0.00000000## assure 0.00000000 0.00000000 0.00000000 0.00000000## assured 0.00000000 0.03247808 0.00000000 0.01719099## asthma 0.00000000 0.00000000 0.00000000 0.00000000## atrocity 0.01783803 0.03247808 0.00000000 0.00000000## attend 0.00000000 0.03247808 0.00000000 0.00000000## attractive 0.00000000 0.00000000 0.00000000 0.00000000## attracts 0.00000000 0.00000000 0.00000000 0.00000000## automaker 0.00000000 0.00000000 0.00000000 0.00000000## autrey 0.03567606 0.00000000 0.00000000 0.00000000## avert 0.00000000 0.00000000 0.00000000 0.00000000## awaken 0.01783803 0.00000000 0.00000000 0.00000000## awareness 0.00000000 0.00000000 0.01831502 0.00000000## ba 0.00000000 0.00000000 0.00000000 0.01719099## backlog 0.00000000 0.00000000 0.00000000 0.00000000## backs 0.00000000 0.00000000 0.00000000 0.00000000## bailey 0.00000000 0.00000000 0.00000000 0.00000000## ban 0.00000000 0.00000000 0.00000000 0.00000000## banned 0.00000000 0.00000000 0.01831502 0.00000000## banning 0.00000000 0.00000000 0.01831502 0.00000000## bans 0.00000000 0.00000000 0.00000000 0.01719099## bargaining 0.00000000 0.00000000 0.00000000 0.00000000## barra 0.00000000 0.00000000 0.00000000 0.00000000## baseball 0.00000000 0.00000000 0.00000000 0.00000000## bashar 0.00000000 0.00000000 0.00000000 0.00000000## basics 0.00000000 0.00000000 0.00000000 0.00000000## basis 0.01783803 0.00000000 0.00000000 0.00000000## baton 0.00000000 0.00000000 0.01831502 0.00000000## beach 0.00000000 0.00000000 0.00000000 0.00000000## beacon 0.00000000 0.00000000 0.00000000 0.01719099## beamer 0.00000000 0.06495615 0.00000000 0.00000000## bedrock 0.00000000 0.00000000 0.00000000 0.00000000## beijing 0.00000000 0.00000000 0.00000000 0.00000000## belarus 0.01783803 0.00000000 0.00000000 0.01719099## ben^s 0.00000000 0.00000000 0.00000000 0.00000000## benchmark 0.00000000 0.00000000 0.01831502 0.00000000## beneficiary 0.00000000 0.00000000 0.00000000 0.00000000## benefited 0.00000000 0.00000000 0.00000000 0.00000000## berkshire 0.00000000 0.00000000 0.00000000 0.00000000## berra 0.00000000 0.00000000 0.00000000 0.00000000## beshear 0.00000000 0.00000000 0.00000000 0.00000000## bethea 0.00000000 0.00000000 0.00000000 0.00000000## bets 0.00000000 0.00000000 0.00000000 0.00000000## billionaires 0.00000000 0.00000000 0.00000000 0.00000000## binding 0.00000000 0.00000000 0.01831502 0.00000000## bioshield 0.00000000 0.00000000 0.01831502 0.00000000## biotechnology 0.00000000 0.00000000 0.00000000 0.00000000## bite 0.00000000 0.00000000 0.00000000 0.01719099## bitter 0.00000000 0.00000000 0.01831502 0.00000000## blackmail 0.00000000 0.00000000 0.01831502 0.00000000## blackmailed 0.00000000 0.00000000 0.01831502 0.00000000## blessings 0.01783803 0.00000000 0.00000000 0.00000000## blocking 0.00000000 0.00000000 0.01831502 0.00000000## blue 0.00000000 0.00000000 0.00000000 0.00000000## boards 0.00000000 0.00000000 0.00000000 0.00000000## boggs 0.00000000 0.00000000 0.00000000 0.00000000## bombings 0.00000000 0.00000000 0.01831502 0.00000000## bonuses 0.00000000 0.00000000 0.00000000 0.00000000## books 0.00000000 0.00000000 0.00000000 0.00000000## boomers 0.00000000 0.00000000 0.00000000 0.00000000## boosted 0.00000000 0.00000000 0.00000000 0.00000000## boots 0.00000000 0.00000000 0.00000000 0.00000000## borrowing 0.00000000 0.00000000 0.00000000 0.00000000## bosanek 0.00000000 0.00000000 0.00000000 0.00000000## bounce 0.00000000 0.00000000 0.00000000 0.00000000## bowles 0.00000000 0.00000000 0.00000000 0.00000000## box 0.00000000 0.00000000 0.00000000 0.00000000## bray 0.00000000 0.00000000 0.00000000 0.00000000## breast 0.00000000 0.00000000 0.00000000 0.00000000## breaux 0.00000000 0.00000000 0.00000000 0.00000000## brighter 0.00000000 0.00000000 0.00000000 0.00000000## brink 0.00000000 0.00000000 0.00000000 0.00000000## broad-based 0.00000000 0.00000000 0.00000000 0.00000000## bruce 0.00000000 0.00000000 0.00000000 0.00000000## brutality 0.00000000 0.00000000 0.00000000 0.01719099## budged 0.00000000 0.00000000 0.00000000 0.00000000## buffalo 0.00000000 0.00000000 0.01831502 0.00000000## builders 0.00000000 0.00000000 0.00000000 0.00000000## bureau 0.00000000 0.00000000 0.00000000 0.00000000## bureaucracy 0.00000000 0.00000000 0.00000000 0.00000000## bureaucrat 0.00000000 0.00000000 0.00000000 0.00000000## buyers 0.00000000 0.00000000 0.00000000 0.00000000## cable 0.00000000 0.00000000 0.00000000 0.00000000## cairo 0.00000000 0.03247808 0.00000000 0.00000000## calculated 0.00000000 0.00000000 0.00000000 0.00000000## camp 0.01783803 0.03247808 0.00000000 0.00000000## canal 0.00000000 0.00000000 0.00000000 0.00000000## candor 0.00000000 0.00000000 0.00000000 0.00000000## canister 0.00000000 0.00000000 0.01831502 0.00000000## capability 0.00000000 0.00000000 0.00000000 0.01719099## caribbean 0.00000000 0.00000000 0.01831502 0.00000000## caroline 0.00000000 0.00000000 0.00000000 0.00000000## carries 0.00000000 0.00000000 0.01831502 0.00000000## casualties 0.00000000 0.03247808 0.00000000 0.00000000## casualty 0.00000000 0.00000000 0.01831502 0.00000000## catch 0.00000000 0.00000000 0.00000000 0.00000000## category 0.00000000 0.00000000 0.00000000 0.00000000## caused 0.00000000 0.00000000 0.00000000 0.00000000## cedar 0.03567606 0.00000000 0.00000000 0.00000000## certainty 0.01783803 0.00000000 0.00000000 0.00000000## chairman 0.00000000 0.00000000 0.00000000 0.00000000## challenging 0.00000000 0.00000000 0.00000000 0.00000000## charity 0.00000000 0.00000000 0.00000000 0.00000000## charlotte 0.00000000 0.00000000 0.00000000 0.00000000## cheapest 0.00000000 0.00000000 0.00000000 0.00000000## chiefs 0.00000000 0.00000000 0.00000000 0.00000000## child^s 0.00000000 0.00000000 0.00000000 0.00000000## chinese 0.00000000 0.00000000 0.00000000 0.00000000## chute 0.00000000 0.00000000 0.00000000 0.00000000## cia 0.00000000 0.00000000 0.01831502 0.00000000## circumstance 0.00000000 0.00000000 0.00000000 0.00000000## civic 0.01783803 0.00000000 0.00000000 0.00000000## civility 0.00000000 0.00000000 0.00000000 0.00000000## clarity 0.00000000 0.00000000 0.01831502 0.00000000## classmates 0.00000000 0.00000000 0.00000000 0.00000000## client 0.00000000 0.00000000 0.00000000 0.00000000## co 0.00000000 0.00000000 0.00000000 0.00000000## coach 0.03567606 0.00000000 0.00000000 0.00000000## coached 0.00000000 0.00000000 0.01831502 0.00000000## coaches 0.00000000 0.00000000 0.00000000 0.00000000## coburn 0.00000000 0.00000000 0.00000000 0.00000000## collapsed 0.00000000 0.00000000 0.00000000 0.00000000## colleague 0.00000000 0.00000000 0.00000000 0.00000000## collected 0.00000000 0.00000000 0.00000000 0.00000000## colorado 0.00000000 0.00000000 0.00000000 0.00000000## comfortable 0.01783803 0.00000000 0.00000000 0.00000000## companionship 0.00000000 0.00000000 0.01831502 0.00000000## compare 0.01783803 0.00000000 0.00000000 0.00000000## computers 0.00000000 0.00000000 0.00000000 0.00000000## comrades 0.00000000 0.00000000 0.00000000 0.00000000## concentrate 0.00000000 0.00000000 0.00000000 0.01719099## concessions 0.00000000 0.00000000 0.01831502 0.00000000## conclusion 0.00000000 0.03247808 0.00000000 0.00000000## concrete 0.00000000 0.00000000 0.00000000 0.00000000## condemn 0.00000000 0.03247808 0.00000000 0.00000000## conducting 0.00000000 0.00000000 0.00000000 0.00000000## confessions 0.00000000 0.00000000 0.01831502 0.00000000## confirmed 0.00000000 0.00000000 0.01831502 0.00000000## confound 0.00000000 0.00000000 0.01831502 0.00000000## confusing 0.00000000 0.00000000 0.00000000 0.00000000## congressmen 0.00000000 0.00000000 0.00000000 0.00000000## conrad 0.00000000 0.00000000 0.00000000 0.00000000## consequential 0.00000000 0.00000000 0.00000000 0.00000000## conspiracies 0.00000000 0.00000000 0.01831502 0.00000000## constructing 0.00000000 0.00000000 0.00000000 0.00000000## consult 0.00000000 0.00000000 0.01831502 0.00000000## consultation 0.01783803 0.00000000 0.00000000 0.00000000## containment 0.00000000 0.00000000 0.00000000 0.00000000## contempt 0.00000000 0.00000000 0.01831502 0.00000000## contest 0.00000000 0.00000000 0.01831502 0.00000000## contract 0.00000000 0.00000000 0.00000000 0.00000000## contrary 0.00000000 0.00000000 0.01831502 0.00000000## contributing 0.00000000 0.00000000 0.00000000 0.00000000## controlled 0.00000000 0.00000000 0.00000000 0.00000000## controls 0.00000000 0.00000000 0.00000000 0.00000000## controversies 0.00000000 0.00000000 0.00000000 0.00000000## conversation 0.00000000 0.00000000 0.00000000 0.00000000## convince 0.00000000 0.00000000 0.00000000 0.00000000## corrosive 0.00000000 0.00000000 0.00000000 0.00000000## count 0.00000000 0.00000000 0.00000000 0.00000000## counted 0.00000000 0.00000000 0.00000000 0.00000000## couple 0.00000000 0.00000000 0.00000000 0.00000000## covering 0.00000000 0.00000000 0.00000000 0.00000000## crate 0.00000000 0.00000000 0.01831502 0.00000000## credibility 0.00000000 0.00000000 0.00000000 0.00000000## credibly 0.00000000 0.00000000 0.01831502 0.00000000## creditworthiness 0.00000000 0.00000000 0.00000000 0.00000000## crippling 0.00000000 0.00000000 0.00000000 0.01719099## crises 0.00000000 0.00000000 0.00000000 0.00000000## crops 0.00000000 0.00000000 0.00000000 0.03438198## cross 0.01783803 0.00000000 0.00000000 0.00000000## crowd 0.00000000 0.00000000 0.00000000 0.00000000## cruise 0.00000000 0.00000000 0.01831502 0.00000000## crumbling 0.00000000 0.00000000 0.00000000 0.00000000## crushing 0.00000000 0.00000000 0.00000000 0.00000000## cuban 0.00000000 0.00000000 0.00000000 0.00000000## cultures 0.00000000 0.00000000 0.00000000 0.00000000## cures 0.00000000 0.00000000 0.00000000 0.00000000## curran 0.00000000 0.00000000 0.00000000 0.00000000## curve 0.00000000 0.00000000 0.00000000 0.00000000## cutting-edge 0.00000000 0.00000000 0.00000000 0.00000000## cycle 0.00000000 0.00000000 0.00000000 0.01719099## cynicism 0.00000000 0.00000000 0.00000000 0.00000000## cynics 0.00000000 0.00000000 0.00000000 0.00000000## damaged 0.00000000 0.03247808 0.00000000 0.00000000## darkness 0.00000000 0.00000000 0.00000000 0.00000000## dates 0.00000000 0.00000000 0.00000000 0.00000000## david 0.00000000 0.00000000 0.00000000 0.01719099## day^s 0.00000000 0.00000000 0.00000000 0.00000000## de 0.00000000 0.00000000 0.00000000 0.00000000## dead 0.00000000 0.00000000 0.01831502 0.00000000## deadly 0.00000000 0.00000000 0.01831502 0.00000000## dear 0.00000000 0.00000000 0.00000000 0.01719099## debated 0.00000000 0.00000000 0.00000000 0.00000000## debbie 0.00000000 0.00000000 0.00000000 0.00000000## december 0.01783803 0.00000000 0.00000000 0.00000000## decides 0.00000000 0.00000000 0.00000000 0.00000000## declaration 0.00000000 0.00000000 0.01831502 0.00000000## declares 0.00000000 0.00000000 0.00000000 0.00000000## declines 0.00000000 0.00000000 0.01831502 0.00000000## deduct 0.00000000 0.00000000 0.00000000 0.00000000## deeds 0.01783803 0.00000000 0.00000000 0.00000000## defectors 0.00000000 0.00000000 0.01831502 0.00000000## defended 0.00000000 0.00000000 0.01831502 0.00000000## defenders 0.00000000 0.00000000 0.00000000 0.00000000## defending 0.00000000 0.00000000 0.00000000 0.00000000## defensive 0.00000000 0.03247808 0.00000000 0.00000000## defines 0.00000000 0.00000000 0.00000000 0.01719099## degrees 0.00000000 0.00000000 0.00000000 0.00000000## delayed 0.00000000 0.00000000 0.00000000 0.01719099## demonstrate 0.00000000 0.00000000 0.00000000 0.00000000## denver 0.00000000 0.00000000 0.00000000 0.00000000## dependents 0.01783803 0.00000000 0.00000000 0.00000000## deportation 0.00000000 0.00000000 0.00000000 0.00000000## deposits 0.00000000 0.00000000 0.00000000 0.00000000## designs 0.00000000 0.00000000 0.01831502 0.00000000## desperately 0.00000000 0.00000000 0.00000000 0.00000000## despise 0.00000000 0.00000000 0.00000000 0.03438198## determining 0.00000000 0.00000000 0.00000000 0.00000000## devaney 0.00000000 0.00000000 0.00000000 0.00000000## developed 0.00000000 0.00000000 0.00000000 0.00000000## diabetes 0.00000000 0.00000000 0.00000000 0.00000000## diagnosis 0.00000000 0.00000000 0.01831502 0.00000000## dictate 0.00000000 0.03247808 0.00000000 0.00000000## dictates 0.00000000 0.00000000 0.01831502 0.00000000## dictators 0.00000000 0.00000000 0.00000000 0.00000000## difficulties 0.00000000 0.00000000 0.01831502 0.00000000## dingell 0.00000000 0.00000000 0.00000000 0.00000000## dioxide 0.00000000 0.00000000 0.00000000 0.00000000## dirtier 0.00000000 0.00000000 0.00000000 0.00000000## disadvantage 0.00000000 0.00000000 0.00000000 0.00000000## disagreements 0.00000000 0.00000000 0.00000000 0.00000000## disappear 0.00000000 0.00000000 0.00000000 0.00000000## discarded 0.00000000 0.03247808 0.00000000 0.00000000## disclosed 0.00000000 0.00000000 0.01831502 0.00000000## discourage 0.00000000 0.00000000 0.00000000 0.00000000## discouraged 0.00000000 0.00000000 0.00000000 0.00000000## discovered 0.00000000 0.00000000 0.00000000 0.03438198## discriminate 0.00000000 0.00000000 0.00000000 0.00000000## discrimination 0.00000000 0.00000000 0.00000000 0.00000000## disfigured 0.00000000 0.00000000 0.01831502 0.00000000## displaced 0.00000000 0.00000000 0.00000000 0.01719099## disputes 0.00000000 0.00000000 0.00000000 0.00000000## disrupted 0.00000000 0.00000000 0.00000000 0.01719099## disruption 0.00000000 0.03247808 0.00000000 0.00000000## district 0.00000000 0.00000000 0.00000000 0.00000000## diversify 0.03567606 0.00000000 0.00000000 0.00000000## divide 0.00000000 0.00000000 0.00000000 0.00000000## dividend 0.00000000 0.00000000 0.01831502 0.00000000## divides 0.00000000 0.00000000 0.00000000 0.00000000## divisive 0.00000000 0.00000000 0.00000000 0.01719099## dna 0.00000000 0.00000000 0.00000000 0.00000000## doctor-patient 0.00000000 0.00000000 0.00000000 0.00000000## dole 0.00000000 0.00000000 0.00000000 0.03438198## dominated 0.00000000 0.00000000 0.00000000 0.00000000## domination 0.00000000 0.00000000 0.01831502 0.00000000## donna 0.00000000 0.00000000 0.00000000 0.03438198## doses 0.00000000 0.00000000 0.01831502 0.00000000## download 0.00000000 0.00000000 0.00000000 0.00000000## dr 0.00000000 0.00000000 0.00000000 0.00000000## dragged 0.00000000 0.00000000 0.00000000 0.00000000## drastic 0.00000000 0.00000000 0.00000000 0.01719099## dread 0.00000000 0.00000000 0.01831502 0.00000000## dreaming 0.00000000 0.00000000 0.00000000 0.00000000## drills 0.00000000 0.00000000 0.01831502 0.00000000## dripping 0.00000000 0.00000000 0.01831502 0.00000000## drones 0.00000000 0.00000000 0.00000000 0.00000000## dropping 0.00000000 0.00000000 0.00000000 0.00000000## drought 0.00000000 0.00000000 0.00000000 0.00000000## droughts 0.00000000 0.00000000 0.00000000 0.00000000## due 0.00000000 0.00000000 0.00000000 0.00000000## durable 0.00000000 0.00000000 0.00000000 0.00000000## duration 0.00000000 0.00000000 0.01831502 0.00000000## dying 0.01783803 0.00000000 0.00000000 0.00000000## e-mails 0.00000000 0.00000000 0.00000000 0.00000000## earl 0.00000000 0.00000000 0.00000000 0.00000000## earliest 0.00000000 0.00000000 0.00000000 0.00000000## earned-income 0.00000000 0.00000000 0.00000000 0.00000000## earthquake 0.00000000 0.00000000 0.00000000 0.00000000## eased 0.00000000 0.00000000 0.00000000 0.00000000## easily 0.00000000 0.00000000 0.01831502 0.00000000## eaten 0.00000000 0.00000000 0.00000000 0.00000000## economies 0.00000000 0.00000000 0.00000000 0.00000000## edison 0.00000000 0.00000000 0.00000000 0.00000000## educating 0.00000000 0.00000000 0.00000000 0.00000000## effectively 0.00000000 0.00000000 0.00000000 0.01719099## eight 0.00000000 0.00000000 0.00000000 0.00000000## eighth 0.00000000 0.00000000 0.00000000 0.01719099## elaborate 0.00000000 0.00000000 0.01831502 0.00000000## electing 0.01783803 0.00000000 0.00000000 0.00000000## eliminates 0.01783803 0.00000000 0.00000000 0.00000000## else^s 0.00000000 0.00000000 0.00000000 0.00000000## embargo 0.00000000 0.00000000 0.00000000 0.00000000## emphasis 0.00000000 0.00000000 0.00000000 0.00000000## employee 0.00000000 0.00000000 0.00000000 0.00000000## enact 0.00000000 0.00000000 0.00000000 0.01719099## endured 0.00000000 0.00000000 0.00000000 0.00000000## endures 0.00000000 0.00000000 0.00000000 0.00000000## enemy^s 0.03567606 0.00000000 0.00000000 0.00000000## energy-efficient 0.00000000 0.00000000 0.00000000 0.00000000## enforced 0.00000000 0.00000000 0.00000000 0.00000000## enrich 0.00000000 0.00000000 0.00000000 0.01719099## enrolled 0.00000000 0.00000000 0.00000000 0.00000000## enshrined 0.00000000 0.00000000 0.00000000 0.00000000## entered 0.01783803 0.00000000 0.00000000 0.00000000## enthusiasm 0.00000000 0.00000000 0.00000000 0.01719099## entrenched 0.00000000 0.00000000 0.00000000 0.00000000## entrepreneurship 0.00000000 0.00000000 0.00000000 0.00000000## entry 0.00000000 0.00000000 0.01831502 0.00000000## environmentally 0.01783803 0.00000000 0.00000000 0.00000000## equivalent 0.01783803 0.00000000 0.00000000 0.00000000## eradicate 0.00000000 0.00000000 0.00000000 0.00000000## erskine 0.00000000 0.00000000 0.00000000 0.00000000## escalating 0.01783803 0.00000000 0.00000000 0.00000000## estimate 0.00000000 0.00000000 0.01831502 0.00000000## estimates 0.00000000 0.00000000 0.00000000 0.00000000## ethic 0.00000000 0.00000000 0.00000000 0.00000000## evade 0.00000000 0.00000000 0.01831502 0.00000000## event 0.00000000 0.00000000 0.00000000 0.00000000## everyone^s 0.00000000 0.00000000 0.00000000 0.00000000## evolving 0.00000000 0.00000000 0.00000000 0.00000000## examine 0.00000000 0.00000000 0.00000000 0.00000000## excel 0.00000000 0.00000000 0.00000000 0.00000000## exception 0.00000000 0.00000000 0.00000000 0.00000000## exchanges 0.00000000 0.00000000 0.00000000 0.00000000## excluded 0.00000000 0.00000000 0.00000000 0.00000000## excuses 0.00000000 0.00000000 0.00000000 0.00000000## exhaust 0.00000000 0.00000000 0.01831502 0.00000000## exists 0.00000000 0.00000000 0.00000000 0.00000000## expands 0.00000000 0.00000000 0.00000000 0.00000000## expeditionary 0.00000000 0.00000000 0.00000000 0.01719099## expelling 0.00000000 0.00000000 0.00000000 0.00000000## experiment 0.00000000 0.00000000 0.01831502 0.00000000## explained 0.00000000 0.00000000 0.01831502 0.00000000## explaining 0.00000000 0.00000000 0.00000000 0.01719099## explanation 0.00000000 0.00000000 0.01831502 0.00000000## exploited 0.01783803 0.00000000 0.00000000 0.00000000## exploration 0.00000000 0.00000000 0.00000000 0.00000000## explore 0.00000000 0.00000000 0.00000000 0.01719099## exporters 0.00000000 0.00000000 0.00000000 0.00000000## exposed 0.00000000 0.00000000 0.00000000 0.00000000## extended 0.00000000 0.00000000 0.00000000 0.00000000## extends 0.00000000 0.00000000 0.00000000 0.00000000## extension 0.00000000 0.00000000 0.00000000 0.00000000## eye 0.00000000 0.00000000 0.00000000 0.00000000## eyed 0.00000000 0.00000000 0.00000000 0.00000000## facility 0.00000000 0.00000000 0.00000000 0.00000000## fails 0.00000000 0.00000000 0.00000000 0.00000000## fairest 0.00000000 0.00000000 0.01831502 0.00000000## fairly 0.00000000 0.00000000 0.00000000 0.00000000## fallujah 0.00000000 0.00000000 0.00000000 0.00000000## famine 0.00000000 0.00000000 0.00000000 0.01719099## fanfare 0.00000000 0.00000000 0.00000000 0.00000000## far-reaching 0.01783803 0.00000000 0.00000000 0.00000000## farmer 0.00000000 0.00000000 0.00000000 0.00000000## fatherless 0.00000000 0.00000000 0.01831502 0.00000000## favorite 0.00000000 0.00000000 0.00000000 0.00000000## fierce 0.01783803 0.00000000 0.00000000 0.00000000## fiercely 0.00000000 0.00000000 0.00000000 0.00000000## fifty 0.00000000 0.00000000 0.00000000 0.00000000## fights 0.00000000 0.00000000 0.01831502 0.00000000## financed 0.00000000 0.00000000 0.00000000 0.00000000## fingerprints 0.00000000 0.00000000 0.01831502 0.00000000## fingers 0.00000000 0.00000000 0.00000000 0.01719099## finished 0.00000000 0.00000000 0.00000000 0.00000000## finishing 0.00000000 0.00000000 0.00000000 0.00000000## fires 0.00000000 0.00000000 0.01831502 0.00000000## firmly 0.00000000 0.00000000 0.00000000 0.00000000## firms 0.00000000 0.00000000 0.00000000 0.00000000## first-class 0.00000000 0.00000000 0.00000000 0.00000000## first-time 0.00000000 0.00000000 0.00000000 0.00000000## fiscally 0.00000000 0.00000000 0.00000000 0.00000000## fisher 0.00000000 0.00000000 0.00000000 0.00000000## fits 0.00000000 0.00000000 0.00000000 0.00000000## flags 0.00000000 0.03247808 0.00000000 0.00000000## flexible 0.00000000 0.00000000 0.00000000 0.00000000## floor 0.03567606 0.00000000 0.00000000 0.00000000## florida 0.00000000 0.00000000 0.00000000 0.00000000## following 0.00000000 0.03247808 0.01831502 0.00000000## forgiven 0.00000000 0.00000000 0.00000000 0.00000000## fork 0.00000000 0.00000000 0.00000000 0.00000000## forsyth 0.00000000 0.00000000 0.00000000 0.00000000## fortunately 0.00000000 0.00000000 0.00000000 0.00000000## fossil 0.00000000 0.00000000 0.00000000 0.00000000## foundations 0.00000000 0.00000000 0.00000000 0.00000000## founded 0.00000000 0.00000000 0.00000000 0.00000000## foy 0.00000000 0.00000000 0.00000000 0.00000000## fragile 0.00000000 0.00000000 0.00000000 0.01719099## freely 0.00000000 0.03247808 0.00000000 0.00000000## friday 0.00000000 0.00000000 0.00000000 0.01719099## fringe 0.00000000 0.06495615 0.00000000 0.00000000## frontline 0.00000000 0.00000000 0.00000000 0.00000000## frozen 0.00000000 0.00000000 0.00000000 0.00000000## frustrated 0.00000000 0.00000000 0.00000000 0.00000000## frustrating 0.00000000 0.00000000 0.00000000 0.00000000## fuel-efficient 0.00000000 0.00000000 0.00000000 0.00000000## fumes 0.00000000 0.00000000 0.01831502 0.00000000## gabby 0.00000000 0.00000000 0.00000000 0.00000000## gaining 0.00000000 0.00000000 0.01831502 0.00000000## gallon 0.00000000 0.00000000 0.00000000 0.00000000## gallons 0.03567606 0.00000000 0.00000000 0.00000000## gender 0.00000000 0.00000000 0.00000000 0.00000000## generals 0.00000000 0.00000000 0.00000000 0.00000000## generational 0.01783803 0.00000000 0.00000000 0.00000000## genocide 0.00000000 0.00000000 0.00000000 0.01719099## genome 0.00000000 0.00000000 0.00000000 0.00000000## georgetown 0.03567606 0.00000000 0.00000000 0.00000000## germ 0.00000000 0.00000000 0.01831502 0.00000000## gibraltar 0.00000000 0.00000000 0.01831502 0.00000000## gitmo 0.00000000 0.00000000 0.00000000 0.00000000## giuliani 0.00000000 0.06495615 0.00000000 0.00000000## giveaways 0.00000000 0.00000000 0.00000000 0.00000000## glad 0.00000000 0.00000000 0.00000000 0.00000000## god-given 0.00000000 0.00000000 0.00000000 0.00000000## gotten 0.00000000 0.00000000 0.00000000 0.00000000## governance 0.00000000 0.00000000 0.00000000 0.00000000## graders 0.00000000 0.00000000 0.00000000 0.01719099## graduating 0.00000000 0.00000000 0.00000000 0.00000000## grandmother 0.00000000 0.00000000 0.00000000 0.00000000## grassley 0.00000000 0.00000000 0.00000000 0.00000000## grassroots 0.00000000 0.00000000 0.00000000 0.01719099## gray 0.00000000 0.00000000 0.00000000 0.00000000## greenhouse 0.00000000 0.00000000 0.00000000 0.01719099## gregg 0.00000000 0.00000000 0.00000000 0.00000000## gridlock 0.00000000 0.00000000 0.00000000 0.00000000## grocery 0.00000000 0.00000000 0.00000000 0.00000000## grueling 0.00000000 0.00000000 0.00000000 0.00000000## guaranteeing 0.00000000 0.00000000 0.00000000 0.00000000## guess 0.00000000 0.00000000 0.00000000 0.00000000## guidance 0.00000000 0.00000000 0.01831502 0.00000000## guides 0.00000000 0.00000000 0.00000000 0.00000000## guiding 0.00000000 0.00000000 0.00000000 0.00000000## gut 0.00000000 0.00000000 0.00000000 0.00000000## hadiya 0.00000000 0.00000000 0.00000000 0.00000000## hadn^t 0.00000000 0.00000000 0.00000000 0.00000000## halls 0.00000000 0.00000000 0.00000000 0.01719099## halt 0.00000000 0.00000000 0.00000000 0.00000000## halted 0.00000000 0.00000000 0.00000000 0.00000000## hamas 0.00000000 0.00000000 0.00000000 0.01719099## hambali 0.00000000 0.00000000 0.00000000 0.00000000## hamburg 0.00000000 0.00000000 0.01831502 0.00000000## hamid 0.00000000 0.00000000 0.00000000 0.01719099## handful 0.00000000 0.00000000 0.00000000 0.00000000## hands-on 0.00000000 0.00000000 0.00000000 0.00000000## hardships 0.00000000 0.00000000 0.00000000 0.00000000## harkin 0.00000000 0.00000000 0.00000000 0.00000000## hathaway 0.00000000 0.00000000 0.00000000 0.00000000## haul 0.00000000 0.00000000 0.00000000 0.00000000## head 0.01783803 0.00000000 0.00000000 0.00000000## headlines 0.00000000 0.00000000 0.00000000 0.00000000## healed 0.00000000 0.00000000 0.01831502 0.00000000## heavy 0.01783803 0.00000000 0.00000000 0.00000000## height 0.00000000 0.00000000 0.00000000 0.00000000## heppner 0.00000000 0.00000000 0.00000000 0.00000000## hesitation 0.00000000 0.00000000 0.01831502 0.00000000## high-paying 0.00000000 0.00000000 0.00000000 0.00000000## high-strength 0.00000000 0.00000000 0.01831502 0.00000000## high-wage 0.00000000 0.00000000 0.00000000 0.00000000## highly 0.00000000 0.00000000 0.00000000 0.00000000## hillary 0.00000000 0.00000000 0.00000000 0.00000000## hills 0.00000000 0.00000000 0.00000000 0.00000000## hinder 0.00000000 0.00000000 0.00000000 0.00000000## hired 0.00000000 0.00000000 0.00000000 0.00000000## hitlerism 0.00000000 0.00000000 0.01831502 0.00000000## hmos 0.00000000 0.00000000 0.01831502 0.00000000## holiness 0.00000000 0.00000000 0.00000000 0.00000000## homeowner 0.00000000 0.00000000 0.00000000 0.00000000## homework 0.00000000 0.00000000 0.00000000 0.00000000## honesty 0.00000000 0.00000000 0.00000000 0.00000000## honey 0.00000000 0.00000000 0.00000000 0.00000000## hopelessness 0.00000000 0.00000000 0.01831502 0.00000000## horizon 0.00000000 0.00000000 0.00000000 0.00000000## hormuz 0.00000000 0.00000000 0.01831502 0.00000000## horrific 0.01783803 0.00000000 0.00000000 0.01719099## horror 0.00000000 0.00000000 0.01831502 0.00000000## horrors 0.01783803 0.00000000 0.00000000 0.00000000## hostage 0.00000000 0.00000000 0.00000000 0.00000000## hotter 0.00000000 0.00000000 0.00000000 0.00000000## household 0.00000000 0.00000000 0.00000000 0.00000000## houser 0.00000000 0.00000000 0.00000000 0.00000000## houses 0.00000000 0.00000000 0.00000000 0.00000000## humanitarian 0.00000000 0.03247808 0.00000000 0.01719099## humbled 0.00000000 0.00000000 0.00000000 0.00000000## hunting 0.00000000 0.00000000 0.00000000 0.00000000## hurting 0.00000000 0.00000000 0.00000000 0.00000000## hussein^s 0.00000000 0.00000000 0.00000000 0.00000000## hutchison 0.00000000 0.00000000 0.00000000 0.00000000## hybrids 0.00000000 0.00000000 0.00000000 0.00000000## hydrogen-powered 0.00000000 0.00000000 0.01831502 0.00000000## illegally 0.00000000 0.00000000 0.00000000 0.01719099## illusions 0.00000000 0.00000000 0.00000000 0.00000000## imminent 0.00000000 0.00000000 0.01831502 0.00000000## impartial 0.01783803 0.00000000 0.00000000 0.00000000## imperatives 0.00000000 0.00000000 0.00000000 0.00000000## import 0.01783803 0.00000000 0.00000000 0.00000000## imported 0.00000000 0.00000000 0.00000000 0.00000000## imposed 0.01783803 0.00000000 0.00000000 0.00000000## imposing 0.00000000 0.03247808 0.00000000 0.00000000## imprisoned 0.00000000 0.03247808 0.00000000 0.00000000## incite 0.00000000 0.00000000 0.01831502 0.00000000## incorporates 0.00000000 0.00000000 0.00000000 0.00000000## independents 0.00000000 0.00000000 0.00000000 0.00000000## indicate 0.00000000 0.00000000 0.01831502 0.00000000## indicates 0.00000000 0.00000000 0.01831502 0.00000000## indicted 0.00000000 0.03247808 0.00000000 0.00000000## inevitable 0.00000000 0.00000000 0.00000000 0.00000000## infants 0.00000000 0.00000000 0.01831502 0.00000000## informed 0.00000000 0.00000000 0.00000000 0.00000000## inherit 0.00000000 0.00000000 0.00000000 0.00000000## inner 0.00000000 0.00000000 0.00000000 0.01719099## inoculating 0.00000000 0.00000000 0.01831502 0.00000000## insisted 0.00000000 0.00000000 0.00000000 0.00000000## insists 0.01783803 0.00000000 0.00000000 0.00000000## inspection 0.00000000 0.00000000 0.01831502 0.00000000## inspections 0.00000000 0.00000000 0.00000000 0.00000000## inspector 0.00000000 0.00000000 0.00000000 0.00000000## inspiration 0.00000000 0.00000000 0.00000000 0.00000000## installing 0.00000000 0.00000000 0.00000000 0.00000000## instance 0.00000000 0.00000000 0.01831502 0.00000000## instant 0.00000000 0.03247808 0.00000000 0.01719099## institute 0.00000000 0.00000000 0.00000000 0.00000000## instructing 0.00000000 0.00000000 0.01831502 0.00000000## integration 0.00000000 0.00000000 0.01831502 0.00000000## intense 0.00000000 0.00000000 0.00000000 0.00000000## intensified 0.00000000 0.00000000 0.01831502 0.00000000## intention 0.00000000 0.00000000 0.00000000 0.00000000## interstate 0.00000000 0.00000000 0.00000000 0.00000000## interview 0.00000000 0.00000000 0.01831502 0.00000000## invent 0.00000000 0.00000000 0.00000000 0.00000000## invented 0.00000000 0.00000000 0.00000000 0.00000000## inventors 0.00000000 0.00000000 0.00000000 0.00000000## invested 0.00000000 0.00000000 0.00000000 0.00000000## investor 0.00000000 0.00000000 0.01831502 0.00000000## invitation 0.00000000 0.00000000 0.00000000 0.00000000## involve 0.00000000 0.00000000 0.00000000 0.00000000## involvement 0.00000000 0.00000000 0.00000000 0.00000000## invulnerability 0.00000000 0.00000000 0.01831502 0.00000000## ira 0.00000000 0.00000000 0.00000000 0.00000000## iranians 0.00000000 0.00000000 0.01831502 0.00000000## ironclad 0.00000000 0.00000000 0.00000000 0.00000000## irons 0.00000000 0.00000000 0.01831502 0.00000000## isil^s 0.00000000 0.00000000 0.00000000 0.00000000## issuing 0.00000000 0.00000000 0.00000000 0.00000000## items 0.01783803 0.00000000 0.00000000 0.01719099## jailed 0.00000000 0.06495615 0.00000000 0.00000000## james 0.00000000 0.00000000 0.00000000 0.00000000## jerusalem 0.00000000 0.00000000 0.00000000 0.01719099## jewish 0.00000000 0.00000000 0.00000000 0.00000000## jim 0.00000000 0.00000000 0.00000000 0.00000000## job-creating 0.00000000 0.00000000 0.00000000 0.00000000## john^s 0.00000000 0.00000000 0.00000000 0.00000000## joining 0.00000000 0.00000000 0.00000000 0.00000000## judd 0.00000000 0.00000000 0.00000000 0.00000000## jump-start 0.00000000 0.00000000 0.00000000 0.00000000## junior 0.00000000 0.00000000 0.01831502 0.00000000## kara 0.00000000 0.00000000 0.00000000 0.00000000## karzai 0.00000000 0.00000000 0.00000000 0.01719099## kathleen 0.00000000 0.00000000 0.00000000 0.00000000## kathryn 0.00000000 0.00000000 0.00000000 0.00000000## keeper 0.00000000 0.00000000 0.00000000 0.00000000## kelly 0.00000000 0.00000000 0.00000000 0.00000000## kent 0.00000000 0.00000000 0.00000000 0.00000000## kerry 0.00000000 0.00000000 0.00000000 0.00000000## khalid 0.00000000 0.00000000 0.00000000 0.00000000## khattala 0.00000000 0.00000000 0.00000000 0.00000000## kristin 0.00000000 0.00000000 0.00000000 0.00000000## landed 0.00000000 0.00000000 0.00000000 0.00000000## landmark 0.00000000 0.00000000 0.00000000 0.01719099## large-scale 0.00000000 0.00000000 0.00000000 0.00000000## launchers 0.00000000 0.00000000 0.00000000 0.00000000## lawsuit 0.00000000 0.00000000 0.01831502 0.00000000## lawyer 0.00000000 0.00000000 0.00000000 0.00000000## leg 0.00000000 0.00000000 0.00000000 0.00000000## legacy 0.00000000 0.00000000 0.00000000 0.00000000## legally 0.00000000 0.00000000 0.00000000 0.00000000## legislate 0.00000000 0.00000000 0.00000000 0.00000000## lender 0.00000000 0.00000000 0.00000000 0.00000000## lengths 0.00000000 0.00000000 0.01831502 0.00000000## leonard 0.00000000 0.00000000 0.00000000 0.00000000## lethal 0.00000000 0.00000000 0.01831502 0.00000000## letting 0.00000000 0.00000000 0.00000000 0.01719099## lifeblood 0.00000000 0.00000000 0.00000000 0.00000000## likewise 0.00000000 0.00000000 0.00000000 0.00000000## limited 0.00000000 0.00000000 0.00000000 0.00000000## linked 0.00000000 0.03247808 0.00000000 0.00000000## links 0.00000000 0.00000000 0.01831502 0.00000000## lisa 0.00000000 0.03247808 0.00000000 0.00000000## listening 0.00000000 0.00000000 0.00000000 0.00000000## lists 0.00000000 0.00000000 0.00000000 0.00000000## literacy 0.00000000 0.00000000 0.00000000 0.00000000## llp 0.00000000 0.00000000 0.00000000 0.00000000## load 0.00000000 0.00000000 0.00000000 0.01719099## location 0.00000000 0.00000000 0.01831502 0.00000000## locked 0.00000000 0.00000000 0.00000000 0.00000000## logistics 0.00000000 0.00000000 0.01831502 0.00000000## logs 0.00000000 0.00000000 0.00000000 0.00000000## loss 0.00000000 0.03247808 0.00000000 0.00000000## loves 0.00000000 0.00000000 0.00000000 0.00000000## lowered 0.00000000 0.00000000 0.00000000 0.00000000## lowers 0.00000000 0.00000000 0.00000000 0.00000000## luna 0.00000000 0.00000000 0.00000000 0.00000000## mahmoud 0.00000000 0.00000000 0.00000000 0.01719099## maintaining 0.00000000 0.00000000 0.00000000 0.00000000## manage 0.00000000 0.00000000 0.00000000 0.00000000## management 0.00000000 0.00000000 0.00000000 0.00000000## mandate 0.01783803 0.00000000 0.00000000 0.00000000## mandates 0.00000000 0.00000000 0.01831502 0.00000000## mandatory 0.01783803 0.00000000 0.00000000 0.00000000## manmade 0.00000000 0.00000000 0.00000000 0.00000000## map 0.00000000 0.00000000 0.00000000 0.00000000## marching 0.00000000 0.00000000 0.00000000 0.00000000## market-based 0.00000000 0.00000000 0.00000000 0.00000000## marketplace 0.00000000 0.00000000 0.00000000 0.00000000## marks 0.00000000 0.00000000 0.00000000 0.00000000## married 0.00000000 0.00000000 0.00000000 0.00000000## mars 0.00000000 0.00000000 0.00000000 0.00000000## marshals 0.00000000 0.03247808 0.00000000 0.00000000## mary 0.00000000 0.00000000 0.00000000 0.00000000## maryland 0.01783803 0.00000000 0.00000000 0.00000000## matched 0.00000000 0.00000000 0.00000000 0.01719099## mayors 0.00000000 0.00000000 0.00000000 0.00000000## maze 0.00000000 0.00000000 0.00000000 0.00000000## mazen 0.00000000 0.00000000 0.00000000 0.01719099## medicare^s 0.00000000 0.00000000 0.00000000 0.00000000## meetings 0.00000000 0.00000000 0.00000000 0.00000000## melting 0.01783803 0.00000000 0.00000000 0.00000000## memories 0.00000000 0.03247808 0.00000000 0.00000000## memory 0.00000000 0.00000000 0.00000000 0.00000000## mentioned 0.00000000 0.00000000 0.00000000 0.00000000## mentoring 0.00000000 0.00000000 0.00000000 0.00000000## mercury 0.00000000 0.00000000 0.00000000 0.00000000## merely 0.00000000 0.03247808 0.00000000 0.00000000## mess 0.00000000 0.00000000 0.00000000 0.00000000## messages 0.00000000 0.00000000 0.00000000 0.00000000## miami 0.00000000 0.00000000 0.00000000 0.00000000## michigan 0.00000000 0.00000000 0.00000000 0.00000000## midwest 0.00000000 0.00000000 0.00000000 0.00000000## milan 0.00000000 0.00000000 0.01831502 0.00000000## militarism 0.00000000 0.00000000 0.01831502 0.00000000## millennium 0.01783803 0.00000000 0.00000000 0.01719099## miller 0.00000000 0.00000000 0.00000000 0.00000000## miners 0.00000000 0.00000000 0.00000000 0.00000000## minutes 0.00000000 0.00000000 0.01831502 0.00000000## miracles 0.00000000 0.00000000 0.01831502 0.00000000## miraculous 0.00000000 0.00000000 0.01831502 0.00000000## mistake 0.00000000 0.00000000 0.00000000 0.00000000## mitchell 0.00000000 0.00000000 0.00000000 0.00000000## mobility 0.00000000 0.00000000 0.00000000 0.00000000## mobilized 0.00000000 0.00000000 0.00000000 0.00000000## mobilizing 0.00000000 0.00000000 0.01831502 0.00000000## moderate 0.01783803 0.00000000 0.00000000 0.00000000## modernized 0.00000000 0.00000000 0.00000000 0.00000000## mohammed 0.00000000 0.00000000 0.00000000 0.00000000## moms 0.00000000 0.00000000 0.00000000 0.00000000## monitoring 0.00000000 0.00000000 0.01831502 0.00000000## mostly 0.00000000 0.00000000 0.00000000 0.00000000## motors 0.00000000 0.00000000 0.00000000 0.00000000## mounting 0.00000000 0.00000000 0.01831502 0.00000000## multinational 0.01783803 0.00000000 0.00000000 0.00000000## murderers 0.00000000 0.03247808 0.00000000 0.00000000## music 0.01783803 0.00000000 0.00000000 0.00000000## mustard 0.00000000 0.00000000 0.01831502 0.00000000## muster 0.00000000 0.00000000 0.00000000 0.00000000## mutilation 0.00000000 0.00000000 0.01831502 0.00000000## mutombo 0.03567606 0.00000000 0.00000000 0.00000000## myra 0.00000000 0.00000000 0.00000000 0.00000000## naive 0.00000000 0.00000000 0.00000000 0.00000000## nasa 0.00000000 0.00000000 0.00000000 0.00000000## nationalized 0.00000000 0.00000000 0.01831502 0.00000000## necessities 0.00000000 0.00000000 0.00000000 0.00000000## necessity 0.00000000 0.00000000 0.00000000 0.00000000## negotiating 0.00000000 0.00000000 0.00000000 0.00000000## neighbor 0.00000000 0.00000000 0.00000000 0.00000000## nerve 0.00000000 0.00000000 0.01831502 0.00000000## neutrality 0.00000000 0.00000000 0.00000000 0.00000000## newer 0.00000000 0.00000000 0.00000000 0.00000000## newspaper 0.00000000 0.00000000 0.00000000 0.00000000## noise 0.00000000 0.00000000 0.00000000 0.00000000## nominations 0.00000000 0.00000000 0.00000000 0.00000000## normal 0.00000000 0.06495615 0.00000000 0.00000000## nowhere 0.00000000 0.00000000 0.00000000 0.00000000## nuclear-armed 0.00000000 0.00000000 0.00000000 0.00000000## o 0.00000000 0.00000000 0.01831502 0.00000000## object 0.00000000 0.00000000 0.01831502 0.00000000## objections 0.00000000 0.00000000 0.00000000 0.00000000## obstacles 0.00000000 0.00000000 0.01831502 0.00000000## obtained 0.00000000 0.00000000 0.01831502 0.00000000## occupations 0.00000000 0.00000000 0.00000000 0.00000000## offense 0.01783803 0.00000000 0.00000000 0.01719099## omaha 0.00000000 0.00000000 0.00000000 0.00000000## one-tenth 0.00000000 0.00000000 0.00000000 0.00000000## one-third 0.00000000 0.00000000 0.01831502 0.00000000## operative 0.00000000 0.00000000 0.01831502 0.00000000## opinion 0.00000000 0.00000000 0.01831502 0.00000000## orphaned 0.00000000 0.00000000 0.01831502 0.00000000## other^s 0.00000000 0.00000000 0.00000000 0.00000000## out-build 0.00000000 0.00000000 0.00000000 0.00000000## out-educate 0.00000000 0.00000000 0.00000000 0.00000000## out-innovate 0.00000000 0.00000000 0.00000000 0.00000000## outrage 0.00000000 0.00000000 0.00000000 0.00000000## outstanding 0.00000000 0.00000000 0.00000000 0.00000000## overlook 0.00000000 0.00000000 0.01831502 0.00000000## overthrow 0.01783803 0.03247808 0.00000000 0.00000000## owning 0.00000000 0.03247808 0.00000000 0.00000000## oxygen 0.00000000 0.00000000 0.01831502 0.00000000## package 0.00000000 0.00000000 0.00000000 0.01719099## paint 0.00000000 0.00000000 0.00000000 0.00000000## pandemic 0.00000000 0.00000000 0.00000000 0.00000000## panel 0.00000000 0.00000000 0.00000000 0.00000000## parental 0.00000000 0.00000000 0.00000000 0.00000000## park 0.00000000 0.00000000 0.00000000 0.00000000## parks 0.00000000 0.00000000 0.00000000 0.00000000## partial-birth 0.00000000 0.00000000 0.01831502 0.00000000## particular 0.00000000 0.00000000 0.00000000 0.00000000## partisanship 0.00000000 0.00000000 0.00000000 0.00000000## passengers 0.00000000 0.06495615 0.00000000 0.00000000## passions 0.00000000 0.00000000 0.00000000 0.00000000## pastors 0.00000000 0.00000000 0.00000000 0.00000000## pataki 0.00000000 0.06495615 0.00000000 0.00000000## patenting 0.00000000 0.00000000 0.00000000 0.01719099## patrolling 0.00000000 0.00000000 0.00000000 0.00000000## patrols 0.00000000 0.00000000 0.00000000 0.00000000## patterns 0.00000000 0.00000000 0.00000000 0.00000000## patton 0.00000000 0.00000000 0.00000000 0.00000000## paul 0.00000000 0.00000000 0.00000000 0.00000000## peacefully 0.00000000 0.00000000 0.00000000 0.00000000## pearson 0.00000000 0.00000000 0.00000000 0.00000000## penalties 0.00000000 0.00000000 0.00000000 0.00000000## pension 0.00000000 0.00000000 0.00000000 0.01719099## perfect 0.00000000 0.00000000 0.00000000 0.00000000## permits 0.00000000 0.00000000 0.00000000 0.00000000## permitting 0.00000000 0.00000000 0.00000000 0.00000000## perpetrator 0.00000000 0.00000000 0.00000000 0.00000000## perpetual 0.00000000 0.00000000 0.00000000 0.00000000## perseverance 0.00000000 0.00000000 0.01831502 0.00000000## persons 0.00000000 0.00000000 0.00000000 0.00000000## pet 0.00000000 0.00000000 0.00000000 0.00000000## petraeus 0.00000000 0.00000000 0.00000000 0.03438198## philosophical 0.00000000 0.00000000 0.00000000 0.00000000## philosophy 0.00000000 0.00000000 0.00000000 0.01719099## phony 0.00000000 0.00000000 0.00000000 0.00000000## physicians 0.00000000 0.00000000 0.01831502 0.00000000## pictures 0.00000000 0.00000000 0.00000000 0.00000000## pile 0.00000000 0.00000000 0.00000000 0.00000000## pizza 0.00000000 0.00000000 0.00000000 0.00000000## placement 0.00000000 0.00000000 0.00000000 0.00000000## planned 0.00000000 0.00000000 0.01831502 0.00000000## platform 0.00000000 0.00000000 0.00000000 0.00000000## plug-in 0.01783803 0.00000000 0.00000000 0.00000000## plunged 0.00000000 0.00000000 0.00000000 0.00000000## plus 0.00000000 0.00000000 0.00000000 0.00000000## poland 0.00000000 0.00000000 0.00000000 0.00000000## politely 0.00000000 0.00000000 0.01831502 0.00000000## poll 0.00000000 0.00000000 0.00000000 0.00000000## portion 0.00000000 0.00000000 0.00000000 0.00000000## poses 0.00000000 0.00000000 0.00000000 0.00000000## posing 0.00000000 0.00000000 0.01831502 0.00000000## possessed 0.01783803 0.00000000 0.00000000 0.00000000## post 0.00000000 0.00000000 0.00000000 0.00000000## pot 0.01783803 0.00000000 0.00000000 0.00000000## potter 0.00000000 0.00000000 0.00000000 0.00000000## pouring 0.00000000 0.00000000 0.00000000 0.00000000## powell 0.00000000 0.00000000 0.01831502 0.00000000## powered 0.00000000 0.00000000 0.01831502 0.00000000## powerplants 0.00000000 0.00000000 0.00000000 0.00000000## powers 0.00000000 0.00000000 0.00000000 0.01719099## practiced 0.00000000 0.06495615 0.00000000 0.00000000## prayer 0.01783803 0.03247808 0.00000000 0.00000000## praying 0.00000000 0.03247808 0.00000000 0.00000000## predecessor 0.00000000 0.00000000 0.00000000 0.00000000## prefer 0.00000000 0.00000000 0.00000000 0.00000000## pregnancy 0.00000000 0.00000000 0.00000000 0.00000000## pretend 0.00000000 0.00000000 0.00000000 0.00000000## pretending 0.00000000 0.00000000 0.00000000 0.00000000## prevailed 0.00000000 0.00000000 0.00000000 0.01719099## primarily 0.00000000 0.00000000 0.00000000 0.00000000## principals 0.00000000 0.00000000 0.00000000 0.00000000## prior 0.00000000 0.00000000 0.00000000 0.00000000## prisoner 0.00000000 0.00000000 0.00000000 0.00000000## prize 0.00000000 0.00000000 0.01831502 0.00000000## procedures 0.00000000 0.00000000 0.00000000 0.00000000## proctor 0.00000000 0.00000000 0.00000000 0.00000000## produced 0.00000000 0.00000000 0.00000000 0.00000000## productivity 0.00000000 0.00000000 0.00000000 0.00000000## progressive 0.01783803 0.00000000 0.00000000 0.00000000## progrowth 0.00000000 0.00000000 0.00000000 0.00000000## proliferation 0.00000000 0.00000000 0.00000000 0.00000000## prominent 0.01783803 0.00000000 0.00000000 0.00000000## prompt 0.01783803 0.00000000 0.00000000 0.01719099## propaganda 0.00000000 0.00000000 0.00000000 0.00000000## proper 0.01783803 0.00000000 0.00000000 0.00000000## properly 0.00000000 0.00000000 0.00000000 0.00000000## prosecution 0.00000000 0.00000000 0.00000000 0.00000000## prospect 0.00000000 0.00000000 0.01831502 0.00000000## protectionism 0.00000000 0.00000000 0.00000000 0.00000000## proved 0.00000000 0.00000000 0.00000000 0.00000000## province 0.03567606 0.00000000 0.00000000 0.00000000## provinces 0.00000000 0.00000000 0.00000000 0.03438198## provincial 0.00000000 0.00000000 0.00000000 0.03438198## provision 0.00000000 0.00000000 0.00000000 0.00000000## provisions 0.00000000 0.00000000 0.00000000 0.00000000## prudent 0.00000000 0.00000000 0.00000000 0.00000000## pulled 0.01783803 0.00000000 0.00000000 0.00000000## pump 0.00000000 0.00000000 0.00000000 0.00000000## pundits 0.00000000 0.00000000 0.00000000 0.00000000## punishing 0.00000000 0.00000000 0.00000000 0.00000000## purchases 0.00000000 0.00000000 0.00000000 0.00000000## purchasing 0.00000000 0.00000000 0.00000000 0.01719099## pursued 0.00000000 0.00000000 0.01831502 0.00000000## pursues 0.00000000 0.00000000 0.01831502 0.00000000## putin 0.00000000 0.00000000 0.00000000 0.00000000## qualified 0.01783803 0.00000000 0.00000000 0.00000000## quick 0.00000000 0.00000000 0.00000000 0.00000000## quite 0.01783803 0.00000000 0.00000000 0.00000000## quitters 0.00000000 0.00000000 0.00000000 0.00000000## quitting 0.00000000 0.00000000 0.00000000 0.00000000## races 0.00000000 0.00000000 0.00000000 0.00000000## rage 0.01783803 0.00000000 0.00000000 0.00000000## railroads 0.00000000 0.00000000 0.00000000 0.00000000## raises 0.00000000 0.00000000 0.00000000 0.01719099## raleigh 0.00000000 0.00000000 0.00000000 0.00000000## rallied 0.00000000 0.00000000 0.00000000 0.00000000## rally 0.00000000 0.03247808 0.00000000 0.00000000## randolph 0.00000000 0.00000000 0.00000000 0.00000000## rape 0.00000000 0.00000000 0.01831502 0.00000000## rarely 0.00000000 0.00000000 0.00000000 0.00000000## rational 0.00000000 0.00000000 0.00000000 0.00000000## rations 0.00000000 0.00000000 0.01831502 0.00000000## reached 0.00000000 0.00000000 0.00000000 0.01719099## reaches 0.01783803 0.00000000 0.00000000 0.01719099## reaffirm 0.00000000 0.00000000 0.00000000 0.01719099## realized 0.00000000 0.00000000 0.00000000 0.01719099## realizing 0.00000000 0.00000000 0.00000000 0.00000000## rebounding 0.00000000 0.00000000 0.00000000 0.00000000## rebuilt 0.00000000 0.00000000 0.00000000 0.00000000## recedes 0.00000000 0.03247808 0.00000000 0.00000000## reclaim 0.00000000 0.00000000 0.00000000 0.01719099## recognizes 0.00000000 0.00000000 0.00000000 0.01719099## recommended 0.00000000 0.00000000 0.00000000 0.01719099## recovered 0.00000000 0.00000000 0.00000000 0.00000000## recovering 0.00000000 0.00000000 0.01831502 0.00000000## recriminations 0.00000000 0.00000000 0.01831502 0.00000000## redefine 0.00000000 0.00000000 0.00000000 0.00000000## reformed 0.00000000 0.00000000 0.00000000 0.00000000## reformers 0.01783803 0.00000000 0.00000000 0.00000000## refund 0.00000000 0.00000000 0.00000000 0.00000000## refundable 0.00000000 0.00000000 0.00000000 0.00000000## refused 0.01783803 0.00000000 0.00000000 0.00000000## refuses 0.00000000 0.00000000 0.00000000 0.00000000## reignite 0.00000000 0.00000000 0.00000000 0.00000000## reinforcements 0.03567606 0.00000000 0.00000000 0.00000000## reinvent 0.00000000 0.00000000 0.00000000 0.00000000## related 0.00000000 0.00000000 0.00000000 0.00000000## relentless 0.00000000 0.00000000 0.00000000 0.00000000## religions 0.00000000 0.00000000 0.00000000 0.00000000## reluctantly 0.00000000 0.00000000 0.01831502 0.00000000## remaking 0.00000000 0.03247808 0.00000000 0.00000000## remnants 0.00000000 0.00000000 0.00000000 0.00000000## remote 0.00000000 0.00000000 0.00000000 0.00000000## renewal 0.00000000 0.00000000 0.00000000 0.00000000## renovation 0.00000000 0.00000000 0.00000000 0.00000000## reorganized 0.00000000 0.00000000 0.01831502 0.00000000## repairing 0.00000000 0.00000000 0.00000000 0.00000000## replaced 0.00000000 0.00000000 0.00000000 0.01719099## reporting 0.00000000 0.03247808 0.00000000 0.00000000## represses 0.00000000 0.00000000 0.01831502 0.00000000## repressing 0.00000000 0.03247808 0.00000000 0.00000000## republic 0.00000000 0.00000000 0.00000000 0.00000000## requested 0.00000000 0.00000000 0.01831502 0.00000000## requests 0.00000000 0.00000000 0.00000000 0.00000000## resentments 0.01783803 0.00000000 0.00000000 0.00000000## reshaping 0.00000000 0.00000000 0.00000000 0.00000000## resident 0.00000000 0.00000000 0.00000000 0.00000000## resilient 0.01783803 0.00000000 0.00000000 0.00000000## respected 0.00000000 0.00000000 0.00000000 0.00000000## respiratory 0.00000000 0.00000000 0.01831502 0.00000000## responders 0.00000000 0.00000000 0.01831502 0.00000000## restored 0.00000000 0.00000000 0.00000000 0.00000000## restoring 0.00000000 0.00000000 0.00000000 0.00000000## restrained 0.00000000 0.00000000 0.01831502 0.00000000## restructure 0.00000000 0.00000000 0.00000000 0.00000000## restructuring 0.00000000 0.00000000 0.00000000 0.00000000## resume 0.00000000 0.00000000 0.01831502 0.00000000## retail 0.00000000 0.00000000 0.00000000 0.00000000## retaliation 0.01783803 0.03247808 0.00000000 0.00000000## retool 0.00000000 0.00000000 0.00000000 0.00000000## retooled 0.00000000 0.00000000 0.00000000 0.00000000## retrain 0.00000000 0.00000000 0.00000000 0.00000000## retreating 0.00000000 0.03247808 0.00000000 0.00000000## returning 0.00000000 0.00000000 0.00000000 0.01719099## reveal 0.00000000 0.00000000 0.01831502 0.00000000## revival 0.00000000 0.00000000 0.01831502 0.00000000## revive 0.00000000 0.00000000 0.00000000 0.00000000## revolutionary 0.00000000 0.00000000 0.00000000 0.00000000## richness 0.00000000 0.00000000 0.01831502 0.00000000## riddled 0.00000000 0.00000000 0.00000000 0.00000000## ride 0.00000000 0.00000000 0.00000000 0.01719099## ridge 0.00000000 0.03247808 0.00000000 0.00000000## rigorous 0.00000000 0.00000000 0.00000000 0.00000000## ripped 0.00000000 0.00000000 0.00000000 0.01719099## risked 0.00000000 0.00000000 0.00000000 0.01719099## risking 0.00000000 0.00000000 0.01831502 0.00000000## ritterby 0.00000000 0.00000000 0.00000000 0.00000000## rival 0.00000000 0.00000000 0.00000000 0.00000000## roadside 0.00000000 0.00000000 0.00000000 0.00000000## robotics 0.00000000 0.00000000 0.00000000 0.00000000## robust 0.00000000 0.00000000 0.00000000 0.01719099## rolled 0.00000000 0.00000000 0.00000000 0.00000000## rolling 0.00000000 0.00000000 0.00000000 0.00000000## romney^s 0.00000000 0.00000000 0.00000000 0.00000000## roofing 0.00000000 0.00000000 0.00000000 0.00000000## rooted 0.00000000 0.00000000 0.00000000 0.00000000## rose 0.01783803 0.00000000 0.00000000 0.01719099## rouge 0.00000000 0.00000000 0.01831502 0.00000000## routes 0.00000000 0.00000000 0.00000000 0.00000000## routine 0.00000000 0.00000000 0.00000000 0.00000000## rubio 0.00000000 0.00000000 0.00000000 0.00000000## rudolph 0.00000000 0.06495615 0.00000000 0.00000000## rugged 0.00000000 0.00000000 0.00000000 0.00000000## ruins 0.00000000 0.00000000 0.01831502 0.00000000## rulers 0.00000000 0.00000000 0.00000000 0.01719099## ruling 0.00000000 0.00000000 0.01831502 0.00000000## rushed 0.00000000 0.03247808 0.00000000 0.00000000## sacrificed 0.00000000 0.00000000 0.00000000 0.00000000## sacrificing 0.00000000 0.03247808 0.00000000 0.00000000## sadly 0.00000000 0.00000000 0.00000000 0.01719099## safeguard 0.00000000 0.03247808 0.00000000 0.00000000## safeguards 0.00000000 0.00000000 0.00000000 0.00000000## safely 0.00000000 0.00000000 0.00000000 0.00000000## salaries 0.00000000 0.00000000 0.00000000 0.00000000## salary 0.00000000 0.00000000 0.00000000 0.00000000## salute 0.00000000 0.00000000 0.00000000 0.00000000## sanctuary 0.01783803 0.00000000 0.00000000 0.01719099## sanitizing 0.00000000 0.00000000 0.01831502 0.00000000## sanity 0.00000000 0.00000000 0.01831502 0.00000000## sarin 0.00000000 0.00000000 0.01831502 0.00000000## scale 0.01783803 0.00000000 0.00000000 0.00000000## scattered 0.00000000 0.00000000 0.01831502 0.00000000## scavenger 0.00000000 0.00000000 0.01831502 0.00000000## scenes 0.03567606 0.00000000 0.00000000 0.00000000## schip 0.00000000 0.00000000 0.00000000 0.00000000## scholarships 0.00000000 0.00000000 0.00000000 0.01719099## scope 0.00000000 0.00000000 0.00000000 0.00000000## screeners 0.00000000 0.00000000 0.01831502 0.00000000## sebelius 0.00000000 0.00000000 0.00000000 0.00000000## seconds 0.01783803 0.00000000 0.00000000 0.00000000## secretly 0.00000000 0.00000000 0.01831502 0.00000000## secrets 0.00000000 0.00000000 0.00000000 0.00000000## sectors 0.00000000 0.00000000 0.00000000 0.00000000## secured 0.00000000 0.00000000 0.00000000 0.00000000## seized 0.00000000 0.00000000 0.01831502 0.00000000## seldom 0.00000000 0.00000000 0.01831502 0.00000000## self-appointed 0.00000000 0.03247808 0.00000000 0.00000000## self-reliant 0.00000000 0.00000000 0.00000000 0.00000000## selma 0.00000000 0.00000000 0.00000000 0.00000000## sensible 0.00000000 0.00000000 0.00000000 0.01719099## sensors 0.00000000 0.00000000 0.01831502 0.00000000## sentence 0.00000000 0.00000000 0.01831502 0.00000000## seoul 0.00000000 0.03247808 0.00000000 0.00000000## separate 0.00000000 0.00000000 0.00000000 0.00000000## settle 0.00000000 0.00000000 0.00000000 0.00000000## sexually 0.00000000 0.00000000 0.00000000 0.00000000## shadowy 0.00000000 0.00000000 0.01831502 0.00000000## shaking 0.00000000 0.00000000 0.00000000 0.00000000## shalala 0.00000000 0.00000000 0.00000000 0.03438198## shale 0.00000000 0.00000000 0.00000000 0.00000000## shareholder 0.00000000 0.00000000 0.01831502 0.00000000## sharing 0.00000000 0.00000000 0.00000000 0.01719099## sharon 0.00000000 0.00000000 0.00000000 0.00000000## sharp 0.00000000 0.00000000 0.00000000 0.00000000## sheer 0.00000000 0.00000000 0.00000000 0.00000000## sheik 0.00000000 0.00000000 0.00000000 0.00000000## sheoma 0.00000000 0.00000000 0.00000000 0.00000000## shifting 0.00000000 0.00000000 0.00000000 0.01719099## shipment 0.00000000 0.00000000 0.01831502 0.00000000## ships 0.00000000 0.00000000 0.01831502 0.00000000## shock 0.00000000 0.00000000 0.01831502 0.00000000## shortchanging 0.00000000 0.00000000 0.00000000 0.00000000## shortcuts 0.00000000 0.00000000 0.00000000 0.00000000## shortfall 0.00000000 0.00000000 0.00000000 0.00000000## showroom 0.00000000 0.00000000 0.01831502 0.00000000## shrapnel 0.01783803 0.00000000 0.00000000 0.00000000## shrink 0.00000000 0.00000000 0.00000000 0.00000000## shuttered 0.00000000 0.00000000 0.00000000 0.00000000## sidelines 0.00000000 0.00000000 0.00000000 0.00000000## signal 0.00000000 0.00000000 0.00000000 0.00000000## significantly 0.00000000 0.00000000 0.01831502 0.00000000## simpson 0.00000000 0.00000000 0.00000000 0.00000000## singapore 0.00000000 0.00000000 0.01831502 0.00000000## sites 0.00000000 0.00000000 0.01831502 0.00000000## slash 0.00000000 0.00000000 0.00000000 0.00000000## sleepless 0.00000000 0.00000000 0.00000000 0.01719099## slip 0.00000000 0.00000000 0.00000000 0.00000000## slipping 0.00000000 0.00000000 0.00000000 0.01719099## smallpox 0.00000000 0.00000000 0.01831502 0.00000000## sobered 0.01783803 0.00000000 0.00000000 0.01719099## societies 0.03567606 0.00000000 0.00000000 0.00000000## soldier 0.00000000 0.00000000 0.00000000 0.00000000## solemn 0.00000000 0.00000000 0.00000000 0.03438198## solid 0.00000000 0.00000000 0.00000000 0.00000000## solving 0.00000000 0.00000000 0.00000000 0.00000000## someday 0.00000000 0.00000000 0.00000000 0.00000000## someplace 0.01783803 0.00000000 0.00000000 0.00000000## soranno 0.00000000 0.00000000 0.00000000 0.00000000## sort 0.00000000 0.00000000 0.00000000 0.00000000## soul 0.00000000 0.00000000 0.01831502 0.00000000## southern 0.00000000 0.00000000 0.00000000 0.00000000## sovereign 0.00000000 0.00000000 0.00000000 0.00000000## sovereignty 0.00000000 0.00000000 0.00000000 0.00000000## soviets 0.00000000 0.00000000 0.00000000 0.00000000## speaks 0.00000000 0.00000000 0.00000000 0.00000000## spiegel 0.00000000 0.00000000 0.00000000 0.00000000## sponsor 0.00000000 0.00000000 0.00000000 0.00000000## squads 0.03567606 0.00000000 0.00000000 0.00000000## stabilize 0.00000000 0.00000000 0.00000000 0.00000000## stabilized 0.00000000 0.00000000 0.00000000 0.00000000## staffs 0.00000000 0.00000000 0.01831502 0.00000000## stage 0.00000000 0.00000000 0.00000000 0.00000000## staggering 0.00000000 0.00000000 0.00000000 0.01719099## stagnation 0.00000000 0.00000000 0.01831502 0.00000000## stairs 0.00000000 0.00000000 0.00000000 0.00000000## stalled 0.00000000 0.00000000 0.00000000 0.00000000## stamped 0.00000000 0.00000000 0.00000000 0.00000000## stark 0.00000000 0.00000000 0.00000000 0.00000000## starts 0.00000000 0.00000000 0.00000000 0.00000000## startup 0.00000000 0.00000000 0.00000000 0.00000000## startups 0.00000000 0.00000000 0.00000000 0.00000000## starvation 0.00000000 0.00000000 0.01831502 0.00000000## statements 0.00000000 0.00000000 0.01831502 0.00000000## station 0.01783803 0.00000000 0.00000000 0.00000000## statistics 0.00000000 0.00000000 0.00000000 0.00000000## statute 0.00000000 0.00000000 0.00000000 0.00000000## stayed 0.01783803 0.00000000 0.00000000 0.00000000## staying 0.01783803 0.00000000 0.00000000 0.01719099## steadfast 0.00000000 0.00000000 0.00000000 0.00000000## steel 0.00000000 0.00000000 0.00000000 0.00000000## steroids 0.00000000 0.00000000 0.00000000 0.00000000## steve 0.00000000 0.00000000 0.00000000 0.00000000## stimulate 0.00000000 0.00000000 0.00000000 0.00000000## stockpiles 0.00000000 0.00000000 0.00000000 0.00000000## strained 0.00000000 0.00000000 0.00000000 0.00000000## street^s 0.00000000 0.00000000 0.00000000 0.00000000## strengthens 0.00000000 0.00000000 0.00000000 0.01719099## stretch 0.00000000 0.00000000 0.00000000 0.00000000## stretches 0.00000000 0.00000000 0.00000000 0.00000000## structure 0.00000000 0.03247808 0.00000000 0.00000000## struggled 0.00000000 0.00000000 0.00000000 0.00000000## stubborn 0.00000000 0.00000000 0.00000000 0.00000000## stuck 0.01783803 0.00000000 0.00000000 0.00000000## submitted 0.00000000 0.00000000 0.00000000 0.01719099## subsidized 0.00000000 0.00000000 0.00000000 0.00000000## substantial 0.01783803 0.00000000 0.00000000 0.00000000## substantially 0.00000000 0.00000000 0.00000000 0.01719099## suddenly 0.00000000 0.00000000 0.01831502 0.00000000## sued 0.00000000 0.00000000 0.01831502 0.00000000## suffer 0.00000000 0.00000000 0.00000000 0.00000000## suitable 0.00000000 0.00000000 0.01831502 0.00000000## summon 0.00000000 0.00000000 0.00000000 0.00000000## sunlight 0.00000000 0.00000000 0.00000000 0.00000000## superb 0.00000000 0.00000000 0.00000000 0.00000000## surgery 0.00000000 0.00000000 0.00000000 0.00000000## surprise 0.00000000 0.03247808 0.00000000 0.00000000## surrender 0.00000000 0.00000000 0.00000000 0.00000000## suspicion 0.00000000 0.00000000 0.00000000 0.00000000## swift 0.00000000 0.03247808 0.00000000 0.00000000## switch 0.00000000 0.00000000 0.00000000 0.00000000## sympathy 0.00000000 0.06495615 0.00000000 0.00000000## system^s 0.00000000 0.00000000 0.00000000 0.00000000## systematically 0.00000000 0.00000000 0.01831502 0.00000000## tables 0.00000000 0.00000000 0.00000000 0.01719099## taleb 0.00000000 0.00000000 0.00000000 0.00000000## talents 0.00000000 0.00000000 0.00000000 0.00000000## tallest 0.01783803 0.00000000 0.00000000 0.01719099## targets 0.00000000 0.00000000 0.00000000 0.00000000## tasks 0.00000000 0.00000000 0.00000000 0.00000000## taught 0.00000000 0.00000000 0.00000000 0.00000000## teachings 0.00000000 0.06495615 0.00000000 0.00000000## tear 0.00000000 0.00000000 0.00000000 0.00000000## technical 0.00000000 0.00000000 0.00000000 0.00000000## teddy 0.00000000 0.00000000 0.00000000 0.00000000## teenager 0.01783803 0.00000000 0.00000000 0.00000000## television 0.00000000 0.03247808 0.00000000 0.00000000## tennessee 0.00000000 0.00000000 0.00000000 0.00000000## testified 0.00000000 0.00000000 0.00000000 0.00000000## theirs 0.00000000 0.00000000 0.00000000 0.00000000## thereby 0.00000000 0.00000000 0.00000000 0.00000000## therefore 0.00000000 0.00000000 0.00000000 0.00000000## they^ll 0.00000000 0.00000000 0.00000000 0.00000000## thompson 0.03567606 0.00000000 0.00000000 0.00000000## thread 0.00000000 0.00000000 0.00000000 0.00000000## threatening 0.00000000 0.03247808 0.00000000 0.00000000## thrive 0.00000000 0.00000000 0.00000000 0.00000000## thugs 0.00000000 0.00000000 0.00000000 0.00000000## tighter 0.00000000 0.03247808 0.00000000 0.00000000## tim 0.01783803 0.00000000 0.00000000 0.00000000## toil 0.00000000 0.00000000 0.00000000 0.01719099## tolerance 0.00000000 0.03247808 0.00000000 0.00000000## tomorrow^s 0.00000000 0.00000000 0.00000000 0.00000000## tongues 0.00000000 0.00000000 0.01831502 0.00000000## tons 0.00000000 0.00000000 0.01831502 0.00000000## torturing 0.00000000 0.00000000 0.01831502 0.00000000## touch 0.00000000 0.03247808 0.00000000 0.00000000## touched 0.00000000 0.03247808 0.00000000 0.00000000## touching 0.00000000 0.00000000 0.00000000 0.00000000## towers 0.00000000 0.00000000 0.01831502 0.00000000## toxic 0.00000000 0.00000000 0.00000000 0.00000000## tracking 0.00000000 0.00000000 0.00000000 0.00000000## tracks 0.01783803 0.00000000 0.00000000 0.00000000## traditional 0.00000000 0.00000000 0.00000000 0.00000000## traditions 0.00000000 0.00000000 0.00000000 0.01719099## traffickers 0.00000000 0.00000000 0.00000000 0.01719099## trajectory 0.00000000 0.00000000 0.00000000 0.00000000## transcontinental 0.00000000 0.00000000 0.00000000 0.00000000## transfer 0.00000000 0.00000000 0.00000000 0.01719099## transformed 0.00000000 0.00000000 0.00000000 0.01719099## transmitted 0.00000000 0.00000000 0.00000000 0.00000000## transparent 0.00000000 0.00000000 0.00000000 0.00000000## treasured 0.00000000 0.00000000 0.01831502 0.00000000## treaties 0.00000000 0.00000000 0.01831502 0.00000000## trillion-dollar 0.00000000 0.00000000 0.00000000 0.00000000## triple 0.00000000 0.00000000 0.00000000 0.00000000## triumph 0.00000000 0.00000000 0.01831502 0.00000000## trivial 0.00000000 0.00000000 0.00000000 0.00000000## troop 0.00000000 0.00000000 0.00000000 0.01719099## truman 0.01783803 0.00000000 0.00000000 0.00000000## trusted 0.00000000 0.03247808 0.00000000 0.00000000## tubes 0.00000000 0.00000000 0.01831502 0.00000000## tuesday 0.00000000 0.00000000 0.01831502 0.00000000## turbine 0.00000000 0.00000000 0.00000000 0.00000000## tutoring 0.00000000 0.00000000 0.00000000 0.00000000## twelve 0.00000000 0.00000000 0.01831502 0.00000000## twenty 0.00000000 0.00000000 0.00000000 0.00000000## two-thirds 0.00000000 0.00000000 0.00000000 0.00000000## ty 0.00000000 0.00000000 0.00000000 0.00000000## typhoon 0.00000000 0.00000000 0.00000000 0.00000000## u- 0.00000000 0.00000000 0.01831502 0.00000000## unable 0.00000000 0.00000000 0.00000000 0.00000000## unanswered 0.00000000 0.03247808 0.00000000 0.00000000## unarmed 0.00000000 0.00000000 0.00000000 0.00000000## uncertainties 0.00000000 0.00000000 0.00000000 0.00000000## unconditional 0.00000000 0.00000000 0.00000000 0.00000000## underway 0.01783803 0.00000000 0.00000000 0.00000000## undo 0.00000000 0.00000000 0.00000000 0.00000000## undocumented 0.00000000 0.00000000 0.00000000 0.00000000## unethical 0.00000000 0.00000000 0.00000000 0.01719099## uninterrupted 0.01783803 0.00000000 0.00000000 0.00000000## unite 0.00000000 0.00000000 0.00000000 0.00000000## unleash 0.00000000 0.00000000 0.00000000 0.00000000## unleashed 0.00000000 0.00000000 0.00000000 0.00000000## unraveling 0.00000000 0.00000000 0.00000000 0.00000000## unstable 0.00000000 0.00000000 0.00000000 0.00000000## unsustainable 0.00000000 0.00000000 0.00000000 0.00000000## untouched 0.00000000 0.00000000 0.00000000 0.00000000## unused 0.00000000 0.00000000 0.00000000 0.01719099## unwavering 0.00000000 0.00000000 0.00000000 0.00000000## unyielding 0.00000000 0.00000000 0.00000000 0.00000000## upwards 0.00000000 0.00000000 0.01831502 0.00000000## utter 0.00000000 0.00000000 0.01831502 0.00000000## vacant 0.00000000 0.00000000 0.00000000 0.00000000## vatican 0.00000000 0.00000000 0.00000000 0.00000000## vets 0.00000000 0.00000000 0.00000000 0.00000000## vibrant 0.00000000 0.00000000 0.00000000 0.00000000## victor 0.00000000 0.00000000 0.00000000 0.00000000## victoria 0.00000000 0.00000000 0.00000000 0.00000000## victories 0.00000000 0.03247808 0.00000000 0.00000000## video 0.00000000 0.00000000 0.00000000 0.00000000## videos 0.03567606 0.00000000 0.00000000 0.00000000## views 0.00000000 0.00000000 0.00000000 0.00000000## vigilant 0.00000000 0.00000000 0.00000000 0.00000000## vigorous 0.00000000 0.00000000 0.00000000 0.01719099## violate 0.00000000 0.00000000 0.00000000 0.00000000## violating 0.01783803 0.00000000 0.00000000 0.00000000## violations 0.00000000 0.00000000 0.00000000 0.00000000## virginia 0.00000000 0.03247808 0.00000000 0.00000000## virus 0.00000000 0.00000000 0.01831502 0.00000000## viruses 0.00000000 0.00000000 0.01831502 0.00000000## visited 0.00000000 0.00000000 0.00000000 0.00000000## visitor 0.00000000 0.00000000 0.00000000 0.00000000## vladimir 0.00000000 0.00000000 0.00000000 0.00000000## vladimirovich 0.00000000 0.00000000 0.00000000 0.00000000## voluntarily 0.00000000 0.00000000 0.00000000 0.01719099## vx 0.00000000 0.00000000 0.01831502 0.00000000## waitress 0.00000000 0.00000000 0.00000000 0.00000000## walking 0.00000000 0.00000000 0.00000000 0.00000000## warned 0.00000000 0.00000000 0.00000000 0.01719099## wasted 0.00000000 0.00000000 0.00000000 0.00000000## wastes 0.01783803 0.00000000 0.00000000 0.00000000## watchdog 0.00000000 0.00000000 0.00000000 0.00000000## waves 0.00000000 0.00000000 0.00000000 0.00000000## weakening 0.00000000 0.00000000 0.00000000 0.00000000## weaker 0.00000000 0.00000000 0.00000000 0.00000000## weakest 0.00000000 0.00000000 0.01831502 0.00000000## weather 0.00000000 0.00000000 0.00000000 0.01719099## weighed 0.01783803 0.00000000 0.00000000 0.00000000## welcomed 0.00000000 0.00000000 0.00000000 0.00000000## wendell 0.00000000 0.00000000 0.00000000 0.00000000## whim 0.00000000 0.00000000 0.00000000 0.01719099## whirlwind 0.00000000 0.00000000 0.01831502 0.00000000## wide 0.00000000 0.00000000 0.00000000 0.00000000## wildfires 0.00000000 0.00000000 0.00000000 0.00000000## wildlife 0.00000000 0.00000000 0.01831502 0.00000000## window 0.00000000 0.00000000 0.00000000 0.00000000## windows 0.00000000 0.00000000 0.00000000 0.00000000## winner 0.00000000 0.00000000 0.00000000 0.00000000## wiped 0.00000000 0.00000000 0.00000000 0.00000000## wireless 0.00000000 0.00000000 0.00000000 0.00000000## wisconsin 0.00000000 0.00000000 0.00000000 0.00000000## wish 0.01783803 0.00000000 0.00000000 0.00000000## witness 0.00000000 0.00000000 0.00000000 0.01719099## witnesses 0.00000000 0.00000000 0.01831502 0.00000000## wondering 0.00000000 0.00000000 0.00000000 0.00000000## wood 0.01783803 0.00000000 0.00000000 0.00000000## workplace 0.00000000 0.00000000 0.00000000 0.00000000## worksite 0.01783803 0.00000000 0.00000000 0.01719099## worried 0.00000000 0.00000000 0.00000000 0.01719099## worsened 0.00000000 0.00000000 0.00000000 0.00000000## wounds 0.01783803 0.00000000 0.00000000 0.00000000## wright 0.00000000 0.00000000 0.00000000 0.00000000## yesterday 0.00000000 0.00000000 0.00000000 0.00000000## yogi 0.00000000 0.00000000 0.00000000 0.00000000## youngstown 0.00000000 0.00000000 0.00000000 0.00000000## yourselves 0.00000000 0.00000000 0.00000000 0.00000000## zimbabwe 0.00000000 0.00000000 0.00000000 0.01719099## -foot 0.00000000 0.00000000 0.00000000 0.00000000## -h 0.00000000 0.00000000 0.01831502 0.00000000## -something 0.00000000 0.00000000 0.00000000 0.00000000## -year-olds 0.00000000 0.00000000 0.00000000 0.00000000## abandoned 0.01783803 0.00000000 0.00000000 0.00000000## abetting 0.00000000 0.03247808 0.00000000 0.00000000## abolition 0.00000000 0.00000000 0.00000000 0.00000000## abruptly 0.00000000 0.00000000 0.00000000 0.00000000## absence 0.00000000 0.00000000 0.00000000 0.00000000## academy 0.00000000 0.00000000 0.00000000 0.00000000## accelerating 0.00000000 0.00000000 0.00000000 0.00000000## acceptable 0.00000000 0.00000000 0.00000000 0.01719099## acceptance 0.00000000 0.00000000 0.00000000 0.00000000## accepts 0.00000000 0.00000000 0.00000000 0.01719099## accessible 0.00000000 0.00000000 0.00000000 0.01719099## accessing 0.00000000 0.00000000 0.00000000 0.00000000## accompanied 0.00000000 0.00000000 0.01831502 0.00000000## accomplishment 0.00000000 0.00000000 0.00000000 0.00000000## accomplishments 0.00000000 0.00000000 0.00000000 0.01719099## accumulated 0.00000000 0.00000000 0.00000000 0.00000000## accumulates 0.00000000 0.00000000 0.00000000 0.00000000## aching 0.00000000 0.00000000 0.00000000 0.00000000## acknowledgment 0.00000000 0.00000000 0.00000000 0.00000000## acne 0.00000000 0.00000000 0.00000000 0.00000000## acquire 0.01783803 0.00000000 0.00000000 0.00000000## acrimony 0.00000000 0.00000000 0.00000000 0.00000000## across-the-board 0.00000000 0.00000000 0.00000000 0.00000000## activity 0.00000000 0.00000000 0.00000000 0.00000000## actual 0.00000000 0.00000000 0.00000000 0.00000000## adapting 0.00000000 0.00000000 0.00000000 0.00000000## addressed 0.00000000 0.00000000 0.00000000 0.00000000## adjustment 0.00000000 0.00000000 0.00000000 0.01719099## administer 0.00000000 0.00000000 0.00000000 0.00000000## administration^s 0.00000000 0.00000000 0.00000000 0.00000000## administrator 0.00000000 0.00000000 0.00000000 0.00000000## admirals 0.00000000 0.00000000 0.00000000 0.00000000## admire 0.00000000 0.00000000 0.00000000 0.00000000## admitted 0.00000000 0.00000000 0.00000000 0.01719099## adnan 0.00000000 0.00000000 0.00000000 0.00000000## adopt 0.00000000 0.00000000 0.00000000 0.00000000## adopting 0.01783803 0.00000000 0.00000000 0.00000000## adopts 0.00000000 0.00000000 0.00000000 0.00000000## ads 0.00000000 0.00000000 0.00000000 0.00000000## adulthood 0.00000000 0.00000000 0.00000000 0.00000000## advanced-placement 0.00000000 0.00000000 0.00000000 0.00000000## advancing 0.00000000 0.00000000 0.00000000 0.01719099## advisers 0.01783803 0.00000000 0.00000000 0.00000000## advocated 0.00000000 0.00000000 0.00000000 0.00000000## advocating 0.00000000 0.00000000 0.00000000 0.00000000## aeronautics 0.00000000 0.00000000 0.00000000 0.00000000## affecting 0.00000000 0.03247808 0.00000000 0.00000000## affects 0.00000000 0.00000000 0.00000000 0.00000000## affiliated 0.00000000 0.03247808 0.00000000 0.00000000## affluent 0.00000000 0.00000000 0.00000000 0.00000000## affront 0.00000000 0.00000000 0.00000000 0.00000000## afghanistan^s 0.00000000 0.03247808 0.00000000 0.00000000## afterward 0.00000000 0.00000000 0.00000000 0.00000000## afterwards 0.00000000 0.00000000 0.00000000 0.00000000## agribusiness 0.00000000 0.00000000 0.00000000 0.00000000## aided 0.01783803 0.00000000 0.00000000 0.00000000## aiding 0.00000000 0.03247808 0.00000000 0.00000000## aids-free 0.00000000 0.00000000 0.00000000 0.00000000## aimed 0.00000000 0.00000000 0.00000000 0.01719099## ain^t 0.00000000 0.00000000 0.00000000 0.00000000## airlines 0.00000000 0.03247808 0.00000000 0.00000000## airmen 0.00000000 0.00000000 0.00000000 0.01719099## airplanes 0.01783803 0.00000000 0.00000000 0.00000000## al-asad 0.00000000 0.00000000 0.00000000 0.00000000## alarming 0.00000000 0.00000000 0.00000000 0.01719099## alert 0.00000000 0.03247808 0.00000000 0.00000000## alesandro 0.01783803 0.00000000 0.00000000 0.00000000## alienating 0.00000000 0.00000000 0.00000000 0.00000000## aligned 0.00000000 0.00000000 0.00000000 0.00000000## alito 0.00000000 0.00000000 0.00000000 0.00000000## all-in 0.00000000 0.00000000 0.00000000 0.00000000## all-out 0.00000000 0.00000000 0.00000000 0.00000000## all-powerful 0.00000000 0.00000000 0.00000000 0.00000000## allegiance 0.00000000 0.00000000 0.00000000 0.00000000## allentown 0.00000000 0.00000000 0.00000000 0.00000000## allowance 0.00000000 0.00000000 0.00000000 0.00000000## although 0.00000000 0.00000000 0.00000000 0.00000000## altogether 0.00000000 0.00000000 0.00000000 0.00000000## alzheimer^s 0.00000000 0.00000000 0.00000000 0.00000000## american-made 0.00000000 0.00000000 0.00000000 0.00000000## ammunition 0.00000000 0.00000000 0.00000000 0.00000000## amounts 0.00000000 0.00000000 0.00000000 0.00000000## analysts 0.00000000 0.00000000 0.00000000 0.00000000## anchor 0.00000000 0.00000000 0.00000000 0.00000000## andrews 0.00000000 0.00000000 0.00000000 0.00000000## angeles 0.00000000 0.00000000 0.00000000 0.01719099## anguish 0.00000000 0.00000000 0.00000000 0.00000000## animosity 0.01783803 0.00000000 0.00000000 0.00000000## annapolis 0.00000000 0.00000000 0.00000000 0.00000000## anniversaries 0.00000000 0.00000000 0.00000000 0.00000000## announcement 0.00000000 0.00000000 0.00000000 0.00000000## answered 0.00000000 0.00000000 0.00000000 0.01719099## anthem 0.00000000 0.03247808 0.00000000 0.00000000## anti-semitism 0.00000000 0.00000000 0.00000000 0.00000000## antifraud 0.00000000 0.00000000 0.00000000 0.00000000## antipoverty 0.00000000 0.00000000 0.00000000 0.00000000## antsy 0.00000000 0.00000000 0.00000000 0.00000000## anymore 0.00000000 0.00000000 0.00000000 0.00000000## anyone^s 0.00000000 0.00000000 0.00000000 0.00000000## anytime 0.00000000 0.00000000 0.00000000 0.00000000## anyway 0.00000000 0.00000000 0.00000000 0.00000000## apartments 0.00000000 0.00000000 0.00000000 0.00000000## apathy 0.00000000 0.00000000 0.00000000 0.00000000## apollo 0.00000000 0.00000000 0.00000000 0.00000000## applaud 0.00000000 0.00000000 0.00000000 0.00000000## applauded 0.00000000 0.00000000 0.00000000 0.00000000## applications 0.00000000 0.00000000 0.00000000 0.00000000## apprenticeship 0.00000000 0.00000000 0.00000000 0.00000000## approaches 0.00000000 0.00000000 0.00000000 0.00000000## approval 0.00000000 0.00000000 0.00000000 0.00000000## april^s 0.00000000 0.00000000 0.00000000 0.00000000## arab-israeli 0.00000000 0.00000000 0.00000000 0.00000000## archaic 0.00000000 0.00000000 0.00000000 0.00000000## arguing 0.00000000 0.00000000 0.00000000 0.00000000## ariel 0.00000000 0.00000000 0.00000000 0.00000000## arlene 0.00000000 0.03247808 0.00000000 0.00000000## armored 0.00000000 0.00000000 0.00000000 0.00000000## arrivals 0.01783803 0.00000000 0.00000000 0.00000000## arrive 0.00000000 0.00000000 0.00000000 0.00000000## arrives 0.01783803 0.00000000 0.00000000 0.00000000## art 0.01783803 0.00000000 0.00000000 0.00000000## articles 0.00000000 0.00000000 0.00000000 0.01719099## artificial 0.00000000 0.00000000 0.00000000 0.00000000## artist 0.00000000 0.00000000 0.00000000 0.00000000## asbestos 0.00000000 0.00000000 0.00000000 0.00000000## ashcroft 0.00000000 0.00000000 0.00000000 0.00000000## aspect 0.00000000 0.00000000 0.00000000 0.00000000## aspects 0.00000000 0.00000000 0.00000000 0.00000000## aspires 0.00000000 0.00000000 0.00000000 0.00000000## assassin^s 0.00000000 0.00000000 0.00000000 0.01719099## assassinated 0.00000000 0.00000000 0.00000000 0.00000000## assault 0.00000000 0.00000000 0.00000000 0.00000000## assaulted 0.00000000 0.00000000 0.00000000 0.00000000## asserting 0.00000000 0.00000000 0.00000000 0.00000000## asset 0.00000000 0.00000000 0.00000000 0.00000000## assimilates 0.01783803 0.00000000 0.00000000 0.00000000## assisted 0.00000000 0.00000000 0.00000000 0.01719099## associate^s 0.00000000 0.00000000 0.00000000 0.00000000## assuming 0.00000000 0.00000000 0.00000000 0.00000000## assumptions 0.01783803 0.00000000 0.00000000 0.00000000## assuring 0.00000000 0.00000000 0.00000000 0.00000000## astronauts 0.00000000 0.00000000 0.00000000 0.00000000## at-risk 0.00000000 0.00000000 0.00000000 0.00000000## athification 0.00000000 0.00000000 0.00000000 0.01719099## athist 0.00000000 0.00000000 0.00000000 0.00000000## athletics 0.00000000 0.00000000 0.00000000 0.00000000## attached 0.00000000 0.00000000 0.00000000 0.00000000## attackers 0.00000000 0.00000000 0.00000000 0.00000000## attempts 0.00000000 0.00000000 0.01831502 0.00000000## attitudes 0.00000000 0.00000000 0.00000000 0.00000000## attorneys 0.00000000 0.00000000 0.00000000 0.00000000## aurora 0.00000000 0.00000000 0.00000000 0.00000000## austin 0.00000000 0.00000000 0.00000000 0.00000000## authorized 0.00000000 0.00000000 0.00000000 0.00000000## authorizing 0.00000000 0.00000000 0.00000000 0.00000000## authors 0.00000000 0.00000000 0.00000000 0.00000000## automated 0.00000000 0.00000000 0.00000000 0.00000000## automatic 0.00000000 0.00000000 0.00000000 0.00000000## automatically 0.00000000 0.00000000 0.00000000 0.00000000## autoworker 0.00000000 0.00000000 0.00000000 0.00000000## avenue 0.00000000 0.00000000 0.00000000 0.00000000## avenues 0.00000000 0.00000000 0.00000000 0.01719099## aviation 0.00000000 0.00000000 0.00000000 0.00000000## avoidance 0.00000000 0.00000000 0.00000000 0.00000000## avoided 0.00000000 0.00000000 0.00000000 0.00000000## avoids 0.00000000 0.00000000 0.00000000 0.00000000## awakened 0.00000000 0.03247808 0.00000000 0.00000000## awakening 0.00000000 0.00000000 0.00000000 0.01719099## awarded 0.01783803 0.00000000 0.00000000 0.00000000## awed 0.00000000 0.00000000 0.00000000 0.00000000## awful 0.00000000 0.00000000 0.00000000 0.00000000## awoke 0.00000000 0.00000000 0.00000000 0.00000000## ayad 0.00000000 0.00000000 0.00000000 0.00000000## az 0.00000000 0.00000000 0.00000000 0.00000000## backing 0.00000000 0.00000000 0.00000000 0.01719099## backsliding 0.01783803 0.00000000 0.00000000 0.00000000## backwards 0.00000000 0.00000000 0.00000000 0.00000000## bacteria 0.00000000 0.00000000 0.00000000 0.00000000## bag 0.00000000 0.00000000 0.00000000 0.00000000## bahrain 0.00000000 0.00000000 0.00000000 0.00000000## bailing 0.00000000 0.00000000 0.00000000 0.00000000## bailout 0.00000000 0.00000000 0.00000000 0.00000000## balances 0.00000000 0.00000000 0.00000000 0.00000000## bali 0.00000000 0.00000000 0.00000000 0.00000000## baltimore 0.01783803 0.00000000 0.00000000 0.00000000## band 0.00000000 0.00000000 0.00000000 0.00000000## bang 0.00000000 0.00000000 0.00000000 0.00000000## banker 0.00000000 0.00000000 0.00000000 0.00000000## bankers 0.00000000 0.00000000 0.00000000 0.00000000## banking 0.00000000 0.03247808 0.00000000 0.00000000## bankroll 0.00000000 0.00000000 0.00000000 0.00000000## bankrolled 0.00000000 0.00000000 0.00000000 0.00000000## banner 0.01783803 0.00000000 0.00000000 0.00000000## bar 0.00000000 0.00000000 0.00000000 0.00000000## barkeep 0.00000000 0.00000000 0.00000000 0.00000000## barrels 0.00000000 0.00000000 0.00000000 0.00000000## basement 0.01783803 0.00000000 0.00000000 0.00000000## basest 0.00000000 0.00000000 0.00000000 0.00000000## bashing 0.00000000 0.00000000 0.00000000 0.00000000## basically 0.00000000 0.00000000 0.00000000 0.00000000## basketball 0.01783803 0.00000000 0.00000000 0.00000000## battalions 0.00000000 0.00000000 0.00000000 0.01719099## battling 0.00000000 0.00000000 0.00000000 0.00000000## beard 0.00000000 0.03247808 0.00000000 0.00000000## bears 0.00000000 0.00000000 0.00000000 0.00000000## beaten 0.00000000 0.00000000 0.00000000 0.00000000## beauty 0.00000000 0.00000000 0.00000000 0.00000000## beginnings 0.00000000 0.00000000 0.00000000 0.00000000## begrudge 0.00000000 0.00000000 0.00000000 0.00000000## behead 0.00000000 0.00000000 0.00000000 0.00000000## beings 0.00000000 0.00000000 0.00000000 0.00000000## belongs 0.00000000 0.00000000 0.00000000 0.00000000## belt 0.00000000 0.00000000 0.00000000 0.00000000## belts 0.00000000 0.00000000 0.00000000 0.00000000## benchmarks 0.01783803 0.00000000 0.00000000 0.00000000## beneficial 0.00000000 0.00000000 0.00000000 0.00000000## beneficiaries 0.00000000 0.00000000 0.00000000 0.00000000## benefitted 0.00000000 0.00000000 0.00000000 0.00000000## berlin^s 0.00000000 0.03247808 0.00000000 0.00000000## beside 0.00000000 0.00000000 0.00000000 0.00000000## beslan 0.00000000 0.00000000 0.00000000 0.00000000## betray 0.00000000 0.00000000 0.00000000 0.00000000## betraying 0.00000000 0.00000000 0.00000000 0.00000000## betrays 0.00000000 0.00000000 0.00000000 0.00000000## bias 0.00000000 0.00000000 0.00000000 0.01719099## bickering 0.00000000 0.00000000 0.00000000 0.00000000## biden^s 0.00000000 0.00000000 0.00000000 0.00000000## big-hearted 0.00000000 0.00000000 0.00000000 0.00000000## billion-dollar 0.00000000 0.00000000 0.00000000 0.00000000## bush_31012008 obama_08092011 obama_09092009 obama_12012016## the 5.14445480 3.86615419 3.95604396 4.49863678## and 4.82758621 4.06963599 3.51648352 3.57467434## to 3.26188257 3.30092697 2.78951817 3.22629506## of 3.48555452 1.89916346 2.67117498 2.51438958## a 2.10624418 1.87655437 1.52155537 1.84792487## in 2.57222740 1.51480895 1.36939983 1.65101484## we 1.97576887 1.74089984 1.03127642 1.87821872## our 2.01304753 1.06262718 0.76077768 1.45410482## that 1.23019571 1.71829075 2.23161454 1.89336565## is 1.17427773 0.63305449 1.03127642 1.09057861## for 0.59645853 1.46959078 1.21724429 0.89366859## will 1.11835974 1.08523626 1.08199493 0.39382005## this 0.59645853 1.40176351 1.13271344 0.63617086## i 0.55917987 0.58783631 0.82840237 0.78764011## have 0.63373719 0.90436355 0.77768385 0.57558316## are 0.67101584 0.79131811 0.74387151 0.43926083## on 0.44734390 0.54261813 0.65934066 0.66646471## it 0.44734390 1.06262718 1.04818259 0.92396244## with 0.54054054 0.47479087 0.42265427 0.40896698## not 0.48462255 0.42957269 0.67624683 0.60587701## more 0.44734390 0.45218178 0.47337278 0.34837928## their 0.39142591 0.65566358 0.55790363 0.40896698## you 0.26095061 0.61044540 0.74387151 0.48470161## by 0.67101584 0.52000904 0.50718512 0.30293850## be 0.42870457 0.67827267 0.87912088 0.37867313## as 0.24231128 0.36174542 0.33812342 0.51499546## but 0.26095061 0.36174542 0.45646661 0.60587701## america 0.70829450 0.40696360 0.06762468 0.42411390## from 0.44734390 0.22609089 0.33812342 0.22720388## they 0.37278658 0.56522722 0.38884193 0.39382005## can 0.29822926 0.61044540 0.45646661 0.28779158## people 0.39142591 0.40696360 0.20287405 0.40896698## who 0.27958993 0.54261813 0.55790363 0.62102393## all 0.35414725 0.40696360 0.30431107 0.34837928## or 0.42870457 0.29391816 0.55790363 0.78764011## has 0.46598322 0.29391816 0.27049873 0.22720388## so 0.35414725 0.27130907 0.16906171 0.31808543## us 0.41006524 0.36174542 0.25359256 0.51499546## new 0.24231128 0.24869998 0.08453085 0.28779158## now 0.13047530 0.47479087 0.60862215 0.40896698## american 0.33550792 0.33913633 0.16906171 0.33323235## at 0.27958993 0.27130907 0.27049873 0.19691003## do 0.13047530 0.47479087 0.32121724 0.34837928## americans 0.18639329 0.29391816 0.33812342 0.22720388## an 0.27958993 0.47479087 0.28740490 0.13632233## health 0.11183597 0.11304544 1.23415046 0.21205695## than 0.31686859 0.15826362 0.27049873 0.19691003## congress 0.24231128 0.27130907 0.23668639 0.12117540## every 0.22367195 0.33913633 0.15215554 0.24235080## years 0.20503262 0.09043636 0.10143702 0.27264465## country 0.31686859 0.33913633 0.11834320 0.18176310## economy 0.29822926 0.38435451 0.08453085 0.28779158## these 0.20503262 0.15826362 0.37193576 0.15146925## work 0.13047530 0.38435451 0.11834320 0.33323235## one 0.20503262 0.22609089 0.40574810 0.13632233## world 0.50326188 0.18087271 0.00000000 0.34837928## make 0.20503262 0.29391816 0.10143702 0.30293850## must 0.37278658 0.02260909 0.06762468 0.00000000## jobs 0.11183597 0.85914538 0.03381234 0.12117540## year 0.20503262 0.15826362 0.16906171 0.25749773## them 0.05591799 0.18087271 0.11834320 0.19691003## care 0.07455732 0.09043636 0.96365173 0.22720388## when 0.09319664 0.11304544 0.38884193 0.36352620## government 0.20503262 0.29391816 0.37193576 0.06058770## if 0.09319664 0.58783631 0.35502959 0.31808543## that^s 0.00000000 0.40696360 0.20287405 0.59073008## no 0.13047530 0.13565453 0.25359256 0.15146925## because 0.24231128 0.09043636 0.28740490 0.25749773## what 0.07455732 0.27130907 0.33812342 0.21205695## tax 0.14911463 0.67827267 0.10143702 0.04544078## help 0.09319664 0.18087271 0.11834320 0.09088155## security 0.16775396 0.09043636 0.11834320 0.19691003## energy 0.13047530 0.00000000 0.00000000 0.19691003## tonight 0.20503262 0.18087271 0.10143702 0.09088155## time 0.09319664 0.20348180 0.20287405 0.13632233## education 0.03727866 0.11304544 0.00000000 0.22720388## need 0.14911463 0.22609089 0.10143702 0.22720388## should 0.09319664 0.47479087 0.15215554 0.24235080## those 0.11183597 0.09043636 0.50718512 0.15146925## it^s 0.01863933 0.24869998 0.30431107 0.46955468## also 0.27958993 0.18087271 0.16906171 0.15146925## know 0.14911463 0.18087271 0.16906171 0.13632233## some 0.05591799 0.29391816 0.35502959 0.19691003## nation 0.27958993 0.15826362 0.08453085 0.07573463## up 0.09319664 0.22609089 0.23668639 0.27264465## my 0.11183597 0.06782727 0.18596788 0.12117540## right 0.05591799 0.54261813 0.10143702 0.19691003## just 0.03727866 0.13565453 0.30431107 0.37867313## get 0.05591799 0.22609089 0.25359256 0.18176310## many 0.09319664 0.13565453 0.27049873 0.09088155## like 0.14911463 0.06782727 0.20287405 0.19691003## efforts 0.07455732 0.15826362 0.10143702 0.18176310## about 0.24231128 0.13565453 0.25359256 0.16661618## over 0.07455732 0.09043636 0.15215554 0.21205695## there 0.16775396 0.24869998 0.38884193 0.28779158## he 0.03727866 0.11304544 0.27049873 0.13632233## reform 0.13047530 0.15826362 0.28740490 0.07573463## was 0.05591799 0.02260909 0.27049873 0.09088155## been 0.14911463 0.33913633 0.21978022 0.12117540## we^re 0.18639329 0.22609089 0.00000000 0.13632233## s 0.01863933 0.15826362 0.08453085 0.13632233## your 0.11183597 0.11304544 0.25359256 0.06058770## insurance 0.05591799 0.13565453 1.23415046 0.09088155## here 0.09319664 0.33913633 0.21978022 0.09088155## would 0.16775396 0.27130907 0.42265427 0.06058770## out 0.09319664 0.18087271 0.18596788 0.27264465## we^ve 0.11183597 0.11304544 0.11834320 0.25749773## national 0.09319664 0.15826362 0.03381234 0.19691003## states 0.14911463 0.11304544 0.10143702 0.10602848## last 0.13047530 0.04521818 0.10143702 0.07573463## u 0.00000000 0.13565453 0.06762468 0.12117540## future 0.13047530 0.15826362 0.11834320 0.19691003## want 0.05591799 0.13565453 0.13524937 0.28779158## own 0.20503262 0.11304544 0.10143702 0.07573463## united 0.13047530 0.09043636 0.05071851 0.06058770## only 0.18639329 0.11304544 0.25359256 0.15146925## businesses 0.03727866 0.22609089 0.27049873 0.06058770## his 0.07455732 0.04521818 0.27049873 0.15146925## why 0.00000000 0.09043636 0.11834320 0.13632233## most 0.09319664 0.20348180 0.13524937 0.16661618## iraq 0.11183597 0.00000000 0.05071851 0.06058770## other 0.11183597 0.09043636 0.11834320 0.10602848## where 0.01863933 0.29391816 0.05071851 0.10602848## good 0.13047530 0.11304544 0.06762468 0.09088155## way 0.11183597 0.13565453 0.13524937 0.19691003## how 0.05591799 0.22609089 0.20287405 0.22720388## its 0.14911463 0.00000000 0.06762468 0.09088155## job 0.01863933 0.24869998 0.11834320 0.19691003## plan 0.03727866 0.33913633 0.52409129 0.03029385## together 0.11183597 0.06782727 0.11834320 0.13632233## next 0.05591799 0.18087271 0.03381234 0.13632233## families 0.05591799 0.06782727 0.03381234 0.12117540## take 0.11183597 0.09043636 0.08453085 0.10602848## president 0.09319664 0.15826362 0.11834320 0.10602848## come 0.11183597 0.06782727 0.06762468 0.07573463## even 0.07455732 0.04521818 0.11834320 0.25749773## federal 0.11183597 0.13565453 0.06762468 0.01514693## children 0.13047530 0.02260909 0.08453085 0.01514693## act 0.18639329 0.22609089 0.03381234 0.07573463## business 0.03727866 0.29391816 0.10143702 0.10602848## back 0.05591799 0.20348180 0.06762468 0.16661618## budget 0.05591799 0.04521818 0.06762468 0.04544078## first 0.09319664 0.04521818 0.11834320 0.06058770## great 0.16775396 0.04521818 0.06762468 0.04544078## workers 0.03727866 0.29391816 0.08453085 0.13632233## better 0.11183597 0.00000000 0.15215554 0.22720388## keep 0.11183597 0.09043636 0.06762468 0.12117540## into 0.05591799 0.09043636 0.05071851 0.07573463## support 0.18639329 0.04521818 0.06762468 0.06058770## war 0.03727866 0.02260909 0.01690617 0.12117540## give 0.05591799 0.13565453 0.05071851 0.12117540## don^t 0.01863933 0.13565453 0.21978022 0.21205695## me 0.07455732 0.00000000 0.13524937 0.12117540## system 0.05591799 0.04521818 0.28740490 0.13632233## terrorists 0.11183597 0.00000000 0.00000000 0.06058770## medical 0.05591799 0.02260909 0.40574810 0.13632233## let^s 0.00000000 0.06782727 0.00000000 0.04544078## weapons 0.05591799 0.00000000 0.00000000 0.01514693## ask 0.11183597 0.11304544 0.00000000 0.03029385## citizens 0.16775396 0.02260909 0.03381234 0.06058770## home 0.07455732 0.02260909 0.00000000 0.01514693## still 0.03727866 0.02260909 0.28740490 0.12117540## could 0.11183597 0.11304544 0.10143702 0.04544078## forces 0.07455732 0.00000000 0.06762468 0.04544078## freedom 0.27958993 0.00000000 0.03381234 0.03029385## against 0.13047530 0.02260909 0.08453085 0.06058770## before 0.11183597 0.04521818 0.06762468 0.07573463## million 0.05591799 0.00000000 0.01690617 0.04544078## too 0.03727866 0.06782727 0.20287405 0.06058770## i^m 0.03727866 0.02260909 0.11834320 0.15146925## day 0.11183597 0.04521818 0.05071851 0.06058770## military 0.14911463 0.00000000 0.03381234 0.07573463## change 0.05591799 0.02260909 0.08453085 0.28779158## law 0.07455732 0.02260909 0.03381234 0.06058770## money 0.01863933 0.13565453 0.06762468 0.07573463## down 0.05591799 0.04521818 0.13524937 0.06058770## middle 0.11183597 0.13565453 0.05071851 0.07573463## nuclear 0.05591799 0.00000000 0.00000000 0.03029385## put 0.07455732 0.20348180 0.05071851 0.04544078## today 0.07455732 0.02260909 0.08453085 0.03029385## industry 0.00000000 0.22609089 0.03381234 0.06058770## made 0.07455732 0.11304544 0.05071851 0.12117540## power 0.09319664 0.02260909 0.01690617 0.10602848## america^s 0.09319664 0.09043636 0.01690617 0.07573463## state 0.05591799 0.02260909 0.01690617 0.12117540## let 0.09319664 0.06782727 0.11834320 0.10602848## women 0.13047530 0.06782727 0.01690617 0.00000000## working 0.09319664 0.09043636 0.00000000 0.06058770## al 0.07455732 0.00000000 0.00000000 0.07573463## companies 0.00000000 0.36174542 0.40574810 0.03029385## men 0.13047530 0.06782727 0.01690617 0.00000000## continue 0.09319664 0.04521818 0.01690617 0.01514693## same 0.11183597 0.04521818 0.15215554 0.09088155## any 0.01863933 0.06782727 0.18596788 0.07573463## free 0.01863933 0.06782727 0.00000000 0.00000000## had 0.00000000 0.11304544 0.08453085 0.06058770## life 0.18639329 0.02260909 0.01690617 0.06058770## medicare 0.03727866 0.13565453 0.30431107 0.03029385## house 0.05591799 0.13565453 0.06762468 0.06058770## pass 0.05591799 0.40696360 0.01690617 0.06058770## see 0.03727866 0.06782727 0.01690617 0.24235080## afghanistan 0.05591799 0.00000000 0.03381234 0.01514693## nations 0.09319664 0.00000000 0.00000000 0.04544078## believe 0.03727866 0.09043636 0.16906171 0.15146925## coverage 0.03727866 0.00000000 0.49027895 0.04544078## protect 0.05591799 0.00000000 0.03381234 0.04544078## sure 0.03727866 0.11304544 0.01690617 0.09088155## yet 0.18639329 0.00000000 0.00000000 0.00000000## deficit 0.01863933 0.11304544 0.11834320 0.01514693## go 0.00000000 0.06782727 0.11834320 0.09088155## never 0.14911463 0.04521818 0.05071851 0.00000000## through 0.05591799 0.00000000 0.03381234 0.04544078## were 0.03727866 0.02260909 0.10143702 0.04544078## without 0.05591799 0.00000000 0.13524937 0.09088155## best 0.01863933 0.11304544 0.06762468 0.10602848## can^t 0.00000000 0.15826362 0.16906171 0.09088155## end 0.07455732 0.00000000 0.05071851 0.04544078## meet 0.03727866 0.20348180 0.06762468 0.01514693## millions 0.03727866 0.15826362 0.10143702 0.01514693## schools 0.01863933 0.06782727 0.00000000 0.00000000## spending 0.09319664 0.18087271 0.05071851 0.00000000## economic 0.13047530 0.09043636 0.01690617 0.10602848## pay 0.00000000 0.11304544 0.18596788 0.06058770## lives 0.03727866 0.04521818 0.01690617 0.03029385## peace 0.11183597 0.00000000 0.01690617 0.01514693## small 0.03727866 0.11304544 0.15215554 0.01514693## social 0.05591799 0.02260909 0.03381234 0.06058770## after 0.00000000 0.00000000 0.06762468 0.07573463## already 0.01863933 0.13565453 0.08453085 0.03029385## cut 0.07455732 0.27130907 0.01690617 0.09088155## programs 0.03727866 0.06782727 0.05071851 0.04544078## taxes 0.01863933 0.11304544 0.01690617 0.03029385## which 0.11183597 0.06782727 0.06762468 0.01514693## school 0.05591799 0.06782727 0.00000000 0.04544078## while 0.05591799 0.15826362 0.03381234 0.01514693## done 0.00000000 0.02260909 0.01690617 0.10602848## percent 0.05591799 0.02260909 0.11834320 0.03029385## union 0.05591799 0.02260909 0.00000000 0.09088155## fight 0.16775396 0.04521818 0.00000000 0.03029385## i^ve 0.00000000 0.13565453 0.10143702 0.06058770## making 0.03727866 0.11304544 0.05071851 0.01514693## qaida 0.07455732 0.00000000 0.00000000 0.07573463## we^ll 0.01863933 0.04521818 0.03381234 0.04544078## hard 0.00000000 0.04521818 0.06762468 0.07573463## office 0.05591799 0.06782727 0.03381234 0.07573463## college 0.00000000 0.04521818 0.00000000 0.04544078## goal 0.11183597 0.00000000 0.05071851 0.01514693## members 0.16775396 0.04521818 0.06762468 0.01514693## two 0.14911463 0.02260909 0.01690617 0.00000000## chamber 0.01863933 0.06782727 0.08453085 0.06058770## child 0.05591799 0.02260909 0.03381234 0.03029385## lead 0.18639329 0.02260909 0.01690617 0.04544078## leaders 0.05591799 0.09043636 0.00000000 0.03029385## long 0.03727866 0.06782727 0.06762468 0.06058770## responsibility 0.07455732 0.02260909 0.05071851 0.00000000## across 0.03727866 0.06782727 0.01690617 0.01514693## international 0.01863933 0.02260909 0.00000000 0.07573463## may 0.03727866 0.00000000 0.10143702 0.09088155## opportunity 0.07455732 0.02260909 0.05071851 0.09088155## page 0.13047530 0.00000000 0.00000000 0.00000000## again 0.07455732 0.09043636 0.00000000 0.01514693## away 0.03727866 0.24869998 0.05071851 0.06058770## build 0.07455732 0.15826362 0.05071851 0.04544078## laughter 0.03727866 0.04521818 0.00000000 0.16661618## set 0.03727866 0.06782727 0.05071851 0.07573463## she 0.00000000 0.00000000 0.03381234 0.06058770## terror 0.11183597 0.00000000 0.01690617 0.00000000## use 0.09319664 0.02260909 0.03381234 0.04544078## another 0.11183597 0.06782727 0.05071851 0.04544078## bill 0.00000000 0.33913633 0.06762468 0.00000000## both 0.13047530 0.09043636 0.06762468 0.01514693## each 0.01863933 0.00000000 0.05071851 0.07573463## much 0.01863933 0.04521818 0.08453085 0.06058770## oil 0.05591799 0.02260909 0.00000000 0.07573463## program 0.05591799 0.04521818 0.06762468 0.07573463## research 0.13047530 0.04521818 0.00000000 0.07573463## terrorist 0.11183597 0.00000000 0.00000000 0.10602848## hope 0.14911463 0.02260909 0.01690617 0.01514693## past 0.05591799 0.13565453 0.06762468 0.13632233## strong 0.03727866 0.02260909 0.01690617 0.04544078## democracy 0.05591799 0.00000000 0.03381234 0.10602848## her 0.00000000 0.00000000 0.06762468 0.03029385## high 0.03727866 0.02260909 0.00000000 0.03029385## history 0.13047530 0.02260909 0.03381234 0.06058770## iraqi 0.11183597 0.00000000 0.00000000 0.00000000## technology 0.07455732 0.04521818 0.00000000 0.03029385## address 0.05591799 0.04521818 0.06762468 0.04544078## ago 0.01863933 0.00000000 0.03381234 0.03029385## needs 0.07455732 0.04521818 0.03381234 0.07573463## rights 0.03727866 0.02260909 0.01690617 0.10602848## young 0.03727866 0.06782727 0.01690617 0.06058770## community 0.00000000 0.06782727 0.00000000 0.06058770## costs 0.03727866 0.02260909 0.20287405 0.03029385## higher 0.01863933 0.00000000 0.01690617 0.03029385## part 0.01863933 0.02260909 0.13524937 0.04544078## place 0.00000000 0.02260909 0.06762468 0.07573463## public 0.09319664 0.06782727 0.15215554 0.04544078## since 0.05591799 0.04521818 0.11834320 0.03029385## trade 0.05591799 0.09043636 0.00000000 0.00000000## troops 0.03727866 0.00000000 0.00000000 0.04544078## unemployment 0.00000000 0.20348180 0.01690617 0.13632233## washington 0.05591799 0.11304544 0.05071851 0.06058770## bring 0.05591799 0.00000000 0.03381234 0.00000000## chance 0.01863933 0.02260909 0.00000000 0.06058770## cost 0.05591799 0.06782727 0.11834320 0.04544078## global 0.03727866 0.09043636 0.00000000 0.04544078## training 0.00000000 0.06782727 0.00000000 0.06058770## administration 0.00000000 0.04521818 0.05071851 0.03029385## clean 0.01863933 0.00000000 0.01690617 0.03029385## financial 0.00000000 0.02260909 0.03381234 0.01514693## nearly 0.03727866 0.00000000 0.03381234 0.07573463## progress 0.05591799 0.00000000 0.03381234 0.07573463## always 0.07455732 0.06782727 0.08453085 0.03029385## afford 0.03727866 0.13565453 0.11834320 0.01514693## benefits 0.01863933 0.02260909 0.05071851 0.06058770## create 0.00000000 0.11304544 0.01690617 0.01514693## ever 0.00000000 0.00000000 0.03381234 0.04544078## fellow 0.11183597 0.02260909 0.00000000 0.07573463## thank 0.03727866 0.02260909 0.05071851 0.04544078## they^re 0.03727866 0.04521818 0.01690617 0.04544078## countries 0.00000000 0.00000000 0.00000000 0.07573463## credit 0.01863933 0.06782727 0.05071851 0.00000000## growth 0.03727866 0.04521818 0.03381234 0.03029385## iran 0.07455732 0.00000000 0.00000000 0.04544078## said 0.01863933 0.02260909 0.01690617 0.01514693## save 0.05591799 0.04521818 0.00000000 0.06058770## vote 0.03727866 0.00000000 0.00000000 0.12117540## cuts 0.03727866 0.11304544 0.03381234 0.04544078## housing 0.01863933 0.11304544 0.00000000 0.00000000## retirement 0.03727866 0.04521818 0.00000000 0.10602848## students 0.01863933 0.00000000 0.01690617 0.03029385## allies 0.05591799 0.00000000 0.01690617 0.06058770## different 0.00000000 0.04521818 0.00000000 0.06058770## east 0.09319664 0.00000000 0.00000000 0.04544078## human 0.11183597 0.00000000 0.06762468 0.03029385## live 0.05591799 0.06782727 0.01690617 0.04544078## number 0.03727866 0.06782727 0.01690617 0.03029385## provide 0.03727866 0.09043636 0.21978022 0.01514693## stand 0.01863933 0.00000000 0.06762468 0.04544078## threat 0.00000000 0.00000000 0.00000000 0.03029385## defense 0.00000000 0.00000000 0.01690617 0.00000000## foreign 0.00000000 0.00000000 0.00000000 0.07573463## growing 0.03727866 0.02260909 0.01690617 0.03029385## off 0.05591799 0.06782727 0.01690617 0.03029385## saddam 0.00000000 0.00000000 0.00000000 0.00000000## well 0.07455732 0.06782727 0.05071851 0.04544078## century 0.00000000 0.00000000 0.01690617 0.03029385## debt 0.00000000 0.06782727 0.00000000 0.01514693## fair 0.00000000 0.11304544 0.01690617 0.04544078## relief 0.07455732 0.04521818 0.01690617 0.01514693## republicans 0.00000000 0.15826362 0.05071851 0.00000000## crisis 0.01863933 0.13565453 0.01690617 0.04544078## did 0.05591799 0.04521818 0.05071851 0.07573463## recovery 0.00000000 0.02260909 0.03381234 0.00000000## say 0.01863933 0.00000000 0.06762468 0.07573463## seen 0.01863933 0.02260909 0.08453085 0.00000000## send 0.00000000 0.02260909 0.00000000 0.03029385## start 0.05591799 0.06782727 0.01690617 0.06058770## hussein 0.00000000 0.00000000 0.00000000 0.00000000## kids 0.00000000 0.09043636 0.00000000 0.07573463## reforms 0.03727866 0.04521818 0.08453085 0.04544078## science 0.11183597 0.04521818 0.00000000 0.07573463## secure 0.07455732 0.00000000 0.00000000 0.03029385## single 0.03727866 0.02260909 0.00000000 0.06058770## sources 0.07455732 0.00000000 0.00000000 0.04544078## values 0.03727866 0.00000000 0.00000000 0.00000000## class 0.00000000 0.13565453 0.03381234 0.01514693## democrats 0.00000000 0.13565453 0.05071851 0.00000000## does 0.00000000 0.02260909 0.03381234 0.03029385## half 0.11183597 0.04521818 0.03381234 0.01514693## policy 0.00000000 0.00000000 0.05071851 0.04544078## terrorism 0.05591799 0.00000000 0.00000000 0.04544078## ahead 0.00000000 0.00000000 0.03381234 0.01514693## aids 0.11183597 0.00000000 0.00000000 0.03029385## clear 0.03727866 0.04521818 0.05071851 0.01514693## commitment 0.03727866 0.02260909 0.00000000 0.04544078## dollars 0.01863933 0.09043636 0.06762468 0.01514693## enough 0.01863933 0.00000000 0.01690617 0.01514693## helping 0.07455732 0.04521818 0.01690617 0.03029385## market 0.00000000 0.02260909 0.05071851 0.00000000## passed 0.03727866 0.06782727 0.05071851 0.00000000## safe 0.03727866 0.00000000 0.01690617 0.06058770## show 0.11183597 0.02260909 0.03381234 0.06058770## things 0.00000000 0.06782727 0.10143702 0.06058770## around 0.00000000 0.04521818 0.01690617 0.06058770## find 0.01863933 0.00000000 0.05071851 0.03029385## forward 0.05591799 0.00000000 0.06762468 0.00000000## funding 0.03727866 0.00000000 0.00000000 0.01514693## important 0.00000000 0.00000000 0.00000000 0.06058770## intelligence 0.01863933 0.00000000 0.00000000 0.01514693## issue 0.00000000 0.02260909 0.08453085 0.01514693## share 0.01863933 0.06782727 0.01690617 0.01514693## speaker 0.01863933 0.04521818 0.03381234 0.07573463## able 0.01863933 0.04521818 0.11834320 0.01514693## behind 0.05591799 0.00000000 0.01690617 0.04544078## between 0.01863933 0.04521818 0.03381234 0.06058770## family 0.01863933 0.04521818 0.01690617 0.04544078## finally 0.00000000 0.00000000 0.08453085 0.01514693## gas 0.00000000 0.02260909 0.00000000 0.03029385## generation 0.05591799 0.02260909 0.01690617 0.01514693## immigration 0.03727866 0.00000000 0.00000000 0.03029385## income 0.00000000 0.00000000 0.00000000 0.03029385## invest 0.03727866 0.04521818 0.00000000 0.01514693## others 0.05591799 0.02260909 0.06762468 0.04544078## private 0.01863933 0.06782727 0.10143702 0.03029385## seniors 0.00000000 0.00000000 0.13524937 0.00000000## serve 0.07455732 0.00000000 0.00000000 0.00000000## action 0.05591799 0.09043636 0.05071851 0.03029385## billion 0.07455732 0.00000000 0.01690617 0.00000000## cannot 0.05591799 0.00000000 0.05071851 0.01514693## control 0.05591799 0.00000000 0.01690617 0.06058770## everyone 0.01863933 0.15826362 0.06762468 0.03029385## god 0.01863933 0.06782727 0.03381234 0.03029385## instead 0.00000000 0.00000000 0.01690617 0.04544078## justice 0.11183597 0.02260909 0.01690617 0.06058770## means 0.01863933 0.00000000 0.05071851 0.06058770## reduce 0.05591799 0.04521818 0.03381234 0.01514693## under 0.03727866 0.02260909 0.05071851 0.04544078## basic 0.03727866 0.06782727 0.06762468 0.07573463## big 0.01863933 0.04521818 0.06762468 0.12117540## challenges 0.03727866 0.02260909 0.01690617 0.03029385## communities 0.00000000 0.06782727 0.00000000 0.06058770## effort 0.01863933 0.00000000 0.00000000 0.01514693## employees 0.01863933 0.06782727 0.05071851 0.00000000## face 0.03727866 0.04521818 0.01690617 0.04544078## few 0.03727866 0.04521818 0.05071851 0.03029385## idea 0.00000000 0.15826362 0.10143702 0.01514693## leadership 0.07455732 0.00000000 0.00000000 0.12117540## look 0.03727866 0.06782727 0.00000000 0.06058770## months 0.00000000 0.11304544 0.10143702 0.00000000## possible 0.00000000 0.09043636 0.00000000 0.01514693## steps 0.01863933 0.06782727 0.01690617 0.03029385## thousands 0.00000000 0.06782727 0.01690617 0.03029385## veterans 0.00000000 0.09043636 0.00000000 0.03029385## vice 0.01863933 0.04521818 0.03381234 0.04544078## affordable 0.03727866 0.00000000 0.15215554 0.04544078## agree 0.00000000 0.04521818 0.00000000 0.09088155## attacks 0.05591799 0.00000000 0.00000000 0.06058770## going 0.03727866 0.11304544 0.00000000 0.15146925## increase 0.07455732 0.04521818 0.00000000 0.00000000## once 0.01863933 0.06782727 0.00000000 0.01514693## strengthen 0.05591799 0.04521818 0.00000000 0.01514693## stronger 0.07455732 0.00000000 0.00000000 0.03029385## thing 0.01863933 0.11304544 0.01690617 0.09088155## trust 0.01863933 0.00000000 0.03381234 0.01514693## being 0.03727866 0.02260909 0.01690617 0.03029385## courage 0.07455732 0.00000000 0.00000000 0.01514693## days 0.00000000 0.00000000 0.03381234 0.00000000## deserve 0.03727866 0.00000000 0.00000000 0.01514693## doing 0.00000000 0.04521818 0.00000000 0.07573463## friends 0.07455732 0.00000000 0.06762468 0.00000000## got 0.00000000 0.02260909 0.00000000 0.12117540## left 0.05591799 0.02260909 0.05071851 0.01514693## manufacturing 0.00000000 0.06782727 0.00000000 0.04544078## move 0.07455732 0.00000000 0.08453085 0.00000000## politics 0.01863933 0.06782727 0.01690617 0.13632233## sent 0.00000000 0.02260909 0.01690617 0.00000000## standards 0.05591799 0.02260909 0.00000000 0.00000000## strengthening 0.01863933 0.04521818 0.01690617 0.00000000## success 0.03727866 0.00000000 0.00000000 0.00000000## access 0.00000000 0.00000000 0.03381234 0.01514693## cause 0.05591799 0.00000000 0.01690617 0.01514693## choose 0.07455732 0.04521818 0.03381234 0.00000000## comes 0.03727866 0.02260909 0.03381234 0.06058770## development 0.01863933 0.00000000 0.00000000 0.04544078## greater 0.00000000 0.00000000 0.06762468 0.01514693## less 0.01863933 0.00000000 0.06762468 0.06058770## man 0.00000000 0.04521818 0.01690617 0.00000000## recession 0.00000000 0.02260909 0.01690617 0.01514693## africa 0.00000000 0.00000000 0.00000000 0.07573463## building 0.01863933 0.06782727 0.00000000 0.01514693## called 0.03727866 0.02260909 0.05071851 0.01514693## code 0.00000000 0.11304544 0.00000000 0.01514693## company 0.00000000 0.04521818 0.10143702 0.01514693## department 0.01863933 0.00000000 0.03381234 0.01514693## employment 0.00000000 0.13565453 0.01690617 0.07573463## including 0.01863933 0.04521818 0.01690617 0.01514693## innovation 0.03727866 0.00000000 0.00000000 0.01514693## makes 0.03727866 0.00000000 0.05071851 0.06058770## open 0.05591799 0.00000000 0.05071851 0.04544078## raise 0.05591799 0.11304544 0.00000000 0.01514693## regime 0.03727866 0.00000000 0.00000000 0.00000000## regulations 0.00000000 0.13565453 0.00000000 0.01514693## stop 0.00000000 0.06782727 0.00000000 0.03029385## there^s 0.00000000 0.06782727 0.03381234 0.03029385## threats 0.01863933 0.00000000 0.00000000 0.00000000## am 0.07455732 0.06782727 0.03381234 0.00000000## biden 0.00000000 0.02260909 0.03381234 0.03029385## built 0.00000000 0.04521818 0.00000000 0.04544078## challenge 0.05591799 0.02260909 0.06762468 0.01514693## decade 0.01863933 0.00000000 0.05071851 0.01514693## decades 0.03727866 0.04521818 0.03381234 0.01514693## grow 0.01863933 0.11304544 0.03381234 0.00000000## improvement 0.00000000 0.06782727 0.00000000 0.06058770## liberty 0.07455732 0.02260909 0.01690617 0.01514693## parents 0.01863933 0.02260909 0.00000000 0.00000000## parties 0.09319664 0.02260909 0.03381234 0.03029385## problem 0.07455732 0.00000000 0.11834320 0.06058770## promise 0.03727866 0.00000000 0.01690617 0.03029385## rules 0.00000000 0.09043636 0.00000000 0.04544078## savings 0.01863933 0.02260909 0.08453085 0.01514693## service 0.01863933 0.00000000 0.03381234 0.00000000## taken 0.05591799 0.02260909 0.03381234 0.03029385## white 0.01863933 0.04521818 0.03381234 0.03029385## abroad 0.05591799 0.00000000 0.00000000 0.01514693## applause 0.00000000 0.04521818 0.01690617 0.09088155## confidence 0.01863933 0.02260909 0.03381234 0.01514693## defend 0.01863933 0.00000000 0.00000000 0.01514693## democratic 0.05591799 0.00000000 0.03381234 0.00000000## drug 0.07455732 0.00000000 0.05071851 0.03029385## enemies 0.07455732 0.00000000 0.00000000 0.03029385## everything 0.00000000 0.09043636 0.03381234 0.10602848## full 0.01863933 0.02260909 0.05071851 0.00000000## john 0.01863933 0.06782727 0.08453085 0.00000000## leave 0.03727866 0.04521818 0.01690617 0.03029385## math 0.09319664 0.04521818 0.00000000 0.03029385## matter 0.00000000 0.02260909 0.03381234 0.07573463## mission 0.01863933 0.00000000 0.00000000 0.04544078## ourselves 0.01863933 0.04521818 0.03381234 0.04544078## postsecondary 0.00000000 0.02260909 0.00000000 0.04544078## prevent 0.03727866 0.04521818 0.01690617 0.01514693## seek 0.09319664 0.00000000 0.06762468 0.01514693## such 0.03727866 0.00000000 0.06762468 0.03029385## used 0.03727866 0.02260909 0.06762468 0.00000000## agreement 0.00000000 0.09043636 0.01690617 0.06058770## bipartisan 0.03727866 0.00000000 0.00000000 0.04544078## colleges 0.00000000 0.09043636 0.03381234 0.01514693## course 0.00000000 0.00000000 0.01690617 0.01514693## ensure 0.05591799 0.00000000 0.03381234 0.01514693## environment 0.01863933 0.00000000 0.00000000 0.06058770## example 0.00000000 0.04521818 0.03381234 0.03029385## fact 0.00000000 0.02260909 0.03381234 0.04544078## given 0.01863933 0.00000000 0.03381234 0.00000000## north 0.01863933 0.02260909 0.00000000 0.00000000## nothing 0.03727866 0.04521818 0.11834320 0.00000000## organization 0.01863933 0.09043636 0.00000000 0.04544078## paid 0.00000000 0.11304544 0.06762468 0.03029385## propose 0.05591799 0.02260909 0.00000000 0.00000000## prosperity 0.05591799 0.02260909 0.01690617 0.01514693## republican 0.01863933 0.09043636 0.08453085 0.01514693## require 0.01863933 0.04521818 0.03381234 0.01514693## september 0.03727866 0.02260909 0.01690617 0.01514693## student 0.00000000 0.00000000 0.00000000 0.09088155## teachers 0.01863933 0.15826362 0.00000000 0.01514693## technologies 0.03727866 0.00000000 0.00000000 0.03029385## then 0.00000000 0.00000000 0.03381234 0.07573463## times 0.01863933 0.04521818 0.05071851 0.00000000## almost 0.01863933 0.00000000 0.01690617 0.06058770## bless 0.01863933 0.04521818 0.03381234 0.03029385## call 0.01863933 0.00000000 0.01690617 0.03029385## civil 0.01863933 0.02260909 0.01690617 0.07573463## created 0.01863933 0.00000000 0.00000000 0.03029385## doesn^t 0.00000000 0.00000000 0.01690617 0.12117540## enforcement 0.03727866 0.00000000 0.00000000 0.03029385## faith 0.01863933 0.02260909 0.00000000 0.01514693## happen 0.00000000 0.04521818 0.05071851 0.09088155## ideas 0.00000000 0.04521818 0.13524937 0.00000000## laws 0.01863933 0.02260909 0.03381234 0.01514693## legislation 0.01863933 0.02260909 0.00000000 0.01514693## lower 0.00000000 0.04521818 0.01690617 0.00000000## markets 0.03727866 0.00000000 0.03381234 0.01514693## rates 0.01863933 0.06782727 0.03381234 0.01514693## skills 0.01863933 0.04521818 0.00000000 0.00000000## tell 0.00000000 0.06782727 0.01690617 0.03029385## took 0.00000000 0.00000000 0.00000000 0.01514693## violence 0.00000000 0.00000000 0.00000000 0.04544078## worked 0.00000000 0.00000000 0.06762468 0.03029385## climate 0.00000000 0.00000000 0.00000000 0.07573463## him 0.00000000 0.00000000 0.03381234 0.12117540## hire 0.00000000 0.20348180 0.00000000 0.01514693## information 0.01863933 0.00000000 0.00000000 0.00000000## korea 0.01863933 0.09043636 0.00000000 0.00000000## reach 0.03727866 0.00000000 0.00000000 0.03029385## secretary 0.01863933 0.02260909 0.05071851 0.01514693## session 0.01863933 0.06782727 0.06762468 0.01514693## speak 0.03727866 0.00000000 0.03381234 0.03029385## spirit 0.03727866 0.00000000 0.00000000 0.07573463## strength 0.01863933 0.00000000 0.00000000 0.04544078## very 0.01863933 0.02260909 0.01690617 0.03029385## begin 0.00000000 0.02260909 0.00000000 0.00000000## coming 0.01863933 0.00000000 0.00000000 0.04544078## enemy 0.07455732 0.00000000 0.00000000 0.00000000## expansion 0.01863933 0.02260909 0.00000000 0.00000000## far 0.05591799 0.02260909 0.00000000 0.03029385## focus 0.00000000 0.00000000 0.01690617 0.04544078## fund 0.01863933 0.02260909 0.03381234 0.01514693## join 0.03727866 0.00000000 0.00000000 0.01514693## lot 0.00000000 0.04521818 0.01690617 0.13632233## m 0.01863933 0.02260909 0.08453085 0.01514693## offer 0.03727866 0.06782727 0.10143702 0.00000000## race 0.00000000 0.06782727 0.00000000 0.01514693## rest 0.00000000 0.00000000 0.05071851 0.03029385## spend 0.01863933 0.02260909 0.03381234 0.01514693## taxation 0.00000000 0.11304544 0.01690617 0.01514693## th 0.03727866 0.00000000 0.00000000 0.00000000## think 0.00000000 0.02260909 0.01690617 0.07573463## wage 0.00000000 0.00000000 0.00000000 0.07573463## within 0.03727866 0.02260909 0.01690617 0.04544078## won^t 0.00000000 0.02260909 0.05071851 0.06058770## armed 0.00000000 0.00000000 0.00000000 0.01514693## china 0.01863933 0.04521818 0.00000000 0.01514693## decisions 0.03727866 0.00000000 0.00000000 0.04544078## generations 0.00000000 0.00000000 0.01690617 0.04544078## improve 0.03727866 0.04521818 0.03381234 0.03029385## infrastructure 0.00000000 0.02260909 0.00000000 0.01514693## initiative 0.07455732 0.02260909 0.01690617 0.00000000## investment 0.00000000 0.02260909 0.00000000 0.01514693## medicaid 0.03727866 0.06782727 0.11834320 0.01514693## mr 0.01863933 0.04521818 0.00000000 0.04544078## person 0.00000000 0.00000000 0.01690617 0.03029385## places 0.03727866 0.04521818 0.01690617 0.01514693## political 0.03727866 0.06782727 0.01690617 0.07573463## problems 0.01863933 0.04521818 0.00000000 0.01514693## proposed 0.00000000 0.02260909 0.08453085 0.00000000## rate 0.00000000 0.02260909 0.01690617 0.04544078## responsible 0.03727866 0.02260909 0.01690617 0.01514693## second 0.03727866 0.00000000 0.03381234 0.04544078## society 0.14911463 0.00000000 0.01690617 0.03029385## top 0.00000000 0.02260909 0.00000000 0.01514693## understand 0.01863933 0.02260909 0.03381234 0.03029385## achieve 0.03727866 0.00000000 0.01690617 0.03029385## asking 0.00000000 0.04521818 0.00000000 0.00000000## capitol 0.03727866 0.02260909 0.01690617 0.01514693## drugs 0.00000000 0.00000000 0.01690617 0.00000000## elections 0.05591799 0.04521818 0.00000000 0.04544078## encourage 0.07455732 0.00000000 0.03381234 0.00000000## fighting 0.07455732 0.00000000 0.00000000 0.04544078## force 0.01863933 0.00000000 0.00000000 0.03029385## former 0.00000000 0.00000000 0.06762468 0.01514693## investments 0.00000000 0.02260909 0.00000000 0.00000000## respect 0.07455732 0.00000000 0.00000000 0.03029385## rising 0.05591799 0.02260909 0.01690617 0.01514693## sense 0.01863933 0.00000000 0.03381234 0.00000000## serious 0.03727866 0.00000000 0.03381234 0.04544078## something 0.00000000 0.02260909 0.05071851 0.06058770## treatment 0.00000000 0.00000000 0.03381234 0.04544078## until 0.03727866 0.00000000 0.05071851 0.03029385## whether 0.00000000 0.09043636 0.01690617 0.06058770## words 0.01863933 0.02260909 0.01690617 0.06058770## additional 0.01863933 0.04521818 0.03381234 0.00000000## afghan 0.00000000 0.00000000 0.00000000 0.00000000## alone 0.07455732 0.00000000 0.00000000 0.04544078## asked 0.00000000 0.02260909 0.03381234 0.00000000## assistance 0.01863933 0.02260909 0.00000000 0.03029385## coalition 0.03727866 0.00000000 0.01690617 0.03029385## commerce 0.01863933 0.02260909 0.00000000 0.03029385## confront 0.07455732 0.00000000 0.00000000 0.00000000## difficult 0.01863933 0.02260909 0.03381234 0.01514693## doctors 0.01863933 0.00000000 0.10143702 0.01514693## earth 0.01863933 0.04521818 0.01690617 0.03029385## everybody 0.00000000 0.02260909 0.08453085 0.09088155## expand 0.01863933 0.00000000 0.00000000 0.01514693## joint 0.01863933 0.06782727 0.05071851 0.03029385## known 0.00000000 0.00000000 0.01690617 0.00000000## longer 0.03727866 0.00000000 0.03381234 0.01514693## promote 0.00000000 0.00000000 0.00000000 0.01514693## receive 0.00000000 0.00000000 0.01690617 0.00000000## south 0.00000000 0.09043636 0.00000000 0.00000000## told 0.00000000 0.00000000 0.01690617 0.06058770## trying 0.00000000 0.02260909 0.03381234 0.04544078## urge 0.05591799 0.00000000 0.00000000 0.00000000## willing 0.01863933 0.02260909 0.01690617 0.01514693## world^s 0.00000000 0.00000000 0.00000000 0.01514693## allow 0.00000000 0.04521818 0.00000000 0.01514693## banks 0.00000000 0.00000000 0.00000000 0.01514693## debate 0.01863933 0.00000000 0.06762468 0.01514693## didn^t 0.00000000 0.00000000 0.01690617 0.03029385## fear 0.07455732 0.00000000 0.01690617 0.03029385## folks 0.00000000 0.02260909 0.01690617 0.04544078## hold 0.00000000 0.00000000 0.03381234 0.03029385## incentives 0.00000000 0.11304544 0.00000000 0.00000000## issues 0.01863933 0.02260909 0.01690617 0.07573463## old 0.03727866 0.02260909 0.01690617 0.01514693## point 0.03727866 0.00000000 0.06762468 0.04544078## poverty 0.01863933 0.02260909 0.00000000 0.04544078## proud 0.03727866 0.02260909 0.00000000 0.00000000## stay 0.03727866 0.04521818 0.01690617 0.01514693## strategy 0.01863933 0.00000000 0.00000000 0.01514693## taking 0.00000000 0.00000000 0.00000000 0.03029385## three 0.01863933 0.02260909 0.06762468 0.01514693## trillion 0.00000000 0.06782727 0.01690617 0.00000000## true 0.01863933 0.00000000 0.08453085 0.04544078## approach 0.01863933 0.02260909 0.00000000 0.06058770## danger 0.01863933 0.00000000 0.01690617 0.01514693## expect 0.01863933 0.02260909 0.01690617 0.00000000## highest 0.00000000 0.02260909 0.00000000 0.00000000## honor 0.13047530 0.00000000 0.00000000 0.00000000## kind 0.01863933 0.13565453 0.00000000 0.06058770## largest 0.00000000 0.04521818 0.00000000 0.01514693## loans 0.01863933 0.02260909 0.00000000 0.01514693## love 0.05591799 0.00000000 0.01690617 0.07573463## message 0.00000000 0.02260909 0.00000000 0.01514693## p 0.01863933 0.02260909 0.01690617 0.01514693## products 0.00000000 0.06782727 0.00000000 0.01514693## r 0.01863933 0.02260909 0.08453085 0.01514693## region 0.00000000 0.00000000 0.00000000 0.01514693## russia 0.00000000 0.00000000 0.00000000 0.01514693## side 0.00000000 0.04521818 0.01690617 0.00000000## step 0.01863933 0.04521818 0.03381234 0.00000000## street 0.00000000 0.00000000 0.00000000 0.01514693## struggle 0.01863933 0.02260909 0.01690617 0.00000000## turn 0.03727866 0.02260909 0.00000000 0.00000000## vital 0.05591799 0.00000000 0.00000000 0.01514693## ways 0.00000000 0.02260909 0.00000000 0.06058770## what^s 0.00000000 0.09043636 0.01690617 0.04544078## accounts 0.01863933 0.00000000 0.00000000 0.04544078## attack 0.03727866 0.00000000 0.00000000 0.01514693## border 0.03727866 0.00000000 0.00000000 0.00000000## came 0.00000000 0.02260909 0.05071851 0.00000000## choice 0.00000000 0.00000000 0.05071851 0.03029385## choices 0.03727866 0.04521818 0.01690617 0.03029385## commission 0.03727866 0.00000000 0.03381234 0.00000000## comprehensive 0.00000000 0.00000000 0.01690617 0.01514693## corporate 0.00000000 0.09043636 0.01690617 0.03029385## getting 0.00000000 0.04521818 0.00000000 0.04544078## helped 0.03727866 0.00000000 0.00000000 0.01514693## inspectors 0.00000000 0.00000000 0.00000000 0.00000000## leading 0.01863933 0.00000000 0.00000000 0.01514693## living 0.03727866 0.02260909 0.00000000 0.01514693## lost 0.03727866 0.00000000 0.01690617 0.01514693## medicine 0.01863933 0.00000000 0.03381234 0.00000000## might 0.00000000 0.00000000 0.00000000 0.06058770## natural 0.03727866 0.00000000 0.00000000 0.01514693## necessary 0.01863933 0.00000000 0.00000000 0.01514693## remains 0.01863933 0.02260909 0.03381234 0.00000000## remember 0.00000000 0.02260909 0.00000000 0.00000000## resources 0.01863933 0.00000000 0.00000000 0.04544078## return 0.01863933 0.00000000 0.01690617 0.00000000## run 0.01863933 0.02260909 0.01690617 0.01514693## senate 0.01863933 0.00000000 0.03381234 0.00000000## small-business 0.01863933 0.09043636 0.00000000 0.00000000## spoke 0.01863933 0.02260909 0.05071851 0.01514693## succeed 0.01863933 0.00000000 0.01690617 0.00000000## wages 0.00000000 0.02260909 0.01690617 0.03029385## week 0.00000000 0.09043636 0.01690617 0.00000000## woman 0.01863933 0.00000000 0.01690617 0.01514693## you^re 0.00000000 0.02260909 0.01690617 0.00000000## add 0.01863933 0.02260909 0.03381234 0.00000000## alternative 0.07455732 0.00000000 0.00000000 0.01514693## beyond 0.01863933 0.02260909 0.00000000 0.01514693## bills 0.01863933 0.00000000 0.05071851 0.03029385## buy 0.03727866 0.02260909 0.01690617 0.00000000## cars 0.03727866 0.02260909 0.00000000 0.00000000## common 0.00000000 0.00000000 0.01690617 0.01514693## compassion 0.07455732 0.00000000 0.00000000 0.00000000## competitiveness 0.03727866 0.11304544 0.00000000 0.00000000## determined 0.03727866 0.00000000 0.01690617 0.01514693## develop 0.01863933 0.00000000 0.01690617 0.00000000## diplomacy 0.00000000 0.00000000 0.00000000 0.01514693## dream 0.03727866 0.00000000 0.00000000 0.00000000## dreams 0.01863933 0.00000000 0.00000000 0.00000000## during 0.00000000 0.02260909 0.05071851 0.01514693## duty 0.03727866 0.00000000 0.00000000 0.00000000## election 0.01863933 0.04521818 0.03381234 0.03029385## equal 0.03727866 0.00000000 0.00000000 0.04544078## especially 0.01863933 0.00000000 0.08453085 0.07573463## giving 0.00000000 0.02260909 0.01690617 0.01514693## groups 0.01863933 0.00000000 0.01690617 0.00000000## homes 0.01863933 0.02260909 0.01690617 0.00000000## hopeful 0.16775396 0.00000000 0.00000000 0.01514693## kill 0.00000000 0.00000000 0.05071851 0.01514693## leader 0.01863933 0.04521818 0.00000000 0.01514693## long-term 0.03727866 0.06782727 0.01690617 0.01514693## materials 0.00000000 0.00000000 0.00000000 0.00000000## moment 0.00000000 0.04521818 0.03381234 0.00000000## month 0.01863933 0.00000000 0.01690617 0.03029385## often 0.01863933 0.02260909 0.00000000 0.01514693## people^s 0.01863933 0.02260909 0.05071851 0.00000000## prescription 0.00000000 0.00000000 0.03381234 0.01514693## quality 0.01863933 0.00000000 0.05071851 0.00000000## real 0.00000000 0.04521818 0.00000000 0.03029385## reason 0.00000000 0.00000000 0.05071851 0.03029385## record 0.01863933 0.00000000 0.01690617 0.03029385## reduction 0.00000000 0.00000000 0.00000000 0.01514693## renewable 0.00000000 0.00000000 0.00000000 0.01514693## requires 0.11183597 0.00000000 0.03381234 0.01514693## sanctions 0.00000000 0.00000000 0.00000000 0.01514693## sick 0.00000000 0.00000000 0.10143702 0.03029385## solar 0.01863933 0.00000000 0.00000000 0.03029385## solve 0.00000000 0.04521818 0.05071851 0.03029385## works 0.00000000 0.02260909 0.05071851 0.03029385## agenda 0.03727866 0.00000000 0.01690617 0.01514693## along 0.01863933 0.00000000 0.00000000 0.00000000## arms 0.00000000 0.00000000 0.00000000 0.00000000## bad 0.01863933 0.00000000 0.01690617 0.03029385## close 0.00000000 0.02260909 0.03381234 0.04544078## construction 0.00000000 0.13565453 0.00000000 0.00000000## dcpd 0.00000000 0.04521818 0.03381234 0.03029385## deliver 0.05591799 0.00000000 0.06762468 0.01514693## developing 0.01863933 0.02260909 0.00000000 0.01514693## dignity 0.01863933 0.02260909 0.00000000 0.00000000## easy 0.00000000 0.00000000 0.00000000 0.03029385## elected 0.03727866 0.00000000 0.00000000 0.07573463## found 0.01863933 0.00000000 0.01690617 0.00000000## i^ll 0.00000000 0.06782727 0.00000000 0.04544078## institutions 0.09319664 0.00000000 0.00000000 0.00000000## interests 0.03727866 0.02260909 0.01690617 0.04544078## iraqis 0.07455732 0.00000000 0.00000000 0.00000000## january 0.01863933 0.00000000 0.01690617 0.01514693## kennedy 0.01863933 0.02260909 0.18596788 0.00000000## labor 0.00000000 0.11304544 0.00000000 0.03029385## level 0.01863933 0.00000000 0.00000000 0.03029385## mass 0.05591799 0.00000000 0.00000000 0.00000000## nation^s 0.03727866 0.02260909 0.00000000 0.00000000## order 0.00000000 0.04521818 0.00000000 0.01514693## paying 0.00000000 0.00000000 0.01690617 0.01514693## personal 0.03727866 0.00000000 0.00000000 0.00000000## produce 0.01863933 0.00000000 0.00000000 0.03029385## production 0.00000000 0.00000000 0.00000000 0.01514693## referred 0.01863933 0.02260909 0.01690617 0.03029385## says 0.00000000 0.02260909 0.00000000 0.01514693## simple 0.00000000 0.06782727 0.01690617 0.01514693## soon 0.00000000 0.00000000 0.01690617 0.01514693## special 0.05591799 0.02260909 0.01690617 0.01514693## tough 0.01863933 0.00000000 0.00000000 0.01514693## toward 0.09319664 0.00000000 0.00000000 0.00000000## wall 0.00000000 0.00000000 0.01690617 0.01514693## win 0.03727866 0.02260909 0.00000000 0.00000000## advanced 0.01863933 0.04521818 0.01690617 0.00000000## age 0.00000000 0.00000000 0.00000000 0.00000000## asia 0.00000000 0.00000000 0.00000000 0.03029385## combat 0.00000000 0.00000000 0.01690617 0.00000000## compete 0.05591799 0.02260909 0.05071851 0.00000000## competitive 0.14911463 0.02260909 0.01690617 0.00000000## dangerous 0.03727866 0.00000000 0.00000000 0.01514693## differences 0.03727866 0.04521818 0.00000000 0.00000000## domestic 0.00000000 0.02260909 0.00000000 0.00000000## double 0.01863933 0.00000000 0.01690617 0.00000000## eliminate 0.01863933 0.02260909 0.01690617 0.00000000## executive 0.00000000 0.02260909 0.05071851 0.00000000## further 0.01863933 0.00000000 0.01690617 0.00000000## group 0.00000000 0.00000000 0.01690617 0.03029385## illegal 0.00000000 0.00000000 0.03381234 0.00000000## knows 0.00000000 0.06782727 0.06762468 0.03029385## local 0.00000000 0.02260909 0.00000000 0.01514693## marriage 0.01863933 0.00000000 0.00000000 0.00000000## none 0.00000000 0.00000000 0.00000000 0.03029385## party 0.00000000 0.06782727 0.00000000 0.03029385## path 0.01863933 0.00000000 0.01690617 0.03029385## pays 0.00000000 0.04521818 0.01690617 0.01514693## priorities 0.01863933 0.02260909 0.00000000 0.03029385## process 0.00000000 0.06782727 0.00000000 0.04544078## promotion 0.00000000 0.02260909 0.00000000 0.03029385## rise 0.00000000 0.00000000 0.00000000 0.01514693## supporting 0.00000000 0.00000000 0.00000000 0.01514693## task 0.00000000 0.02260909 0.00000000 0.01514693## thanks 0.01863933 0.00000000 0.03381234 0.00000000## third 0.03727866 0.00000000 0.00000000 0.03029385## yes 0.00000000 0.04521818 0.03381234 0.04544078## actions 0.00000000 0.00000000 0.00000000 0.03029385## break 0.03727866 0.02260909 0.00000000 0.00000000## campaign 0.00000000 0.00000000 0.01690617 0.03029385## character 0.05591799 0.00000000 0.06762468 0.00000000## chief 0.01863933 0.02260909 0.01690617 0.00000000## city 0.00000000 0.00000000 0.00000000 0.01514693## competition 0.01863933 0.04521818 0.06762468 0.01514693## creating 0.05591799 0.00000000 0.01690617 0.00000000## crime 0.07455732 0.00000000 0.00000000 0.03029385## dc 0.01863933 0.02260909 0.01690617 0.01514693## effective 0.00000000 0.00000000 0.00000000 0.00000000## evidence 0.01863933 0.00000000 0.00000000 0.00000000## evil 0.03727866 0.00000000 0.00000000 0.01514693## fall 0.00000000 0.00000000 0.00000000 0.06058770## fix 0.00000000 0.02260909 0.03381234 0.01514693## homeland 0.01863933 0.00000000 0.00000000 0.00000000## individuals 0.03727866 0.00000000 0.15215554 0.01514693## little 0.01863933 0.00000000 0.01690617 0.04544078## lose 0.00000000 0.00000000 0.11834320 0.03029385## neighbors 0.01863933 0.02260909 0.01690617 0.00000000## note 0.01863933 0.02260909 0.01690617 0.01514693## parts 0.01863933 0.00000000 0.00000000 0.04544078## presidential 0.03727866 0.02260909 0.00000000 0.00000000## proposal 0.01863933 0.15826362 0.01690617 0.00000000## proposing 0.00000000 0.00000000 0.06762468 0.00000000## question 0.00000000 0.06782727 0.01690617 0.03029385## remain 0.05591799 0.00000000 0.05071851 0.00000000## remarks 0.01863933 0.02260909 0.01690617 0.03029385## result 0.00000000 0.02260909 0.01690617 0.03029385## saw 0.00000000 0.00000000 0.00000000 0.04544078## scientists 0.00000000 0.00000000 0.00000000 0.01514693## shouldn^t 0.00000000 0.02260909 0.05071851 0.04544078## sign 0.00000000 0.00000000 0.08453085 0.00000000## syria 0.01863933 0.00000000 0.00000000 0.06058770## train 0.03727866 0.02260909 0.00000000 0.00000000## air 0.00000000 0.00000000 0.00000000 0.01514693## anyone 0.00000000 0.04521818 0.01690617 0.01514693## aren^t 0.00000000 0.00000000 0.01690617 0.03029385## average 0.00000000 0.02260909 0.03381234 0.04544078## based 0.01863933 0.02260909 0.03381234 0.00000000## begun 0.00000000 0.00000000 0.00000000 0.00000000## chemical 0.00000000 0.00000000 0.00000000 0.00000000## death 0.07455732 0.00000000 0.01690617 0.00000000## depends 0.03727866 0.00000000 0.00000000 0.04544078## destruction 0.03727866 0.00000000 0.00000000 0.00000000## earn 0.00000000 0.02260909 0.00000000 0.00000000## europe 0.03727866 0.02260909 0.00000000 0.00000000## exports 0.00000000 0.02260909 0.00000000 0.00000000## extremists 0.00000000 0.00000000 0.00000000 0.00000000## friend 0.00000000 0.00000000 0.06762468 0.00000000## gets 0.01863933 0.09043636 0.05071851 0.01514693## greatest 0.01863933 0.02260909 0.00000000 0.00000000## hand 0.00000000 0.00000000 0.03381234 0.01514693## hard-working 0.00000000 0.00000000 0.00000000 0.06058770## interest 0.01863933 0.04521818 0.01690617 0.03029385## internet 0.00000000 0.04521818 0.00000000 0.04544078## iraq^s 0.00000000 0.00000000 0.00000000 0.00000000## israel 0.01863933 0.00000000 0.00000000 0.00000000## jr 0.00000000 0.02260909 0.06762468 0.01514693## least 0.00000000 0.04521818 0.00000000 0.00000000## major 0.01863933 0.00000000 0.00000000 0.00000000## material 0.00000000 0.00000000 0.01690617 0.00000000## minimum 0.00000000 0.00000000 0.00000000 0.03029385## obama 0.00000000 0.02260909 0.01690617 0.01514693## opportunities 0.01863933 0.02260909 0.00000000 0.00000000## options 0.00000000 0.00000000 0.03381234 0.01514693## policies 0.01863933 0.02260909 0.05071851 0.00000000## projects 0.01863933 0.04521818 0.01690617 0.00000000## providing 0.01863933 0.02260909 0.01690617 0.03029385## purpose 0.00000000 0.02260909 0.00000000 0.00000000## recognize 0.03727866 0.00000000 0.00000000 0.03029385## resolve 0.00000000 0.02260909 0.01690617 0.01514693## risk 0.00000000 0.02260909 0.01690617 0.00000000## role 0.03727866 0.00000000 0.01690617 0.01514693## spent 0.01863933 0.06782727 0.05071851 0.00000000## story 0.03727866 0.02260909 0.00000000 0.01514693## talk 0.00000000 0.00000000 0.01690617 0.06058770## throughout 0.03727866 0.04521818 0.01690617 0.00000000## tomorrow 0.00000000 0.02260909 0.00000000 0.00000000## try 0.01863933 0.02260909 0.01690617 0.03029385## worker 0.03727866 0.00000000 0.00000000 0.01514693## worse 0.01863933 0.02260909 0.01690617 0.01514693## ability 0.00000000 0.00000000 0.01690617 0.00000000## accountability 0.00000000 0.00000000 0.00000000 0.00000000## beginning 0.01863933 0.02260909 0.03381234 0.00000000## bigger 0.00000000 0.02260909 0.00000000 0.01514693## borders 0.03727866 0.00000000 0.00000000 0.00000000## broken 0.00000000 0.00000000 0.00000000 0.03029385## deficits 0.01863933 0.00000000 0.01690617 0.01514693## deny 0.01863933 0.00000000 0.01690617 0.01514693## difference 0.03727866 0.02260909 0.00000000 0.00000000## disease 0.01863933 0.00000000 0.00000000 0.01514693## employers 0.00000000 0.00000000 0.05071851 0.00000000## entrepreneurs 0.00000000 0.04521818 0.01690617 0.00000000## faster 0.01863933 0.04521818 0.01690617 0.00000000## fully 0.00000000 0.00000000 0.00000000 0.00000000## gave 0.01863933 0.00000000 0.00000000 0.00000000## hit 0.01863933 0.04521818 0.00000000 0.01514693## learn 0.00000000 0.02260909 0.00000000 0.03029385## looking 0.00000000 0.04521818 0.03381234 0.00000000## patients 0.00000000 0.02260909 0.01690617 0.01514693## police 0.00000000 0.00000000 0.00000000 0.00000000## profits 0.00000000 0.02260909 0.03381234 0.01514693## representatives 0.00000000 0.02260909 0.01690617 0.03029385## responsibilities 0.00000000 0.09043636 0.00000000 0.00000000## road 0.05591799 0.00000000 0.01690617 0.00000000## test 0.01863933 0.02260909 0.03381234 0.00000000## they^ve 0.00000000 0.00000000 0.00000000 0.03029385## track 0.01863933 0.00000000 0.00000000 0.01514693## wait 0.01863933 0.00000000 0.00000000 0.01514693## whole 0.00000000 0.00000000 0.01690617 0.01514693## worst 0.00000000 0.06782727 0.03381234 0.04544078## york 0.00000000 0.00000000 0.00000000 0.01514693## become 0.01863933 0.00000000 0.01690617 0.01514693## biological 0.00000000 0.00000000 0.00000000 0.00000000## breaks 0.00000000 0.06782727 0.01690617 0.01514693## bringing 0.00000000 0.00000000 0.00000000 0.00000000## brought 0.00000000 0.02260909 0.00000000 0.00000000## cancer 0.00000000 0.00000000 0.06762468 0.04544078## changed 0.01863933 0.00000000 0.00000000 0.01514693## changes 0.01863933 0.02260909 0.01690617 0.07573463## changing 0.00000000 0.00000000 0.00000000 0.01514693## concerns 0.01863933 0.04521818 0.05071851 0.01514693## confident 0.07455732 0.00000000 0.00000000 0.01514693## creation 0.00000000 0.02260909 0.00000000 0.03029385## critical 0.01863933 0.00000000 0.00000000 0.01514693## current 0.00000000 0.02260909 0.00000000 0.00000000## demand 0.00000000 0.00000000 0.00000000 0.01514693## early 0.03727866 0.00000000 0.00000000 0.04544078## else 0.00000000 0.02260909 0.03381234 0.03029385## expanding 0.00000000 0.00000000 0.00000000 0.01514693## feel 0.01863933 0.00000000 0.00000000 0.06058770## fiscal 0.00000000 0.02260909 0.00000000 0.00000000## five 0.01863933 0.00000000 0.03381234 0.00000000## follow 0.00000000 0.00000000 0.00000000 0.00000000## gone 0.01863933 0.00000000 0.01690617 0.03029385## ground 0.01863933 0.00000000 0.01690617 0.00000000## he^s 0.00000000 0.00000000 0.00000000 0.04544078## hear 0.01863933 0.00000000 0.00000000 0.01514693## helps 0.00000000 0.02260909 0.00000000 0.01514693## hiv 0.07455732 0.00000000 0.00000000 0.03029385## hundreds 0.00000000 0.02260909 0.03381234 0.01514693## industries 0.00000000 0.02260909 0.00000000 0.00000000## intend 0.01863933 0.02260909 0.00000000 0.03029385## isn^t 0.00000000 0.04521818 0.00000000 0.01514693## jill 0.00000000 0.00000000 0.00000000 0.00000000## keeping 0.13047530 0.00000000 0.00000000 0.01514693## mean 0.00000000 0.04521818 0.00000000 0.03029385## met 0.00000000 0.00000000 0.00000000 0.00000000## mom 0.01863933 0.00000000 0.00000000 0.00000000## online 0.01863933 0.00000000 0.00000000 0.03029385## option 0.01863933 0.02260909 0.13524937 0.00000000## partners 0.00000000 0.02260909 0.00000000 0.00000000## pursue 0.01863933 0.00000000 0.00000000 0.01514693## rebuilding 0.01863933 0.02260909 0.00000000 0.01514693## results 0.00000000 0.00000000 0.00000000 0.01514693## safer 0.01863933 0.00000000 0.00000000 0.01514693## safety 0.00000000 0.04521818 0.01690617 0.00000000## spread 0.01863933 0.00000000 0.03381234 0.03029385## starting 0.00000000 0.02260909 0.00000000 0.01514693## stopped 0.03727866 0.04521818 0.00000000 0.03029385## takes 0.00000000 0.02260909 0.00000000 0.00000000## taxpayers 0.00000000 0.00000000 0.03381234 0.01514693## uniform 0.03727866 0.00000000 0.00000000 0.00000000## unless 0.00000000 0.00000000 0.01690617 0.00000000## upon 0.00000000 0.00000000 0.01690617 0.00000000## victory 0.09319664 0.00000000 0.00000000 0.00000000## whatever 0.00000000 0.00000000 0.00000000 0.03029385## wind 0.01863933 0.00000000 0.00000000 0.03029385## worth 0.03727866 0.00000000 0.05071851 0.01514693## account 0.00000000 0.00000000 0.00000000 0.00000000## achievement 0.01863933 0.00000000 0.00000000 0.00000000## advance 0.03727866 0.00000000 0.00000000 0.01514693## agents 0.00000000 0.00000000 0.00000000 0.00000000## allowed 0.01863933 0.00000000 0.00000000 0.03029385## available 0.00000000 0.00000000 0.05071851 0.00000000## began 0.00000000 0.00000000 0.00000000 0.00000000## brave 0.01863933 0.00000000 0.00000000 0.01514693## career 0.00000000 0.00000000 0.00000000 0.00000000## certain 0.01863933 0.00000000 0.00000000 0.00000000## committed 0.03727866 0.00000000 0.00000000 0.00000000## conflict 0.01863933 0.00000000 0.00000000 0.03029385## congressional 0.00000000 0.04521818 0.01690617 0.03029385## constitution 0.03727866 0.00000000 0.00000000 0.01514693## credits 0.00000000 0.04521818 0.01690617 0.00000000## debates 0.03727866 0.00000000 0.00000000 0.01514693## decline 0.03727866 0.02260909 0.00000000 0.03029385## diplomatic 0.01863933 0.00000000 0.00000000 0.01514693## easier 0.03727866 0.04521818 0.01690617 0.04544078## either 0.00000000 0.00000000 0.05071851 0.03029385## entire 0.01863933 0.00000000 0.01690617 0.01514693## equality 0.00000000 0.00000000 0.00000000 0.03029385## extend 0.00000000 0.00000000 0.00000000 0.00000000## fastest 0.00000000 0.00000000 0.00000000 0.00000000## fill 0.00000000 0.00000000 0.01690617 0.00000000## food 0.00000000 0.00000000 0.00000000 0.01514693## gives 0.01863933 0.00000000 0.01690617 0.03029385## killed 0.05591799 0.00000000 0.00000000 0.00000000## korean 0.00000000 0.00000000 0.00000000 0.00000000## later 0.00000000 0.00000000 0.03381234 0.01514693## lay 0.00000000 0.00000000 0.00000000 0.00000000## learning 0.00000000 0.00000000 0.00000000 0.00000000## lift 0.00000000 0.04521818 0.00000000 0.03029385## line 0.00000000 0.00000000 0.00000000 0.04544078## michelle 0.00000000 0.00000000 0.00000000 0.00000000## mortgage 0.00000000 0.04521818 0.00000000 0.00000000## murder 0.07455732 0.00000000 0.00000000 0.00000000## needed 0.00000000 0.02260909 0.00000000 0.00000000## networks 0.03727866 0.00000000 0.00000000 0.03029385## officers 0.00000000 0.00000000 0.00000000 0.00000000## ones 0.00000000 0.02260909 0.03381234 0.01514693## overseas 0.01863933 0.00000000 0.00000000 0.00000000## plans 0.01863933 0.00000000 0.01690617 0.00000000## prepare 0.00000000 0.00000000 0.00000000 0.00000000## prison 0.01863933 0.00000000 0.00000000 0.03029385## raising 0.03727866 0.02260909 0.00000000 0.03029385## rebuild 0.00000000 0.00000000 0.00000000 0.01514693## reducing 0.00000000 0.00000000 0.03381234 0.00000000## restore 0.00000000 0.04521818 0.00000000 0.01514693## sacrifice 0.00000000 0.00000000 0.00000000 0.00000000## services 0.00000000 0.02260909 0.06762468 0.01514693## size 0.00000000 0.00000000 0.06762468 0.01514693## source 0.00000000 0.00000000 0.01690617 0.00000000## st 0.00000000 0.00000000 0.00000000 0.01514693## standing 0.00000000 0.00000000 0.00000000 0.03029385## started 0.00000000 0.02260909 0.00000000 0.03029385## themselves 0.01863933 0.00000000 0.03381234 0.00000000## today^s 0.00000000 0.00000000 0.00000000 0.03029385## transportation 0.00000000 0.06782727 0.00000000 0.03029385## turned 0.01863933 0.00000000 0.01690617 0.01514693## welcome 0.03727866 0.00000000 0.00000000 0.01514693## you^ve 0.00000000 0.00000000 0.01690617 0.01514693## above 0.01863933 0.00000000 0.01690617 0.00000000## ambitions 0.01863933 0.00000000 0.00000000 0.00000000## areas 0.05591799 0.02260909 0.00000000 0.03029385## begins 0.01863933 0.00000000 0.00000000 0.03029385## biggest 0.00000000 0.02260909 0.00000000 0.04544078## burden 0.00000000 0.02260909 0.01690617 0.00000000## carbon 0.00000000 0.00000000 0.00000000 0.03029385## citizen 0.00000000 0.02260909 0.00000000 0.04544078## cleaner 0.01863933 0.00000000 0.00000000 0.00000000## cuba 0.00000000 0.00000000 0.00000000 0.04544078## customers 0.00000000 0.02260909 0.08453085 0.01514693## dangers 0.01863933 0.00000000 0.00000000 0.00000000## depend 0.00000000 0.00000000 0.00000000 0.01514693## deployment 0.00000000 0.00000000 0.03381234 0.00000000## destroyed 0.00000000 0.00000000 0.00000000 0.01514693## disarm 0.01863933 0.00000000 0.00000000 0.00000000## earned 0.00000000 0.00000000 0.00000000 0.00000000## failure 0.01863933 0.00000000 0.01690617 0.00000000## field 0.01863933 0.00000000 0.00000000 0.00000000## george 0.00000000 0.00000000 0.01690617 0.01514693## grateful 0.07455732 0.00000000 0.00000000 0.00000000## hands 0.03727866 0.00000000 0.00000000 0.03029385## here^s 0.00000000 0.06782727 0.01690617 0.00000000## hour 0.00000000 0.00000000 0.00000000 0.00000000## increased 0.00000000 0.00000000 0.00000000 0.01514693## isil 0.00000000 0.00000000 0.00000000 0.15146925## land 0.01863933 0.02260909 0.00000000 0.01514693## loopholes 0.00000000 0.06782727 0.00000000 0.00000000## munitions 0.00000000 0.00000000 0.00000000 0.00000000## names 0.00000000 0.02260909 0.01690617 0.03029385## officials 0.03727866 0.00000000 0.00000000 0.00000000## owners 0.00000000 0.06782727 0.00000000 0.00000000## payroll 0.00000000 0.09043636 0.00000000 0.00000000## permanent 0.05591799 0.02260909 0.00000000 0.01514693## play 0.00000000 0.02260909 0.01690617 0.04544078## pollution 0.00000000 0.02260909 0.00000000 0.01514693## prepared 0.00000000 0.00000000 0.00000000 0.00000000## presidency 0.01863933 0.02260909 0.01690617 0.03029385## press 0.01863933 0.02260909 0.00000000 0.01514693## prevention 0.00000000 0.00000000 0.00000000 0.04544078## prices 0.01863933 0.02260909 0.03381234 0.00000000## protecting 0.05591799 0.02260909 0.00000000 0.03029385## protection 0.03727866 0.00000000 0.01690617 0.01514693## relations 0.00000000 0.00000000 0.00000000 0.04544078## required 0.00000000 0.00000000 0.05071851 0.00000000## rule 0.01863933 0.02260909 0.00000000 0.01514693## sell 0.00000000 0.04521818 0.00000000 0.01514693## shape 0.01863933 0.00000000 0.01690617 0.03029385## simply 0.01863933 0.02260909 0.01690617 0.00000000## sound 0.00000000 0.00000000 0.00000000 0.01514693## stock 0.00000000 0.00000000 0.00000000 0.00000000## taliban 0.00000000 0.00000000 0.00000000 0.00000000## teacher 0.00000000 0.00000000 0.00000000 0.01514693## thousand 0.00000000 0.00000000 0.00000000 0.00000000## tools 0.01863933 0.00000000 0.00000000 0.03029385## tuition 0.00000000 0.02260909 0.00000000 0.00000000## universities 0.00000000 0.02260909 0.03381234 0.00000000## using 0.00000000 0.02260909 0.00000000 0.00000000## walk 0.00000000 0.00000000 0.00000000 0.00000000## wrong 0.01863933 0.00000000 0.01690617 0.01514693## you^ll 0.00000000 0.00000000 0.05071851 0.03029385## adding 0.00000000 0.02260909 0.00000000 0.00000000## agencies 0.00000000 0.02260909 0.00000000 0.00000000## agreements 0.00000000 0.02260909 0.00000000 0.00000000## aid 0.01863933 0.00000000 0.00000000 0.00000000## among 0.03727866 0.00000000 0.01690617 0.00000000## answer 0.01863933 0.00000000 0.00000000 0.06058770## authority 0.05591799 0.00000000 0.00000000 0.00000000## born 0.01863933 0.00000000 0.03381234 0.01514693## capital 0.00000000 0.02260909 0.01690617 0.00000000## center 0.00000000 0.00000000 0.00000000 0.00000000## charge 0.01863933 0.00000000 0.05071851 0.01514693## consumer 0.00000000 0.00000000 0.03381234 0.00000000## cooperation 0.00000000 0.00000000 0.00000000 0.01514693## cover 0.00000000 0.02260909 0.06762468 0.00000000## cutting 0.00000000 0.02260909 0.00000000 0.01514693## demands 0.01863933 0.00000000 0.00000000 0.00000000## directly 0.03727866 0.00000000 0.01690617 0.01514693## doubt 0.00000000 0.00000000 0.01690617 0.03029385## essential 0.03727866 0.00000000 0.01690617 0.00000000## faith-based 0.01863933 0.00000000 0.00000000 0.00000000## fewer 0.01863933 0.00000000 0.01690617 0.00000000## finish 0.03727866 0.00000000 0.00000000 0.01514693## forget 0.05591799 0.00000000 0.00000000 0.00000000## fuel 0.00000000 0.00000000 0.00000000 0.00000000## funds 0.00000000 0.00000000 0.00000000 0.01514693## grants 0.00000000 0.00000000 0.00000000 0.00000000## healthy 0.01863933 0.00000000 0.03381234 0.00000000## held 0.01863933 0.00000000 0.00000000 0.00000000## independent 0.00000000 0.02260909 0.03381234 0.00000000## influence 0.01863933 0.02260909 0.00000000 0.01514693## itself 0.01863933 0.00000000 0.00000000 0.01514693## joe 0.00000000 0.00000000 0.01690617 0.03029385## joseph 0.00000000 0.02260909 0.01690617 0.01514693## late 0.01863933 0.00000000 0.00000000 0.01514693## leads 0.00000000 0.00000000 0.00000000 0.00000000## lending 0.00000000 0.00000000 0.00000000 0.00000000## letter 0.01863933 0.00000000 0.00000000 0.00000000## lobbyists 0.00000000 0.02260909 0.00000000 0.00000000## majority 0.00000000 0.02260909 0.01690617 0.01514693## measures 0.00000000 0.00000000 0.00000000 0.00000000## naturalization 0.00000000 0.00000000 0.00000000 0.01514693## offensive 0.11183597 0.00000000 0.00000000 0.00000000## palestinian 0.03727866 0.00000000 0.00000000 0.00000000## partnership 0.00000000 0.00000000 0.00000000 0.03029385## paychecks 0.00000000 0.00000000 0.00000000 0.01514693## peaceful 0.03727866 0.00000000 0.00000000 0.01514693## per 0.00000000 0.00000000 0.05071851 0.00000000## planet 0.00000000 0.00000000 0.00000000 0.07573463## pledge 0.05591799 0.00000000 0.00000000 0.00000000## quickly 0.00000000 0.04521818 0.00000000 0.00000000## recently 0.00000000 0.00000000 0.00000000 0.00000000## reductions 0.00000000 0.02260909 0.01690617 0.00000000## released 0.01863933 0.00000000 0.00000000 0.01514693## review 0.00000000 0.04521818 0.00000000 0.00000000## reward 0.01863933 0.00000000 0.00000000 0.00000000## sector 0.00000000 0.00000000 0.00000000 0.04544078## senator 0.00000000 0.00000000 0.03381234 0.01514693## served 0.01863933 0.00000000 0.00000000 0.01514693## several 0.00000000 0.02260909 0.05071851 0.00000000## shared 0.00000000 0.00000000 0.00000000 0.00000000## showing 0.05591799 0.00000000 0.00000000 0.00000000## space 0.00000000 0.00000000 0.00000000 0.04544078## struggling 0.00000000 0.00000000 0.00000000 0.01514693## supported 0.00000000 0.13565453 0.03381234 0.01514693## surely 0.00000000 0.00000000 0.00000000 0.00000000## threaten 0.00000000 0.00000000 0.00000000 0.01514693## value 0.01863933 0.00000000 0.01690617 0.01514693## weeks 0.00000000 0.00000000 0.01690617 0.00000000## workforce 0.00000000 0.00000000 0.00000000 0.00000000## accept 0.01863933 0.00000000 0.01690617 0.01514693## added 0.00000000 0.00000000 0.01690617 0.00000000## anything 0.01863933 0.00000000 0.00000000 0.00000000## baghdad 0.00000000 0.00000000 0.00000000 0.00000000## base 0.00000000 0.00000000 0.00000000 0.03029385## benefit 0.00000000 0.02260909 0.03381234 0.00000000## bin 0.05591799 0.00000000 0.00000000 0.01514693## capacity 0.00000000 0.00000000 0.01690617 0.00000000## categories 0.00000000 0.02260909 0.01690617 0.01514693## civilians 0.00000000 0.00000000 0.00000000 0.03029385## complete 0.00000000 0.00000000 0.00000000 0.00000000## conditions 0.00000000 0.00000000 0.05071851 0.00000000## defeat 0.05591799 0.00000000 0.00000000 0.00000000## deserves 0.00000000 0.02260909 0.00000000 0.00000000## desire 0.01863933 0.00000000 0.00000000 0.00000000## distinguished 0.01863933 0.00000000 0.00000000 0.00000000## documents 0.01863933 0.00000000 0.00000000 0.00000000## drive 0.00000000 0.02260909 0.00000000 0.00000000## earmarks 0.00000000 0.02260909 0.00000000 0.00000000## effects 0.00000000 0.04521818 0.01690617 0.00000000## emergency 0.01863933 0.00000000 0.03381234 0.00000000## empower 0.00000000 0.00000000 0.00000000 0.00000000## ends 0.01863933 0.02260909 0.00000000 0.01514693## february 0.01863933 0.00000000 0.00000000 0.00000000## forced 0.00000000 0.00000000 0.01690617 0.00000000## forge 0.00000000 0.00000000 0.00000000 0.00000000## four 0.00000000 0.00000000 0.03381234 0.01514693## general 0.00000000 0.00000000 0.01690617 0.00000000## gift 0.03727866 0.00000000 0.00000000 0.00000000## girls 0.01863933 0.00000000 0.00000000 0.01514693## goes 0.00000000 0.00000000 0.05071851 0.00000000## goods 0.00000000 0.00000000 0.00000000 0.00000000## gov 0.01863933 0.00000000 0.00000000 0.00000000## governments 0.00000000 0.00000000 0.00000000 0.00000000## gun 0.00000000 0.00000000 0.00000000 0.03029385## having 0.03727866 0.00000000 0.01690617 0.00000000## high-speed 0.00000000 0.02260909 0.00000000 0.00000000## impact 0.01863933 0.00000000 0.03381234 0.00000000## includes 0.00000000 0.00000000 0.00000000 0.00000000## increasing 0.01863933 0.00000000 0.00000000 0.00000000## knew 0.01863933 0.00000000 0.03381234 0.00000000## laden 0.05591799 0.00000000 0.00000000 0.01514693## leaving 0.03727866 0.00000000 0.00000000 0.00000000## led 0.01863933 0.02260909 0.01690617 0.01514693## massive 0.01863933 0.00000000 0.00000000 0.00000000## operations 0.00000000 0.00000000 0.00000000 0.00000000## pakistan 0.00000000 0.00000000 0.00000000 0.01514693## passing 0.01863933 0.00000000 0.00000000 0.00000000## potential 0.00000000 0.00000000 0.00000000 0.00000000## powerful 0.00000000 0.00000000 0.00000000 0.03029385## priority 0.00000000 0.00000000 0.00000000 0.01514693## project 0.00000000 0.04521818 0.00000000 0.01514693## proposals 0.00000000 0.00000000 0.01690617 0.01514693## protections 0.00000000 0.04521818 0.03381234 0.01514693## putting 0.00000000 0.00000000 0.03381234 0.01514693## reading 0.00000000 0.00000000 0.00000000 0.00000000## reflect 0.01863933 0.00000000 0.00000000 0.04544078## renew 0.03727866 0.00000000 0.00000000 0.00000000## senior 0.00000000 0.00000000 0.01690617 0.00000000## son 0.00000000 0.00000000 0.01690617 0.03029385## stake 0.00000000 0.00000000 0.01690617 0.01514693## stands 0.00000000 0.02260909 0.00000000 0.00000000## streets 0.01863933 0.00000000 0.00000000 0.00000000## supports 0.01863933 0.00000000 0.00000000 0.00000000## tens 0.00000000 0.00000000 0.03381234 0.03029385## thought 0.00000000 0.00000000 0.01690617 0.01514693## unemployed 0.00000000 0.13565453 0.00000000 0.00000000## urgent 0.00000000 0.06782727 0.00000000 0.01514693## veto 0.01863933 0.00000000 0.00000000 0.00000000## vision 0.01863933 0.00000000 0.00000000 0.01514693## vulnerable 0.00000000 0.00000000 0.01690617 0.03029385## waiting 0.01863933 0.04521818 0.00000000 0.00000000## wants 0.00000000 0.02260909 0.00000000 0.04544078## waste 0.00000000 0.00000000 0.08453085 0.00000000## wealthiest 0.00000000 0.02260909 0.01690617 0.01514693## west 0.00000000 0.00000000 0.00000000 0.03029385## accountable 0.01863933 0.00000000 0.01690617 0.00000000## achieved 0.01863933 0.00000000 0.01690617 0.00000000## addiction 0.01863933 0.00000000 0.00000000 0.01514693## addresses 0.00000000 0.02260909 0.01690617 0.01514693## affordability 0.00000000 0.00000000 0.00000000 0.01514693## alliances 0.00000000 0.00000000 0.00000000 0.00000000## arguments 0.00000000 0.04521818 0.01690617 0.01514693## barack 0.00000000 0.02260909 0.01690617 0.01514693## believed 0.00000000 0.02260909 0.00000000 0.01514693## bipartisanship 0.00000000 0.02260909 0.01690617 0.01514693## car 0.00000000 0.00000000 0.00000000 0.00000000## citizenship 0.00000000 0.00000000 0.00000000 0.01514693## coal 0.00000000 0.00000000 0.00000000 0.03029385## commit 0.00000000 0.00000000 0.00000000 0.00000000## communications 0.01863933 0.00000000 0.00000000 0.03029385## confronting 0.00000000 0.00000000 0.00000000 0.00000000## conscience 0.03727866 0.00000000 0.01690617 0.00000000## continuing 0.01863933 0.00000000 0.00000000 0.00000000## corporations 0.00000000 0.04521818 0.00000000 0.01514693## cory 0.00000000 0.00000000 0.00000000 0.00000000## council 0.00000000 0.04521818 0.00000000 0.00000000## counterterrorism 0.00000000 0.00000000 0.00000000 0.01514693## deal 0.00000000 0.00000000 0.01690617 0.01514693## delivered 0.00000000 0.00000000 0.01690617 0.01514693## destiny 0.01863933 0.00000000 0.00000000 0.00000000## direct 0.00000000 0.00000000 0.00000000 0.01514693## diseases 0.03727866 0.00000000 0.01690617 0.01514693## dramatically 0.03727866 0.00000000 0.00000000 0.00000000## efficiency 0.00000000 0.00000000 0.00000000 0.00000000## ended 0.00000000 0.00000000 0.00000000 0.00000000## era 0.00000000 0.00000000 0.00000000 0.00000000## extra 0.00000000 0.02260909 0.01690617 0.03029385## faced 0.03727866 0.00000000 0.01690617 0.00000000## facilities 0.00000000 0.00000000 0.00000000 0.01514693## facts 0.00000000 0.00000000 0.03381234 0.01514693## fail 0.01863933 0.00000000 0.01690617 0.00000000## fast 0.00000000 0.02260909 0.01690617 0.00000000## foundation 0.00000000 0.00000000 0.00000000 0.00000000## g 0.00000000 0.00000000 0.05071851 0.03029385## gay 0.00000000 0.00000000 0.00000000 0.03029385## globe 0.00000000 0.00000000 0.00000000 0.00000000## grew 0.00000000 0.02260909 0.00000000 0.00000000## grows 0.01863933 0.00000000 0.00000000 0.01514693## guests 0.01863933 0.00000000 0.00000000 0.00000000## harder 0.00000000 0.00000000 0.00000000 0.06058770## hardship 0.00000000 0.02260909 0.03381234 0.00000000## honest 0.00000000 0.00000000 0.03381234 0.03029385## hours 0.00000000 0.00000000 0.00000000 0.00000000## immigrants 0.01863933 0.00000000 0.03381234 0.03029385## innocent 0.00000000 0.00000000 0.00000000 0.00000000## insist 0.00000000 0.00000000 0.00000000 0.01514693## kept 0.01863933 0.00000000 0.00000000 0.01514693## key 0.00000000 0.00000000 0.01690617 0.00000000## launch 0.01863933 0.02260909 0.00000000 0.01514693## launched 0.00000000 0.00000000 0.00000000 0.01514693## lawsuits 0.01863933 0.00000000 0.00000000 0.00000000## learned 0.01863933 0.00000000 0.00000000 0.01514693## lebanon 0.03727866 0.00000000 0.00000000 0.00000000## locations 0.00000000 0.02260909 0.01690617 0.01514693## low 0.00000000 0.00000000 0.00000000 0.01514693## low-income 0.00000000 0.02260909 0.00000000 0.03029385## matters 0.00000000 0.00000000 0.00000000 0.01514693## measure 0.00000000 0.00000000 0.03381234 0.01514693## moral 0.01863933 0.00000000 0.01690617 0.00000000## network 0.00000000 0.00000000 0.00000000 0.00000000## pages 0.01863933 0.02260909 0.00000000 0.00000000## partner 0.01863933 0.00000000 0.00000000 0.00000000## playing 0.01863933 0.00000000 0.00000000 0.00000000## premiums 0.00000000 0.00000000 0.05071851 0.00000000## price 0.00000000 0.00000000 0.01690617 0.00000000## principle 0.00000000 0.00000000 0.05071851 0.00000000## promised 0.00000000 0.00000000 0.03381234 0.01514693## pursuing 0.01863933 0.00000000 0.00000000 0.00000000## radical 0.03727866 0.00000000 0.01690617 0.00000000## ready 0.00000000 0.02260909 0.00000000 0.01514693## regimes 0.00000000 0.00000000 0.00000000 0.00000000## report 0.00000000 0.00000000 0.00000000 0.01514693## robert 0.00000000 0.00000000 0.00000000 0.00000000## rural 0.00000000 0.00000000 0.01690617 0.00000000## saving 0.00000000 0.00000000 0.00000000 0.03029385## shores 0.01863933 0.00000000 0.00000000 0.01514693## shot 0.00000000 0.00000000 0.00000000 0.03029385## spanish 0.01863933 0.00000000 0.00000000 0.01514693## standard 0.01863933 0.00000000 0.00000000 0.01514693## status 0.00000000 0.00000000 0.01690617 0.01514693## subjects 0.00000000 0.02260909 0.01690617 0.01514693## subsidies 0.00000000 0.00000000 0.03381234 0.00000000## suffering 0.05591799 0.00000000 0.00000000 0.00000000## supply 0.00000000 0.00000000 0.00000000 0.00000000## taxpayer 0.01863933 0.00000000 0.00000000 0.00000000## teaching 0.00000000 0.00000000 0.00000000 0.00000000## terrible 0.00000000 0.00000000 0.00000000 0.00000000## trained 0.00000000 0.00000000 0.00000000 0.00000000## transition 0.00000000 0.00000000 0.00000000 0.03029385## transparency 0.00000000 0.00000000 0.00000000 0.00000000## travel 0.00000000 0.00000000 0.00000000 0.06058770## truth 0.00000000 0.02260909 0.01690617 0.03029385## unprecedented 0.03727866 0.00000000 0.01690617 0.00000000## water 0.00000000 0.00000000 0.01690617 0.00000000## whose 0.00000000 0.02260909 0.01690617 0.01514693## wife 0.01863933 0.00000000 0.05071851 0.00000000## write 0.00000000 0.02260909 0.00000000 0.01514693## wrote 0.01863933 0.00000000 0.01690617 0.00000000## yemen 0.00000000 0.00000000 0.00000000 0.01514693## younger 0.00000000 0.00000000 0.00000000 0.00000000## advantage 0.01863933 0.04521818 0.03381234 0.00000000## announce 0.03727866 0.00000000 0.00000000 0.00000000## army 0.00000000 0.00000000 0.00000000 0.00000000## aside 0.01863933 0.00000000 0.00000000 0.00000000## attacked 0.00000000 0.00000000 0.03381234 0.00000000## attention 0.01863933 0.00000000 0.01690617 0.03029385## auto 0.00000000 0.00000000 0.01690617 0.01514693## baby 0.05591799 0.00000000 0.00000000 0.00000000## bank 0.00000000 0.00000000 0.00000000 0.00000000## billions 0.00000000 0.02260909 0.01690617 0.00000000## body 0.00000000 0.00000000 0.01690617 0.01514693## bridges 0.00000000 0.06782727 0.00000000 0.00000000## brings 0.00000000 0.00000000 0.00000000 0.03029385## calling 0.00000000 0.00000000 0.01690617 0.00000000## captured 0.01863933 0.00000000 0.00000000 0.00000000## carry 0.00000000 0.00000000 0.03381234 0.00000000## case 0.00000000 0.00000000 0.01690617 0.00000000## cells 0.00000000 0.00000000 0.00000000 0.00000000## chaos 0.01863933 0.00000000 0.00000000 0.00000000## childcare 0.00000000 0.00000000 0.00000000 0.00000000## claims 0.01863933 0.00000000 0.03381234 0.01514693## colombia 0.00000000 0.04521818 0.00000000 0.01514693## commitments 0.03727866 0.00000000 0.00000000 0.00000000## consumers 0.00000000 0.00000000 0.03381234 0.00000000## continued 0.01863933 0.00000000 0.00000000 0.00000000## corps 0.01863933 0.00000000 0.00000000 0.00000000## couldn^t 0.00000000 0.00000000 0.00000000 0.00000000## courts 0.05591799 0.00000000 0.00000000 0.01514693## d 0.00000000 0.00000000 0.01690617 0.03029385## decency 0.00000000 0.00000000 0.00000000 0.01514693## defeated 0.01863933 0.00000000 0.00000000 0.00000000## democrat 0.01863933 0.02260909 0.01690617 0.01514693## denied 0.00000000 0.00000000 0.01690617 0.00000000## dime 0.00000000 0.00000000 0.03381234 0.00000000## diploma 0.00000000 0.00000000 0.00000000 0.00000000## discipline 0.00000000 0.00000000 0.00000000 0.00000000## dollar 0.00000000 0.00000000 0.01690617 0.00000000## doubling 0.00000000 0.00000000 0.00000000 0.00000000## emissions 0.00000000 0.00000000 0.00000000 0.01514693## enterprise 0.00000000 0.00000000 0.00000000 0.00000000## equipment 0.00000000 0.02260909 0.00000000 0.00000000## everywhere 0.03727866 0.00000000 0.00000000 0.03029385## experience 0.03727866 0.00000000 0.03381234 0.00000000## factories 0.00000000 0.00000000 0.00000000 0.00000000## factory 0.01863933 0.00000000 0.00000000 0.00000000## failed 0.03727866 0.00000000 0.00000000 0.01514693## fought 0.01863933 0.00000000 0.01690617 0.03029385## freeze 0.00000000 0.00000000 0.01690617 0.00000000## gain 0.01863933 0.00000000 0.00000000 0.01514693## governor 0.00000000 0.00000000 0.00000000 0.00000000## gpo 0.01863933 0.00000000 0.00000000 0.00000000## graduate 0.00000000 0.02260909 0.00000000 0.00000000## grown 0.00000000 0.00000000 0.03381234 0.00000000## gulf 0.01863933 0.00000000 0.00000000 0.00000000## h 0.00000000 0.00000000 0.01690617 0.00000000## happened 0.00000000 0.00000000 0.01690617 0.00000000## hardest 0.00000000 0.02260909 0.00000000 0.00000000## haven 0.01863933 0.00000000 0.00000000 0.00000000## haven^t 0.00000000 0.02260909 0.00000000 0.01514693## havens 0.00000000 0.00000000 0.00000000 0.01514693## hidden 0.00000000 0.02260909 0.01690617 0.01514693## high-quality 0.00000000 0.00000000 0.01690617 0.00000000## high-tech 0.00000000 0.00000000 0.00000000 0.00000000## hiring 0.00000000 0.04521818 0.00000000 0.00000000## historic 0.01863933 0.00000000 0.00000000 0.00000000## homeowners 0.00000000 0.02260909 0.01690617 0.01514693## hopes 0.01863933 0.00000000 0.00000000 0.00000000## huge 0.00000000 0.00000000 0.01690617 0.00000000## hundred 0.00000000 0.02260909 0.00000000 0.00000000## ideals 0.03727866 0.00000000 0.00000000 0.00000000## independence 0.00000000 0.00000000 0.00000000 0.00000000## india 0.01863933 0.00000000 0.00000000 0.00000000## individual 0.00000000 0.02260909 0.01690617 0.00000000## islamic 0.00000000 0.00000000 0.00000000 0.03029385## japan 0.01863933 0.00000000 0.00000000 0.00000000## killers 0.00000000 0.00000000 0.00000000 0.01514693## language 0.01863933 0.00000000 0.00000000 0.01514693## lasting 0.01863933 0.00000000 0.00000000 0.01514693## legal 0.00000000 0.00000000 0.00000000 0.00000000## lie 0.00000000 0.00000000 0.03381234 0.01514693## march 0.01863933 0.00000000 0.00000000 0.00000000## meeting 0.01863933 0.00000000 0.03381234 0.00000000## missile 0.00000000 0.00000000 0.00000000 0.00000000## monday 0.01863933 0.02260909 0.00000000 0.00000000## moving 0.01863933 0.00000000 0.00000000 0.00000000## n 0.00000000 0.00000000 0.00000000 0.00000000## named 0.00000000 0.00000000 0.00000000 0.00000000## news 0.00000000 0.00000000 0.00000000 0.00000000## officer 0.00000000 0.02260909 0.00000000 0.00000000## opened 0.00000000 0.00000000 0.00000000 0.01514693## owe 0.00000000 0.00000000 0.00000000 0.00000000## pace 0.00000000 0.00000000 0.00000000 0.03029385## peninsula 0.00000000 0.00000000 0.00000000 0.00000000## poor 0.01863933 0.00000000 0.00000000 0.00000000## practices 0.00000000 0.00000000 0.01690617 0.01514693## president^s 0.00000000 0.00000000 0.00000000 0.01514693## presidents 0.03727866 0.00000000 0.00000000 0.00000000## pressure 0.00000000 0.00000000 0.03381234 0.00000000## privilege 0.03727866 0.00000000 0.00000000 0.00000000## protects 0.00000000 0.00000000 0.00000000 0.01514693## publishing 0.01863933 0.00000000 0.00000000 0.00000000## qaida^s 0.00000000 0.00000000 0.00000000 0.00000000## rather 0.00000000 0.00000000 0.03381234 0.01514693## read 0.00000000 0.00000000 0.00000000 0.00000000## refinancing 0.00000000 0.02260909 0.00000000 0.00000000## refuse 0.00000000 0.02260909 0.01690617 0.00000000## reject 0.01863933 0.06782727 0.00000000 0.01514693## risks 0.00000000 0.00000000 0.00000000 0.00000000## roads 0.00000000 0.02260909 0.00000000 0.00000000## seeing 0.03727866 0.02260909 0.00000000 0.01514693## sending 0.00000000 0.02260909 0.00000000 0.00000000## signed 0.00000000 0.02260909 0.00000000 0.00000000## solution 0.00000000 0.02260909 0.01690617 0.01514693## teach 0.03727866 0.00000000 0.00000000 0.00000000## town 0.00000000 0.00000000 0.01690617 0.00000000## transcript 0.01863933 0.00000000 0.00000000 0.01514693## tyranny 0.01863933 0.00000000 0.00000000 0.00000000## ukraine 0.00000000 0.00000000 0.00000000 0.03029385## uninsured 0.00000000 0.00000000 0.06762468 0.00000000## uranium 0.00000000 0.00000000 0.00000000 0.01514693## violent 0.03727866 0.00000000 0.00000000 0.00000000## voice 0.00000000 0.02260909 0.00000000 0.03029385## voices 0.00000000 0.00000000 0.00000000 0.12117540## volume 0.01863933 0.00000000 0.00000000 0.00000000## wars 0.00000000 0.00000000 0.01690617 0.01514693## watch 0.00000000 0.02260909 0.01690617 0.00000000## watching 0.00000000 0.02260909 0.00000000 0.01514693## weapon 0.01863933 0.00000000 0.00000000 0.00000000## went 0.00000000 0.00000000 0.00000000 0.00000000## who^s 0.00000000 0.00000000 0.00000000 0.00000000## worthy 0.01863933 0.00000000 0.00000000 0.00000000## www 0.01863933 0.00000000 0.00000000 0.00000000## absolutely 0.00000000 0.00000000 0.00000000 0.00000000## accounted 0.00000000 0.00000000 0.00000000 0.00000000## acted 0.00000000 0.00000000 0.00000000 0.01514693## acts 0.01863933 0.00000000 0.00000000 0.01514693## addicted 0.01863933 0.00000000 0.00000000 0.00000000## agreed 0.00000000 0.00000000 0.00000000 0.00000000## allen 0.00000000 0.00000000 0.03381234 0.00000000## allowing 0.03727866 0.00000000 0.00000000 0.00000000## ambitious 0.01863933 0.02260909 0.00000000 0.01514693## announcing 0.00000000 0.00000000 0.01690617 0.01514693## apart 0.00000000 0.02260909 0.00000000 0.00000000## argue 0.00000000 0.00000000 0.03381234 0.03029385## battle 0.00000000 0.00000000 0.00000000 0.00000000## belief 0.01863933 0.02260909 0.01690617 0.01514693## boehner 0.00000000 0.02260909 0.00000000 0.00000000## boys 0.00000000 0.00000000 0.00000000 0.00000000## breakthroughs 0.03727866 0.00000000 0.00000000 0.01514693## broader 0.01863933 0.00000000 0.00000000 0.00000000## buildings 0.00000000 0.00000000 0.00000000 0.00000000## burma 0.01863933 0.00000000 0.00000000 0.00000000## cases 0.03727866 0.00000000 0.00000000 0.00000000## causes 0.00000000 0.00000000 0.00000000 0.01514693## cheney 0.01863933 0.00000000 0.00000000 0.00000000## childhood 0.00000000 0.00000000 0.00000000 0.03029385## children^s 0.00000000 0.00000000 0.00000000 0.00000000## cities 0.00000000 0.00000000 0.00000000 0.00000000## classroom 0.00000000 0.02260909 0.00000000 0.00000000## commanders 0.01863933 0.00000000 0.00000000 0.00000000## compilation 0.01863933 0.00000000 0.00000000 0.00000000## concern 0.00000000 0.00000000 0.03381234 0.01514693## conservation 0.00000000 0.00000000 0.00000000 0.00000000## consider 0.00000000 0.00000000 0.00000000 0.00000000## culture 0.03727866 0.00000000 0.00000000 0.00000000## decision 0.00000000 0.00000000 0.00000000 0.00000000## decisive 0.01863933 0.00000000 0.03381234 0.00000000## declared 0.01863933 0.00000000 0.00000000 0.00000000## depression 0.00000000 0.00000000 0.01690617 0.01514693## desk 0.00000000 0.00000000 0.00000000 0.00000000## despite 0.00000000 0.00000000 0.01690617 0.01514693## determination 0.00000000 0.00000000 0.00000000 0.00000000## determine 0.01863933 0.00000000 0.00000000 0.00000000## discretionary 0.01863933 0.00000000 0.00000000 0.00000000## dominate 0.00000000 0.00000000 0.00000000 0.00000000## doubled 0.00000000 0.00000000 0.01690617 0.00000000## dropped 0.01863933 0.00000000 0.01690617 0.00000000## e 0.00000000 0.04521818 0.01690617 0.00000000## earlier 0.00000000 0.00000000 0.00000000 0.01514693## efficient 0.00000000 0.00000000 0.01690617 0.00000000## ending 0.00000000 0.00000000 0.00000000 0.00000000## exchange 0.00000000 0.00000000 0.11834320 0.00000000## expire 0.01863933 0.02260909 0.00000000 0.00000000## extremism 0.00000000 0.00000000 0.00000000 0.00000000## f 0.00000000 0.04521818 0.00000000 0.00000000## fallen 0.03727866 0.00000000 0.00000000 0.00000000## farmers 0.00000000 0.00000000 0.00000000 0.00000000## fears 0.01863933 0.00000000 0.00000000 0.01514693## felt 0.01863933 0.00000000 0.00000000 0.00000000## fields 0.00000000 0.00000000 0.00000000 0.03029385## final 0.00000000 0.00000000 0.00000000 0.06058770## fixing 0.00000000 0.02260909 0.00000000 0.01514693## gentlemen 0.00000000 0.00000000 0.00000000 0.00000000## goals 0.00000000 0.00000000 0.01690617 0.01514693## guantanamo 0.00000000 0.00000000 0.00000000 0.03029385## guarantee 0.00000000 0.00000000 0.00000000 0.01514693## hide 0.00000000 0.00000000 0.00000000 0.00000000## however 0.01863933 0.00000000 0.00000000 0.00000000## ideology 0.01863933 0.00000000 0.01690617 0.01514693## ignore 0.00000000 0.00000000 0.00000000 0.00000000## immediate 0.01863933 0.02260909 0.00000000 0.00000000## improving 0.00000000 0.00000000 0.01690617 0.00000000## incomes 0.00000000 0.00000000 0.00000000 0.00000000## intentions 0.01863933 0.00000000 0.00000000 0.01514693## investing 0.00000000 0.00000000 0.00000000 0.00000000## iranian 0.03727866 0.00000000 0.00000000 0.00000000## ladies 0.00000000 0.00000000 0.00000000 0.00000000## laid 0.00000000 0.04521818 0.00000000 0.00000000## large 0.00000000 0.00000000 0.03381234 0.00000000## liability 0.01863933 0.00000000 0.01690617 0.00000000## limit 0.00000000 0.00000000 0.01690617 0.00000000## listen 0.00000000 0.02260909 0.01690617 0.03029385## losing 0.01863933 0.00000000 0.01690617 0.00000000## main 0.01863933 0.00000000 0.00000000 0.00000000## manufacturers 0.00000000 0.00000000 0.00000000 0.00000000## maybe 0.00000000 0.04521818 0.00000000 0.04544078## mayor 0.00000000 0.00000000 0.00000000 0.00000000## mind 0.00000000 0.00000000 0.01690617 0.00000000## movement 0.01863933 0.02260909 0.00000000 0.00000000## nato 0.00000000 0.00000000 0.00000000 0.00000000## negotiations 0.00000000 0.00000000 0.00000000 0.00000000## neither 0.00000000 0.00000000 0.00000000 0.00000000## night 0.00000000 0.00000000 0.00000000 0.01514693## obligations 0.00000000 0.00000000 0.00000000 0.00000000## offered 0.01863933 0.00000000 0.00000000 0.00000000## ordered 0.00000000 0.02260909 0.00000000 0.00000000## ours 0.00000000 0.04521818 0.00000000 0.01514693## owner 0.00000000 0.02260909 0.00000000 0.01514693## panama 0.00000000 0.04521818 0.00000000 0.00000000## parent 0.00000000 0.00000000 0.03381234 0.00000000## paycheck 0.00000000 0.04521818 0.00000000 0.00000000## pennsylvania 0.00000000 0.00000000 0.01690617 0.00000000## pockets 0.00000000 0.02260909 0.01690617 0.00000000## preventive 0.00000000 0.00000000 0.03381234 0.00000000## prime 0.00000000 0.00000000 0.00000000 0.00000000## professionals 0.03727866 0.00000000 0.03381234 0.00000000## promises 0.00000000 0.00000000 0.00000000 0.03029385## provided 0.00000000 0.00000000 0.00000000 0.00000000## providers 0.00000000 0.00000000 0.01690617 0.01514693## provides 0.00000000 0.00000000 0.00000000 0.00000000## realize 0.00000000 0.04521818 0.03381234 0.00000000## rebekah 0.00000000 0.00000000 0.00000000 0.00000000## recent 0.03727866 0.00000000 0.01690617 0.00000000## redtape 0.00000000 0.04521818 0.00000000 0.01514693## regions 0.03727866 0.00000000 0.00000000 0.01514693## reliable 0.01863933 0.00000000 0.00000000 0.00000000## response 0.00000000 0.00000000 0.00000000 0.01514693## retreat 0.11183597 0.00000000 0.00000000 0.00000000## sergeant 0.03727866 0.00000000 0.00000000 0.00000000## serving 0.00000000 0.00000000 0.00000000 0.00000000## shown 0.00000000 0.00000000 0.00000000 0.00000000## significant 0.00000000 0.00000000 0.01690617 0.01514693## sit 0.01863933 0.04521818 0.00000000 0.00000000## situation 0.01863933 0.00000000 0.01690617 0.00000000## slow 0.00000000 0.00000000 0.05071851 0.00000000## someone 0.00000000 0.00000000 0.00000000 0.01514693## sometimes 0.01863933 0.00000000 0.03381234 0.00000000## speed 0.00000000 0.02260909 0.00000000 0.00000000## stability 0.00000000 0.00000000 0.05071851 0.00000000## stood 0.00000000 0.00000000 0.03381234 0.01514693## stories 0.00000000 0.00000000 0.03381234 0.00000000## strategic 0.01863933 0.00000000 0.00000000 0.00000000## study 0.00000000 0.00000000 0.00000000 0.00000000## sudden 0.01863933 0.00000000 0.00000000 0.00000000## supplies 0.00000000 0.00000000 0.00000000 0.01514693## surplus 0.00000000 0.00000000 0.00000000 0.00000000## surveillance 0.03727866 0.00000000 0.00000000 0.00000000## sustain 0.00000000 0.02260909 0.00000000 0.00000000## team 0.00000000 0.00000000 0.00000000 0.00000000## temporary 0.07455732 0.02260909 0.00000000 0.00000000## though 0.01863933 0.00000000 0.00000000 0.00000000## tired 0.00000000 0.00000000 0.00000000 0.00000000## trucks 0.00000000 0.00000000 0.00000000 0.01514693## turning 0.03727866 0.00000000 0.00000000 0.03029385## ultimately 0.01863933 0.02260909 0.00000000 0.01514693## unit 0.00000000 0.00000000 0.00000000 0.00000000## usama 0.01863933 0.00000000 0.00000000 0.01514693## w 0.00000000 0.00000000 0.01690617 0.00000000## weekly 0.01863933 0.00000000 0.00000000 0.00000000## word 0.01863933 0.00000000 0.00000000 0.03029385## -year 0.00000000 0.00000000 0.01690617 0.00000000## abandon 0.01863933 0.00000000 0.00000000 0.00000000## abuse 0.00000000 0.00000000 0.01690617 0.04544078## active 0.00000000 0.00000000 0.00000000 0.01514693## actually 0.00000000 0.02260909 0.01690617 0.03029385## african 0.03727866 0.00000000 0.00000000 0.01514693## agency 0.00000000 0.00000000 0.00000000 0.00000000## allows 0.01863933 0.00000000 0.05071851 0.00000000## amazing 0.00000000 0.00000000 0.01690617 0.01514693## amid 0.00000000 0.00000000 0.00000000 0.00000000## arrived 0.01863933 0.00000000 0.00000000 0.00000000## assembly 0.01863933 0.00000000 0.00000000 0.03029385## avoid 0.00000000 0.00000000 0.00000000 0.00000000## balance 0.01863933 0.00000000 0.00000000 0.00000000## balanced 0.00000000 0.02260909 0.00000000 0.00000000## battles 0.00000000 0.00000000 0.01690617 0.00000000## bay 0.00000000 0.00000000 0.00000000 0.01514693## birth 0.01863933 0.00000000 0.00000000 0.00000000## bold 0.00000000 0.00000000 0.01690617 0.01514693## bottom 0.00000000 0.02260909 0.00000000 0.00000000## bridge 0.00000000 0.04521818 0.00000000 0.00000000## broad 0.01863933 0.00000000 0.01690617 0.00000000## brothers 0.00000000 0.00000000 0.00000000 0.03029385## buffett 0.00000000 0.06782727 0.00000000 0.00000000## bush 0.01863933 0.00000000 0.03381234 0.00000000## buying 0.01863933 0.00000000 0.01690617 0.00000000## california 0.00000000 0.00000000 0.00000000 0.00000000## camps 0.01863933 0.00000000 0.01690617 0.01514693## carolina 0.00000000 0.00000000 0.00000000 0.00000000## ceo 0.00000000 0.00000000 0.00000000 0.00000000## chambers 0.01863933 0.00000000 0.00000000 0.00000000## charged 0.00000000 0.02260909 0.03381234 0.00000000## charter 0.00000000 0.00000000 0.00000000 0.00000000## cheaper 0.01863933 0.00000000 0.00000000 0.01514693## conduct 0.01863933 0.00000000 0.00000000 0.00000000## corruption 0.03727866 0.00000000 0.00000000 0.00000000## creates 0.01863933 0.02260909 0.00000000 0.00000000## criminals 0.00000000 0.00000000 0.00000000 0.00000000## crucial 0.00000000 0.00000000 0.00000000 0.00000000## cyber 0.00000000 0.00000000 0.00000000 0.00000000## dad 0.01863933 0.00000000 0.00000000 0.00000000## decent 0.01863933 0.02260909 0.00000000 0.00000000## dedication 0.00000000 0.00000000 0.00000000 0.00000000## deeply 0.00000000 0.00000000 0.01690617 0.00000000## defeating 0.01863933 0.00000000 0.00000000 0.00000000## degree 0.00000000 0.00000000 0.00000000 0.00000000## dependence 0.01863933 0.00000000 0.00000000 0.00000000## dependent 0.00000000 0.00000000 0.00000000 0.00000000## destroy 0.00000000 0.00000000 0.00000000 0.00000000## dictator 0.00000000 0.00000000 0.00000000 0.00000000## directed 0.00000000 0.00000000 0.00000000 0.00000000## division 0.01863933 0.00000000 0.00000000 0.00000000## doctor 0.00000000 0.00000000 0.01690617 0.00000000## door 0.00000000 0.00000000 0.03381234 0.01514693## earmark 0.01863933 0.02260909 0.00000000 0.00000000## educate 0.00000000 0.00000000 0.00000000 0.00000000## effect 0.00000000 0.00000000 0.03381234 0.00000000## egypt 0.03727866 0.00000000 0.00000000 0.00000000## electric 0.01863933 0.00000000 0.00000000 0.00000000## enforce 0.00000000 0.00000000 0.00000000 0.01514693## engineers 0.00000000 0.02260909 0.00000000 0.00000000## entrepreneur 0.00000000 0.00000000 0.00000000 0.03029385## events 0.00000000 0.00000000 0.00000000 0.00000000## exactly 0.00000000 0.00000000 0.01690617 0.01514693## experts 0.00000000 0.00000000 0.05071851 0.00000000## export 0.00000000 0.00000000 0.00000000 0.00000000## failing 0.00000000 0.00000000 0.00000000 0.01514693## fbi 0.00000000 0.00000000 0.00000000 0.00000000## feed 0.03727866 0.00000000 0.00000000 0.01514693## finance 0.00000000 0.00000000 0.03381234 0.03029385## founders 0.00000000 0.00000000 0.00000000 0.01514693## fraud 0.00000000 0.00000000 0.03381234 0.00000000## frivolous 0.00000000 0.00000000 0.00000000 0.00000000## fundamental 0.00000000 0.00000000 0.01690617 0.00000000## funded 0.00000000 0.00000000 0.00000000 0.00000000## gains 0.01863933 0.00000000 0.01690617 0.00000000## game 0.00000000 0.02260909 0.01690617 0.00000000## gather 0.00000000 0.00000000 0.00000000 0.00000000## girl 0.01863933 0.00000000 0.00000000 0.01514693## grandchildren 0.00000000 0.00000000 0.00000000 0.00000000## guide 0.00000000 0.00000000 0.00000000 0.00000000## harm 0.00000000 0.00000000 0.00000000 0.00000000## heard 0.00000000 0.00000000 0.00000000 0.00000000## holding 0.00000000 0.00000000 0.00000000 0.00000000## honored 0.00000000 0.00000000 0.00000000 0.00000000## hospitals 0.00000000 0.00000000 0.03381234 0.00000000## humanity 0.01863933 0.00000000 0.00000000 0.00000000## i^d 0.00000000 0.00000000 0.00000000 0.01514693## imagine 0.00000000 0.00000000 0.01690617 0.00000000## increases 0.01863933 0.00000000 0.00000000 0.00000000## incredible 0.01863933 0.00000000 0.00000000 0.03029385## inequality 0.00000000 0.00000000 0.00000000 0.01514693## inflation 0.00000000 0.00000000 0.00000000 0.01514693## innovative 0.00000000 0.00000000 0.00000000 0.00000000## intimidate 0.00000000 0.00000000 0.00000000 0.00000000## iran^s 0.00000000 0.00000000 0.00000000 0.00000000## joined 0.00000000 0.00000000 0.01690617 0.00000000## judges 0.01863933 0.00000000 0.00000000 0.00000000## keeps 0.00000000 0.00000000 0.00000000 0.00000000## libya 0.00000000 0.00000000 0.00000000 0.03029385## limits 0.00000000 0.00000000 0.00000000 0.01514693## lines 0.00000000 0.00000000 0.00000000 0.01514693## loan 0.00000000 0.00000000 0.00000000 0.01514693## madam 0.00000000 0.00000000 0.01690617 0.00000000## meanwhile 0.00000000 0.00000000 0.00000000 0.01514693## medicines 0.01863933 0.00000000 0.00000000 0.00000000## mentors 0.00000000 0.00000000 0.00000000 0.00000000## methods 0.01863933 0.00000000 0.00000000 0.00000000## minority 0.00000000 0.00000000 0.01690617 0.01514693## modern 0.01863933 0.00000000 0.00000000 0.00000000## modernization 0.00000000 0.02260909 0.00000000 0.00000000## mortgages 0.00000000 0.02260909 0.00000000 0.00000000## muslim 0.00000000 0.00000000 0.00000000 0.00000000## operatives 0.03727866 0.00000000 0.00000000 0.00000000## ordinary 0.00000000 0.00000000 0.00000000 0.00000000## organizations 0.00000000 0.00000000 0.00000000 0.00000000## outcome 0.00000000 0.00000000 0.00000000 0.00000000## outdated 0.00000000 0.02260909 0.00000000 0.01514693## overcome 0.01863933 0.00000000 0.00000000 0.00000000## participate 0.00000000 0.02260909 0.01690617 0.01514693## partisan 0.01863933 0.00000000 0.03381234 0.00000000## patient 0.00000000 0.00000000 0.01690617 0.03029385## period 0.01863933 0.00000000 0.03381234 0.03029385## personnel 0.00000000 0.00000000 0.00000000 0.00000000## please 0.00000000 0.00000000 0.00000000 0.00000000## preexisting 0.00000000 0.00000000 0.05071851 0.00000000## preserve 0.00000000 0.00000000 0.00000000 0.01514693## prevents 0.00000000 0.04521818 0.00000000 0.01514693## principles 0.01863933 0.00000000 0.01690617 0.00000000## prisoners 0.00000000 0.00000000 0.00000000 0.00000000## privacy 0.00000000 0.00000000 0.00000000 0.00000000## profitable 0.00000000 0.02260909 0.01690617 0.00000000## protected 0.01863933 0.00000000 0.00000000 0.01514693## pull 0.00000000 0.00000000 0.00000000 0.03029385## purchase 0.00000000 0.00000000 0.01690617 0.00000000## qaeda 0.00000000 0.00000000 0.00000000 0.00000000## quarter 0.00000000 0.00000000 0.00000000 0.00000000## quo 0.00000000 0.00000000 0.01690617 0.01514693## raised 0.00000000 0.00000000 0.00000000 0.00000000## reduced 0.01863933 0.00000000 0.00000000 0.01514693## regardless 0.00000000 0.04521818 0.00000000 0.01514693## rely 0.00000000 0.02260909 0.01690617 0.01514693## repeat 0.00000000 0.00000000 0.01690617 0.00000000## replace 0.03727866 0.00000000 0.01690617 0.01514693## rescue 0.00000000 0.00000000 0.00000000 0.00000000## rewarded 0.00000000 0.02260909 0.03381234 0.00000000## rich 0.01863933 0.00000000 0.00000000 0.01514693## rid 0.00000000 0.00000000 0.00000000 0.00000000## root 0.00000000 0.04521818 0.00000000 0.00000000## running 0.00000000 0.02260909 0.00000000 0.00000000## saudi 0.01863933 0.00000000 0.00000000 0.00000000## sectarian 0.00000000 0.00000000 0.00000000 0.01514693## setting 0.00000000 0.00000000 0.00000000 0.00000000## severe 0.00000000 0.00000000 0.00000000 0.00000000## shi 0.00000000 0.00000000 0.00000000 0.00000000## shift 0.00000000 0.00000000 0.01690617 0.00000000## skill 0.01863933 0.00000000 0.00000000 0.00000000## slowly 0.00000000 0.00000000 0.00000000 0.00000000## sold 0.01863933 0.02260909 0.00000000 0.00000000## straight 0.00000000 0.00000000 0.01690617 0.01514693## strike 0.00000000 0.00000000 0.01690617 0.01514693## strongly 0.00000000 0.00000000 0.00000000 0.00000000## suggested 0.00000000 0.00000000 0.01690617 0.00000000## summit 0.00000000 0.00000000 0.00000000 0.00000000## surge 0.00000000 0.00000000 0.00000000 0.01514693## suspected 0.01863933 0.00000000 0.00000000 0.01514693## t 0.00000000 0.00000000 0.00000000 0.00000000## talked 0.00000000 0.00000000 0.01690617 0.01514693## telling 0.00000000 0.00000000 0.00000000 0.03029385## treat 0.01863933 0.00000000 0.03381234 0.00000000## treated 0.01863933 0.00000000 0.01690617 0.00000000## treaty 0.00000000 0.00000000 0.00000000 0.00000000## truly 0.00000000 0.00000000 0.01690617 0.00000000## unfair 0.00000000 0.02260909 0.01690617 0.00000000## unnecessary 0.00000000 0.02260909 0.01690617 0.01514693## uphold 0.01863933 0.00000000 0.00000000 0.01514693## vast 0.00000000 0.02260909 0.00000000 0.00000000## voted 0.03727866 0.02260909 0.00000000 0.00000000## votes 0.00000000 0.00000000 0.01690617 0.00000000## wasteful 0.00000000 0.02260909 0.00000000 0.00000000## wealth 0.00000000 0.00000000 0.00000000 0.01514693## who^ve 0.00000000 0.00000000 0.01690617 0.00000000## winning 0.01863933 0.00000000 0.00000000 0.01514693## wisdom 0.01863933 0.00000000 0.01690617 0.00000000## wise 0.01863933 0.00000000 0.01690617 0.01514693## worry 0.03727866 0.00000000 0.01690617 0.01514693## abu 0.00000000 0.00000000 0.00000000 0.03029385## advances 0.01863933 0.00000000 0.00000000 0.00000000## adversity 0.00000000 0.00000000 0.00000000 0.00000000## affiliates 0.01863933 0.00000000 0.00000000 0.00000000## aggressive 0.00000000 0.00000000 0.00000000 0.00000000## alan 0.00000000 0.00000000 0.00000000 0.00000000## amount 0.00000000 0.02260909 0.01690617 0.00000000## anger 0.01863933 0.00000000 0.00000000 0.00000000## apply 0.00000000 0.00000000 0.01690617 0.00000000## appropriate 0.01863933 0.00000000 0.01690617 0.00000000## asian 0.00000000 0.00000000 0.00000000 0.01514693## aspirations 0.00000000 0.00000000 0.00000000 0.00000000## badly 0.00000000 0.04521818 0.05071851 0.00000000## beat 0.00000000 0.00000000 0.00000000 0.03029385## became 0.00000000 0.00000000 0.00000000 0.01514693## black 0.00000000 0.00000000 0.00000000 0.01514693## blind 0.00000000 0.00000000 0.00000000 0.00000000## bomb 0.01863933 0.00000000 0.00000000 0.00000000## bound 0.01863933 0.00000000 0.00000000 0.01514693## brandon 0.00000000 0.00000000 0.00000000 0.00000000## budgetary 0.00000000 0.02260909 0.00000000 0.00000000## card 0.00000000 0.02260909 0.00000000 0.00000000## caring 0.01863933 0.00000000 0.00000000 0.00000000## checks 0.00000000 0.00000000 0.00000000 0.00000000## civilized 0.00000000 0.00000000 0.00000000 0.00000000## closely 0.01863933 0.00000000 0.00000000 0.00000000## coast 0.01863933 0.00000000 0.00000000 0.00000000## collective 0.00000000 0.02260909 0.01690617 0.03029385## committee 0.00000000 0.00000000 0.05071851 0.00000000## commonsense 0.00000000 0.02260909 0.01690617 0.00000000## complicated 0.00000000 0.00000000 0.00000000 0.00000000## computer 0.00000000 0.02260909 0.00000000 0.03029385## congressman 0.00000000 0.00000000 0.00000000 0.01514693## consequence 0.01863933 0.00000000 0.00000000 0.00000000## constant 0.00000000 0.00000000 0.00000000 0.00000000## continent 0.00000000 0.00000000 0.00000000 0.00000000## contributions 0.00000000 0.00000000 0.00000000 0.00000000## conviction 0.00000000 0.00000000 0.00000000 0.00000000## costly 0.00000000 0.00000000 0.00000000 0.00000000## court 0.03727866 0.00000000 0.00000000 0.00000000## damage 0.00000000 0.00000000 0.00000000 0.01514693## date 0.00000000 0.00000000 0.00000000 0.01514693## decide 0.01863933 0.02260909 0.01690617 0.00000000## deep 0.03727866 0.00000000 0.00000000 0.00000000## defining 0.01863933 0.00000000 0.00000000 0.00000000## democracies 0.07455732 0.00000000 0.00000000 0.00000000## design 0.00000000 0.00000000 0.00000000 0.00000000## designed 0.00000000 0.02260909 0.00000000 0.00000000## detention 0.00000000 0.00000000 0.00000000 0.01514693## died 0.00000000 0.00000000 0.01690617 0.01514693## direction 0.07455732 0.00000000 0.00000000 0.00000000## disarming 0.00000000 0.00000000 0.00000000 0.00000000## disaster 0.03727866 0.00000000 0.00000000 0.01514693## disrupt 0.00000000 0.00000000 0.01690617 0.01514693## driven 0.00000000 0.02260909 0.00000000 0.00000000## driving 0.01863933 0.02260909 0.01690617 0.00000000## drop 0.00000000 0.02260909 0.05071851 0.00000000## ebola 0.00000000 0.00000000 0.00000000 0.03029385## economists 0.00000000 0.00000000 0.00000000 0.00000000## edward 0.00000000 0.00000000 0.06762468 0.00000000## electricity 0.00000000 0.00000000 0.00000000 0.00000000## electronic 0.01863933 0.00000000 0.00000000 0.00000000## elimination 0.00000000 0.00000000 0.01690617 0.00000000## emerge 0.00000000 0.00000000 0.00000000 0.00000000## encouraging 0.03727866 0.00000000 0.01690617 0.00000000## enduring 0.00000000 0.00000000 0.00000000 0.00000000## engineering 0.00000000 0.00000000 0.00000000 0.01514693## entitlement 0.00000000 0.00000000 0.00000000 0.00000000## establish 0.00000000 0.00000000 0.00000000 0.00000000## european 0.01863933 0.00000000 0.00000000 0.00000000## evening 0.01863933 0.00000000 0.00000000 0.00000000## eventually 0.00000000 0.00000000 0.01690617 0.00000000## expanded 0.00000000 0.00000000 0.00000000 0.00000000## expectations 0.00000000 0.00000000 0.01690617 0.01514693## expensive 0.00000000 0.00000000 0.05071851 0.01514693## facing 0.00000000 0.00000000 0.01690617 0.00000000## fairness 0.00000000 0.02260909 0.00000000 0.01514693## false 0.01863933 0.00000000 0.01690617 0.00000000## father 0.00000000 0.00000000 0.00000000 0.01514693## federally 0.00000000 0.00000000 0.00000000 0.00000000## fighters 0.00000000 0.00000000 0.00000000 0.03029385## financing 0.00000000 0.00000000 0.00000000 0.01514693## fine 0.01863933 0.00000000 0.00000000 0.00000000## fire 0.00000000 0.00000000 0.00000000 0.00000000## firm 0.01863933 0.00000000 0.00000000 0.00000000## followed 0.00000000 0.02260909 0.00000000 0.00000000## fuels 0.00000000 0.00000000 0.00000000 0.01514693## generate 0.01863933 0.00000000 0.00000000 0.01514693## graduates 0.00000000 0.00000000 0.00000000 0.01514693## graduation 0.00000000 0.00000000 0.00000000 0.03029385## hatred 0.01863933 0.00000000 0.00000000 0.01514693## heart 0.00000000 0.00000000 0.00000000 0.00000000## holy 0.00000000 0.00000000 0.00000000 0.01514693## ii 0.00000000 0.00000000 0.03381234 0.01514693## immediately 0.00000000 0.00000000 0.01690617 0.00000000## increasingly 0.03727866 0.00000000 0.00000000 0.00000000## initiatives 0.01863933 0.00000000 0.01690617 0.00000000## inside 0.01863933 0.00000000 0.00000000 0.01514693## institution 0.00000000 0.00000000 0.00000000 0.00000000## invite 0.01863933 0.00000000 0.00000000 0.00000000## isolation 0.01863933 0.00000000 0.00000000 0.00000000## kid 0.00000000 0.02260909 0.00000000 0.01514693## knowing 0.00000000 0.00000000 0.00000000 0.01514693## labs 0.00000000 0.02260909 0.00000000 0.00000000## lands 0.01863933 0.00000000 0.00000000 0.00000000## larger 0.03727866 0.02260909 0.00000000 0.00000000## launching 0.00000000 0.00000000 0.00000000 0.00000000## levels 0.03727866 0.00000000 0.00000000 0.00000000## liberation 0.01863933 0.00000000 0.00000000 0.00000000## lincoln 0.01863933 0.02260909 0.00000000 0.03029385## london 0.01863933 0.00000000 0.00000000 0.00000000## lonely 0.01863933 0.00000000 0.00000000 0.01514693## maintain 0.00000000 0.00000000 0.00000000 0.00000000## marine 0.01863933 0.00000000 0.00000000 0.00000000## marines 0.00000000 0.00000000 0.00000000 0.00000000## meaning 0.00000000 0.00000000 0.00000000 0.01514693## meaningful 0.00000000 0.00000000 0.00000000 0.00000000## member 0.00000000 0.00000000 0.00000000 0.00000000## minister 0.00000000 0.00000000 0.00000000 0.00000000## missions 0.00000000 0.00000000 0.00000000 0.00000000## moments 0.01863933 0.00000000 0.00000000 0.00000000## moved 0.00000000 0.00000000 0.00000000 0.00000000## neighborhoods 0.00000000 0.00000000 0.00000000 0.00000000## noble 0.03727866 0.00000000 0.00000000 0.00000000## nor 0.00000000 0.02260909 0.00000000 0.00000000## oak 0.00000000 0.00000000 0.00000000 0.00000000## onto 0.00000000 0.00000000 0.00000000 0.00000000## oppressed 0.01863933 0.00000000 0.00000000 0.00000000## participation 0.00000000 0.00000000 0.00000000 0.01514693## partnerships 0.00000000 0.00000000 0.00000000 0.00000000## payments 0.00000000 0.00000000 0.00000000 0.01514693## pell 0.00000000 0.00000000 0.00000000 0.00000000## penalty 0.00000000 0.00000000 0.00000000 0.00000000## performance 0.01863933 0.00000000 0.00000000 0.00000000## peril 0.00000000 0.00000000 0.00000000 0.01514693## plants 0.01863933 0.00000000 0.00000000 0.00000000## plot 0.00000000 0.00000000 0.00000000 0.00000000## politicians 0.01863933 0.00000000 0.01690617 0.03029385## pope 0.00000000 0.00000000 0.00000000 0.04544078## practice 0.01863933 0.00000000 0.00000000 0.01514693## preventing 0.00000000 0.00000000 0.00000000 0.00000000## producing 0.01863933 0.00000000 0.00000000 0.00000000## punish 0.00000000 0.00000000 0.00000000 0.00000000## questions 0.00000000 0.00000000 0.00000000 0.01514693## railroad 0.00000000 0.02260909 0.00000000 0.00000000## ran 0.00000000 0.02260909 0.00000000 0.00000000## really 0.00000000 0.00000000 0.00000000 0.00000000## recover 0.01863933 0.00000000 0.00000000 0.00000000## reforming 0.00000000 0.02260909 0.01690617 0.00000000## religious 0.00000000 0.00000000 0.00000000 0.00000000## renewed 0.00000000 0.00000000 0.00000000 0.00000000## respects 0.01863933 0.00000000 0.00000000 0.03029385## respond 0.00000000 0.00000000 0.00000000 0.01514693## retirees 0.00000000 0.02260909 0.00000000 0.00000000## revenues 0.00000000 0.00000000 0.01690617 0.00000000## revolution 0.01863933 0.00000000 0.00000000 0.00000000## room 0.00000000 0.00000000 0.06762468 0.00000000## roosevelt 0.01863933 0.00000000 0.01690617 0.01514693## sake 0.00000000 0.00000000 0.00000000 0.00000000## saved 0.01863933 0.02260909 0.00000000 0.01514693## saying 0.00000000 0.00000000 0.00000000 0.00000000## scores 0.01863933 0.00000000 0.00000000 0.00000000## secret 0.00000000 0.00000000 0.00000000 0.01514693## seize 0.01863933 0.00000000 0.00000000 0.00000000## selling 0.01863933 0.00000000 0.00000000 0.00000000## serves 0.01863933 0.00000000 0.00000000 0.01514693## servicemembers 0.00000000 0.00000000 0.00000000 0.00000000## ship 0.00000000 0.00000000 0.00000000 0.00000000## shoulder 0.00000000 0.00000000 0.00000000 0.00000000## smart 0.00000000 0.00000000 0.00000000 0.00000000## smarter 0.00000000 0.00000000 0.00000000 0.01514693## soldiers 0.00000000 0.00000000 0.00000000 0.00000000## sorrow 0.00000000 0.00000000 0.00000000 0.00000000## stabilization 0.00000000 0.00000000 0.00000000 0.00000000## stable 0.00000000 0.00000000 0.00000000 0.00000000## steven 0.00000000 0.00000000 0.00000000 0.00000000## stockpile 0.00000000 0.00000000 0.00000000 0.01514693## strive 0.01863933 0.00000000 0.00000000 0.00000000## strongest 0.00000000 0.00000000 0.00000000 0.04544078## summer 0.00000000 0.02260909 0.00000000 0.00000000## syrian 0.00000000 0.00000000 0.00000000 0.00000000## systems 0.00000000 0.00000000 0.01690617 0.00000000## tactics 0.01863933 0.00000000 0.03381234 0.00000000## testing 0.01863933 0.00000000 0.00000000 0.00000000## texas 0.00000000 0.02260909 0.01690617 0.01514693## thinking 0.00000000 0.00000000 0.00000000 0.00000000## threatens 0.00000000 0.00000000 0.00000000 0.00000000## torture 0.00000000 0.00000000 0.00000000 0.00000000## tougher 0.00000000 0.04521818 0.00000000 0.04544078## towards 0.00000000 0.00000000 0.01690617 0.00000000## towns 0.00000000 0.00000000 0.00000000 0.00000000## tragedy 0.00000000 0.00000000 0.00000000 0.00000000## transform 0.00000000 0.00000000 0.00000000 0.00000000## transformation 0.01863933 0.00000000 0.00000000 0.01514693## treatments 0.00000000 0.00000000 0.00000000 0.01514693## troubled 0.01863933 0.00000000 0.00000000 0.00000000## tucson 0.00000000 0.00000000 0.00000000 0.00000000## turns 0.00000000 0.00000000 0.01690617 0.01514693## tv 0.00000000 0.00000000 0.00000000 0.01514693## ultimate 0.00000000 0.00000000 0.03381234 0.00000000## uncertainty 0.01863933 0.00000000 0.00000000 0.00000000## unfinished 0.00000000 0.00000000 0.01690617 0.00000000## unity 0.00000000 0.00000000 0.00000000 0.00000000## victims 0.00000000 0.00000000 0.00000000 0.00000000## voting 0.00000000 0.00000000 0.00000000 0.01514693## warren 0.00000000 0.06782727 0.00000000 0.00000000## wasn^t 0.00000000 0.00000000 0.00000000 0.03029385## weak 0.00000000 0.00000000 0.00000000 0.01514693## weakened 0.00000000 0.00000000 0.00000000 0.00000000## wealthy 0.00000000 0.02260909 0.03381234 0.00000000## wherever 0.00000000 0.00000000 0.00000000 0.00000000## wisely 0.00000000 0.00000000 0.00000000 0.00000000## written 0.03727866 0.02260909 0.01690617 0.00000000## accomplish 0.00000000 0.00000000 0.01690617 0.01514693## activities 0.00000000 0.00000000 0.00000000 0.00000000## adults 0.01863933 0.02260909 0.00000000 0.00000000## affairs 0.00000000 0.00000000 0.00000000 0.00000000## aggressively 0.01863933 0.00000000 0.00000000 0.00000000## aim 0.01863933 0.00000000 0.00000000 0.00000000## airports 0.00000000 0.04521818 0.00000000 0.00000000## ally 0.00000000 0.00000000 0.00000000 0.00000000## amanda 0.00000000 0.00000000 0.00000000 0.00000000## americas 0.00000000 0.00000000 0.00000000 0.00000000## announced 0.00000000 0.00000000 0.01690617 0.00000000## anthrax 0.00000000 0.00000000 0.00000000 0.00000000## anywhere 0.00000000 0.02260909 0.00000000 0.01514693## arabia 0.01863933 0.00000000 0.00000000 0.00000000## assume 0.00000000 0.00000000 0.00000000 0.00000000## atlantic 0.00000000 0.00000000 0.00000000 0.00000000## attract 0.00000000 0.02260909 0.00000000 0.00000000## automobile 0.00000000 0.02260909 0.00000000 0.00000000## b 0.00000000 0.00000000 0.00000000 0.01514693## barriers 0.00000000 0.00000000 0.00000000 0.00000000## batteries 0.01863933 0.00000000 0.00000000 0.00000000## behalf 0.00000000 0.00000000 0.00000000 0.00000000## behavior 0.00000000 0.00000000 0.01690617 0.00000000## bench 0.03727866 0.00000000 0.00000000 0.00000000## biofuels 0.00000000 0.02260909 0.00000000 0.00000000## blessed 0.00000000 0.00000000 0.00000000 0.00000000## blow 0.01863933 0.02260909 0.00000000 0.00000000## bonds 0.00000000 0.00000000 0.00000000 0.01514693## boost 0.00000000 0.02260909 0.00000000 0.00000000## bought 0.00000000 0.00000000 0.00000000 0.01514693## brian 0.00000000 0.00000000 0.00000000 0.00000000## british 0.00000000 0.00000000 0.00000000 0.00000000## broadband 0.00000000 0.00000000 0.00000000 0.01514693## broke 0.00000000 0.00000000 0.01690617 0.00000000## brutal 0.01863933 0.00000000 0.00000000 0.00000000## bullet 0.00000000 0.02260909 0.01690617 0.00000000## careers 0.00000000 0.02260909 0.00000000 0.03029385## catastrophic 0.00000000 0.00000000 0.00000000 0.00000000## central 0.00000000 0.00000000 0.01690617 0.01514693## charitable 0.00000000 0.00000000 0.01690617 0.00000000## civilian 0.00000000 0.00000000 0.00000000 0.00000000## claim 0.00000000 0.00000000 0.03381234 0.00000000## clinton 0.01863933 0.00000000 0.00000000 0.00000000## closer 0.01863933 0.00000000 0.01690617 0.00000000## cold 0.00000000 0.00000000 0.00000000 0.01514693## collapse 0.00000000 0.00000000 0.01690617 0.00000000## compassionate 0.01863933 0.00000000 0.00000000 0.00000000## compromise 0.00000000 0.00000000 0.01690617 0.01514693## conflicts 0.00000000 0.00000000 0.00000000 0.03029385## connected 0.00000000 0.04521818 0.00000000 0.00000000## connecting 0.00000000 0.00000000 0.00000000 0.00000000## constitutional 0.01863933 0.00000000 0.00000000 0.00000000## courses 0.03727866 0.00000000 0.00000000 0.00000000## covered 0.00000000 0.00000000 0.00000000 0.00000000## currently 0.00000000 0.00000000 0.05071851 0.00000000## daughters 0.00000000 0.00000000 0.01690617 0.00000000## declined 0.00000000 0.00000000 0.00000000 0.00000000## deduction 0.00000000 0.00000000 0.00000000 0.00000000## defenses 0.00000000 0.00000000 0.00000000 0.00000000## desiline 0.00000000 0.00000000 0.00000000 0.00000000## despair 0.01863933 0.00000000 0.00000000 0.00000000## details 0.00000000 0.00000000 0.05071851 0.00000000## detroit 0.00000000 0.00000000 0.00000000 0.00000000## die 0.00000000 0.00000000 0.01690617 0.00000000## disabilities 0.00000000 0.00000000 0.01690617 0.00000000## disagree 0.00000000 0.00000000 0.00000000 0.01514693## discovery 0.00000000 0.00000000 0.00000000 0.03029385## doors 0.00000000 0.00000000 0.00000000 0.00000000## dozens 0.00000000 0.00000000 0.00000000 0.00000000## dramatic 0.01863933 0.00000000 0.00000000 0.00000000## drawing 0.00000000 0.00000000 0.00000000 0.01514693## drove 0.00000000 0.00000000 0.01690617 0.00000000## duties 0.01863933 0.00000000 0.00000000 0.01514693## eager 0.00000000 0.00000000 0.00000000 0.00000000## earns 0.00000000 0.00000000 0.00000000 0.00000000## economics 0.00000000 0.00000000 0.00000000 0.00000000## embassy 0.00000000 0.00000000 0.00000000 0.00000000## encourages 0.00000000 0.00000000 0.00000000 0.01514693## engine 0.00000000 0.02260909 0.00000000 0.00000000## enormous 0.00000000 0.00000000 0.00000000 0.01514693## epidemic 0.00000000 0.00000000 0.00000000 0.03029385## erler 0.00000000 0.00000000 0.00000000 0.00000000## ethanol 0.03727866 0.00000000 0.00000000 0.00000000## excuse 0.00000000 0.02260909 0.01690617 0.00000000## existing 0.00000000 0.00000000 0.03381234 0.01514693## expected 0.00000000 0.00000000 0.00000000 0.01514693## expenses 0.00000000 0.00000000 0.01690617 0.00000000## extending 0.00000000 0.00000000 0.00000000 0.01514693## extraordinary 0.00000000 0.00000000 0.01690617 0.01514693## faces 0.00000000 0.00000000 0.00000000 0.00000000## faithful 0.03727866 0.00000000 0.00000000 0.00000000## family^s 0.00000000 0.02260909 0.00000000 0.00000000## favor 0.00000000 0.00000000 0.01690617 0.04544078## fee 0.00000000 0.00000000 0.01690617 0.00000000## feet 0.01863933 0.02260909 0.00000000 0.00000000## finding 0.01863933 0.00000000 0.01690617 0.00000000## flag 0.00000000 0.00000000 0.00000000 0.00000000## focused 0.00000000 0.00000000 0.00000000 0.01514693## foreclosure 0.00000000 0.00000000 0.00000000 0.00000000## form 0.00000000 0.00000000 0.00000000 0.00000000## fourth 0.00000000 0.00000000 0.00000000 0.01514693## framework 0.00000000 0.00000000 0.00000000 0.00000000## freedom^s 0.03727866 0.00000000 0.00000000 0.00000000## gathered 0.01863933 0.02260909 0.00000000 0.00000000## giffords 0.00000000 0.00000000 0.00000000 0.00000000## govern 0.00000000 0.00000000 0.00000000 0.00000000## governing 0.00000000 0.00000000 0.00000000 0.00000000## governors 0.00000000 0.00000000 0.00000000 0.00000000## grant 0.00000000 0.02260909 0.00000000 0.00000000## gravest 0.00000000 0.00000000 0.00000000 0.00000000## grid 0.00000000 0.00000000 0.00000000 0.00000000## grief 0.00000000 0.00000000 0.00000000 0.00000000## grit 0.00000000 0.00000000 0.00000000 0.01514693## guard 0.00000000 0.00000000 0.00000000 0.00000000## haiti 0.00000000 0.00000000 0.00000000 0.00000000## hasn^t 0.00000000 0.02260909 0.00000000 0.00000000## hate 0.00000000 0.00000000 0.00000000 0.00000000## healing 0.00000000 0.00000000 0.00000000 0.00000000## healthier 0.00000000 0.00000000 0.03381234 0.00000000## highways 0.01863933 0.04521818 0.00000000 0.00000000## hizballah 0.00000000 0.00000000 0.00000000 0.00000000## honorable 0.01863933 0.00000000 0.00000000 0.00000000## hospital 0.00000000 0.00000000 0.01690617 0.00000000## hubs 0.00000000 0.00000000 0.00000000 0.01514693## hydrogen 0.01863933 0.00000000 0.00000000 0.00000000## ideological 0.01863933 0.00000000 0.03381234 0.00000000## impose 0.01863933 0.00000000 0.00000000 0.01514693## impossible 0.01863933 0.02260909 0.00000000 0.00000000## include 0.01863933 0.00000000 0.00000000 0.00000000## inspire 0.00000000 0.00000000 0.00000000 0.00000000## investors 0.01863933 0.00000000 0.00000000 0.00000000## irresponsible 0.00000000 0.00000000 0.03381234 0.00000000## islam 0.03727866 0.00000000 0.00000000 0.00000000## isolated 0.00000000 0.00000000 0.00000000 0.00000000## j 0.00000000 0.00000000 0.03381234 0.00000000## journey 0.01863933 0.00000000 0.00000000 0.00000000## julie 0.00000000 0.00000000 0.00000000 0.00000000## kentucky 0.00000000 0.02260909 0.00000000 0.00000000## l 0.00000000 0.00000000 0.00000000 0.00000000## lady 0.01863933 0.00000000 0.00000000 0.00000000## lawyers 0.00000000 0.00000000 0.00000000 0.00000000## laying 0.00000000 0.02260909 0.00000000 0.01514693## lessons 0.00000000 0.00000000 0.00000000 0.01514693## lets 0.00000000 0.00000000 0.01690617 0.00000000## lifting 0.01863933 0.00000000 0.00000000 0.00000000## loved 0.00000000 0.00000000 0.00000000 0.01514693## lowest 0.01863933 0.00000000 0.00000000 0.00000000## manufacturer 0.00000000 0.00000000 0.00000000 0.00000000## mccain 0.00000000 0.00000000 0.05071851 0.00000000## meant 0.00000000 0.00000000 0.00000000 0.01514693## measured 0.01863933 0.00000000 0.00000000 0.00000000## minds 0.01863933 0.00000000 0.01690617 0.01514693## minorities 0.01863933 0.00000000 0.00000000 0.01514693## modernize 0.00000000 0.02260909 0.00000000 0.01514693## modest 0.00000000 0.02260909 0.01690617 0.00000000## momentum 0.00000000 0.00000000 0.00000000 0.00000000## monthly 0.00000000 0.00000000 0.00000000 0.00000000## mother 0.00000000 0.00000000 0.00000000 0.00000000## muslims 0.00000000 0.00000000 0.00000000 0.01514693## near 0.00000000 0.02260909 0.00000000 0.00000000## needless 0.00000000 0.00000000 0.00000000 0.00000000## negotiate 0.00000000 0.00000000 0.00000000 0.00000000## newtown 0.00000000 0.00000000 0.00000000 0.00000000## nobody 0.00000000 0.02260909 0.01690617 0.00000000## numbers 0.00000000 0.00000000 0.00000000 0.00000000## nurses 0.00000000 0.00000000 0.01690617 0.00000000## opening 0.00000000 0.00000000 0.00000000 0.00000000## oppose 0.00000000 0.00000000 0.01690617 0.00000000## opposition 0.03727866 0.00000000 0.00000000 0.00000000## organized 0.03727866 0.02260909 0.00000000 0.00000000## otherwise 0.00000000 0.00000000 0.00000000 0.00000000## outside 0.00000000 0.00000000 0.00000000 0.00000000## painful 0.00000000 0.00000000 0.00000000 0.00000000## paris 0.00000000 0.00000000 0.00000000 0.01514693## passion 0.00000000 0.00000000 0.05071851 0.00000000## patriot 0.01863933 0.00000000 0.00000000 0.00000000## pentagon 0.00000000 0.00000000 0.00000000 0.00000000## performing 0.01863933 0.00000000 0.00000000 0.00000000## permanently 0.00000000 0.00000000 0.00000000 0.00000000## placed 0.01863933 0.00000000 0.01690617 0.00000000## pleased 0.01863933 0.00000000 0.00000000 0.00000000## pledged 0.00000000 0.00000000 0.00000000 0.00000000## plenty 0.00000000 0.02260909 0.00000000 0.03029385## points 0.00000000 0.00000000 0.01690617 0.00000000## population 0.00000000 0.02260909 0.00000000 0.00000000## ports 0.00000000 0.00000000 0.00000000 0.00000000## pose 0.00000000 0.00000000 0.00000000 0.03029385## possibility 0.00000000 0.00000000 0.00000000 0.00000000## prayers 0.00000000 0.00000000 0.00000000 0.00000000## preparing 0.01863933 0.02260909 0.00000000 0.00000000## prevented 0.01863933 0.00000000 0.00000000 0.00000000## principal 0.00000000 0.00000000 0.00000000 0.01514693## principled 0.00000000 0.00000000 0.00000000 0.01514693## productive 0.00000000 0.00000000 0.00000000 0.00000000## profound 0.00000000 0.00000000 0.00000000 0.01514693## prosperous 0.00000000 0.00000000 0.00000000 0.00000000## proven 0.01863933 0.00000000 0.00000000 0.00000000## pursuit 0.00000000 0.00000000 0.00000000 0.00000000## push 0.01863933 0.00000000 0.00000000 0.04544078## puts 0.00000000 0.00000000 0.01690617 0.00000000## quit 0.00000000 0.00000000 0.00000000 0.00000000## rail 0.00000000 0.00000000 0.00000000 0.00000000## range 0.00000000 0.02260909 0.01690617 0.00000000## reaching 0.00000000 0.00000000 0.00000000 0.01514693## reagan 0.01863933 0.00000000 0.00000000 0.00000000## reasons 0.00000000 0.00000000 0.03381234 0.00000000## reauthorize 0.03727866 0.00000000 0.00000000 0.00000000## recommendations 0.00000000 0.00000000 0.00000000 0.00000000## recruit 0.00000000 0.00000000 0.00000000 0.03029385## reduces 0.01863933 0.00000000 0.00000000 0.00000000## refinance 0.00000000 0.02260909 0.00000000 0.00000000## reflects 0.01863933 0.00000000 0.00000000 0.01514693## rejects 0.03727866 0.00000000 0.00000000 0.00000000## relationship 0.01863933 0.00000000 0.00000000 0.00000000## religion 0.00000000 0.00000000 0.00000000 0.01514693## remaining 0.00000000 0.00000000 0.00000000 0.00000000## reminded 0.00000000 0.00000000 0.01690617 0.00000000## removed 0.00000000 0.00000000 0.00000000 0.00000000## repair 0.00000000 0.04521818 0.00000000 0.00000000## repeal 0.00000000 0.00000000 0.00000000 0.00000000## reserve 0.00000000 0.00000000 0.00000000 0.00000000## resilience 0.00000000 0.00000000 0.00000000 0.00000000## restart 0.00000000 0.00000000 0.00000000 0.00000000## restraint 0.00000000 0.00000000 0.00000000 0.00000000## retire 0.00000000 0.00000000 0.00000000 0.01514693## revealed 0.00000000 0.00000000 0.00000000 0.00000000## rewarding 0.00000000 0.00000000 0.00000000 0.00000000## rewards 0.00000000 0.00000000 0.00000000 0.00000000## romney 0.00000000 0.00000000 0.00000000 0.00000000## ryan 0.01863933 0.00000000 0.00000000 0.04544078## sacred 0.00000000 0.00000000 0.01690617 0.00000000## sandy 0.00000000 0.00000000 0.00000000 0.00000000## season 0.00000000 0.00000000 0.01690617 0.01514693## seeking 0.00000000 0.00000000 0.00000000 0.00000000## seeks 0.00000000 0.00000000 0.00000000 0.00000000## seem 0.03727866 0.00000000 0.00000000 0.00000000## self-government 0.01863933 0.00000000 0.00000000 0.00000000## servants 0.01863933 0.00000000 0.00000000 0.00000000## sets 0.00000000 0.00000000 0.00000000 0.00000000## short 0.00000000 0.00000000 0.00000000 0.01514693## shows 0.00000000 0.00000000 0.00000000 0.00000000## shut 0.01863933 0.00000000 0.00000000 0.01514693## sides 0.00000000 0.00000000 0.00000000 0.00000000## skies 0.00000000 0.02260909 0.00000000 0.00000000## skilled 0.00000000 0.00000000 0.00000000 0.00000000## solved 0.01863933 0.02260909 0.00000000 0.00000000## somebody 0.00000000 0.00000000 0.01690617 0.01514693## somehow 0.01863933 0.00000000 0.00000000 0.01514693## specific 0.00000000 0.00000000 0.00000000 0.00000000## speech 0.00000000 0.02260909 0.00000000 0.00000000## spill 0.00000000 0.00000000 0.00000000 0.00000000## spring 0.00000000 0.00000000 0.00000000 0.00000000## stewards 0.01863933 0.00000000 0.00000000 0.00000000## stopping 0.00000000 0.00000000 0.00000000 0.00000000## strengths 0.00000000 0.00000000 0.00000000 0.03029385## strikes 0.00000000 0.00000000 0.00000000 0.00000000## subject 0.00000000 0.00000000 0.01690617 0.00000000## submit 0.00000000 0.00000000 0.00000000 0.00000000## subsidizing 0.00000000 0.00000000 0.01690617 0.00000000## succeeded 0.00000000 0.00000000 0.00000000 0.00000000## sunni 0.00000000 0.00000000 0.00000000 0.00000000## talks 0.00000000 0.00000000 0.00000000 0.00000000## tells 0.00000000 0.00000000 0.00000000 0.00000000## term 0.00000000 0.00000000 0.03381234 0.00000000## tested 0.00000000 0.00000000 0.00000000 0.00000000## thomas 0.00000000 0.00000000 0.00000000 0.01514693## tight-knit 0.00000000 0.00000000 0.00000000 0.00000000## tom 0.00000000 0.00000000 0.00000000 0.00000000## trapped 0.00000000 0.00000000 0.00000000 0.03029385## treating 0.00000000 0.00000000 0.00000000 0.01514693## trial 0.00000000 0.00000000 0.00000000 0.00000000## undermine 0.00000000 0.00000000 0.00000000 0.01514693## unfortunately 0.00000000 0.00000000 0.01690617 0.00000000## universal 0.00000000 0.00000000 0.01690617 0.00000000## university 0.00000000 0.00000000 0.00000000 0.00000000## veteran 0.00000000 0.00000000 0.00000000 0.00000000## view 0.00000000 0.00000000 0.00000000 0.00000000## violated 0.00000000 0.02260909 0.00000000 0.00000000## visit 0.00000000 0.00000000 0.00000000 0.00000000## volunteers 0.00000000 0.00000000 0.00000000 0.01514693## wake 0.00000000 0.00000000 0.00000000 0.00000000## watched 0.00000000 0.02260909 0.00000000 0.00000000## waters 0.00000000 0.00000000 0.00000000 0.00000000## whom 0.00000000 0.00000000 0.01690617 0.00000000## willingness 0.00000000 0.00000000 0.00000000 0.03029385## women^s 0.00000000 0.00000000 0.00000000 0.00000000## youth 0.05591799 0.00000000 0.00000000 0.00000000## abuses 0.01863933 0.00000000 0.01690617 0.00000000## achieving 0.00000000 0.00000000 0.00000000 0.00000000## acres 0.00000000 0.00000000 0.00000000 0.00000000## affected 0.00000000 0.02260909 0.00000000 0.00000000## afflicted 0.00000000 0.00000000 0.00000000 0.00000000## afghans 0.00000000 0.00000000 0.00000000 0.00000000## aggression 0.00000000 0.00000000 0.00000000 0.00000000## aging 0.00000000 0.02260909 0.01690617 0.00000000## aisle 0.00000000 0.00000000 0.01690617 0.00000000## alike 0.00000000 0.02260909 0.00000000 0.00000000## alliance 0.00000000 0.00000000 0.00000000 0.00000000## alltime 0.00000000 0.00000000 0.00000000 0.00000000## amnesty 0.01863933 0.00000000 0.00000000 0.00000000## analyze 0.00000000 0.00000000 0.00000000 0.00000000## andra 0.00000000 0.00000000 0.00000000 0.00000000## annual 0.00000000 0.00000000 0.00000000 0.00000000## appointed 0.00000000 0.00000000 0.00000000 0.00000000## approved 0.01863933 0.00000000 0.00000000 0.00000000## arbitrary 0.00000000 0.00000000 0.01690617 0.00000000## argued 0.00000000 0.02260909 0.03381234 0.00000000## argument 0.00000000 0.02260909 0.00000000 0.00000000## arrested 0.00000000 0.00000000 0.00000000 0.00000000## ashley 0.00000000 0.00000000 0.00000000 0.00000000## assembling 0.00000000 0.00000000 0.00000000 0.00000000## association 0.00000000 0.00000000 0.00000000 0.00000000## atomic 0.00000000 0.00000000 0.00000000 0.00000000## attempt 0.00000000 0.00000000 0.00000000 0.00000000## attorney 0.00000000 0.00000000 0.00000000 0.00000000## authorities 0.00000000 0.00000000 0.00000000 0.00000000## automakers 0.00000000 0.00000000 0.01690617 0.00000000## automobiles 0.01863933 0.00000000 0.00000000 0.00000000## aware 0.00000000 0.02260909 0.00000000 0.00000000## background 0.00000000 0.00000000 0.00000000 0.01514693## backgrounds 0.00000000 0.00000000 0.00000000 0.00000000## bankruptcy 0.00000000 0.00000000 0.01690617 0.00000000## barely 0.00000000 0.00000000 0.00000000 0.00000000## battery 0.00000000 0.00000000 0.00000000 0.00000000## bauer 0.00000000 0.00000000 0.00000000 0.00000000## bear 0.00000000 0.00000000 0.00000000 0.00000000## beliefs 0.00000000 0.00000000 0.00000000 0.00000000## believes 0.00000000 0.00000000 0.00000000 0.00000000## ben 0.00000000 0.00000000 0.00000000 0.00000000## benjamin 0.00000000 0.00000000 0.00000000 0.00000000## blame 0.00000000 0.00000000 0.00000000 0.00000000## blood 0.00000000 0.00000000 0.00000000 0.01514693## board 0.00000000 0.00000000 0.00000000 0.00000000## boldly 0.03727866 0.00000000 0.00000000 0.00000000## boom 0.03727866 0.00000000 0.00000000 0.00000000## booming 0.00000000 0.00000000 0.00000000 0.00000000## botulinum 0.00000000 0.00000000 0.00000000 0.00000000## branches 0.01863933 0.00000000 0.00000000 0.01514693## britain 0.00000000 0.00000000 0.00000000 0.00000000## broadly 0.00000000 0.00000000 0.00000000 0.01514693## bryan 0.00000000 0.00000000 0.00000000 0.00000000## builds 0.00000000 0.02260909 0.00000000 0.00000000## burdens 0.00000000 0.00000000 0.00000000 0.00000000## calls 0.01863933 0.00000000 0.01690617 0.01514693## calm 0.00000000 0.00000000 0.00000000 0.00000000## capabilities 0.00000000 0.00000000 0.00000000 0.00000000## capable 0.01863933 0.00000000 0.00000000 0.00000000## carried 0.01863933 0.00000000 0.00000000 0.00000000## carrying 0.00000000 0.00000000 0.00000000 0.00000000## cast 0.00000000 0.00000000 0.00000000 0.01514693## cell 0.00000000 0.00000000 0.00000000 0.01514693## centers 0.00000000 0.00000000 0.00000000 0.00000000## ceos 0.00000000 0.02260909 0.00000000 0.00000000## charities 0.00000000 0.00000000 0.00000000 0.00000000## chose 0.00000000 0.00000000 0.00000000 0.00000000## chosen 0.01863933 0.02260909 0.00000000 0.00000000## classrooms 0.01863933 0.02260909 0.00000000 0.00000000## clearly 0.00000000 0.00000000 0.00000000 0.00000000## cloning 0.01863933 0.00000000 0.00000000 0.00000000## closing 0.00000000 0.00000000 0.00000000 0.00000000## closure 0.00000000 0.00000000 0.00000000 0.01514693## coalitions 0.00000000 0.00000000 0.00000000 0.00000000## cochairs 0.00000000 0.00000000 0.00000000 0.00000000## combined 0.01863933 0.00000000 0.01690617 0.01514693## commander 0.00000000 0.00000000 0.00000000 0.00000000## competitors 0.01863933 0.00000000 0.01690617 0.00000000## concluded 0.00000000 0.00000000 0.00000000 0.00000000## condition 0.00000000 0.00000000 0.01690617 0.00000000## confirmation 0.00000000 0.00000000 0.00000000 0.00000000## confronted 0.00000000 0.00000000 0.00000000 0.00000000## congresses 0.01863933 0.02260909 0.00000000 0.00000000## conquest 0.00000000 0.00000000 0.00000000 0.00000000## consequences 0.00000000 0.00000000 0.00000000 0.00000000## conservative 0.00000000 0.00000000 0.00000000 0.00000000## consumed 0.00000000 0.00000000 0.00000000 0.00000000## contained 0.00000000 0.00000000 0.00000000 0.00000000## contentious 0.00000000 0.00000000 0.00000000 0.00000000## continues 0.00000000 0.00000000 0.01690617 0.00000000## contribute 0.00000000 0.00000000 0.00000000 0.00000000## convictions 0.00000000 0.00000000 0.00000000 0.00000000## convinced 0.00000000 0.00000000 0.00000000 0.00000000## cops 0.00000000 0.00000000 0.00000000 0.00000000## core 0.00000000 0.00000000 0.00000000 0.00000000## counsel 0.01863933 0.00000000 0.00000000 0.00000000## country^s 0.00000000 0.00000000 0.00000000 0.00000000## creativity 0.01863933 0.00000000 0.00000000 0.00000000## creed 0.00000000 0.00000000 0.00000000 0.01514693## creek 0.00000000 0.00000000 0.00000000 0.00000000## criminal 0.00000000 0.00000000 0.00000000 0.03029385## critics 0.00000000 0.00000000 0.03381234 0.00000000## cynical 0.00000000 0.00000000 0.01690617 0.01514693## daily 0.00000000 0.00000000 0.00000000 0.01514693## daughter 0.00000000 0.00000000 0.00000000 0.00000000## dealing 0.00000000 0.00000000 0.00000000 0.00000000## deals 0.00000000 0.00000000 0.00000000 0.00000000## dealt 0.00000000 0.00000000 0.00000000 0.00000000## debating 0.01863933 0.00000000 0.00000000 0.01514693## deceiving 0.00000000 0.00000000 0.00000000 0.00000000## decided 0.00000000 0.06782727 0.00000000 0.00000000## dedicated 0.00000000 0.00000000 0.00000000 0.00000000## deductions 0.00000000 0.02260909 0.00000000 0.00000000## deeper 0.01863933 0.00000000 0.00000000 0.00000000## delay 0.00000000 0.00000000 0.00000000 0.00000000## delivering 0.00000000 0.00000000 0.00000000 0.00000000## demanding 0.00000000 0.00000000 0.00000000 0.00000000## deploy 0.00000000 0.00000000 0.00000000 0.00000000## deploying 0.00000000 0.00000000 0.00000000 0.00000000## describes 0.00000000 0.00000000 0.00000000 0.00000000## diplomats 0.00000000 0.00000000 0.00000000 0.00000000## directing 0.01863933 0.00000000 0.01690617 0.00000000## disadvantaged 0.00000000 0.02260909 0.00000000 0.00000000## discuss 0.00000000 0.00000000 0.01690617 0.00000000## discussion 0.00000000 0.00000000 0.00000000 0.01514693## disruptions 0.00000000 0.00000000 0.00000000 0.01514693## divided 0.00000000 0.00000000 0.00000000 0.00000000## drawn 0.00000000 0.00000000 0.00000000 0.00000000## drilling 0.00000000 0.00000000 0.00000000 0.00000000## drives 0.00000000 0.00000000 0.00000000 0.00000000## earning 0.00000000 0.00000000 0.00000000 0.00000000## earnings 0.00000000 0.00000000 0.00000000 0.01514693## egg 0.00000000 0.00000000 0.00000000 0.00000000## elements 0.00000000 0.00000000 0.00000000 0.00000000## employer 0.00000000 0.00000000 0.03381234 0.00000000## empty 0.00000000 0.00000000 0.00000000 0.00000000## encouraged 0.00000000 0.00000000 0.01690617 0.00000000## endure 0.00000000 0.00000000 0.00000000 0.00000000## engage 0.00000000 0.00000000 0.01690617 0.00000000## engaged 0.00000000 0.00000000 0.00000000 0.00000000## enlisting 0.00000000 0.00000000 0.00000000 0.00000000## enter 0.00000000 0.00000000 0.01690617 0.00000000## entering 0.00000000 0.00000000 0.00000000 0.00000000## environmental 0.00000000 0.00000000 0.00000000 0.00000000## envy 0.01863933 0.02260909 0.00000000 0.01514693## ethical 0.03727866 0.00000000 0.00000000 0.00000000## excessive 0.00000000 0.00000000 0.01690617 0.00000000## extreme 0.00000000 0.00000000 0.00000000 0.01514693## falling 0.01863933 0.02260909 0.00000000 0.00000000## fate 0.00000000 0.00000000 0.00000000 0.00000000## feeding 0.00000000 0.00000000 0.00000000 0.01514693## finances 0.00000000 0.00000000 0.00000000 0.00000000## firefighters 0.00000000 0.00000000 0.00000000 0.00000000## flexibility 0.00000000 0.00000000 0.00000000 0.00000000## flowing 0.00000000 0.00000000 0.00000000 0.00000000## flying 0.00000000 0.02260909 0.00000000 0.00000000## forests 0.00000000 0.00000000 0.00000000 0.00000000## forever 0.00000000 0.00000000 0.00000000 0.00000000## forms 0.03727866 0.00000000 0.00000000 0.00000000## forth 0.00000000 0.02260909 0.00000000 0.00000000## francis 0.00000000 0.00000000 0.00000000 0.03029385## friendship 0.00000000 0.00000000 0.00000000 0.00000000## fulfill 0.00000000 0.00000000 0.00000000 0.00000000## fulfilled 0.00000000 0.00000000 0.00000000 0.00000000## full-time 0.00000000 0.00000000 0.00000000 0.00000000## gained 0.00000000 0.00000000 0.00000000 0.01514693## games 0.00000000 0.00000000 0.01690617 0.00000000## gap 0.00000000 0.00000000 0.01690617 0.00000000## gasoline 0.00000000 0.00000000 0.00000000 0.01514693## gate 0.00000000 0.00000000 0.00000000 0.00000000## gates 0.00000000 0.00000000 0.00000000 0.00000000## generates 0.00000000 0.00000000 0.00000000 0.00000000## generosity 0.00000000 0.00000000 0.00000000 0.00000000## grade 0.00000000 0.00000000 0.00000000 0.00000000## grades 0.01863933 0.00000000 0.00000000 0.00000000## gradually 0.00000000 0.02260909 0.00000000 0.00000000## grasp 0.00000000 0.00000000 0.00000000 0.03029385## gratitude 0.00000000 0.00000000 0.00000000 0.00000000## guest 0.01863933 0.00000000 0.00000000 0.00000000## guided 0.00000000 0.02260909 0.00000000 0.00000000## hall 0.00000000 0.00000000 0.00000000 0.00000000## happy 0.00000000 0.00000000 0.01690617 0.00000000## harbor 0.00000000 0.00000000 0.00000000 0.00000000## hatch 0.00000000 0.00000000 0.03381234 0.00000000## hated 0.00000000 0.00000000 0.00000000 0.00000000## hearing 0.00000000 0.00000000 0.00000000 0.00000000## hemisphere 0.00000000 0.00000000 0.00000000 0.01514693## heroes 0.00000000 0.02260909 0.00000000 0.00000000## hiding 0.00000000 0.00000000 0.00000000 0.00000000## highs 0.00000000 0.00000000 0.00000000 0.01514693## himself 0.00000000 0.00000000 0.00000000 0.00000000## hole 0.00000000 0.00000000 0.00000000 0.00000000## homeownership 0.00000000 0.00000000 0.00000000 0.00000000## hopeless 0.03727866 0.00000000 0.00000000 0.01514693## hot 0.00000000 0.00000000 0.00000000 0.01514693## humane 0.01863933 0.00000000 0.00000000 0.00000000## hunger 0.00000000 0.00000000 0.00000000 0.00000000## husband 0.01863933 0.00000000 0.00000000 0.00000000## idealism 0.01863933 0.00000000 0.00000000 0.00000000## identified 0.00000000 0.02260909 0.00000000 0.00000000## ideologies 0.00000000 0.00000000 0.00000000 0.00000000## illness 0.00000000 0.00000000 0.03381234 0.00000000## imagined 0.00000000 0.00000000 0.00000000 0.00000000## imports 0.01863933 0.00000000 0.00000000 0.01514693## improved 0.00000000 0.00000000 0.00000000 0.00000000## inspired 0.00000000 0.00000000 0.00000000 0.01514693## institutes 0.00000000 0.00000000 0.00000000 0.03029385## interested 0.00000000 0.00000000 0.00000000 0.00000000## jackie 0.00000000 0.00000000 0.00000000 0.00000000## jeopardize 0.00000000 0.00000000 0.00000000 0.00000000## johnson 0.00000000 0.00000000 0.00000000 0.04544078## jordan 0.00000000 0.00000000 0.00000000 0.00000000## josefina 0.00000000 0.00000000 0.00000000 0.00000000## july 0.00000000 0.02260909 0.00000000 0.00000000## junk 0.00000000 0.00000000 0.00000000 0.00000000## k 0.00000000 0.00000000 0.00000000 0.01514693## knowledge 0.01863933 0.00000000 0.00000000 0.00000000## latino 0.00000000 0.00000000 0.00000000 0.01514693## layoffs 0.00000000 0.00000000 0.00000000 0.00000000## legitimate 0.00000000 0.00000000 0.03381234 0.00000000## lenders 0.00000000 0.00000000 0.00000000 0.00000000## lesson 0.00000000 0.00000000 0.00000000 0.03029385## levant 0.00000000 0.00000000 0.00000000 0.03029385## leverage 0.00000000 0.00000000 0.03381234 0.01514693## liberal 0.00000000 0.00000000 0.00000000 0.00000000## lies 0.00000000 0.00000000 0.00000000 0.00000000## light 0.00000000 0.00000000 0.00000000 0.00000000## liters 0.00000000 0.00000000 0.00000000 0.00000000## lived 0.00000000 0.00000000 0.00000000 0.00000000## locate 0.00000000 0.00000000 0.00000000 0.01514693## losses 0.00000000 0.00000000 0.01690617 0.00000000## malaria 0.03727866 0.00000000 0.00000000 0.01514693## master 0.00000000 0.00000000 0.00000000 0.00000000## match 0.00000000 0.00000000 0.00000000 0.00000000## meets 0.00000000 0.00000000 0.00000000 0.00000000## mentor 0.00000000 0.00000000 0.00000000 0.00000000## mercy 0.00000000 0.00000000 0.00000000 0.00000000## mexico 0.00000000 0.00000000 0.00000000 0.00000000## midst 0.00000000 0.00000000 0.00000000 0.00000000## militia 0.00000000 0.00000000 0.00000000 0.00000000## millionaires 0.00000000 0.02260909 0.00000000 0.00000000## mine 0.00000000 0.00000000 0.00000000 0.01514693## mitt 0.00000000 0.00000000 0.00000000 0.00000000## morning 0.00000000 0.00000000 0.00000000 0.00000000## mourning 0.01863933 0.00000000 0.00000000 0.00000000## movements 0.00000000 0.00000000 0.00000000 0.01514693## moves 0.00000000 0.00000000 0.00000000 0.00000000## name 0.00000000 0.00000000 0.00000000 0.00000000## nancy 0.00000000 0.00000000 0.01690617 0.00000000## native 0.00000000 0.00000000 0.00000000 0.01514693## nature 0.00000000 0.00000000 0.00000000 0.00000000## naval 0.00000000 0.00000000 0.00000000 0.01514693## nearing 0.00000000 0.00000000 0.00000000 0.00000000## nest 0.00000000 0.00000000 0.00000000 0.00000000## newly 0.00000000 0.00000000 0.00000000 0.00000000## norwood 0.00000000 0.00000000 0.00000000 0.00000000## notice 0.00000000 0.00000000 0.00000000 0.00000000## notion 0.00000000 0.02260909 0.00000000 0.00000000## obesity 0.00000000 0.00000000 0.00000000 0.00000000## offering 0.01863933 0.00000000 0.00000000 0.01514693## offshore 0.00000000 0.00000000 0.00000000 0.01514693## ohio 0.00000000 0.02260909 0.00000000 0.00000000## ongoing 0.00000000 0.02260909 0.00000000 0.00000000## oppression 0.01863933 0.00000000 0.00000000 0.00000000## orrin 0.00000000 0.00000000 0.03381234 0.00000000## outlined 0.00000000 0.00000000 0.01690617 0.00000000## outsourcing 0.00000000 0.00000000 0.00000000 0.00000000## overnight 0.00000000 0.00000000 0.00000000 0.03029385## oversight 0.00000000 0.00000000 0.00000000 0.00000000## ownership 0.00000000 0.00000000 0.00000000 0.00000000## pacific 0.00000000 0.00000000 0.00000000 0.00000000## pain 0.00000000 0.00000000 0.00000000 0.00000000## palestine 0.00000000 0.00000000 0.00000000 0.00000000## palestinians 0.00000000 0.00000000 0.00000000 0.00000000## partnering 0.00000000 0.00000000 0.00000000 0.01514693## payment 0.00000000 0.00000000 0.00000000 0.00000000## pelosi 0.00000000 0.00000000 0.01690617 0.00000000## perhaps 0.00000000 0.00000000 0.00000000 0.00000000## permitted 0.00000000 0.00000000 0.00000000 0.00000000## persian 0.00000000 0.00000000 0.00000000 0.00000000## philadelphia 0.00000000 0.00000000 0.00000000 0.00000000## plague 0.00000000 0.00000000 0.00000000 0.00000000## plotting 0.00000000 0.00000000 0.00000000 0.03029385## pocket 0.00000000 0.06782727 0.00000000 0.00000000## position 0.00000000 0.00000000 0.00000000 0.00000000## positioned 0.00000000 0.00000000 0.00000000 0.01514693## possibilities 0.00000000 0.00000000 0.00000000 0.00000000## pray 0.00000000 0.00000000 0.00000000 0.01514693## pre-k 0.00000000 0.00000000 0.00000000 0.01514693## precisely 0.00000000 0.00000000 0.01690617 0.00000000## preschool 0.00000000 0.00000000 0.00000000 0.00000000## present 0.01863933 0.00000000 0.00000000 0.00000000## previous 0.01863933 0.00000000 0.03381234 0.00000000## pride 0.00000000 0.00000000 0.00000000 0.00000000## probably 0.00000000 0.00000000 0.00000000 0.00000000## profit 0.00000000 0.00000000 0.03381234 0.00000000## prohibited 0.00000000 0.00000000 0.00000000 0.00000000## prove 0.00000000 0.00000000 0.01690617 0.01514693## purposes 0.00000000 0.00000000 0.00000000 0.00000000## qualities 0.00000000 0.00000000 0.00000000 0.00000000## quantities 0.00000000 0.00000000 0.00000000 0.00000000## quiet 0.01863933 0.00000000 0.00000000 0.03029385## raclin 0.00000000 0.00000000 0.06762468 0.00000000## rapidly 0.00000000 0.02260909 0.00000000 0.00000000## reaction 0.01863933 0.00000000 0.00000000 0.00000000## reality 0.01863933 0.00000000 0.00000000 0.01514693## reckless 0.00000000 0.00000000 0.00000000 0.00000000## records 0.01863933 0.00000000 0.00000000 0.00000000## regulation 0.00000000 0.02260909 0.00000000 0.00000000## rein 0.00000000 0.00000000 0.00000000 0.00000000## release 0.00000000 0.00000000 0.00000000 0.00000000## relent 0.00000000 0.00000000 0.00000000 0.00000000## remind 0.00000000 0.02260909 0.01690617 0.00000000## reminder 0.00000000 0.00000000 0.00000000 0.00000000## repayment 0.00000000 0.00000000 0.00000000 0.01514693## reports 0.00000000 0.00000000 0.00000000 0.00000000## represent 0.00000000 0.00000000 0.01690617 0.00000000## representative 0.00000000 0.00000000 0.01690617 0.01514693## represents 0.00000000 0.00000000 0.01690617 0.00000000## requiring 0.00000000 0.00000000 0.01690617 0.00000000## rescued 0.00000000 0.00000000 0.00000000 0.00000000## responsibly 0.01863933 0.00000000 0.00000000 0.00000000## rigged 0.00000000 0.00000000 0.00000000 0.03029385## ronald 0.00000000 0.00000000 0.00000000 0.00000000## rostrum 0.01863933 0.00000000 0.00000000 0.00000000## ruin 0.00000000 0.00000000 0.01690617 0.01514693## san 0.00000000 0.00000000 0.00000000 0.00000000## scientific 0.00000000 0.00000000 0.00000000 0.01514693## search 0.00000000 0.04521818 0.00000000 0.00000000## seems 0.00000000 0.00000000 0.00000000 0.00000000## senators 0.00000000 0.00000000 0.01690617 0.00000000## shadow 0.00000000 0.00000000 0.00000000 0.00000000## shield 0.00000000 0.00000000 0.00000000 0.00000000## shore 0.01863933 0.00000000 0.00000000 0.00000000## showed 0.00000000 0.00000000 0.00000000 0.00000000## siemens 0.00000000 0.00000000 0.00000000 0.00000000## site 0.00000000 0.00000000 0.00000000 0.00000000## six 0.00000000 0.00000000 0.00000000 0.00000000## skeptical 0.00000000 0.00000000 0.01690617 0.00000000## slipped 0.00000000 0.00000000 0.00000000 0.00000000## somewhere 0.00000000 0.00000000 0.00000000 0.01514693## southeast 0.00000000 0.00000000 0.00000000 0.00000000## sparing 0.00000000 0.00000000 0.00000000 0.00000000## sports 0.00000000 0.00000000 0.00000000 0.00000000## spouses 0.00000000 0.00000000 0.00000000 0.00000000## spreading 0.01863933 0.00000000 0.01690617 0.00000000## spur 0.00000000 0.00000000 0.00000000 0.00000000## st-century 0.00000000 0.00000000 0.00000000 0.01514693## stamp 0.00000000 0.00000000 0.00000000 0.04544078## star 0.00000000 0.00000000 0.00000000 0.00000000## stays 0.01863933 0.00000000 0.00000000 0.01514693## storm 0.01863933 0.00000000 0.00000000 0.00000000## straits 0.00000000 0.00000000 0.00000000 0.00000000## strategies 0.00000000 0.00000000 0.00000000 0.01514693## strengthened 0.00000000 0.00000000 0.00000000 0.00000000## striving 0.00000000 0.00000000 0.00000000 0.00000000## strongholds 0.01863933 0.00000000 0.00000000 0.00000000## struggles 0.00000000 0.00000000 0.00000000 0.00000000## successful 0.00000000 0.00000000 0.00000000 0.00000000## sudan 0.00000000 0.00000000 0.00000000 0.00000000## sufficient 0.00000000 0.00000000 0.00000000 0.00000000## supposed 0.00000000 0.00000000 0.00000000 0.00000000## supreme 0.03727866 0.00000000 0.00000000 0.00000000## table 0.00000000 0.00000000 0.00000000 0.00000000## tackle 0.01863933 0.00000000 0.00000000 0.00000000## talented 0.00000000 0.00000000 0.00000000 0.00000000## talking 0.01863933 0.00000000 0.00000000 0.00000000## target 0.00000000 0.00000000 0.00000000 0.00000000## targeted 0.00000000 0.00000000 0.00000000 0.00000000## tech 0.00000000 0.00000000 0.00000000 0.00000000## tehran 0.00000000 0.00000000 0.00000000 0.00000000## territories 0.01863933 0.00000000 0.00000000 0.00000000## territory 0.01863933 0.00000000 0.00000000 0.01514693## they^d 0.00000000 0.02260909 0.01690617 0.00000000## thriving 0.00000000 0.00000000 0.00000000 0.01514693## tide 0.00000000 0.00000000 0.00000000 0.00000000## tie 0.01863933 0.00000000 0.00000000 0.00000000## ties 0.00000000 0.00000000 0.00000000 0.00000000## tone 0.01863933 0.00000000 0.00000000 0.00000000## tool 0.00000000 0.00000000 0.00000000 0.00000000## toxin 0.00000000 0.00000000 0.00000000 0.00000000## trading 0.00000000 0.02260909 0.00000000 0.00000000## trains 0.00000000 0.00000000 0.00000000 0.00000000## trans-pacific 0.00000000 0.00000000 0.00000000 0.03029385## transforming 0.00000000 0.00000000 0.00000000 0.00000000## treasury 0.00000000 0.00000000 0.00000000 0.00000000## trends 0.00000000 0.00000000 0.00000000 0.04544078## tribal 0.00000000 0.00000000 0.00000000 0.00000000## trusting 0.00000000 0.00000000 0.00000000 0.00000000## tunisia 0.00000000 0.00000000 0.00000000 0.00000000## tyrants 0.00000000 0.00000000 0.00000000 0.01514693## uncovered 0.00000000 0.00000000 0.00000000 0.00000000## understood 0.00000000 0.00000000 0.05071851 0.00000000## unfairly 0.00000000 0.00000000 0.00000000 0.00000000## unions 0.00000000 0.02260909 0.00000000 0.00000000## up-or-down 0.00000000 0.00000000 0.00000000 0.00000000## upgrade 0.00000000 0.00000000 0.00000000 0.00000000## upholds 0.01863933 0.00000000 0.00000000 0.00000000## usa 0.00000000 0.00000000 0.00000000 0.00000000## usher 0.00000000 0.00000000 0.01690617 0.00000000## verge 0.00000000 0.00000000 0.01690617 0.00000000## verify 0.00000000 0.00000000 0.00000000 0.00000000## wanted 0.00000000 0.00000000 0.00000000 0.00000000## warfare 0.00000000 0.02260909 0.00000000 0.00000000## warning 0.00000000 0.00000000 0.00000000 0.00000000## warriors 0.00000000 0.00000000 0.00000000 0.00000000## wave 0.00000000 0.00000000 0.00000000 0.01514693## weaken 0.00000000 0.00000000 0.00000000 0.04544078## wear 0.03727866 0.00000000 0.00000000 0.00000000## web 0.00000000 0.00000000 0.00000000 0.00000000## weight 0.00000000 0.00000000 0.00000000 0.01514693## welfare 0.03727866 0.00000000 0.01690617 0.00000000## western 0.00000000 0.00000000 0.00000000 0.00000000## won 0.00000000 0.00000000 0.00000000 0.00000000## wonder 0.00000000 0.00000000 0.00000000 0.00000000## world-class 0.00000000 0.02260909 0.00000000 0.00000000## wouldn^t 0.00000000 0.02260909 0.00000000 0.00000000## wounded 0.00000000 0.00000000 0.00000000 0.00000000## year^s 0.00000000 0.00000000 0.00000000 0.00000000## you^d 0.00000000 0.00000000 0.00000000 0.00000000## yours 0.01863933 0.00000000 0.00000000 0.00000000## zarqawi 0.01863933 0.00000000 0.00000000 0.00000000## -percent 0.01863933 0.00000000 0.00000000 0.00000000## -year-old 0.00000000 0.00000000 0.00000000 0.00000000## abbas 0.00000000 0.00000000 0.00000000 0.00000000## abortion 0.00000000 0.00000000 0.01690617 0.00000000## abortions 0.01863933 0.00000000 0.01690617 0.00000000## abraham 0.00000000 0.02260909 0.00000000 0.00000000## abstinence 0.01863933 0.00000000 0.00000000 0.00000000## accelerate 0.00000000 0.00000000 0.00000000 0.03029385## accepted 0.03727866 0.00000000 0.00000000 0.00000000## accompany 0.00000000 0.00000000 0.00000000 0.00000000## accomplished 0.00000000 0.00000000 0.00000000 0.00000000## accountants 0.00000000 0.00000000 0.00000000 0.00000000## achievements 0.00000000 0.00000000 0.00000000 0.00000000## acknowledge 0.01863933 0.00000000 0.00000000 0.00000000## acting 0.00000000 0.00000000 0.00000000 0.00000000## activist 0.01863933 0.00000000 0.00000000 0.00000000## addition 0.00000000 0.02260909 0.00000000 0.00000000## addressing 0.00000000 0.00000000 0.00000000 0.01514693## adds 0.00000000 0.00000000 0.03381234 0.00000000## administered 0.00000000 0.00000000 0.01690617 0.00000000## administrations 0.00000000 0.00000000 0.00000000 0.00000000## adult 0.00000000 0.00000000 0.00000000 0.00000000## advocate 0.00000000 0.00000000 0.00000000 0.00000000## affect 0.00000000 0.02260909 0.00000000 0.00000000## airline 0.00000000 0.00000000 0.00000000 0.00000000## alive 0.00000000 0.00000000 0.00000000 0.00000000## all-of-the-above 0.00000000 0.00000000 0.00000000 0.00000000## ambition 0.00000000 0.00000000 0.00000000 0.00000000## anew 0.00000000 0.00000000 0.00000000 0.03029385## answers 0.00000000 0.02260909 0.00000000 0.00000000## anxious 0.01863933 0.00000000 0.00000000 0.01514693## appreciate 0.00000000 0.00000000 0.00000000 0.01514693## arab 0.00000000 0.00000000 0.00000000 0.00000000## arabian 0.00000000 0.00000000 0.00000000 0.00000000## area 0.00000000 0.00000000 0.00000000 0.00000000## arizona 0.00000000 0.00000000 0.00000000 0.01514693## arm 0.01863933 0.00000000 0.00000000 0.00000000## armies 0.00000000 0.00000000 0.00000000 0.00000000## arsenal 0.00000000 0.00000000 0.00000000 0.01514693## arsenals 0.00000000 0.00000000 0.00000000 0.00000000## asia-pacific 0.00000000 0.00000000 0.00000000 0.00000000## asks 0.00000000 0.02260909 0.01690617 0.00000000## assassins 0.00000000 0.00000000 0.00000000 0.00000000## attempted 0.00000000 0.00000000 0.01690617 0.00000000## attitude 0.00000000 0.00000000 0.00000000 0.00000000## audience 0.00000000 0.00000000 0.00000000 0.00000000## august 0.00000000 0.00000000 0.00000000 0.00000000## aung 0.00000000 0.00000000 0.00000000 0.00000000## australia 0.00000000 0.00000000 0.00000000 0.00000000## authorize 0.00000000 0.00000000 0.00000000 0.01514693## avoiding 0.00000000 0.00000000 0.03381234 0.00000000## backed 0.00000000 0.00000000 0.00000000 0.00000000## bailouts 0.00000000 0.00000000 0.00000000 0.00000000## ballistic 0.00000000 0.00000000 0.00000000 0.00000000## ballot 0.00000000 0.02260909 0.00000000 0.00000000## bankrupt 0.00000000 0.00000000 0.01690617 0.00000000## bargain 0.00000000 0.00000000 0.01690617 0.00000000## battered 0.00000000 0.00000000 0.00000000 0.00000000## battlefield 0.01863933 0.00000000 0.00000000 0.00000000## becomes 0.00000000 0.00000000 0.00000000 0.00000000## becoming 0.00000000 0.00000000 0.00000000 0.01514693## belong 0.00000000 0.02260909 0.00000000 0.00000000## beloved 0.01863933 0.00000000 0.01690617 0.00000000## below 0.00000000 0.00000000 0.01690617 0.00000000## benghazi 0.00000000 0.00000000 0.00000000 0.04544078## berlin 0.00000000 0.00000000 0.00000000 0.00000000## bet 0.00000000 0.00000000 0.00000000 0.00000000## bioterrorism 0.00000000 0.00000000 0.00000000 0.00000000## bisexual 0.00000000 0.00000000 0.00000000 0.01514693## blows 0.00000000 0.00000000 0.00000000 0.00000000## blueprint 0.00000000 0.00000000 0.00000000 0.00000000## bob 0.00000000 0.00000000 0.00000000 0.00000000## bombing 0.00000000 0.00000000 0.00000000 0.00000000## bombs 0.00000000 0.00000000 0.00000000 0.00000000## boss 0.00000000 0.00000000 0.00000000 0.01514693## boston 0.00000000 0.00000000 0.00000000 0.01514693## brain 0.00000000 0.00000000 0.00000000 0.00000000## brand 0.00000000 0.00000000 0.01690617 0.01514693## breakthrough 0.00000000 0.00000000 0.00000000 0.00000000## bubble 0.00000000 0.00000000 0.00000000 0.00000000## bucks 0.00000000 0.00000000 0.00000000 0.01514693## budgets 0.00000000 0.00000000 0.00000000 0.00000000## burdened 0.00000000 0.02260909 0.00000000 0.00000000## bureaucrats 0.00000000 0.00000000 0.01690617 0.00000000## burn 0.00000000 0.00000000 0.00000000 0.00000000## burning 0.00000000 0.00000000 0.00000000 0.00000000## busy 0.00000000 0.00000000 0.00000000 0.01514693## byron 0.00000000 0.00000000 0.00000000 0.00000000## cabinet 0.00000000 0.00000000 0.00000000 0.00000000## candid 0.00000000 0.00000000 0.00000000 0.00000000## cap 0.00000000 0.00000000 0.01690617 0.00000000## cards 0.00000000 0.00000000 0.00000000 0.00000000## carefully 0.00000000 0.00000000 0.01690617 0.00000000## cents 0.00000000 0.00000000 0.00000000 0.00000000## centuries 0.00000000 0.00000000 0.00000000 0.00000000## certainly 0.00000000 0.00000000 0.00000000 0.01514693## chair 0.00000000 0.00000000 0.00000000 0.00000000## chances 0.00000000 0.00000000 0.00000000 0.00000000## chapter 0.01863933 0.00000000 0.00000000 0.00000000## charges 0.00000000 0.02260909 0.01690617 0.00000000## check 0.00000000 0.00000000 0.00000000 0.00000000## chicago 0.00000000 0.00000000 0.00000000 0.00000000## chile 0.00000000 0.00000000 0.00000000 0.00000000## chip 0.00000000 0.02260909 0.01690617 0.00000000## chips 0.01863933 0.00000000 0.00000000 0.00000000## choosing 0.01863933 0.00000000 0.00000000 0.00000000## christians 0.00000000 0.00000000 0.00000000 0.00000000## christmas 0.00000000 0.02260909 0.00000000 0.00000000## church 0.00000000 0.00000000 0.00000000 0.00000000## circumstances 0.00000000 0.00000000 0.00000000 0.00000000## civilization 0.00000000 0.00000000 0.00000000 0.00000000## claimed 0.00000000 0.00000000 0.00000000 0.01514693## classes 0.00000000 0.00000000 0.00000000 0.01514693## cleanup 0.00000000 0.00000000 0.00000000 0.00000000## clearing 0.01863933 0.00000000 0.00000000 0.00000000## clock 0.00000000 0.00000000 0.00000000 0.00000000## closest 0.01863933 0.00000000 0.00000000 0.00000000## cole 0.00000000 0.00000000 0.00000000 0.00000000## collection 0.00000000 0.00000000 0.00000000 0.00000000## comforted 0.01863933 0.00000000 0.00000000 0.00000000## command 0.00000000 0.00000000 0.00000000 0.00000000## communism 0.00000000 0.00000000 0.00000000 0.00000000## company^s 0.00000000 0.00000000 0.00000000 0.00000000## competent 0.00000000 0.00000000 0.00000000 0.00000000## complex 0.01863933 0.00000000 0.00000000 0.00000000## concerned 0.01863933 0.00000000 0.00000000 0.00000000## connect 0.01863933 0.00000000 0.00000000 0.00000000## consensus 0.00000000 0.00000000 0.01690617 0.00000000## considered 0.00000000 0.00000000 0.01690617 0.00000000## consistent 0.00000000 0.00000000 0.00000000 0.00000000## consolidate 0.00000000 0.00000000 0.00000000 0.01514693## constructive 0.00000000 0.00000000 0.01690617 0.03029385## contain 0.00000000 0.00000000 0.00000000 0.00000000## contracting 0.00000000 0.02260909 0.00000000 0.00000000## contracts 0.00000000 0.00000000 0.00000000 0.01514693## convene 0.00000000 0.00000000 0.00000000 0.00000000## cooperate 0.00000000 0.00000000 0.00000000 0.00000000## coordination 0.00000000 0.00000000 0.01690617 0.00000000## cordray 0.00000000 0.00000000 0.00000000 0.00000000## corner 0.00000000 0.02260909 0.00000000 0.00000000## counter 0.00000000 0.00000000 0.00000000 0.00000000## countless 0.00000000 0.00000000 0.00000000 0.00000000## creative 0.01863933 0.00000000 0.00000000 0.01514693## crimes 0.00000000 0.00000000 0.00000000 0.00000000## criticism 0.03727866 0.00000000 0.00000000 0.00000000## crossings 0.00000000 0.00000000 0.00000000 0.00000000## crowds 0.00000000 0.00000000 0.00000000 0.00000000## cruelty 0.00000000 0.00000000 0.00000000 0.00000000## cure 0.00000000 0.00000000 0.00000000 0.03029385## custody 0.00000000 0.00000000 0.00000000 0.00000000## custom 0.00000000 0.00000000 0.00000000 0.00000000## cybersecurity 0.00000000 0.00000000 0.00000000 0.00000000## dan 0.05591799 0.00000000 0.00000000 0.00000000## dark 0.01863933 0.00000000 0.00000000 0.00000000## deaths 0.00000000 0.00000000 0.00000000 0.00000000## declare 0.00000000 0.00000000 0.01690617 0.00000000## deepest 0.00000000 0.00000000 0.00000000 0.00000000## defiance 0.00000000 0.00000000 0.00000000 0.00000000## defined 0.00000000 0.02260909 0.00000000 0.00000000## demars 0.00000000 0.00000000 0.00000000 0.00000000## democratization 0.00000000 0.00000000 0.00000000 0.01514693## denying 0.00000000 0.00000000 0.00000000 0.00000000## deployed 0.00000000 0.00000000 0.00000000 0.00000000## derail 0.00000000 0.00000000 0.00000000 0.00000000## destructive 0.00000000 0.00000000 0.00000000 0.00000000## detect 0.00000000 0.00000000 0.00000000 0.00000000## devastate 0.00000000 0.00000000 0.00000000 0.00000000## dictatorship 0.01863933 0.00000000 0.00000000 0.00000000## differently 0.00000000 0.00000000 0.00000000 0.00000000## digital 0.00000000 0.00000000 0.00000000 0.00000000## dikembe 0.00000000 0.00000000 0.00000000 0.00000000## director 0.00000000 0.00000000 0.00000000 0.00000000## disasters 0.01863933 0.00000000 0.00000000 0.00000000## disclose 0.00000000 0.00000000 0.00000000 0.00000000## discover 0.00000000 0.00000000 0.01690617 0.00000000## discoveries 0.00000000 0.00000000 0.00000000 0.00000000## dismantle 0.00000000 0.02260909 0.00000000 0.00000000## dismiss 0.03727866 0.00000000 0.00000000 0.00000000## disposition 0.00000000 0.00000000 0.00000000 0.00000000## distance 0.00000000 0.00000000 0.00000000 0.00000000## districts 0.00000000 0.00000000 0.00000000 0.01514693## diversity 0.00000000 0.00000000 0.00000000 0.03029385## dividends 0.00000000 0.00000000 0.00000000 0.00000000## divisions 0.00000000 0.00000000 0.00000000 0.00000000## doha 0.00000000 0.00000000 0.00000000 0.00000000## doubts 0.00000000 0.00000000 0.00000000 0.00000000## dozen 0.03727866 0.00000000 0.00000000 0.00000000## draft 0.00000000 0.00000000 0.00000000 0.00000000## draw 0.01863933 0.00000000 0.00000000 0.00000000## drawdown 0.00000000 0.00000000 0.00000000 0.00000000## dropout 0.00000000 0.00000000 0.00000000 0.00000000## dynamic 0.01863933 0.00000000 0.00000000 0.00000000## edge 0.01863933 0.00000000 0.00000000 0.00000000## educational 0.00000000 0.00000000 0.00000000 0.00000000## einstein 0.00000000 0.00000000 0.00000000 0.00000000## el 0.00000000 0.00000000 0.00000000 0.00000000## elderly 0.01863933 0.00000000 0.00000000 0.01514693## eliminated 0.00000000 0.00000000 0.00000000 0.00000000## eliminating 0.00000000 0.02260909 0.00000000 0.00000000## embassies 0.00000000 0.00000000 0.00000000 0.00000000## embolden 0.00000000 0.00000000 0.00000000 0.00000000## embrace 0.00000000 0.00000000 0.01690617 0.00000000## embraced 0.00000000 0.00000000 0.00000000 0.00000000## embryos 0.03727866 0.00000000 0.00000000 0.00000000## emerged 0.00000000 0.00000000 0.00000000 0.01514693## empire 0.01863933 0.00000000 0.00000000 0.00000000## employ 0.00000000 0.00000000 0.01690617 0.00000000## employer-based 0.00000000 0.00000000 0.03381234 0.01514693## endless 0.00000000 0.00000000 0.00000000 0.00000000## engagement 0.00000000 0.00000000 0.00000000 0.00000000## english 0.00000000 0.00000000 0.00000000 0.00000000## enjoy 0.00000000 0.02260909 0.00000000 0.00000000## enriching 0.00000000 0.00000000 0.00000000 0.00000000## enrichment 0.00000000 0.00000000 0.00000000 0.00000000## ensures 0.00000000 0.00000000 0.00000000 0.00000000## ensuring 0.00000000 0.00000000 0.00000000 0.00000000## entirely 0.00000000 0.00000000 0.03381234 0.00000000## entitlements 0.03727866 0.00000000 0.00000000 0.00000000## envoy 0.00000000 0.00000000 0.00000000 0.00000000## equally 0.00000000 0.00000000 0.00000000 0.00000000## equip 0.00000000 0.00000000 0.00000000 0.00000000## eric 0.00000000 0.00000000 0.00000000 0.00000000## errors 0.01863933 0.00000000 0.00000000 0.00000000## escape 0.01863933 0.00000000 0.00000000 0.00000000## estiven 0.00000000 0.00000000 0.00000000 0.00000000## ethnic 0.00000000 0.00000000 0.00000000 0.03029385## except 0.00000000 0.00000000 0.00000000 0.01514693## exceptional 0.00000000 0.00000000 0.00000000 0.00000000## executives 0.00000000 0.00000000 0.01690617 0.00000000## exercise 0.00000000 0.00000000 0.00000000 0.00000000## exist 0.00000000 0.00000000 0.00000000 0.00000000## existence 0.00000000 0.00000000 0.00000000 0.01514693## expense 0.00000000 0.00000000 0.00000000 0.01514693## expressed 0.00000000 0.00000000 0.01690617 0.00000000## eyes 0.00000000 0.00000000 0.00000000 0.01514693## falter 0.01863933 0.00000000 0.00000000 0.00000000## familiar 0.00000000 0.00000000 0.00000000 0.00000000## fascism 0.00000000 0.00000000 0.00000000 0.00000000## fearful 0.00000000 0.00000000 0.00000000 0.00000000## feeling 0.00000000 0.00000000 0.03381234 0.00000000## feels 0.00000000 0.00000000 0.01690617 0.01514693## fees 0.00000000 0.02260909 0.00000000 0.00000000## fifteen 0.00000000 0.02260909 0.00000000 0.00000000## filled 0.00000000 0.00000000 0.00000000 0.00000000## filling 0.00000000 0.00000000 0.00000000 0.01514693## finest 0.00000000 0.00000000 0.00000000 0.01514693## first-responders 0.00000000 0.02260909 0.00000000 0.00000000## flights 0.00000000 0.00000000 0.00000000 0.00000000## floods 0.00000000 0.00000000 0.00000000 0.00000000## flow 0.00000000 0.00000000 0.00000000 0.01514693## fly 0.00000000 0.00000000 0.00000000 0.00000000## footing 0.00000000 0.00000000 0.00000000 0.00000000## forcing 0.00000000 0.00000000 0.01690617 0.00000000## ford 0.00000000 0.00000000 0.00000000 0.00000000## forgot 0.00000000 0.00000000 0.03381234 0.00000000## formed 0.00000000 0.00000000 0.00000000 0.00000000## founding 0.01863933 0.00000000 0.00000000 0.00000000## freedoms 0.00000000 0.00000000 0.00000000 0.00000000## freer 0.00000000 0.00000000 0.00000000 0.00000000## front 0.00000000 0.00000000 0.00000000 0.00000000## frustration 0.00000000 0.00000000 0.00000000 0.01514693## function 0.01863933 0.00000000 0.00000000 0.00000000## furniture 0.00000000 0.00000000 0.00000000 0.00000000## futures 0.00000000 0.00000000 0.00000000 0.01514693## gabrielle 0.00000000 0.00000000 0.00000000 0.00000000## gangs 0.00000000 0.00000000 0.00000000 0.00000000## gaps 0.00000000 0.00000000 0.00000000 0.01514693## gary 0.00000000 0.00000000 0.00000000 0.00000000## generation^s 0.00000000 0.00000000 0.00000000 0.00000000## generous 0.00000000 0.00000000 0.00000000 0.00000000## georgia 0.00000000 0.02260909 0.00000000 0.00000000## germany 0.00000000 0.00000000 0.00000000 0.00000000## gi 0.00000000 0.02260909 0.00000000 0.00000000## ginsberg 0.00000000 0.00000000 0.00000000 0.00000000## god^s 0.00000000 0.00000000 0.00000000 0.00000000## golden 0.00000000 0.00000000 0.01690617 0.00000000## good-paying 0.00000000 0.00000000 0.00000000 0.01514693## goodness 0.00000000 0.00000000 0.00000000 0.01514693## google 0.00000000 0.00000000 0.00000000 0.00000000## grace 0.00000000 0.00000000 0.00000000 0.01514693## grandfather 0.00000000 0.02260909 0.00000000 0.00000000## greatness 0.01863933 0.00000000 0.00000000 0.00000000## gross 0.00000000 0.00000000 0.00000000 0.00000000## guarantees 0.00000000 0.00000000 0.00000000 0.00000000## guys 0.00000000 0.02260909 0.00000000 0.00000000## halfway 0.00000000 0.00000000 0.00000000 0.00000000## happens 0.00000000 0.00000000 0.01690617 0.00000000## harsh 0.00000000 0.00000000 0.00000000 0.00000000## havoc 0.00000000 0.00000000 0.00000000 0.00000000## heads 0.00000000 0.00000000 0.00000000 0.00000000## hearts 0.00000000 0.00000000 0.00000000 0.00000000## heat 0.01863933 0.00000000 0.00000000 0.00000000## henry 0.00000000 0.00000000 0.00000000 0.00000000## heroic 0.00000000 0.00000000 0.00000000 0.01514693## hesitate 0.01863933 0.00000000 0.00000000 0.00000000## highway 0.00000000 0.00000000 0.00000000 0.00000000## hijackers 0.01863933 0.00000000 0.00000000 0.00000000## history^s 0.00000000 0.00000000 0.01690617 0.00000000## holds 0.00000000 0.00000000 0.00000000 0.00000000## homeless 0.00000000 0.00000000 0.00000000 0.00000000## homelessness 0.00000000 0.00000000 0.00000000 0.00000000## honors 0.00000000 0.00000000 0.00000000 0.00000000## hostile 0.00000000 0.00000000 0.00000000 0.00000000## households 0.00000000 0.00000000 0.00000000 0.00000000## howard 0.00000000 0.00000000 0.00000000 0.00000000## hugged 0.00000000 0.00000000 0.00000000 0.00000000## hungry 0.00000000 0.00000000 0.00000000 0.00000000## hunt 0.00000000 0.00000000 0.00000000 0.00000000## hurricane 0.00000000 0.00000000 0.00000000 0.00000000## hurt 0.00000000 0.00000000 0.00000000 0.00000000## hybrid 0.01863933 0.00000000 0.00000000 0.00000000## ideal 0.00000000 0.00000000 0.00000000 0.00000000## iii 0.00000000 0.00000000 0.00000000 0.01514693## ill 0.00000000 0.00000000 0.03381234 0.00000000## illinois 0.00000000 0.00000000 0.01690617 0.00000000## images 0.00000000 0.00000000 0.00000000 0.00000000## immigrant 0.00000000 0.00000000 0.00000000 0.03029385## improvements 0.00000000 0.00000000 0.00000000 0.00000000## inc 0.00000000 0.02260909 0.00000000 0.00000000## incentive 0.00000000 0.00000000 0.01690617 0.00000000## industrialized 0.01863933 0.00000000 0.00000000 0.00000000## infection 0.00000000 0.00000000 0.01690617 0.00000000## infections 0.01863933 0.00000000 0.00000000 0.00000000## ingenuity 0.00000000 0.00000000 0.00000000 0.00000000## inherited 0.00000000 0.00000000 0.00000000 0.00000000## insurgency 0.01863933 0.00000000 0.00000000 0.00000000## insurgents 0.00000000 0.00000000 0.00000000 0.00000000## integrity 0.00000000 0.00000000 0.00000000 0.00000000## interior 0.00000000 0.00000000 0.00000000 0.00000000## intimidation 0.00000000 0.00000000 0.00000000 0.00000000## invited 0.01863933 0.00000000 0.00000000 0.00000000## involved 0.01863933 0.00000000 0.00000000 0.00000000## involves 0.01863933 0.00000000 0.00000000 0.00000000## iowa 0.00000000 0.00000000 0.00000000 0.03029385## isolating 0.01863933 0.00000000 0.00000000 0.03029385## isolationism 0.05591799 0.00000000 0.00000000 0.00000000## israelis 0.00000000 0.00000000 0.00000000 0.00000000## jack 0.00000000 0.00000000 0.00000000 0.00000000## janet 0.00000000 0.00000000 0.00000000 0.00000000## jews 0.00000000 0.00000000 0.00000000 0.00000000## judged 0.00000000 0.00000000 0.00000000 0.00000000## judgment 0.00000000 0.00000000 0.03381234 0.00000000## judicial 0.00000000 0.00000000 0.00000000 0.00000000## katherine 0.00000000 0.00000000 0.00000000 0.04544078## kathy 0.00000000 0.00000000 0.00000000 0.00000000## kay 0.00000000 0.04521818 0.00000000 0.00000000## kennedy^s 0.00000000 0.00000000 0.03381234 0.00000000## killing 0.00000000 0.00000000 0.00000000 0.00000000## kindness 0.00000000 0.00000000 0.00000000 0.01514693## king 0.03727866 0.00000000 0.00000000 0.01514693## kyi 0.00000000 0.00000000 0.00000000 0.00000000## laboratory 0.00000000 0.00000000 0.00000000 0.00000000## lack 0.01863933 0.00000000 0.00000000 0.00000000## ladders 0.00000000 0.02260909 0.00000000 0.00000000## latin 0.00000000 0.00000000 0.00000000 0.01514693## laura 0.01863933 0.00000000 0.00000000 0.00000000## lawful 0.00000000 0.00000000 0.00000000 0.00000000## league 0.00000000 0.00000000 0.00000000 0.00000000## leaves 0.00000000 0.00000000 0.00000000 0.00000000## lend 0.00000000 0.00000000 0.01690617 0.00000000## lesbian 0.00000000 0.00000000 0.00000000 0.01514693## letters 0.00000000 0.00000000 0.03381234 0.00000000## liberate 0.00000000 0.00000000 0.00000000 0.00000000## lieberman 0.00000000 0.00000000 0.00000000 0.00000000## lifetime 0.00000000 0.00000000 0.03381234 0.00000000## likely 0.00000000 0.00000000 0.00000000 0.00000000## limiting 0.00000000 0.00000000 0.00000000 0.00000000## lined 0.00000000 0.00000000 0.00000000 0.00000000## list 0.00000000 0.00000000 0.00000000 0.01514693## litigation 0.00000000 0.00000000 0.00000000 0.00000000## lock 0.00000000 0.00000000 0.00000000 0.00000000## longest 0.00000000 0.00000000 0.00000000 0.01514693## looked 0.00000000 0.02260909 0.00000000 0.00000000## louisiana 0.00000000 0.00000000 0.00000000 0.00000000## loving 0.00000000 0.00000000 0.00000000 0.00000000## lowering 0.00000000 0.00000000 0.00000000 0.00000000## loyalty 0.00000000 0.02260909 0.00000000 0.01514693## luxury 0.00000000 0.02260909 0.00000000 0.00000000## madrid 0.00000000 0.00000000 0.00000000 0.00000000## mali 0.00000000 0.00000000 0.00000000 0.00000000## malpractice 0.00000000 0.00000000 0.03381234 0.00000000## mankind 0.00000000 0.00000000 0.00000000 0.00000000## manufacture 0.00000000 0.00000000 0.00000000 0.00000000## meantime 0.00000000 0.00000000 0.01690617 0.00000000## media 0.00000000 0.02260909 0.01690617 0.00000000## menchu 0.00000000 0.00000000 0.00000000 0.00000000## mental 0.00000000 0.00000000 0.00000000 0.00000000## merge 0.00000000 0.00000000 0.00000000 0.00000000## messy 0.00000000 0.00000000 0.00000000 0.00000000## miles 0.01863933 0.00000000 0.00000000 0.00000000## milk 0.00000000 0.00000000 0.00000000 0.00000000## mindful 0.01863933 0.00000000 0.00000000 0.00000000## minneapolis 0.00000000 0.00000000 0.00000000 0.00000000## miracle 0.00000000 0.00000000 0.00000000 0.00000000## misguided 0.01863933 0.00000000 0.00000000 0.00000000## missiles 0.00000000 0.00000000 0.00000000 0.00000000## mistakes 0.00000000 0.00000000 0.00000000 0.01514693## mistrust 0.00000000 0.00000000 0.00000000 0.00000000## misty 0.00000000 0.00000000 0.00000000 0.00000000## misunderstanding 0.00000000 0.00000000 0.01690617 0.00000000## mobile 0.00000000 0.00000000 0.00000000 0.01514693## model 0.00000000 0.00000000 0.00000000 0.00000000## moon 0.00000000 0.00000000 0.00000000 0.01514693## mosque 0.00000000 0.00000000 0.00000000 0.01514693## mothers 0.01863933 0.00000000 0.00000000 0.00000000## mountain 0.00000000 0.00000000 0.00000000 0.00000000## murphy 0.00000000 0.00000000 0.00000000 0.00000000## narrow 0.00000000 0.00000000 0.01690617 0.00000000## nationwide 0.01863933 0.00000000 0.00000000 0.00000000## negotiated 0.00000000 0.00000000 0.00000000 0.00000000## neighborhood 0.00000000 0.00000000 0.00000000 0.00000000## nick 0.00000000 0.00000000 0.00000000 0.00000000## nights 0.00000000 0.02260909 0.00000000 0.00000000## nine 0.00000000 0.00000000 0.00000000 0.00000000## nominate 0.01863933 0.00000000 0.00000000 0.00000000## nominee 0.00000000 0.00000000 0.00000000 0.00000000## nominees 0.00000000 0.00000000 0.00000000 0.00000000## nonpartisan 0.00000000 0.00000000 0.00000000 0.00000000## nonproliferation 0.00000000 0.00000000 0.00000000 0.00000000## november 0.00000000 0.00000000 0.00000000 0.00000000## number-one 0.00000000 0.00000000 0.00000000 0.00000000## nurse 0.00000000 0.00000000 0.00000000 0.01514693## oath 0.00000000 0.00000000 0.00000000 0.00000000## objective 0.00000000 0.00000000 0.00000000 0.00000000## obligation 0.00000000 0.00000000 0.00000000 0.00000000## ocean 0.00000000 0.00000000 0.00000000 0.01514693## odds 0.00000000 0.00000000 0.00000000 0.00000000## offers 0.00000000 0.00000000 0.00000000 0.00000000## offices 0.01863933 0.00000000 0.00000000 0.00000000## official 0.01863933 0.00000000 0.00000000 0.00000000## older 0.00000000 0.00000000 0.00000000 0.00000000## olympic 0.00000000 0.00000000 0.00000000 0.00000000## open-ended 0.00000000 0.00000000 0.00000000 0.00000000## openings 0.00000000 0.00000000 0.00000000 0.00000000## opens 0.00000000 0.00000000 0.00000000 0.00000000## operating 0.00000000 0.00000000 0.00000000 0.00000000## opinions 0.00000000 0.00000000 0.00000000 0.00000000## opponents 0.00000000 0.00000000 0.01690617 0.01514693## opposed 0.00000000 0.00000000 0.01690617 0.00000000## oppressive 0.01863933 0.00000000 0.00000000 0.00000000## optimism 0.00000000 0.00000000 0.00000000 0.01514693## optimistic 0.01863933 0.00000000 0.00000000 0.01514693## orderly 0.01863933 0.00000000 0.00000000 0.00000000## orders 0.00000000 0.00000000 0.00000000 0.00000000## orleans 0.03727866 0.00000000 0.00000000 0.00000000## outlaw 0.00000000 0.00000000 0.00000000 0.00000000## overtime 0.00000000 0.00000000 0.00000000 0.00000000## overwhelming 0.00000000 0.00000000 0.00000000 0.00000000## pad 0.00000000 0.00000000 0.01690617 0.00000000## panels 0.00000000 0.00000000 0.01690617 0.00000000## parliament 0.00000000 0.00000000 0.00000000 0.00000000## passage 0.00000000 0.00000000 0.00000000 0.00000000## passenger 0.00000000 0.00000000 0.00000000 0.00000000## patent 0.00000000 0.04521818 0.00000000 0.00000000## pathway 0.00000000 0.00000000 0.00000000 0.00000000## patience 0.00000000 0.00000000 0.01690617 0.00000000## patrick 0.00000000 0.00000000 0.03381234 0.00000000## patrol 0.00000000 0.00000000 0.00000000 0.00000000## pendleton 0.00000000 0.00000000 0.00000000 0.00000000## penny 0.00000000 0.00000000 0.00000000 0.00000000## peoples 0.00000000 0.00000000 0.00000000 0.00000000## percentage 0.00000000 0.00000000 0.00000000 0.00000000## periods 0.01863933 0.00000000 0.00000000 0.00000000## permit 0.01863933 0.00000000 0.00000000 0.00000000## persistent 0.00000000 0.02260909 0.00000000 0.00000000## personally 0.00000000 0.00000000 0.00000000 0.00000000## phase 0.00000000 0.00000000 0.00000000 0.00000000## philippines 0.00000000 0.00000000 0.00000000 0.00000000## physical 0.01863933 0.00000000 0.00000000 0.00000000## pick 0.00000000 0.00000000 0.01690617 0.01514693## picture 0.00000000 0.00000000 0.00000000 0.00000000## placing 0.00000000 0.00000000 0.01690617 0.00000000## planning 0.00000000 0.02260909 0.00000000 0.00000000## plant 0.00000000 0.00000000 0.00000000 0.00000000## planted 0.00000000 0.00000000 0.00000000 0.00000000## plays 0.00000000 0.00000000 0.00000000 0.00000000## plots 0.00000000 0.00000000 0.00000000 0.01514693## poised 0.00000000 0.00000000 0.00000000 0.00000000## polls 0.00000000 0.02260909 0.00000000 0.01514693## pollution-free 0.01863933 0.00000000 0.00000000 0.00000000## popular 0.00000000 0.00000000 0.00000000 0.00000000## possess 0.00000000 0.00000000 0.00000000 0.00000000## posted 0.00000000 0.00000000 0.00000000 0.00000000## posts 0.00000000 0.00000000 0.00000000 0.00000000## practical 0.01863933 0.00000000 0.00000000 0.00000000## praise 0.00000000 0.00000000 0.00000000 0.00000000## precious 0.00000000 0.00000000 0.00000000 0.01514693## presents 0.00000000 0.00000000 0.00000000 0.00000000## pressing 0.01863933 0.00000000 0.00000000 0.00000000## pretty 0.00000000 0.02260909 0.00000000 0.01514693## prevail 0.00000000 0.00000000 0.00000000 0.00000000## priced 0.00000000 0.00000000 0.01690617 0.00000000## primary 0.00000000 0.00000000 0.01690617 0.00000000## promising 0.01863933 0.00000000 0.00000000 0.00000000## promoting 0.00000000 0.00000000 0.00000000 0.00000000## proof 0.00000000 0.00000000 0.01690617 0.00000000## proportion 0.00000000 0.00000000 0.00000000 0.00000000## prosper 0.00000000 0.00000000 0.00000000 0.00000000## providence 0.00000000 0.00000000 0.00000000 0.00000000## proving 0.00000000 0.00000000 0.00000000 0.00000000## pushed 0.00000000 0.00000000 0.00000000 0.00000000## pushing 0.00000000 0.00000000 0.00000000 0.03029385## qadhafi 0.00000000 0.00000000 0.00000000 0.00000000## radicalism 0.03727866 0.00000000 0.00000000 0.00000000## raids 0.00000000 0.00000000 0.00000000 0.00000000## rallying 0.00000000 0.00000000 0.00000000 0.01514693## rancor 0.00000000 0.00000000 0.00000000 0.03029385## reasonable 0.00000000 0.00000000 0.00000000 0.00000000## received 0.00000000 0.00000000 0.01690617 0.00000000## receiving 0.00000000 0.00000000 0.00000000 0.00000000## recklessness 0.00000000 0.00000000 0.00000000 0.01514693## reckoning 0.00000000 0.00000000 0.00000000 0.00000000## recognition 0.00000000 0.00000000 0.01690617 0.00000000## reconciliation 0.00000000 0.00000000 0.00000000 0.00000000## reconstruction 0.03727866 0.00000000 0.00000000 0.00000000## recruiting 0.00000000 0.00000000 0.00000000 0.00000000## red 0.00000000 0.00000000 0.00000000 0.01514693## redesign 0.00000000 0.00000000 0.00000000 0.00000000## refighting 0.00000000 0.00000000 0.00000000 0.00000000## refugees 0.00000000 0.00000000 0.00000000 0.01514693## regard 0.00000000 0.00000000 0.01690617 0.00000000## reinvented 0.00000000 0.00000000 0.00000000 0.01514693## reinvestment 0.00000000 0.00000000 0.00000000 0.00000000## rejected 0.01863933 0.00000000 0.00000000 0.00000000## rejoin 0.00000000 0.00000000 0.00000000 0.00000000## relied 0.00000000 0.00000000 0.00000000 0.00000000## relieve 0.00000000 0.00000000 0.00000000 0.00000000## removing 0.01863933 0.00000000 0.00000000 0.00000000## remsburg 0.00000000 0.00000000 0.00000000 0.00000000## repaid 0.00000000 0.00000000 0.00000000 0.00000000## represented 0.00000000 0.00000000 0.03381234 0.00000000## researchers 0.00000000 0.00000000 0.00000000 0.00000000## resentment 0.03727866 0.00000000 0.00000000 0.00000000## resolute 0.00000000 0.00000000 0.00000000 0.00000000## resolution 0.00000000 0.00000000 0.00000000 0.00000000## resolved 0.00000000 0.00000000 0.00000000 0.00000000## resource 0.00000000 0.00000000 0.00000000 0.00000000## responded 0.00000000 0.00000000 0.00000000 0.00000000## restrictions 0.00000000 0.00000000 0.00000000 0.00000000## retired 0.00000000 0.00000000 0.00000000 0.00000000## returned 0.00000000 0.00000000 0.00000000 0.00000000## returns 0.00000000 0.00000000 0.00000000 0.01514693## reverse 0.00000000 0.00000000 0.00000000 0.00000000## reversed 0.00000000 0.00000000 0.00000000 0.00000000## richard 0.00000000 0.00000000 0.00000000 0.00000000## rieman 0.00000000 0.00000000 0.00000000 0.00000000## rigid 0.00000000 0.02260909 0.01690617 0.00000000## risen 0.00000000 0.00000000 0.00000000 0.00000000## risky 0.00000000 0.00000000 0.01690617 0.00000000## roaring 0.00000000 0.02260909 0.00000000 0.00000000## rock 0.00000000 0.00000000 0.00000000 0.00000000## rodriguez 0.00000000 0.00000000 0.00000000 0.00000000## roll 0.00000000 0.02260909 0.00000000 0.01514693## rubble 0.00000000 0.00000000 0.00000000 0.00000000## rush 0.00000000 0.00000000 0.00000000 0.00000000## sacrifices 0.03727866 0.00000000 0.00000000 0.00000000## safia 0.00000000 0.00000000 0.00000000 0.00000000## salvador 0.00000000 0.00000000 0.00000000 0.00000000## sanchez 0.00000000 0.00000000 0.00000000 0.00000000## sat 0.00000000 0.02260909 0.00000000 0.00000000## saves 0.00000000 0.00000000 0.03381234 0.00000000## scandals 0.00000000 0.00000000 0.00000000 0.00000000## schedule 0.00000000 0.00000000 0.00000000 0.00000000## sciences 0.01863933 0.02260909 0.00000000 0.00000000## scott 0.01863933 0.00000000 0.00000000 0.00000000## securing 0.00000000 0.00000000 0.00000000 0.00000000## sends 0.00000000 0.00000000 0.00000000 0.00000000## series 0.00000000 0.02260909 0.00000000 0.00000000## seriously 0.01863933 0.00000000 0.03381234 0.00000000## setbacks 0.00000000 0.00000000 0.00000000 0.00000000## settled 0.00000000 0.00000000 0.00000000 0.00000000## seven 0.00000000 0.00000000 0.00000000 0.00000000## severely 0.00000000 0.00000000 0.01690617 0.01514693## shadows 0.00000000 0.00000000 0.00000000 0.00000000## shake 0.00000000 0.04521818 0.00000000 0.00000000## she^d 0.00000000 0.00000000 0.00000000 0.00000000## she^s 0.00000000 0.00000000 0.00000000 0.00000000## shelley 0.00000000 0.00000000 0.00000000 0.00000000## shelter 0.01863933 0.00000000 0.00000000 0.00000000## shifts 0.00000000 0.00000000 0.00000000 0.01514693## shootings 0.00000000 0.00000000 0.00000000 0.00000000## shop 0.00000000 0.00000000 0.01690617 0.00000000## short-term 0.00000000 0.00000000 0.01690617 0.00000000## shrinking 0.00000000 0.00000000 0.00000000 0.00000000## sight 0.00000000 0.00000000 0.00000000 0.00000000## sights 0.01863933 0.00000000 0.00000000 0.00000000## signs 0.00000000 0.00000000 0.00000000 0.00000000## silver 0.00000000 0.02260909 0.01690617 0.00000000## similar 0.00000000 0.00000000 0.00000000 0.00000000## simplify 0.00000000 0.00000000 0.00000000 0.00000000## sits 0.00000000 0.00000000 0.00000000 0.01514693## sitting 0.00000000 0.00000000 0.00000000 0.01514693## sixty 0.00000000 0.00000000 0.00000000 0.01514693## skepticism 0.00000000 0.02260909 0.01690617 0.00000000## skin 0.00000000 0.00000000 0.00000000 0.00000000## skyrocketing 0.00000000 0.00000000 0.01690617 0.00000000## slashing 0.00000000 0.00000000 0.00000000 0.00000000## slavery 0.03727866 0.00000000 0.00000000 0.00000000## soil 0.00000000 0.00000000 0.00000000 0.00000000## solutions 0.01863933 0.00000000 0.00000000 0.00000000## somalia 0.00000000 0.00000000 0.00000000 0.00000000## sons 0.00000000 0.00000000 0.01690617 0.00000000## sought 0.00000000 0.00000000 0.00000000 0.00000000## soviet 0.00000000 0.00000000 0.00000000 0.00000000## spare 0.00000000 0.00000000 0.00000000 0.00000000## speaking 0.00000000 0.00000000 0.00000000 0.00000000## spends 0.00000000 0.00000000 0.00000000 0.00000000## sputnik 0.00000000 0.00000000 0.00000000 0.01514693## staff 0.03727866 0.00000000 0.00000000 0.00000000## stagnant 0.01863933 0.00000000 0.00000000 0.00000000## steadily 0.00000000 0.00000000 0.00000000 0.01514693## steady 0.01863933 0.00000000 0.00000000 0.00000000## steal 0.00000000 0.00000000 0.00000000 0.00000000## stepped 0.00000000 0.02260909 0.00000000 0.00000000## strain 0.00000000 0.00000000 0.00000000 0.01514693## strangers 0.00000000 0.00000000 0.00000000 0.00000000## streamline 0.00000000 0.00000000 0.00000000 0.00000000## strides 0.00000000 0.00000000 0.00000000 0.00000000## succeeding 0.00000000 0.00000000 0.00000000 0.00000000## succeeds 0.01863933 0.00000000 0.00000000 0.01514693## suffered 0.00000000 0.02260909 0.00000000 0.00000000## sums 0.00000000 0.00000000 0.00000000 0.00000000## sunday 0.00000000 0.00000000 0.00000000 0.00000000## superpower 0.00000000 0.02260909 0.00000000 0.01514693## supporters 0.00000000 0.00000000 0.00000000 0.00000000## surpluses 0.00000000 0.00000000 0.00000000 0.00000000## surrounding 0.00000000 0.00000000 0.00000000 0.00000000## sustainable 0.00000000 0.00000000 0.00000000 0.01514693## suu 0.00000000 0.00000000 0.00000000 0.00000000## symbol 0.00000000 0.00000000 0.00000000 0.00000000## takeover 0.00000000 0.00000000 0.05071851 0.00000000## talent 0.03727866 0.00000000 0.00000000 0.00000000## targeting 0.00000000 0.00000000 0.00000000 0.00000000## tax-free 0.00000000 0.00000000 0.00000000 0.00000000## teams 0.00000000 0.00000000 0.01690617 0.00000000## ted 0.00000000 0.00000000 0.05071851 0.00000000## teen 0.00000000 0.00000000 0.00000000 0.00000000## temporary- 0.00000000 0.00000000 0.00000000 0.00000000## tempting 0.00000000 0.00000000 0.00000000 0.00000000## tests 0.01863933 0.00000000 0.00000000 0.00000000## threatened 0.00000000 0.00000000 0.00000000 0.01514693## three-quarters 0.00000000 0.00000000 0.00000000 0.01514693## tirelessly 0.00000000 0.00000000 0.01690617 0.00000000## total 0.00000000 0.00000000 0.00000000 0.00000000## totalitarian 0.01863933 0.00000000 0.00000000 0.00000000## tpp 0.00000000 0.00000000 0.00000000 0.03029385## tradition 0.00000000 0.00000000 0.00000000 0.00000000## traffic 0.00000000 0.04521818 0.00000000 0.00000000## trafficking 0.03727866 0.00000000 0.00000000 0.01514693## transgender 0.00000000 0.00000000 0.00000000 0.01514693## transit 0.00000000 0.02260909 0.00000000 0.00000000## transitional 0.00000000 0.00000000 0.00000000 0.00000000## translate 0.00000000 0.00000000 0.00000000 0.00000000## tremendous 0.00000000 0.00000000 0.00000000 0.00000000## trend 0.00000000 0.00000000 0.00000000 0.00000000## tried 0.00000000 0.00000000 0.01690617 0.00000000## twenty-first 0.00000000 0.00000000 0.00000000 0.00000000## twice 0.00000000 0.00000000 0.00000000 0.00000000## typical 0.00000000 0.02260909 0.00000000 0.00000000## uncertain 0.00000000 0.00000000 0.00000000 0.00000000## understanding 0.00000000 0.00000000 0.00000000 0.01514693## unfolding 0.00000000 0.00000000 0.00000000 0.01514693## unified 0.00000000 0.00000000 0.00000000 0.00000000## unique 0.00000000 0.00000000 0.01690617 0.03029385## untold 0.00000000 0.00000000 0.00000000 0.00000000## unwarranted 0.00000000 0.00000000 0.01690617 0.00000000## update 0.00000000 0.00000000 0.00000000 0.00000000## upholding 0.00000000 0.00000000 0.00000000 0.00000000## upward 0.01863933 0.00000000 0.00000000 0.00000000## usual 0.00000000 0.00000000 0.01690617 0.00000000## va 0.00000000 0.00000000 0.01690617 0.00000000## vaccines 0.00000000 0.00000000 0.00000000 0.00000000## vehicles 0.00000000 0.00000000 0.00000000 0.00000000## vicious 0.01863933 0.00000000 0.00000000 0.01514693## villages 0.00000000 0.00000000 0.00000000 0.01514693## visiting 0.00000000 0.00000000 0.00000000 0.00000000## volunteer 0.01863933 0.00000000 0.00000000 0.00000000## volunteered 0.00000000 0.00000000 0.00000000 0.00000000## voter 0.00000000 0.00000000 0.00000000 0.01514693## waited 0.00000000 0.00000000 0.00000000 0.00000000## walked 0.00000000 0.00000000 0.01690617 0.00000000## walks 0.00000000 0.00000000 0.01690617 0.00000000## warmest 0.00000000 0.00000000 0.00000000 0.01514693## weatherization 0.00000000 0.00000000 0.00000000 0.00000000## welcoming 0.00000000 0.00000000 0.00000000 0.00000000## weren^t 0.00000000 0.00000000 0.01690617 0.00000000## wesley 0.00000000 0.00000000 0.00000000 0.00000000## whenever 0.00000000 0.00000000 0.00000000 0.00000000## witnessed 0.00000000 0.00000000 0.00000000 0.00000000## wonderful 0.00000000 0.00000000 0.01690617 0.00000000## writing 0.01863933 0.02260909 0.00000000 0.00000000## yield 0.00000000 0.00000000 0.00000000 0.00000000## youngest 0.00000000 0.00000000 0.00000000 0.00000000## yourself 0.00000000 0.00000000 0.00000000 0.00000000## zero 0.00000000 0.00000000 0.00000000 0.00000000## abandoning 0.01863933 0.00000000 0.00000000 0.00000000## abess 0.00000000 0.00000000 0.00000000 0.00000000## abide 0.00000000 0.00000000 0.01690617 0.00000000## abusive 0.00000000 0.00000000 0.00000000 0.00000000## accident 0.00000000 0.00000000 0.01690617 0.00000000## according 0.00000000 0.00000000 0.01690617 0.00000000## acid 0.00000000 0.00000000 0.00000000 0.00000000## actively 0.00000000 0.00000000 0.00000000 0.00000000## adapt 0.00000000 0.00000000 0.00000000 0.00000000## adhere 0.00000000 0.00000000 0.00000000 0.01514693## adjusted 0.01863933 0.00000000 0.00000000 0.00000000## adjustments 0.00000000 0.02260909 0.00000000 0.00000000## administrative 0.00000000 0.00000000 0.01690617 0.00000000## admit 0.00000000 0.00000000 0.00000000 0.00000000## adoption 0.01863933 0.00000000 0.01690617 0.00000000## advancement 0.00000000 0.00000000 0.00000000 0.00000000## advantages 0.01863933 0.00000000 0.00000000 0.00000000## adversaries 0.00000000 0.00000000 0.00000000 0.00000000## advice 0.01863933 0.00000000 0.00000000 0.00000000## advisory 0.00000000 0.00000000 0.01690617 0.00000000## advocates 0.00000000 0.00000000 0.00000000 0.00000000## afloat 0.00000000 0.00000000 0.00000000 0.00000000## afraid 0.00000000 0.00000000 0.00000000 0.00000000## agent 0.00000000 0.00000000 0.00000000 0.00000000## agrees 0.00000000 0.02260909 0.00000000 0.00000000## agricultural 0.00000000 0.00000000 0.00000000 0.01514693## agriculture 0.00000000 0.00000000 0.00000000 0.00000000## ahmed 0.00000000 0.00000000 0.00000000 0.03029385## aigner-clark 0.00000000 0.00000000 0.00000000 0.00000000## aims 0.01863933 0.00000000 0.00000000 0.00000000## airplane 0.00000000 0.00000000 0.00000000 0.00000000## airstrikes 0.00000000 0.00000000 0.00000000 0.01514693## al- 0.00000000 0.00000000 0.00000000 0.00000000## al-suhail 0.00000000 0.00000000 0.00000000 0.00000000## alabama 0.00000000 0.00000000 0.01690617 0.00000000## alarm 0.00000000 0.00000000 0.00000000 0.00000000## allah 0.00000000 0.00000000 0.00000000 0.00000000## allawi 0.00000000 0.00000000 0.00000000 0.00000000## aluminum 0.00000000 0.00000000 0.00000000 0.00000000## amendment 0.00000000 0.00000000 0.00000000 0.00000000## ample 0.00000000 0.00000000 0.00000000 0.00000000## anbar 0.00000000 0.00000000 0.00000000 0.00000000## angry 0.00000000 0.00000000 0.01690617 0.00000000## anniversary 0.00000000 0.00000000 0.00000000 0.00000000## antidrug 0.00000000 0.00000000 0.00000000 0.00000000## antiretroviral 0.00000000 0.00000000 0.00000000 0.00000000## anxieties 0.00000000 0.00000000 0.00000000 0.00000000## anybody 0.00000000 0.02260909 0.00000000 0.01514693## appeal 0.01863933 0.00000000 0.00000000 0.00000000## appeared 0.00000000 0.00000000 0.00000000 0.00000000## appetite 0.00000000 0.00000000 0.00000000 0.00000000## apple 0.00000000 0.00000000 0.00000000 0.00000000## application 0.00000000 0.00000000 0.00000000 0.01514693## applying 0.01863933 0.00000000 0.00000000 0.00000000## apprenticeships 0.00000000 0.00000000 0.00000000 0.00000000## appropriations 0.00000000 0.00000000 0.00000000 0.01514693## approve 0.00000000 0.00000000 0.00000000 0.01514693## approving 0.00000000 0.00000000 0.00000000 0.00000000## april 0.00000000 0.00000000 0.00000000 0.00000000## arabic 0.00000000 0.00000000 0.00000000 0.00000000## arc 0.01863933 0.00000000 0.00000000 0.00000000## arming 0.00000000 0.00000000 0.00000000 0.01514693## asad 0.00000000 0.00000000 0.00000000 0.00000000## aspiring 0.00000000 0.00000000 0.01690617 0.00000000## assemble 0.00000000 0.00000000 0.00000000 0.00000000## assets 0.00000000 0.00000000 0.00000000 0.00000000## assistant 0.00000000 0.00000000 0.00000000 0.00000000## assisting 0.00000000 0.00000000 0.00000000 0.00000000## associate 0.00000000 0.00000000 0.00000000 0.00000000## assure 0.00000000 0.00000000 0.00000000 0.00000000## assured 0.00000000 0.00000000 0.00000000 0.00000000## asthma 0.00000000 0.00000000 0.00000000 0.00000000## atrocity 0.00000000 0.00000000 0.00000000 0.00000000## attend 0.00000000 0.00000000 0.00000000 0.00000000## attractive 0.00000000 0.00000000 0.00000000 0.00000000## attracts 0.00000000 0.00000000 0.00000000 0.00000000## automaker 0.00000000 0.00000000 0.00000000 0.00000000## autrey 0.00000000 0.00000000 0.00000000 0.00000000## avert 0.00000000 0.00000000 0.00000000 0.00000000## awaken 0.00000000 0.00000000 0.00000000 0.00000000## awareness 0.00000000 0.00000000 0.00000000 0.00000000## ba 0.00000000 0.00000000 0.00000000 0.00000000## backlog 0.00000000 0.00000000 0.00000000 0.00000000## backs 0.00000000 0.00000000 0.00000000 0.00000000## bailey 0.00000000 0.04521818 0.00000000 0.00000000## ban 0.00000000 0.02260909 0.00000000 0.00000000## banned 0.00000000 0.00000000 0.00000000 0.00000000## banning 0.00000000 0.00000000 0.00000000 0.00000000## bans 0.00000000 0.00000000 0.00000000 0.00000000## bargaining 0.00000000 0.02260909 0.00000000 0.01514693## barra 0.00000000 0.00000000 0.00000000 0.00000000## baseball 0.00000000 0.00000000 0.00000000 0.00000000## bashar 0.00000000 0.00000000 0.00000000 0.00000000## basics 0.00000000 0.00000000 0.00000000 0.00000000## basis 0.00000000 0.00000000 0.00000000 0.00000000## baton 0.00000000 0.00000000 0.00000000 0.00000000## beach 0.00000000 0.00000000 0.00000000 0.00000000## beacon 0.00000000 0.00000000 0.00000000 0.00000000## beamer 0.00000000 0.00000000 0.00000000 0.00000000## bedrock 0.00000000 0.00000000 0.00000000 0.00000000## beijing 0.00000000 0.00000000 0.00000000 0.01514693## belarus 0.00000000 0.00000000 0.00000000 0.00000000## ben^s 0.00000000 0.00000000 0.00000000 0.00000000## benchmark 0.00000000 0.00000000 0.00000000 0.00000000## beneficiary 0.00000000 0.00000000 0.00000000 0.00000000## benefited 0.00000000 0.00000000 0.00000000 0.00000000## berkshire 0.00000000 0.02260909 0.00000000 0.00000000## berra 0.00000000 0.00000000 0.00000000 0.00000000## beshear 0.00000000 0.00000000 0.00000000 0.00000000## bethea 0.00000000 0.00000000 0.00000000 0.00000000## bets 0.00000000 0.00000000 0.00000000 0.00000000## billionaires 0.00000000 0.02260909 0.00000000 0.00000000## binding 0.00000000 0.00000000 0.00000000 0.00000000## bioshield 0.00000000 0.00000000 0.00000000 0.00000000## biotechnology 0.00000000 0.00000000 0.00000000 0.00000000## bite 0.00000000 0.00000000 0.00000000 0.01514693## bitter 0.00000000 0.00000000 0.00000000 0.00000000## blackmail 0.00000000 0.00000000 0.00000000 0.00000000## blackmailed 0.00000000 0.00000000 0.00000000 0.00000000## blessings 0.00000000 0.00000000 0.00000000 0.00000000## blocking 0.00000000 0.00000000 0.00000000 0.00000000## blue 0.00000000 0.00000000 0.00000000 0.00000000## boards 0.00000000 0.00000000 0.00000000 0.00000000## boggs 0.00000000 0.00000000 0.00000000 0.00000000## bombings 0.00000000 0.00000000 0.00000000 0.00000000## bonuses 0.00000000 0.00000000 0.00000000 0.00000000## books 0.01863933 0.00000000 0.00000000 0.00000000## boomers 0.01863933 0.00000000 0.00000000 0.00000000## boosted 0.00000000 0.00000000 0.00000000 0.01514693## boots 0.00000000 0.00000000 0.00000000 0.00000000## borrowing 0.00000000 0.00000000 0.00000000 0.00000000## bosanek 0.00000000 0.00000000 0.00000000 0.00000000## bounce 0.00000000 0.00000000 0.00000000 0.00000000## bowles 0.00000000 0.00000000 0.00000000 0.00000000## box 0.00000000 0.02260909 0.00000000 0.00000000## bray 0.00000000 0.00000000 0.00000000 0.00000000## breast 0.00000000 0.00000000 0.03381234 0.00000000## breaux 0.00000000 0.00000000 0.00000000 0.00000000## brighter 0.00000000 0.00000000 0.00000000 0.01514693## brink 0.00000000 0.00000000 0.01690617 0.00000000## broad-based 0.00000000 0.00000000 0.00000000 0.00000000## bruce 0.00000000 0.00000000 0.00000000 0.00000000## brutality 0.01863933 0.00000000 0.00000000 0.00000000## budged 0.00000000 0.00000000 0.00000000 0.00000000## buffalo 0.00000000 0.00000000 0.00000000 0.00000000## builders 0.00000000 0.00000000 0.00000000 0.00000000## bureau 0.00000000 0.00000000 0.00000000 0.00000000## bureaucracy 0.00000000 0.00000000 0.00000000 0.00000000## bureaucrat 0.00000000 0.00000000 0.03381234 0.00000000## buyers 0.00000000 0.00000000 0.00000000 0.00000000## cable 0.00000000 0.00000000 0.01690617 0.00000000## cairo 0.00000000 0.00000000 0.00000000 0.00000000## calculated 0.00000000 0.00000000 0.00000000 0.00000000## camp 0.00000000 0.00000000 0.00000000 0.00000000## canal 0.00000000 0.00000000 0.00000000 0.00000000## candor 0.01863933 0.00000000 0.00000000 0.00000000## canister 0.00000000 0.00000000 0.00000000 0.00000000## capability 0.01863933 0.00000000 0.00000000 0.00000000## caribbean 0.00000000 0.00000000 0.00000000 0.00000000## caroline 0.00000000 0.00000000 0.03381234 0.00000000## carries 0.00000000 0.00000000 0.00000000 0.00000000## casualties 0.00000000 0.00000000 0.00000000 0.00000000## casualty 0.00000000 0.00000000 0.00000000 0.00000000## catch 0.00000000 0.00000000 0.00000000 0.00000000## category 0.01863933 0.00000000 0.00000000 0.01514693## caused 0.01863933 0.00000000 0.00000000 0.00000000## cedar 0.00000000 0.00000000 0.00000000 0.00000000## certainty 0.00000000 0.00000000 0.00000000 0.00000000## chairman 0.00000000 0.02260909 0.00000000 0.00000000## challenging 0.01863933 0.00000000 0.00000000 0.00000000## charity 0.00000000 0.00000000 0.00000000 0.01514693## charlotte 0.00000000 0.00000000 0.00000000 0.00000000## cheapest 0.00000000 0.02260909 0.00000000 0.00000000## chiefs 0.00000000 0.00000000 0.00000000 0.00000000## child^s 0.00000000 0.00000000 0.00000000 0.00000000## chinese 0.00000000 0.00000000 0.00000000 0.01514693## chute 0.00000000 0.00000000 0.00000000 0.00000000## cia 0.00000000 0.00000000 0.00000000 0.00000000## circumstance 0.00000000 0.00000000 0.00000000 0.00000000## civic 0.00000000 0.00000000 0.00000000 0.00000000## civility 0.00000000 0.00000000 0.01690617 0.00000000## clarity 0.00000000 0.00000000 0.00000000 0.00000000## classmates 0.00000000 0.00000000 0.00000000 0.00000000## client 0.00000000 0.00000000 0.00000000 0.01514693## co 0.00000000 0.00000000 0.00000000 0.00000000## coach 0.00000000 0.00000000 0.00000000 0.00000000## coached 0.00000000 0.00000000 0.00000000 0.00000000## coaches 0.00000000 0.00000000 0.00000000 0.00000000## coburn 0.00000000 0.00000000 0.00000000 0.00000000## collapsed 0.00000000 0.00000000 0.00000000 0.00000000## colleague 0.00000000 0.00000000 0.01690617 0.00000000## collected 0.00000000 0.00000000 0.00000000 0.00000000## colorado 0.00000000 0.00000000 0.00000000 0.00000000## comfortable 0.00000000 0.00000000 0.00000000 0.00000000## companionship 0.00000000 0.00000000 0.00000000 0.00000000## compare 0.00000000 0.00000000 0.00000000 0.00000000## computers 0.00000000 0.00000000 0.00000000 0.00000000## comrades 0.00000000 0.00000000 0.00000000 0.00000000## concentrate 0.00000000 0.00000000 0.00000000 0.00000000## concessions 0.00000000 0.00000000 0.00000000 0.00000000## conclusion 0.00000000 0.00000000 0.00000000 0.00000000## concrete 0.00000000 0.00000000 0.00000000 0.00000000## condemn 0.00000000 0.00000000 0.00000000 0.00000000## conducting 0.00000000 0.00000000 0.00000000 0.00000000## confessions 0.00000000 0.00000000 0.00000000 0.00000000## confirmed 0.00000000 0.00000000 0.00000000 0.00000000## confound 0.00000000 0.00000000 0.00000000 0.00000000## confusing 0.00000000 0.00000000 0.00000000 0.00000000## congressmen 0.00000000 0.00000000 0.01690617 0.00000000## conrad 0.00000000 0.00000000 0.00000000 0.00000000## consequential 0.01863933 0.00000000 0.00000000 0.00000000## conspiracies 0.00000000 0.00000000 0.00000000 0.00000000## constructing 0.00000000 0.00000000 0.00000000 0.00000000## consult 0.00000000 0.00000000 0.00000000 0.00000000## consultation 0.00000000 0.00000000 0.00000000 0.00000000## containment 0.00000000 0.00000000 0.00000000 0.01514693## contempt 0.00000000 0.00000000 0.00000000 0.00000000## contest 0.00000000 0.00000000 0.00000000 0.00000000## contract 0.00000000 0.02260909 0.00000000 0.00000000## contrary 0.00000000 0.00000000 0.00000000 0.00000000## contributing 0.00000000 0.00000000 0.01690617 0.00000000## controlled 0.00000000 0.00000000 0.03381234 0.00000000## controls 0.00000000 0.00000000 0.00000000 0.01514693## controversies 0.00000000 0.00000000 0.01690617 0.00000000## conversation 0.00000000 0.00000000 0.01690617 0.00000000## convince 0.00000000 0.00000000 0.00000000 0.00000000## corrosive 0.00000000 0.00000000 0.00000000 0.00000000## count 0.00000000 0.00000000 0.00000000 0.01514693## counted 0.00000000 0.02260909 0.00000000 0.00000000## couple 0.00000000 0.00000000 0.00000000 0.01514693## covering 0.00000000 0.02260909 0.00000000 0.00000000## crate 0.00000000 0.00000000 0.00000000 0.00000000## credibility 0.00000000 0.00000000 0.00000000 0.01514693## credibly 0.00000000 0.00000000 0.00000000 0.00000000## creditworthiness 0.00000000 0.00000000 0.00000000 0.00000000## crippling 0.00000000 0.00000000 0.00000000 0.00000000## crises 0.00000000 0.00000000 0.01690617 0.00000000## crops 0.00000000 0.00000000 0.00000000 0.00000000## cross 0.00000000 0.00000000 0.00000000 0.00000000## crowd 0.00000000 0.00000000 0.00000000 0.00000000## cruise 0.00000000 0.00000000 0.00000000 0.00000000## crumbling 0.00000000 0.00000000 0.00000000 0.00000000## crushing 0.00000000 0.00000000 0.00000000 0.00000000## cuban 0.00000000 0.00000000 0.00000000 0.01514693## cultures 0.00000000 0.00000000 0.00000000 0.00000000## cures 0.00000000 0.00000000 0.00000000 0.01514693## curran 0.00000000 0.00000000 0.03381234 0.00000000## curve 0.00000000 0.00000000 0.00000000 0.00000000## cutting-edge 0.01863933 0.00000000 0.00000000 0.00000000## cycle 0.00000000 0.00000000 0.00000000 0.00000000## cynicism 0.00000000 0.00000000 0.00000000 0.00000000## cynics 0.00000000 0.00000000 0.00000000 0.01514693## damaged 0.00000000 0.00000000 0.00000000 0.00000000## darkness 0.00000000 0.00000000 0.00000000 0.00000000## dates 0.00000000 0.00000000 0.00000000 0.00000000## david 0.00000000 0.00000000 0.00000000 0.00000000## day^s 0.00000000 0.00000000 0.00000000 0.00000000## de 0.00000000 0.00000000 0.00000000 0.00000000## dead 0.00000000 0.00000000 0.00000000 0.00000000## deadly 0.00000000 0.00000000 0.00000000 0.00000000## dear 0.00000000 0.00000000 0.00000000 0.00000000## debated 0.00000000 0.00000000 0.00000000 0.00000000## debbie 0.00000000 0.00000000 0.00000000 0.00000000## december 0.00000000 0.00000000 0.00000000 0.00000000## decides 0.00000000 0.00000000 0.00000000 0.00000000## declaration 0.00000000 0.00000000 0.00000000 0.00000000## declares 0.00000000 0.00000000 0.00000000 0.00000000## declines 0.00000000 0.00000000 0.00000000 0.00000000## deduct 0.00000000 0.00000000 0.00000000 0.00000000## deeds 0.00000000 0.00000000 0.00000000 0.00000000## defectors 0.00000000 0.00000000 0.00000000 0.00000000## defended 0.00000000 0.00000000 0.00000000 0.00000000## defenders 0.00000000 0.00000000 0.00000000 0.00000000## defending 0.00000000 0.00000000 0.00000000 0.00000000## defensive 0.00000000 0.00000000 0.01690617 0.00000000## defines 0.00000000 0.00000000 0.00000000 0.00000000## degrees 0.00000000 0.00000000 0.00000000 0.00000000## delayed 0.00000000 0.00000000 0.01690617 0.00000000## demonstrate 0.00000000 0.00000000 0.00000000 0.00000000## denver 0.00000000 0.00000000 0.00000000 0.00000000## dependents 0.00000000 0.00000000 0.00000000 0.00000000## deportation 0.00000000 0.00000000 0.00000000 0.00000000## deposits 0.00000000 0.00000000 0.00000000 0.00000000## designs 0.00000000 0.00000000 0.00000000 0.00000000## desperately 0.00000000 0.04521818 0.00000000 0.00000000## despise 0.00000000 0.00000000 0.00000000 0.00000000## determining 0.00000000 0.00000000 0.00000000 0.00000000## devaney 0.00000000 0.00000000 0.00000000 0.00000000## developed 0.00000000 0.00000000 0.00000000 0.00000000## diabetes 0.00000000 0.00000000 0.00000000 0.00000000## diagnosis 0.00000000 0.00000000 0.00000000 0.00000000## dictate 0.00000000 0.00000000 0.00000000 0.00000000## dictates 0.00000000 0.00000000 0.00000000 0.00000000## dictators 0.00000000 0.00000000 0.00000000 0.00000000## difficulties 0.00000000 0.00000000 0.00000000 0.00000000## dingell 0.00000000 0.00000000 0.03381234 0.00000000## dioxide 0.00000000 0.00000000 0.00000000 0.00000000## dirtier 0.00000000 0.00000000 0.00000000 0.03029385## disadvantage 0.00000000 0.00000000 0.01690617 0.00000000## disagreements 0.00000000 0.00000000 0.00000000 0.00000000## disappear 0.00000000 0.00000000 0.00000000 0.00000000## discarded 0.01863933 0.00000000 0.00000000 0.00000000## disclosed 0.00000000 0.00000000 0.00000000 0.00000000## discourage 0.00000000 0.00000000 0.00000000 0.00000000## discouraged 0.01863933 0.00000000 0.00000000 0.00000000## discovered 0.00000000 0.00000000 0.00000000 0.00000000## discriminate 0.00000000 0.00000000 0.00000000 0.00000000## discrimination 0.00000000 0.00000000 0.00000000 0.00000000## disfigured 0.00000000 0.00000000 0.00000000 0.00000000## displaced 0.01863933 0.00000000 0.00000000 0.00000000## disputes 0.00000000 0.00000000 0.01690617 0.00000000## disrupted 0.00000000 0.00000000 0.00000000 0.00000000## disruption 0.01863933 0.00000000 0.00000000 0.00000000## district 0.00000000 0.00000000 0.00000000 0.00000000## diversify 0.00000000 0.00000000 0.00000000 0.00000000## divide 0.00000000 0.00000000 0.00000000 0.01514693## dividend 0.00000000 0.00000000 0.00000000 0.00000000## divides 0.00000000 0.00000000 0.00000000 0.00000000## divisive 0.00000000 0.00000000 0.00000000 0.00000000## dna 0.00000000 0.00000000 0.00000000 0.01514693## doctor-patient 0.01863933 0.00000000 0.00000000 0.00000000## dole 0.00000000 0.00000000 0.00000000 0.00000000## dominated 0.00000000 0.00000000 0.00000000 0.00000000## domination 0.00000000 0.00000000 0.00000000 0.00000000## donna 0.00000000 0.00000000 0.00000000 0.00000000## doses 0.00000000 0.00000000 0.00000000 0.00000000## download 0.00000000 0.00000000 0.00000000 0.00000000## dr 0.00000000 0.00000000 0.00000000 0.01514693## dragged 0.00000000 0.00000000 0.00000000 0.00000000## drastic 0.00000000 0.00000000 0.00000000 0.00000000## dread 0.00000000 0.00000000 0.00000000 0.00000000## dreaming 0.00000000 0.00000000 0.00000000 0.01514693## drills 0.00000000 0.00000000 0.00000000 0.00000000## dripping 0.00000000 0.00000000 0.00000000 0.00000000## drones 0.00000000 0.00000000 0.00000000 0.00000000## dropping 0.00000000 0.00000000 0.01690617 0.00000000## drought 0.00000000 0.00000000 0.00000000 0.00000000## droughts 0.00000000 0.00000000 0.00000000 0.00000000## due 0.00000000 0.00000000 0.01690617 0.00000000## durable 0.00000000 0.00000000 0.00000000 0.01514693## duration 0.00000000 0.00000000 0.00000000 0.00000000## dying 0.00000000 0.00000000 0.00000000 0.00000000## e-mails 0.00000000 0.00000000 0.01690617 0.00000000## earl 0.00000000 0.00000000 0.00000000 0.00000000## earliest 0.00000000 0.00000000 0.00000000 0.00000000## earned-income 0.00000000 0.00000000 0.00000000 0.00000000## earthquake 0.00000000 0.00000000 0.00000000 0.00000000## eased 0.01863933 0.00000000 0.00000000 0.00000000## easily 0.00000000 0.00000000 0.00000000 0.00000000## eaten 0.00000000 0.00000000 0.01690617 0.00000000## economies 0.00000000 0.00000000 0.00000000 0.00000000## edison 0.00000000 0.00000000 0.00000000 0.01514693## educating 0.00000000 0.00000000 0.00000000 0.00000000## effectively 0.00000000 0.00000000 0.00000000 0.00000000## eight 0.00000000 0.00000000 0.00000000 0.01514693## eighth 0.00000000 0.00000000 0.00000000 0.01514693## elaborate 0.00000000 0.00000000 0.00000000 0.00000000## electing 0.00000000 0.00000000 0.00000000 0.00000000## eliminates 0.00000000 0.00000000 0.00000000 0.00000000## else^s 0.00000000 0.00000000 0.01690617 0.01514693## embargo 0.00000000 0.00000000 0.00000000 0.01514693## emphasis 0.00000000 0.00000000 0.00000000 0.00000000## employee 0.00000000 0.00000000 0.00000000 0.00000000## enact 0.00000000 0.00000000 0.00000000 0.00000000## endured 0.00000000 0.00000000 0.00000000 0.00000000## endures 0.00000000 0.00000000 0.00000000 0.00000000## enemy^s 0.00000000 0.00000000 0.00000000 0.00000000## energy-efficient 0.00000000 0.00000000 0.00000000 0.00000000## enforced 0.00000000 0.00000000 0.00000000 0.00000000## enrich 0.00000000 0.00000000 0.00000000 0.00000000## enrolled 0.00000000 0.00000000 0.00000000 0.00000000## enshrined 0.00000000 0.00000000 0.00000000 0.00000000## entered 0.01863933 0.00000000 0.00000000 0.00000000## enthusiasm 0.00000000 0.00000000 0.00000000 0.00000000## entrenched 0.00000000 0.00000000 0.00000000 0.01514693## entrepreneurship 0.00000000 0.00000000 0.00000000 0.01514693## entry 0.00000000 0.00000000 0.00000000 0.00000000## environmentally 0.00000000 0.00000000 0.00000000 0.00000000## equivalent 0.00000000 0.00000000 0.00000000 0.00000000## eradicate 0.00000000 0.00000000 0.00000000 0.00000000## erskine 0.00000000 0.00000000 0.00000000 0.00000000## escalating 0.00000000 0.00000000 0.00000000 0.00000000## estimate 0.00000000 0.00000000 0.00000000 0.00000000## estimates 0.00000000 0.00000000 0.01690617 0.00000000## ethic 0.00000000 0.00000000 0.00000000 0.01514693## evade 0.00000000 0.00000000 0.00000000 0.00000000## event 0.00000000 0.00000000 0.00000000 0.00000000## everyone^s 0.00000000 0.00000000 0.00000000 0.00000000## evolving 0.00000000 0.00000000 0.00000000 0.00000000## examine 0.01863933 0.00000000 0.00000000 0.00000000## excel 0.01863933 0.00000000 0.00000000 0.00000000## exception 0.00000000 0.02260909 0.00000000 0.00000000## exchanges 0.00000000 0.00000000 0.00000000 0.00000000## excluded 0.01863933 0.00000000 0.00000000 0.00000000## excuses 0.00000000 0.00000000 0.00000000 0.00000000## exhaust 0.00000000 0.00000000 0.00000000 0.00000000## exists 0.00000000 0.00000000 0.01690617 0.00000000## expands 0.00000000 0.02260909 0.00000000 0.00000000## expeditionary 0.00000000 0.00000000 0.00000000 0.00000000## expelling 0.00000000 0.00000000 0.00000000 0.00000000## experiment 0.00000000 0.00000000 0.00000000 0.00000000## explained 0.00000000 0.00000000 0.00000000 0.00000000## explaining 0.00000000 0.00000000 0.00000000 0.00000000## explanation 0.00000000 0.00000000 0.00000000 0.00000000## exploited 0.00000000 0.00000000 0.01690617 0.00000000## exploration 0.00000000 0.00000000 0.00000000 0.00000000## explore 0.01863933 0.00000000 0.00000000 0.00000000## exporters 0.00000000 0.00000000 0.00000000 0.00000000## exposed 0.00000000 0.02260909 0.00000000 0.00000000## extended 0.00000000 0.00000000 0.00000000 0.00000000## extends 0.00000000 0.02260909 0.00000000 0.00000000## extension 0.00000000 0.00000000 0.00000000 0.00000000## eye 0.00000000 0.00000000 0.00000000 0.00000000## eyed 0.00000000 0.00000000 0.00000000 0.01514693## facility 0.00000000 0.02260909 0.00000000 0.00000000## fails 0.00000000 0.00000000 0.00000000 0.00000000## fairest 0.00000000 0.00000000 0.00000000 0.00000000## fairly 0.00000000 0.00000000 0.01690617 0.00000000## fallujah 0.01863933 0.00000000 0.00000000 0.00000000## famine 0.00000000 0.00000000 0.00000000 0.01514693## fanfare 0.00000000 0.00000000 0.00000000 0.01514693## far-reaching 0.00000000 0.00000000 0.00000000 0.00000000## farmer 0.00000000 0.00000000 0.00000000 0.00000000## fatherless 0.00000000 0.00000000 0.00000000 0.00000000## favorite 0.01863933 0.00000000 0.00000000 0.00000000## fierce 0.00000000 0.00000000 0.01690617 0.00000000## fiercely 0.00000000 0.00000000 0.00000000 0.01514693## fifty 0.00000000 0.02260909 0.00000000 0.01514693## fights 0.00000000 0.00000000 0.00000000 0.00000000## financed 0.00000000 0.00000000 0.00000000 0.00000000## fingerprints 0.00000000 0.00000000 0.00000000 0.00000000## fingers 0.00000000 0.00000000 0.00000000 0.00000000## finished 0.00000000 0.00000000 0.00000000 0.00000000## finishing 0.00000000 0.00000000 0.00000000 0.00000000## fires 0.00000000 0.00000000 0.00000000 0.00000000## firmly 0.00000000 0.00000000 0.00000000 0.00000000## firms 0.00000000 0.00000000 0.00000000 0.00000000## first-class 0.00000000 0.00000000 0.00000000 0.00000000## first-time 0.00000000 0.00000000 0.00000000 0.00000000## fiscally 0.00000000 0.00000000 0.00000000 0.00000000## fisher 0.00000000 0.00000000 0.00000000 0.00000000## fits 0.00000000 0.00000000 0.00000000 0.00000000## flags 0.00000000 0.00000000 0.00000000 0.00000000## flexible 0.00000000 0.00000000 0.00000000 0.00000000## floor 0.00000000 0.00000000 0.00000000 0.00000000## florida 0.00000000 0.00000000 0.00000000 0.00000000## following 0.00000000 0.00000000 0.00000000 0.00000000## forgiven 0.00000000 0.00000000 0.00000000 0.00000000## fork 0.00000000 0.00000000 0.00000000 0.00000000## forsyth 0.00000000 0.00000000 0.00000000 0.00000000## fortunately 0.01863933 0.00000000 0.00000000 0.01514693## fossil 0.00000000 0.00000000 0.00000000 0.01514693## foundations 0.00000000 0.00000000 0.00000000 0.00000000## founded 0.00000000 0.00000000 0.00000000 0.00000000## foy 0.00000000 0.00000000 0.00000000 0.00000000## fragile 0.00000000 0.00000000 0.00000000 0.00000000## freely 0.00000000 0.00000000 0.00000000 0.00000000## friday 0.00000000 0.00000000 0.00000000 0.00000000## fringe 0.00000000 0.00000000 0.00000000 0.00000000## frontline 0.00000000 0.00000000 0.00000000 0.00000000## frozen 0.00000000 0.00000000 0.01690617 0.00000000## frustrated 0.00000000 0.00000000 0.00000000 0.00000000## frustrating 0.00000000 0.00000000 0.00000000 0.00000000## fuel-efficient 0.00000000 0.02260909 0.00000000 0.00000000## fumes 0.00000000 0.00000000 0.00000000 0.00000000## gabby 0.00000000 0.00000000 0.00000000 0.00000000## gaining 0.00000000 0.00000000 0.00000000 0.00000000## gallon 0.00000000 0.00000000 0.00000000 0.01514693## gallons 0.00000000 0.00000000 0.00000000 0.00000000## gender 0.00000000 0.00000000 0.00000000 0.00000000## generals 0.00000000 0.00000000 0.00000000 0.00000000## generational 0.00000000 0.00000000 0.00000000 0.00000000## genocide 0.01863933 0.00000000 0.00000000 0.00000000## genome 0.00000000 0.00000000 0.00000000 0.00000000## georgetown 0.00000000 0.00000000 0.00000000 0.00000000## germ 0.00000000 0.00000000 0.00000000 0.00000000## gibraltar 0.00000000 0.00000000 0.00000000 0.00000000## gitmo 0.00000000 0.00000000 0.00000000 0.00000000## giuliani 0.00000000 0.00000000 0.00000000 0.00000000## giveaways 0.00000000 0.00000000 0.00000000 0.00000000## glad 0.01863933 0.00000000 0.00000000 0.00000000## god-given 0.01863933 0.00000000 0.00000000 0.00000000## gotten 0.00000000 0.00000000 0.00000000 0.03029385## governance 0.00000000 0.00000000 0.00000000 0.00000000## graders 0.00000000 0.00000000 0.00000000 0.00000000## graduating 0.00000000 0.00000000 0.00000000 0.00000000## grandmother 0.00000000 0.00000000 0.00000000 0.00000000## grassley 0.00000000 0.00000000 0.03381234 0.00000000## grassroots 0.00000000 0.00000000 0.00000000 0.00000000## gray 0.00000000 0.00000000 0.00000000 0.00000000## greenhouse 0.00000000 0.00000000 0.00000000 0.00000000## gregg 0.00000000 0.00000000 0.00000000 0.00000000## gridlock 0.00000000 0.00000000 0.01690617 0.00000000## grocery 0.00000000 0.00000000 0.00000000 0.00000000## grueling 0.00000000 0.00000000 0.00000000 0.00000000## guaranteeing 0.00000000 0.00000000 0.00000000 0.00000000## guess 0.00000000 0.00000000 0.00000000 0.01514693## guidance 0.00000000 0.00000000 0.00000000 0.00000000## guides 0.00000000 0.00000000 0.00000000 0.00000000## guiding 0.00000000 0.00000000 0.01690617 0.00000000## gut 0.00000000 0.00000000 0.00000000 0.00000000## hadiya 0.00000000 0.00000000 0.00000000 0.00000000## hadn^t 0.00000000 0.02260909 0.01690617 0.00000000## halls 0.00000000 0.00000000 0.01690617 0.00000000## halt 0.00000000 0.00000000 0.00000000 0.01514693## halted 0.00000000 0.00000000 0.00000000 0.00000000## hamas 0.01863933 0.00000000 0.00000000 0.00000000## hambali 0.00000000 0.00000000 0.00000000 0.00000000## hamburg 0.00000000 0.00000000 0.00000000 0.00000000## hamid 0.01863933 0.00000000 0.00000000 0.00000000## handful 0.00000000 0.00000000 0.00000000 0.03029385## hands-on 0.00000000 0.00000000 0.00000000 0.01514693## hardships 0.00000000 0.00000000 0.01690617 0.00000000## harkin 0.00000000 0.00000000 0.00000000 0.00000000## hathaway 0.00000000 0.02260909 0.00000000 0.00000000## haul 0.00000000 0.02260909 0.00000000 0.00000000## head 0.00000000 0.00000000 0.00000000 0.00000000## headlines 0.00000000 0.00000000 0.00000000 0.00000000## healed 0.00000000 0.00000000 0.00000000 0.00000000## heavy 0.01863933 0.00000000 0.00000000 0.00000000## height 0.00000000 0.00000000 0.00000000 0.00000000## heppner 0.00000000 0.00000000 0.00000000 0.00000000## hesitation 0.00000000 0.00000000 0.00000000 0.00000000## high-paying 0.00000000 0.00000000 0.00000000 0.00000000## high-strength 0.00000000 0.00000000 0.00000000 0.00000000## high-wage 0.01863933 0.00000000 0.00000000 0.00000000## highly 0.00000000 0.00000000 0.00000000 0.00000000## hillary 0.00000000 0.00000000 0.00000000 0.00000000## hills 0.00000000 0.00000000 0.00000000 0.00000000## hinder 0.00000000 0.00000000 0.00000000 0.00000000## hired 0.00000000 0.02260909 0.00000000 0.00000000## hitlerism 0.00000000 0.00000000 0.00000000 0.00000000## hmos 0.00000000 0.00000000 0.00000000 0.00000000## holiness 0.00000000 0.00000000 0.00000000 0.01514693## homeowner 0.00000000 0.00000000 0.00000000 0.00000000## homework 0.00000000 0.00000000 0.00000000 0.00000000## honesty 0.00000000 0.00000000 0.00000000 0.00000000## honey 0.00000000 0.00000000 0.00000000 0.00000000## hopelessness 0.00000000 0.00000000 0.00000000 0.00000000## horizon 0.00000000 0.00000000 0.00000000 0.00000000## hormuz 0.00000000 0.00000000 0.00000000 0.00000000## horrific 0.00000000 0.00000000 0.00000000 0.00000000## horror 0.00000000 0.00000000 0.00000000 0.00000000## horrors 0.01863933 0.00000000 0.00000000 0.00000000## hostage 0.01863933 0.00000000 0.00000000 0.00000000## hotter 0.00000000 0.00000000 0.00000000 0.01514693## household 0.00000000 0.00000000 0.00000000 0.00000000## houser 0.00000000 0.00000000 0.00000000 0.00000000## houses 0.00000000 0.00000000 0.00000000 0.00000000## humanitarian 0.00000000 0.00000000 0.00000000 0.00000000## humbled 0.01863933 0.00000000 0.00000000 0.00000000## hunting 0.00000000 0.00000000 0.00000000 0.00000000## hurting 0.00000000 0.00000000 0.00000000 0.00000000## hussein^s 0.00000000 0.00000000 0.00000000 0.00000000## hutchison 0.00000000 0.04521818 0.00000000 0.00000000## hybrids 0.01863933 0.00000000 0.00000000 0.00000000## hydrogen-powered 0.00000000 0.00000000 0.00000000 0.00000000## illegally 0.00000000 0.00000000 0.01690617 0.00000000## illusions 0.00000000 0.00000000 0.00000000 0.00000000## imminent 0.00000000 0.00000000 0.00000000 0.00000000## impartial 0.00000000 0.00000000 0.00000000 0.00000000## imperatives 0.00000000 0.00000000 0.00000000 0.03029385## import 0.00000000 0.00000000 0.00000000 0.00000000## imported 0.01863933 0.00000000 0.00000000 0.00000000## imposed 0.00000000 0.00000000 0.00000000 0.00000000## imposing 0.00000000 0.00000000 0.00000000 0.00000000## imprisoned 0.00000000 0.00000000 0.00000000 0.00000000## incite 0.00000000 0.00000000 0.00000000 0.00000000## incorporates 0.00000000 0.00000000 0.03381234 0.00000000## independents 0.00000000 0.00000000 0.00000000 0.00000000## indicate 0.00000000 0.00000000 0.00000000 0.00000000## indicates 0.00000000 0.00000000 0.00000000 0.00000000## indicted 0.00000000 0.00000000 0.00000000 0.00000000## inevitable 0.00000000 0.00000000 0.00000000 0.01514693## infants 0.00000000 0.00000000 0.00000000 0.00000000## informed 0.01863933 0.00000000 0.00000000 0.00000000## inherit 0.01863933 0.00000000 0.00000000 0.00000000## inner 0.00000000 0.00000000 0.00000000 0.00000000## inoculating 0.00000000 0.00000000 0.00000000 0.00000000## insisted 0.00000000 0.00000000 0.03381234 0.00000000## insists 0.00000000 0.00000000 0.00000000 0.00000000## inspection 0.00000000 0.00000000 0.00000000 0.00000000## inspections 0.00000000 0.00000000 0.00000000 0.00000000## inspector 0.00000000 0.00000000 0.00000000 0.00000000## inspiration 0.00000000 0.00000000 0.00000000 0.00000000## installing 0.00000000 0.02260909 0.00000000 0.00000000## instance 0.00000000 0.00000000 0.00000000 0.00000000## instant 0.00000000 0.00000000 0.00000000 0.00000000## institute 0.00000000 0.00000000 0.00000000 0.00000000## instructing 0.00000000 0.00000000 0.00000000 0.00000000## integration 0.00000000 0.00000000 0.00000000 0.00000000## intense 0.00000000 0.00000000 0.00000000 0.00000000## intensified 0.00000000 0.00000000 0.00000000 0.00000000## intention 0.00000000 0.00000000 0.00000000 0.00000000## interstate 0.00000000 0.00000000 0.00000000 0.00000000## interview 0.00000000 0.00000000 0.00000000 0.00000000## invent 0.00000000 0.00000000 0.00000000 0.00000000## invented 0.00000000 0.00000000 0.00000000 0.00000000## inventors 0.00000000 0.00000000 0.00000000 0.00000000## invested 0.00000000 0.00000000 0.00000000 0.00000000## investor 0.00000000 0.00000000 0.00000000 0.00000000## invitation 0.00000000 0.00000000 0.00000000 0.00000000## involve 0.00000000 0.00000000 0.00000000 0.00000000## involvement 0.00000000 0.00000000 0.00000000 0.00000000## invulnerability 0.00000000 0.00000000 0.00000000 0.00000000## ira 0.00000000 0.00000000 0.00000000 0.01514693## iranians 0.00000000 0.00000000 0.00000000 0.00000000## ironclad 0.00000000 0.00000000 0.00000000 0.00000000## irons 0.00000000 0.00000000 0.00000000 0.00000000## isil^s 0.00000000 0.00000000 0.00000000 0.01514693## issuing 0.00000000 0.00000000 0.00000000 0.00000000## items 0.00000000 0.00000000 0.00000000 0.00000000## jailed 0.00000000 0.00000000 0.00000000 0.00000000## james 0.00000000 0.00000000 0.00000000 0.00000000## jerusalem 0.00000000 0.00000000 0.00000000 0.00000000## jewish 0.00000000 0.00000000 0.00000000 0.00000000## jim 0.00000000 0.00000000 0.00000000 0.00000000## job-creating 0.00000000 0.00000000 0.00000000 0.00000000## john^s 0.00000000 0.00000000 0.00000000 0.00000000## joining 0.00000000 0.00000000 0.00000000 0.00000000## judd 0.00000000 0.00000000 0.00000000 0.00000000## jump-start 0.00000000 0.02260909 0.00000000 0.00000000## junior 0.00000000 0.00000000 0.00000000 0.00000000## kara 0.00000000 0.00000000 0.03381234 0.00000000## karzai 0.01863933 0.00000000 0.00000000 0.00000000## kathleen 0.00000000 0.00000000 0.03381234 0.00000000## kathryn 0.00000000 0.04521818 0.00000000 0.00000000## keeper 0.00000000 0.00000000 0.00000000 0.00000000## kelly 0.00000000 0.00000000 0.00000000 0.00000000## kent 0.00000000 0.00000000 0.00000000 0.00000000## kerry 0.00000000 0.04521818 0.00000000 0.00000000## khalid 0.00000000 0.00000000 0.00000000 0.00000000## khattala 0.00000000 0.00000000 0.00000000 0.03029385## kristin 0.00000000 0.00000000 0.00000000 0.00000000## landed 0.00000000 0.00000000 0.00000000 0.00000000## landmark 0.00000000 0.00000000 0.00000000 0.00000000## large-scale 0.00000000 0.00000000 0.00000000 0.00000000## launchers 0.00000000 0.00000000 0.00000000 0.00000000## lawsuit 0.00000000 0.00000000 0.00000000 0.00000000## lawyer 0.00000000 0.00000000 0.00000000 0.00000000## leg 0.00000000 0.00000000 0.00000000 0.00000000## legacy 0.00000000 0.00000000 0.00000000 0.00000000## legally 0.01863933 0.00000000 0.00000000 0.00000000## legislate 0.01863933 0.00000000 0.00000000 0.00000000## lender 0.00000000 0.00000000 0.00000000 0.00000000## lengths 0.00000000 0.00000000 0.00000000 0.00000000## leonard 0.00000000 0.00000000 0.00000000 0.00000000## lethal 0.00000000 0.00000000 0.00000000 0.00000000## letting 0.00000000 0.00000000 0.00000000 0.01514693## lifeblood 0.00000000 0.00000000 0.00000000 0.01514693## likewise 0.00000000 0.00000000 0.01690617 0.00000000## limited 0.00000000 0.00000000 0.00000000 0.00000000## linked 0.00000000 0.00000000 0.00000000 0.01514693## links 0.00000000 0.00000000 0.00000000 0.00000000## lisa 0.01863933 0.00000000 0.00000000 0.00000000## listening 0.00000000 0.00000000 0.00000000 0.00000000## lists 0.01863933 0.00000000 0.00000000 0.00000000## literacy 0.00000000 0.00000000 0.00000000 0.00000000## llp 0.00000000 0.00000000 0.00000000 0.00000000## load 0.00000000 0.00000000 0.00000000 0.00000000## location 0.00000000 0.00000000 0.00000000 0.00000000## locked 0.00000000 0.00000000 0.00000000 0.00000000## logistics 0.00000000 0.00000000 0.00000000 0.00000000## logs 0.00000000 0.00000000 0.00000000 0.00000000## loss 0.00000000 0.00000000 0.00000000 0.01514693## loves 0.00000000 0.00000000 0.00000000 0.00000000## lowered 0.00000000 0.00000000 0.00000000 0.00000000## lowers 0.00000000 0.00000000 0.00000000 0.00000000## luna 0.00000000 0.00000000 0.00000000 0.00000000## mahmoud 0.00000000 0.00000000 0.00000000 0.00000000## maintaining 0.00000000 0.00000000 0.00000000 0.00000000## manage 0.00000000 0.00000000 0.00000000 0.01514693## management 0.00000000 0.00000000 0.00000000 0.00000000## mandate 0.00000000 0.00000000 0.00000000 0.00000000## mandates 0.00000000 0.00000000 0.00000000 0.00000000## mandatory 0.01863933 0.00000000 0.00000000 0.00000000## manmade 0.00000000 0.02260909 0.00000000 0.00000000## map 0.00000000 0.00000000 0.00000000 0.00000000## marching 0.00000000 0.00000000 0.00000000 0.00000000## market-based 0.00000000 0.00000000 0.00000000 0.00000000## marketplace 0.00000000 0.00000000 0.03381234 0.00000000## marks 0.01863933 0.00000000 0.00000000 0.01514693## married 0.00000000 0.00000000 0.00000000 0.00000000## mars 0.00000000 0.00000000 0.00000000 0.00000000## marshals 0.00000000 0.00000000 0.00000000 0.00000000## mary 0.00000000 0.00000000 0.00000000 0.00000000## maryland 0.00000000 0.00000000 0.00000000 0.00000000## matched 0.00000000 0.00000000 0.01690617 0.00000000## mayors 0.00000000 0.00000000 0.00000000 0.00000000## maze 0.01863933 0.00000000 0.00000000 0.00000000## mazen 0.00000000 0.00000000 0.00000000 0.00000000## medicare^s 0.00000000 0.00000000 0.00000000 0.00000000## meetings 0.00000000 0.00000000 0.00000000 0.00000000## melting 0.00000000 0.00000000 0.00000000 0.00000000## memories 0.00000000 0.00000000 0.00000000 0.01514693## memory 0.01863933 0.00000000 0.00000000 0.00000000## mentioned 0.00000000 0.00000000 0.03381234 0.00000000## mentoring 0.00000000 0.00000000 0.00000000 0.00000000## mercury 0.00000000 0.02260909 0.00000000 0.00000000## merely 0.00000000 0.00000000 0.01690617 0.00000000## mess 0.00000000 0.00000000 0.00000000 0.00000000## messages 0.00000000 0.00000000 0.00000000 0.00000000## miami 0.00000000 0.00000000 0.00000000 0.00000000## michigan 0.00000000 0.00000000 0.00000000 0.00000000## midwest 0.00000000 0.00000000 0.00000000 0.00000000## milan 0.00000000 0.00000000 0.00000000 0.00000000## militarism 0.00000000 0.00000000 0.00000000 0.00000000## millennium 0.00000000 0.00000000 0.00000000 0.00000000## miller 0.00000000 0.00000000 0.00000000 0.00000000## miners 0.00000000 0.00000000 0.00000000 0.00000000## minutes 0.00000000 0.00000000 0.00000000 0.00000000## miracles 0.00000000 0.00000000 0.00000000 0.00000000## miraculous 0.00000000 0.00000000 0.00000000 0.00000000## mistake 0.00000000 0.00000000 0.01690617 0.00000000## mitchell 0.00000000 0.00000000 0.00000000 0.00000000## mobility 0.01863933 0.00000000 0.00000000 0.00000000## mobilized 0.00000000 0.04521818 0.00000000 0.00000000## mobilizing 0.00000000 0.00000000 0.00000000 0.00000000## moderate 0.00000000 0.00000000 0.00000000 0.00000000## modernized 0.00000000 0.00000000 0.00000000 0.00000000## mohammed 0.00000000 0.00000000 0.00000000 0.00000000## moms 0.00000000 0.00000000 0.00000000 0.00000000## monitoring 0.00000000 0.00000000 0.00000000 0.00000000## mostly 0.00000000 0.00000000 0.00000000 0.00000000## motors 0.00000000 0.00000000 0.00000000 0.00000000## mounting 0.00000000 0.00000000 0.00000000 0.00000000## multinational 0.00000000 0.00000000 0.00000000 0.00000000## murderers 0.00000000 0.00000000 0.00000000 0.01514693## music 0.00000000 0.00000000 0.00000000 0.00000000## mustard 0.00000000 0.00000000 0.00000000 0.00000000## muster 0.00000000 0.00000000 0.00000000 0.03029385## mutilation 0.00000000 0.00000000 0.00000000 0.00000000## mutombo 0.00000000 0.00000000 0.00000000 0.00000000## myra 0.00000000 0.00000000 0.00000000 0.00000000## naive 0.00000000 0.00000000 0.00000000 0.00000000## nasa 0.00000000 0.00000000 0.00000000 0.00000000## nationalized 0.00000000 0.00000000 0.00000000 0.00000000## necessities 0.00000000 0.02260909 0.00000000 0.00000000## necessity 0.01863933 0.00000000 0.00000000 0.00000000## negotiating 0.00000000 0.00000000 0.00000000 0.00000000## neighbor 0.00000000 0.00000000 0.00000000 0.00000000## nerve 0.00000000 0.00000000 0.00000000 0.00000000## neutrality 0.00000000 0.00000000 0.00000000 0.01514693## newer 0.00000000 0.02260909 0.00000000 0.00000000## newspaper 0.00000000 0.00000000 0.00000000 0.00000000## noise 0.00000000 0.00000000 0.00000000 0.01514693## nominations 0.00000000 0.00000000 0.00000000 0.00000000## normal 0.00000000 0.00000000 0.00000000 0.00000000## nowhere 0.00000000 0.02260909 0.00000000 0.00000000## nuclear-armed 0.00000000 0.00000000 0.00000000 0.01514693## o 0.01863933 0.00000000 0.00000000 0.00000000## object 0.00000000 0.00000000 0.00000000 0.00000000## objections 0.00000000 0.00000000 0.00000000 0.00000000## obstacles 0.00000000 0.00000000 0.00000000 0.00000000## obtained 0.00000000 0.00000000 0.00000000 0.00000000## occupations 0.00000000 0.00000000 0.00000000 0.00000000## offense 0.00000000 0.00000000 0.00000000 0.00000000## omaha 0.00000000 0.00000000 0.00000000 0.00000000## one-tenth 0.00000000 0.00000000 0.03381234 0.00000000## one-third 0.00000000 0.00000000 0.00000000 0.00000000## operative 0.00000000 0.00000000 0.00000000 0.00000000## opinion 0.00000000 0.00000000 0.00000000 0.00000000## orphaned 0.00000000 0.00000000 0.00000000 0.00000000## other^s 0.00000000 0.00000000 0.00000000 0.00000000## out-build 0.00000000 0.02260909 0.00000000 0.00000000## out-educate 0.00000000 0.02260909 0.00000000 0.00000000## out-innovate 0.00000000 0.02260909 0.00000000 0.00000000## outrage 0.00000000 0.04521818 0.00000000 0.00000000## outstanding 0.00000000 0.00000000 0.00000000 0.00000000## overlook 0.00000000 0.00000000 0.00000000 0.00000000## overthrow 0.00000000 0.00000000 0.00000000 0.00000000## owning 0.00000000 0.00000000 0.00000000 0.00000000## oxygen 0.00000000 0.00000000 0.00000000 0.00000000## package 0.00000000 0.00000000 0.00000000 0.01514693## paint 0.00000000 0.00000000 0.00000000 0.00000000## pandemic 0.00000000 0.00000000 0.00000000 0.01514693## panel 0.00000000 0.00000000 0.00000000 0.00000000## parental 0.00000000 0.00000000 0.00000000 0.00000000## park 0.00000000 0.00000000 0.00000000 0.00000000## parks 0.00000000 0.00000000 0.00000000 0.00000000## partial-birth 0.00000000 0.00000000 0.00000000 0.00000000## particular 0.00000000 0.00000000 0.00000000 0.00000000## partisanship 0.00000000 0.00000000 0.00000000 0.00000000## passengers 0.00000000 0.00000000 0.00000000 0.00000000## passions 0.00000000 0.00000000 0.00000000 0.00000000## pastors 0.00000000 0.00000000 0.00000000 0.00000000## pataki 0.00000000 0.00000000 0.00000000 0.00000000## patenting 0.01863933 0.00000000 0.00000000 0.00000000## patrolling 0.00000000 0.00000000 0.00000000 0.00000000## patrols 0.00000000 0.00000000 0.00000000 0.00000000## patterns 0.00000000 0.00000000 0.00000000 0.00000000## patton 0.00000000 0.00000000 0.00000000 0.00000000## paul 0.00000000 0.00000000 0.00000000 0.03029385## peacefully 0.00000000 0.00000000 0.00000000 0.00000000## pearson 0.00000000 0.00000000 0.00000000 0.00000000## penalties 0.00000000 0.00000000 0.00000000 0.00000000## pension 0.00000000 0.00000000 0.00000000 0.00000000## perfect 0.00000000 0.00000000 0.00000000 0.01514693## permits 0.00000000 0.00000000 0.00000000 0.00000000## permitting 0.00000000 0.00000000 0.00000000 0.00000000## perpetrator 0.00000000 0.00000000 0.00000000 0.03029385## perpetual 0.00000000 0.00000000 0.00000000 0.00000000## perseverance 0.00000000 0.00000000 0.00000000 0.00000000## persons 0.00000000 0.00000000 0.00000000 0.01514693## pet 0.00000000 0.00000000 0.00000000 0.00000000## petraeus 0.00000000 0.00000000 0.00000000 0.00000000## philosophical 0.00000000 0.00000000 0.00000000 0.00000000## philosophy 0.00000000 0.00000000 0.00000000 0.00000000## phony 0.00000000 0.00000000 0.00000000 0.00000000## physicians 0.00000000 0.00000000 0.00000000 0.00000000## pictures 0.00000000 0.00000000 0.00000000 0.00000000## pile 0.00000000 0.00000000 0.01690617 0.00000000## pizza 0.00000000 0.00000000 0.00000000 0.00000000## placement 0.00000000 0.00000000 0.00000000 0.00000000## planned 0.00000000 0.00000000 0.00000000 0.00000000## platform 0.00000000 0.00000000 0.00000000 0.01514693## plug-in 0.00000000 0.00000000 0.00000000 0.00000000## plunged 0.00000000 0.00000000 0.00000000 0.00000000## plus 0.00000000 0.00000000 0.00000000 0.00000000## poland 0.00000000 0.00000000 0.00000000 0.00000000## politely 0.00000000 0.00000000 0.00000000 0.00000000## poll 0.00000000 0.00000000 0.00000000 0.00000000## portion 0.00000000 0.00000000 0.00000000 0.00000000## poses 0.00000000 0.00000000 0.00000000 0.00000000## posing 0.00000000 0.00000000 0.00000000 0.00000000## possessed 0.00000000 0.00000000 0.00000000 0.00000000## post 0.00000000 0.00000000 0.00000000 0.00000000## pot 0.00000000 0.00000000 0.00000000 0.00000000## potter 0.00000000 0.00000000 0.03381234 0.00000000## pouring 0.00000000 0.00000000 0.00000000 0.01514693## powell 0.00000000 0.00000000 0.00000000 0.00000000## powered 0.00000000 0.00000000 0.00000000 0.00000000## powerplants 0.00000000 0.00000000 0.00000000 0.00000000## powers 0.00000000 0.00000000 0.00000000 0.00000000## practiced 0.00000000 0.00000000 0.00000000 0.00000000## prayer 0.00000000 0.00000000 0.00000000 0.00000000## praying 0.00000000 0.00000000 0.00000000 0.00000000## predecessor 0.00000000 0.00000000 0.00000000 0.00000000## prefer 0.00000000 0.00000000 0.00000000 0.01514693## pregnancy 0.00000000 0.00000000 0.00000000 0.00000000## pretend 0.00000000 0.02260909 0.00000000 0.00000000## pretending 0.01863933 0.00000000 0.00000000 0.00000000## prevailed 0.00000000 0.00000000 0.00000000 0.00000000## primarily 0.00000000 0.00000000 0.01690617 0.01514693## principals 0.00000000 0.00000000 0.00000000 0.00000000## prior 0.01863933 0.00000000 0.00000000 0.00000000## prisoner 0.00000000 0.00000000 0.00000000 0.00000000## prize 0.00000000 0.00000000 0.00000000 0.00000000## procedures 0.00000000 0.00000000 0.00000000 0.00000000## proctor 0.00000000 0.00000000 0.00000000 0.00000000## produced 0.00000000 0.00000000 0.00000000 0.00000000## productivity 0.00000000 0.00000000 0.00000000 0.00000000## progressive 0.00000000 0.00000000 0.01690617 0.00000000## progrowth 0.00000000 0.00000000 0.00000000 0.00000000## proliferation 0.00000000 0.00000000 0.00000000 0.00000000## prominent 0.00000000 0.00000000 0.01690617 0.00000000## prompt 0.00000000 0.00000000 0.00000000 0.00000000## propaganda 0.00000000 0.00000000 0.00000000 0.01514693## proper 0.00000000 0.00000000 0.00000000 0.00000000## properly 0.00000000 0.02260909 0.00000000 0.00000000## prosecution 0.00000000 0.00000000 0.00000000 0.00000000## prospect 0.00000000 0.00000000 0.00000000 0.00000000## protectionism 0.01863933 0.00000000 0.00000000 0.00000000## proved 0.00000000 0.00000000 0.00000000 0.00000000## province 0.00000000 0.00000000 0.00000000 0.00000000## provinces 0.00000000 0.00000000 0.00000000 0.00000000## provincial 0.00000000 0.00000000 0.00000000 0.00000000## provision 0.00000000 0.00000000 0.03381234 0.00000000## provisions 0.00000000 0.00000000 0.00000000 0.00000000## prudent 0.00000000 0.00000000 0.00000000 0.00000000## pulled 0.00000000 0.00000000 0.01690617 0.00000000## pump 0.00000000 0.00000000 0.00000000 0.00000000## pundits 0.00000000 0.00000000 0.00000000 0.00000000## punishing 0.00000000 0.00000000 0.00000000 0.00000000## purchases 0.00000000 0.02260909 0.00000000 0.00000000## purchasing 0.00000000 0.00000000 0.00000000 0.00000000## pursued 0.00000000 0.00000000 0.00000000 0.00000000## pursues 0.00000000 0.00000000 0.00000000 0.00000000## putin 0.00000000 0.00000000 0.00000000 0.00000000## qualified 0.00000000 0.00000000 0.00000000 0.00000000## quick 0.00000000 0.00000000 0.00000000 0.00000000## quite 0.00000000 0.00000000 0.01690617 0.00000000## quitters 0.00000000 0.00000000 0.00000000 0.00000000## quitting 0.00000000 0.00000000 0.00000000 0.00000000## races 0.00000000 0.00000000 0.00000000 0.00000000## rage 0.01863933 0.00000000 0.00000000 0.00000000## railroads 0.00000000 0.02260909 0.00000000 0.00000000## raises 0.00000000 0.00000000 0.00000000 0.00000000## raleigh 0.00000000 0.00000000 0.00000000 0.00000000## rallied 0.00000000 0.00000000 0.00000000 0.00000000## rally 0.01863933 0.00000000 0.00000000 0.00000000## randolph 0.00000000 0.00000000 0.00000000 0.00000000## rape 0.00000000 0.00000000 0.00000000 0.00000000## rarely 0.00000000 0.00000000 0.00000000 0.00000000## rational 0.01863933 0.00000000 0.00000000 0.01514693## rations 0.00000000 0.00000000 0.00000000 0.00000000## reached 0.00000000 0.00000000 0.00000000 0.00000000## reaches 0.00000000 0.00000000 0.00000000 0.00000000## reaffirm 0.00000000 0.00000000 0.00000000 0.00000000## realized 0.00000000 0.00000000 0.00000000 0.00000000## realizing 0.00000000 0.00000000 0.00000000 0.00000000## rebounding 0.00000000 0.00000000 0.00000000 0.00000000## rebuilt 0.00000000 0.00000000 0.00000000 0.00000000## recedes 0.00000000 0.00000000 0.00000000 0.00000000## reclaim 0.00000000 0.00000000 0.00000000 0.00000000## recognizes 0.00000000 0.00000000 0.00000000 0.00000000## recommended 0.00000000 0.00000000 0.00000000 0.00000000## recovered 0.00000000 0.00000000 0.00000000 0.01514693## recovering 0.00000000 0.00000000 0.00000000 0.00000000## recriminations 0.00000000 0.00000000 0.00000000 0.00000000## redefine 0.01863933 0.00000000 0.00000000 0.00000000## reformed 0.00000000 0.00000000 0.00000000 0.01514693## reformers 0.00000000 0.00000000 0.00000000 0.00000000## refund 0.00000000 0.02260909 0.00000000 0.00000000## refundable 0.00000000 0.00000000 0.00000000 0.00000000## refused 0.00000000 0.00000000 0.00000000 0.00000000## refuses 0.01863933 0.00000000 0.00000000 0.00000000## reignite 0.00000000 0.00000000 0.00000000 0.01514693## reinforcements 0.00000000 0.00000000 0.00000000 0.00000000## reinvent 0.00000000 0.00000000 0.00000000 0.00000000## related 0.01863933 0.00000000 0.00000000 0.00000000## relentless 0.01863933 0.00000000 0.01690617 0.00000000## religions 0.00000000 0.00000000 0.00000000 0.01514693## reluctantly 0.00000000 0.00000000 0.00000000 0.00000000## remaking 0.00000000 0.00000000 0.00000000 0.00000000## remnants 0.00000000 0.00000000 0.00000000 0.00000000## remote 0.00000000 0.00000000 0.00000000 0.01514693## renewal 0.00000000 0.00000000 0.00000000 0.00000000## renovation 0.00000000 0.02260909 0.00000000 0.00000000## reorganized 0.00000000 0.00000000 0.00000000 0.00000000## repairing 0.01863933 0.00000000 0.00000000 0.00000000## replaced 0.00000000 0.00000000 0.00000000 0.00000000## reporting 0.00000000 0.00000000 0.00000000 0.00000000## represses 0.00000000 0.00000000 0.00000000 0.00000000## repressing 0.01863933 0.00000000 0.00000000 0.00000000## republic 0.00000000 0.00000000 0.00000000 0.00000000## requested 0.00000000 0.00000000 0.00000000 0.00000000## requests 0.00000000 0.00000000 0.00000000 0.00000000## resentments 0.01863933 0.00000000 0.00000000 0.00000000## reshaping 0.00000000 0.00000000 0.00000000 0.01514693## resident 0.00000000 0.00000000 0.00000000 0.00000000## resilient 0.00000000 0.00000000 0.00000000 0.00000000## respected 0.00000000 0.00000000 0.00000000 0.00000000## respiratory 0.00000000 0.00000000 0.00000000 0.00000000## responders 0.00000000 0.00000000 0.00000000 0.00000000## restored 0.00000000 0.00000000 0.00000000 0.01514693## restoring 0.00000000 0.00000000 0.00000000 0.00000000## restrained 0.00000000 0.00000000 0.00000000 0.00000000## restructure 0.00000000 0.00000000 0.00000000 0.00000000## restructuring 0.00000000 0.00000000 0.00000000 0.00000000## resume 0.00000000 0.00000000 0.00000000 0.00000000## retail 0.00000000 0.00000000 0.00000000 0.00000000## retaliation 0.00000000 0.00000000 0.00000000 0.00000000## retool 0.00000000 0.00000000 0.00000000 0.01514693## retooled 0.00000000 0.00000000 0.00000000 0.00000000## retrain 0.00000000 0.00000000 0.00000000 0.03029385## retreating 0.01863933 0.00000000 0.00000000 0.00000000## returning 0.00000000 0.02260909 0.00000000 0.00000000## reveal 0.00000000 0.00000000 0.00000000 0.00000000## revival 0.00000000 0.00000000 0.00000000 0.00000000## revive 0.00000000 0.00000000 0.00000000 0.00000000## revolutionary 0.01863933 0.00000000 0.00000000 0.00000000## richness 0.00000000 0.00000000 0.00000000 0.00000000## riddled 0.00000000 0.00000000 0.00000000 0.00000000## ride 0.00000000 0.00000000 0.00000000 0.01514693## ridge 0.00000000 0.00000000 0.00000000 0.00000000## rigorous 0.01863933 0.00000000 0.01690617 0.00000000## ripped 0.00000000 0.00000000 0.00000000 0.00000000## risked 0.00000000 0.00000000 0.00000000 0.00000000## risking 0.00000000 0.00000000 0.00000000 0.00000000## ritterby 0.00000000 0.00000000 0.00000000 0.00000000## rival 0.00000000 0.00000000 0.00000000 0.00000000## roadside 0.01863933 0.00000000 0.00000000 0.00000000## robotics 0.00000000 0.00000000 0.00000000 0.00000000## robust 0.00000000 0.00000000 0.00000000 0.00000000## rolled 0.00000000 0.00000000 0.00000000 0.01514693## rolling 0.00000000 0.00000000 0.00000000 0.00000000## romney^s 0.00000000 0.00000000 0.00000000 0.00000000## roofing 0.00000000 0.00000000 0.00000000 0.00000000## rooted 0.00000000 0.00000000 0.00000000 0.03029385## rose 0.00000000 0.00000000 0.00000000 0.00000000## rouge 0.00000000 0.00000000 0.00000000 0.00000000## routes 0.00000000 0.02260909 0.00000000 0.00000000## routine 0.00000000 0.00000000 0.01690617 0.00000000## rubio 0.00000000 0.00000000 0.00000000 0.00000000## rudolph 0.00000000 0.00000000 0.00000000 0.00000000## rugged 0.00000000 0.02260909 0.01690617 0.00000000## ruins 0.00000000 0.00000000 0.00000000 0.00000000## rulers 0.00000000 0.00000000 0.00000000 0.00000000## ruling 0.00000000 0.00000000 0.00000000 0.00000000## rushed 0.00000000 0.00000000 0.00000000 0.00000000## sacrificed 0.00000000 0.00000000 0.00000000 0.00000000## sacrificing 0.00000000 0.00000000 0.00000000 0.00000000## sadly 0.00000000 0.00000000 0.00000000 0.00000000## safeguard 0.00000000 0.00000000 0.00000000 0.00000000## safeguards 0.00000000 0.00000000 0.00000000 0.00000000## safely 0.00000000 0.00000000 0.00000000 0.00000000## salaries 0.00000000 0.00000000 0.01690617 0.00000000## salary 0.00000000 0.04521818 0.00000000 0.00000000## salute 0.00000000 0.00000000 0.00000000 0.00000000## sanctuary 0.00000000 0.00000000 0.00000000 0.00000000## sanitizing 0.00000000 0.00000000 0.00000000 0.00000000## sanity 0.00000000 0.00000000 0.00000000 0.00000000## sarin 0.00000000 0.00000000 0.00000000 0.00000000## scale 0.00000000 0.00000000 0.00000000 0.00000000## scattered 0.00000000 0.00000000 0.00000000 0.00000000## scavenger 0.00000000 0.00000000 0.00000000 0.00000000## scenes 0.00000000 0.00000000 0.00000000 0.00000000## schip 0.00000000 0.00000000 0.01690617 0.00000000## scholarships 0.00000000 0.00000000 0.00000000 0.00000000## scope 0.00000000 0.00000000 0.00000000 0.00000000## screeners 0.00000000 0.00000000 0.00000000 0.00000000## sebelius 0.00000000 0.00000000 0.03381234 0.00000000## seconds 0.00000000 0.00000000 0.00000000 0.00000000## secretly 0.00000000 0.00000000 0.00000000 0.00000000## secrets 0.00000000 0.00000000 0.00000000 0.00000000## sectors 0.01863933 0.00000000 0.00000000 0.00000000## secured 0.00000000 0.00000000 0.00000000 0.01514693## seized 0.00000000 0.00000000 0.00000000 0.00000000## seldom 0.00000000 0.00000000 0.00000000 0.00000000## self-appointed 0.00000000 0.00000000 0.00000000 0.00000000## self-reliant 0.00000000 0.02260909 0.00000000 0.00000000## selma 0.01863933 0.00000000 0.00000000 0.00000000## sensible 0.00000000 0.00000000 0.00000000 0.00000000## sensors 0.00000000 0.00000000 0.00000000 0.00000000## sentence 0.00000000 0.00000000 0.00000000 0.00000000## seoul 0.00000000 0.00000000 0.00000000 0.00000000## separate 0.00000000 0.00000000 0.00000000 0.01514693## settle 0.00000000 0.00000000 0.00000000 0.00000000## sexually 0.00000000 0.00000000 0.00000000 0.00000000## shadowy 0.00000000 0.00000000 0.00000000 0.00000000## shaking 0.00000000 0.00000000 0.00000000 0.01514693## shalala 0.00000000 0.00000000 0.00000000 0.00000000## shale 0.00000000 0.00000000 0.00000000 0.00000000## shareholder 0.00000000 0.00000000 0.00000000 0.00000000## sharing 0.00000000 0.00000000 0.00000000 0.00000000## sharon 0.00000000 0.00000000 0.00000000 0.00000000## sharp 0.00000000 0.00000000 0.00000000 0.00000000## sheer 0.00000000 0.00000000 0.01690617 0.00000000## sheik 0.00000000 0.00000000 0.00000000 0.00000000## sheoma 0.00000000 0.00000000 0.00000000 0.00000000## shifting 0.00000000 0.00000000 0.00000000 0.00000000## shipment 0.00000000 0.00000000 0.00000000 0.00000000## ships 0.00000000 0.00000000 0.00000000 0.00000000## shock 0.00000000 0.00000000 0.00000000 0.00000000## shortchanging 0.01863933 0.02260909 0.00000000 0.00000000## shortcuts 0.00000000 0.00000000 0.00000000 0.00000000## shortfall 0.00000000 0.00000000 0.00000000 0.00000000## showroom 0.00000000 0.00000000 0.00000000 0.00000000## shrapnel 0.00000000 0.00000000 0.00000000 0.00000000## shrink 0.00000000 0.00000000 0.00000000 0.01514693## shuttered 0.00000000 0.00000000 0.00000000 0.00000000## sidelines 0.00000000 0.00000000 0.00000000 0.00000000## signal 0.01863933 0.00000000 0.00000000 0.00000000## significantly 0.00000000 0.00000000 0.00000000 0.00000000## simpson 0.00000000 0.00000000 0.00000000 0.00000000## singapore 0.00000000 0.00000000 0.00000000 0.00000000## sites 0.00000000 0.00000000 0.00000000 0.00000000## slash 0.00000000 0.00000000 0.00000000 0.00000000## sleepless 0.00000000 0.00000000 0.00000000 0.00000000## slip 0.00000000 0.00000000 0.00000000 0.00000000## slipping 0.00000000 0.00000000 0.00000000 0.01514693## smallpox 0.00000000 0.00000000 0.00000000 0.00000000## sobered 0.00000000 0.00000000 0.00000000 0.00000000## societies 0.00000000 0.00000000 0.00000000 0.00000000## soldier 0.00000000 0.00000000 0.00000000 0.03029385## solemn 0.00000000 0.00000000 0.00000000 0.00000000## solid 0.00000000 0.00000000 0.00000000 0.00000000## solving 0.00000000 0.00000000 0.00000000 0.01514693## someday 0.00000000 0.00000000 0.00000000 0.01514693## someplace 0.00000000 0.00000000 0.00000000 0.00000000## soranno 0.00000000 0.00000000 0.00000000 0.00000000## sort 0.00000000 0.00000000 0.01690617 0.00000000## soul 0.00000000 0.00000000 0.00000000 0.00000000## southern 0.00000000 0.00000000 0.00000000 0.00000000## sovereign 0.00000000 0.00000000 0.00000000 0.00000000## sovereignty 0.01863933 0.00000000 0.00000000 0.00000000## soviets 0.00000000 0.00000000 0.00000000 0.00000000## speaks 0.00000000 0.02260909 0.00000000 0.00000000## spiegel 0.00000000 0.00000000 0.00000000 0.00000000## sponsor 0.00000000 0.00000000 0.00000000 0.00000000## squads 0.00000000 0.00000000 0.00000000 0.00000000## stabilize 0.00000000 0.02260909 0.00000000 0.00000000## stabilized 0.00000000 0.00000000 0.00000000 0.00000000## staffs 0.00000000 0.00000000 0.00000000 0.00000000## stage 0.00000000 0.00000000 0.00000000 0.01514693## staggering 0.01863933 0.00000000 0.00000000 0.00000000## stagnation 0.00000000 0.00000000 0.00000000 0.00000000## stairs 0.00000000 0.00000000 0.00000000 0.00000000## stalled 0.00000000 0.02260909 0.00000000 0.00000000## stamped 0.00000000 0.02260909 0.00000000 0.00000000## stark 0.00000000 0.00000000 0.00000000 0.00000000## starts 0.00000000 0.00000000 0.00000000 0.00000000## startup 0.00000000 0.02260909 0.00000000 0.00000000## startups 0.00000000 0.00000000 0.00000000 0.01514693## starvation 0.00000000 0.00000000 0.00000000 0.00000000## statements 0.00000000 0.00000000 0.00000000 0.00000000## station 0.00000000 0.00000000 0.00000000 0.00000000## statistics 0.00000000 0.00000000 0.00000000 0.00000000## statute 0.01863933 0.00000000 0.00000000 0.00000000## stayed 0.00000000 0.00000000 0.00000000 0.00000000## staying 0.00000000 0.00000000 0.00000000 0.00000000## steadfast 0.00000000 0.00000000 0.00000000 0.00000000## steel 0.00000000 0.00000000 0.00000000 0.00000000## steroids 0.00000000 0.00000000 0.00000000 0.00000000## steve 0.00000000 0.00000000 0.00000000 0.00000000## stimulate 0.00000000 0.00000000 0.00000000 0.00000000## stockpiles 0.00000000 0.00000000 0.00000000 0.00000000## strained 0.00000000 0.00000000 0.00000000 0.00000000## street^s 0.00000000 0.00000000 0.01690617 0.00000000## strengthens 0.00000000 0.00000000 0.00000000 0.01514693## stretch 0.00000000 0.00000000 0.00000000 0.01514693## stretches 0.00000000 0.00000000 0.00000000 0.00000000## structure 0.00000000 0.00000000 0.00000000 0.00000000## struggled 0.00000000 0.00000000 0.00000000 0.00000000## stubborn 0.00000000 0.00000000 0.00000000 0.00000000## stuck 0.00000000 0.00000000 0.00000000 0.01514693## submitted 0.00000000 0.00000000 0.00000000 0.00000000## subsidized 0.00000000 0.00000000 0.00000000 0.00000000## substantial 0.00000000 0.00000000 0.00000000 0.00000000## substantially 0.00000000 0.00000000 0.00000000 0.00000000## suddenly 0.00000000 0.00000000 0.00000000 0.00000000## sued 0.00000000 0.00000000 0.00000000 0.00000000## suffer 0.00000000 0.00000000 0.01690617 0.00000000## suitable 0.00000000 0.00000000 0.00000000 0.00000000## summon 0.00000000 0.00000000 0.00000000 0.00000000## sunlight 0.00000000 0.00000000 0.00000000 0.00000000## superb 0.03727866 0.00000000 0.00000000 0.00000000## surgery 0.00000000 0.00000000 0.00000000 0.00000000## surprise 0.00000000 0.00000000 0.00000000 0.01514693## surrender 0.01863933 0.00000000 0.00000000 0.00000000## suspicion 0.00000000 0.00000000 0.00000000 0.01514693## swift 0.00000000 0.00000000 0.00000000 0.00000000## switch 0.03727866 0.00000000 0.00000000 0.00000000## sympathy 0.00000000 0.00000000 0.00000000 0.00000000## system^s 0.00000000 0.00000000 0.00000000 0.01514693## systematically 0.00000000 0.00000000 0.00000000 0.00000000## tables 0.00000000 0.00000000 0.00000000 0.00000000## taleb 0.00000000 0.00000000 0.00000000 0.00000000## talents 0.00000000 0.00000000 0.00000000 0.00000000## tallest 0.00000000 0.00000000 0.00000000 0.00000000## targets 0.01863933 0.00000000 0.00000000 0.01514693## tasks 0.00000000 0.00000000 0.00000000 0.00000000## taught 0.00000000 0.00000000 0.00000000 0.01514693## teachings 0.00000000 0.00000000 0.00000000 0.00000000## tear 0.00000000 0.00000000 0.00000000 0.00000000## technical 0.00000000 0.00000000 0.00000000 0.00000000## teddy 0.00000000 0.00000000 0.01690617 0.00000000## teenager 0.00000000 0.00000000 0.00000000 0.00000000## television 0.00000000 0.00000000 0.00000000 0.00000000## tennessee 0.00000000 0.00000000 0.00000000 0.00000000## testified 0.00000000 0.00000000 0.01690617 0.00000000## theirs 0.00000000 0.00000000 0.00000000 0.00000000## thereby 0.00000000 0.00000000 0.00000000 0.00000000## therefore 0.00000000 0.02260909 0.00000000 0.00000000## they^ll 0.00000000 0.00000000 0.00000000 0.00000000## thompson 0.00000000 0.00000000 0.00000000 0.00000000## thread 0.00000000 0.02260909 0.00000000 0.00000000## threatening 0.00000000 0.00000000 0.00000000 0.01514693## thrive 0.00000000 0.00000000 0.01690617 0.00000000## thugs 0.00000000 0.00000000 0.00000000 0.00000000## tighter 0.00000000 0.00000000 0.00000000 0.00000000## tim 0.00000000 0.00000000 0.00000000 0.00000000## toil 0.00000000 0.00000000 0.00000000 0.00000000## tolerance 0.00000000 0.00000000 0.00000000 0.01514693## tomorrow^s 0.00000000 0.00000000 0.00000000 0.00000000## tongues 0.00000000 0.00000000 0.00000000 0.00000000## tons 0.00000000 0.00000000 0.00000000 0.00000000## torturing 0.00000000 0.00000000 0.00000000 0.00000000## touch 0.00000000 0.00000000 0.00000000 0.00000000## touched 0.00000000 0.00000000 0.00000000 0.00000000## touching 0.00000000 0.00000000 0.00000000 0.00000000## towers 0.00000000 0.00000000 0.00000000 0.00000000## toxic 0.00000000 0.00000000 0.00000000 0.00000000## tracking 0.00000000 0.00000000 0.00000000 0.00000000## tracks 0.00000000 0.00000000 0.00000000 0.00000000## traditional 0.00000000 0.00000000 0.00000000 0.01514693## traditions 0.01863933 0.00000000 0.00000000 0.00000000## traffickers 0.00000000 0.00000000 0.00000000 0.00000000## trajectory 0.00000000 0.00000000 0.00000000 0.00000000## transcontinental 0.00000000 0.02260909 0.00000000 0.00000000## transfer 0.00000000 0.00000000 0.00000000 0.00000000## transformed 0.00000000 0.00000000 0.00000000 0.00000000## transmitted 0.00000000 0.00000000 0.00000000 0.00000000## transparent 0.00000000 0.00000000 0.00000000 0.00000000## treasured 0.00000000 0.00000000 0.00000000 0.00000000## treaties 0.00000000 0.00000000 0.00000000 0.00000000## trillion-dollar 0.00000000 0.00000000 0.01690617 0.00000000## triple 0.00000000 0.00000000 0.00000000 0.00000000## triumph 0.00000000 0.00000000 0.00000000 0.00000000## trivial 0.00000000 0.00000000 0.00000000 0.00000000## troop 0.01863933 0.00000000 0.00000000 0.00000000## truman 0.01863933 0.00000000 0.00000000 0.00000000## trusted 0.00000000 0.00000000 0.00000000 0.00000000## tubes 0.00000000 0.00000000 0.00000000 0.00000000## tuesday 0.00000000 0.00000000 0.00000000 0.00000000## turbine 0.00000000 0.00000000 0.00000000 0.00000000## tutoring 0.00000000 0.00000000 0.00000000 0.00000000## twelve 0.00000000 0.00000000 0.00000000 0.00000000## twenty 0.00000000 0.00000000 0.00000000 0.00000000## two-thirds 0.00000000 0.00000000 0.00000000 0.00000000## ty 0.00000000 0.00000000 0.00000000 0.00000000## typhoon 0.00000000 0.00000000 0.00000000 0.00000000## u- 0.00000000 0.00000000 0.00000000 0.00000000## unable 0.00000000 0.00000000 0.00000000 0.00000000## unanswered 0.00000000 0.00000000 0.00000000 0.01514693## unarmed 0.00000000 0.00000000 0.00000000 0.03029385## uncertainties 0.00000000 0.00000000 0.00000000 0.00000000## unconditional 0.00000000 0.00000000 0.00000000 0.03029385## underway 0.00000000 0.00000000 0.00000000 0.00000000## undo 0.00000000 0.00000000 0.00000000 0.00000000## undocumented 0.00000000 0.00000000 0.00000000 0.00000000## unethical 0.01863933 0.00000000 0.00000000 0.00000000## uninterrupted 0.01863933 0.00000000 0.00000000 0.00000000## unite 0.00000000 0.00000000 0.00000000 0.00000000## unleash 0.00000000 0.00000000 0.00000000 0.00000000## unleashed 0.00000000 0.00000000 0.00000000 0.00000000## unraveling 0.00000000 0.00000000 0.00000000 0.01514693## unstable 0.01863933 0.00000000 0.00000000 0.00000000## unsustainable 0.00000000 0.00000000 0.01690617 0.00000000## untouched 0.00000000 0.00000000 0.00000000 0.00000000## unused 0.00000000 0.00000000 0.00000000 0.00000000## unwavering 0.00000000 0.00000000 0.00000000 0.00000000## unyielding 0.00000000 0.00000000 0.01690617 0.00000000## upwards 0.00000000 0.00000000 0.00000000 0.00000000## utter 0.00000000 0.00000000 0.00000000 0.00000000## vacant 0.00000000 0.00000000 0.00000000 0.00000000## vatican 0.00000000 0.00000000 0.00000000 0.01514693## vets 0.00000000 0.00000000 0.00000000 0.00000000## vibrant 0.00000000 0.00000000 0.03381234 0.00000000## victor 0.00000000 0.00000000 0.00000000 0.00000000## victoria 0.00000000 0.00000000 0.03381234 0.00000000## victories 0.01863933 0.00000000 0.00000000 0.00000000## video 0.00000000 0.00000000 0.00000000 0.00000000## videos 0.00000000 0.00000000 0.00000000 0.00000000## views 0.00000000 0.00000000 0.00000000 0.00000000## vigilant 0.00000000 0.00000000 0.00000000 0.00000000## vigorous 0.01863933 0.00000000 0.00000000 0.00000000## violate 0.00000000 0.00000000 0.00000000 0.00000000## violating 0.00000000 0.00000000 0.00000000 0.00000000## violations 0.00000000 0.00000000 0.00000000 0.00000000## virginia 0.00000000 0.00000000 0.00000000 0.00000000## virus 0.00000000 0.00000000 0.00000000 0.00000000## viruses 0.00000000 0.00000000 0.00000000 0.00000000## visited 0.00000000 0.00000000 0.00000000 0.00000000## visitor 0.00000000 0.00000000 0.00000000 0.00000000## vladimir 0.00000000 0.00000000 0.00000000 0.00000000## vladimirovich 0.00000000 0.00000000 0.00000000 0.00000000## voluntarily 0.00000000 0.00000000 0.00000000 0.00000000## vx 0.00000000 0.00000000 0.00000000 0.00000000## waitress 0.00000000 0.00000000 0.00000000 0.00000000## walking 0.00000000 0.00000000 0.00000000 0.03029385## warned 0.00000000 0.00000000 0.00000000 0.00000000## wasted 0.00000000 0.00000000 0.00000000 0.00000000## wastes 0.00000000 0.00000000 0.00000000 0.00000000## watchdog 0.00000000 0.00000000 0.00000000 0.00000000## waves 0.00000000 0.00000000 0.00000000 0.00000000## weakening 0.00000000 0.00000000 0.00000000 0.00000000## weaker 0.00000000 0.00000000 0.00000000 0.01514693## weakest 0.00000000 0.00000000 0.00000000 0.00000000## weather 0.00000000 0.00000000 0.00000000 0.00000000## weighed 0.00000000 0.00000000 0.00000000 0.00000000## welcomed 0.00000000 0.00000000 0.00000000 0.00000000## wendell 0.00000000 0.00000000 0.03381234 0.00000000## whim 0.00000000 0.00000000 0.00000000 0.00000000## whirlwind 0.00000000 0.00000000 0.00000000 0.00000000## wide 0.01863933 0.02260909 0.00000000 0.00000000## wildfires 0.00000000 0.00000000 0.00000000 0.00000000## wildlife 0.00000000 0.00000000 0.00000000 0.00000000## window 0.00000000 0.00000000 0.00000000 0.00000000## windows 0.00000000 0.02260909 0.00000000 0.00000000## winner 0.00000000 0.00000000 0.00000000 0.00000000## wiped 0.00000000 0.00000000 0.01690617 0.00000000## wireless 0.00000000 0.00000000 0.00000000 0.01514693## wisconsin 0.00000000 0.00000000 0.00000000 0.00000000## wish 0.00000000 0.00000000 0.00000000 0.00000000## witness 0.00000000 0.00000000 0.00000000 0.00000000## witnesses 0.00000000 0.00000000 0.00000000 0.00000000## wondering 0.00000000 0.00000000 0.00000000 0.00000000## wood 0.01863933 0.00000000 0.00000000 0.00000000## workplace 0.00000000 0.00000000 0.00000000 0.00000000## worksite 0.00000000 0.00000000 0.00000000 0.00000000## worried 0.00000000 0.00000000 0.00000000 0.00000000## worsened 0.00000000 0.00000000 0.00000000 0.00000000## wounds 0.00000000 0.00000000 0.00000000 0.00000000## wright 0.00000000 0.00000000 0.00000000 0.01514693## yesterday 0.00000000 0.00000000 0.00000000 0.00000000## yogi 0.00000000 0.00000000 0.00000000 0.00000000## youngstown 0.00000000 0.00000000 0.00000000 0.00000000## yourselves 0.00000000 0.02260909 0.00000000 0.00000000## zimbabwe 0.01863933 0.00000000 0.00000000 0.00000000## -foot 0.00000000 0.00000000 0.00000000 0.00000000## -h 0.00000000 0.00000000 0.00000000 0.00000000## -something 0.00000000 0.00000000 0.00000000 0.00000000## -year-olds 0.00000000 0.00000000 0.00000000 0.00000000## abandoned 0.00000000 0.00000000 0.00000000 0.00000000## abetting 0.00000000 0.00000000 0.00000000 0.00000000## abolition 0.00000000 0.00000000 0.00000000 0.00000000## abruptly 0.00000000 0.02260909 0.00000000 0.00000000## absence 0.00000000 0.00000000 0.00000000 0.00000000## academy 0.00000000 0.02260909 0.00000000 0.00000000## accelerating 0.00000000 0.00000000 0.00000000 0.00000000## acceptable 0.00000000 0.00000000 0.00000000 0.00000000## acceptance 0.00000000 0.00000000 0.00000000 0.00000000## accepts 0.00000000 0.00000000 0.00000000 0.00000000## accessible 0.00000000 0.00000000 0.00000000 0.00000000## accessing 0.00000000 0.00000000 0.00000000 0.00000000## accompanied 0.00000000 0.00000000 0.00000000 0.00000000## accomplishment 0.00000000 0.00000000 0.00000000 0.00000000## accomplishments 0.00000000 0.00000000 0.00000000 0.00000000## accumulated 0.00000000 0.00000000 0.00000000 0.00000000## accumulates 0.00000000 0.00000000 0.00000000 0.00000000## aching 0.00000000 0.00000000 0.00000000 0.00000000## acknowledgment 0.00000000 0.00000000 0.01690617 0.00000000## acne 0.00000000 0.00000000 0.01690617 0.00000000## acquire 0.00000000 0.00000000 0.00000000 0.00000000## acrimony 0.00000000 0.00000000 0.01690617 0.00000000## across-the-board 0.00000000 0.00000000 0.00000000 0.00000000## activity 0.00000000 0.00000000 0.00000000 0.00000000## actual 0.00000000 0.00000000 0.00000000 0.00000000## adapting 0.00000000 0.00000000 0.00000000 0.00000000## addressed 0.01863933 0.00000000 0.00000000 0.00000000## adjustment 0.00000000 0.00000000 0.00000000 0.00000000## administer 0.00000000 0.00000000 0.01690617 0.00000000## administration^s 0.00000000 0.00000000 0.00000000 0.00000000## administrator 0.00000000 0.00000000 0.00000000 0.00000000## admirals 0.00000000 0.00000000 0.00000000 0.00000000## admire 0.00000000 0.00000000 0.00000000 0.00000000## admitted 0.00000000 0.00000000 0.00000000 0.00000000## adnan 0.00000000 0.00000000 0.00000000 0.00000000## adopt 0.00000000 0.00000000 0.00000000 0.00000000## adopting 0.00000000 0.00000000 0.00000000 0.00000000## adopts 0.00000000 0.00000000 0.00000000 0.00000000## ads 0.00000000 0.00000000 0.00000000 0.00000000## adulthood 0.00000000 0.00000000 0.00000000 0.00000000## advanced-placement 0.01863933 0.00000000 0.00000000 0.00000000## advancing 0.00000000 0.00000000 0.00000000 0.00000000## advisers 0.00000000 0.00000000 0.00000000 0.00000000## advocated 0.00000000 0.00000000 0.00000000 0.00000000## advocating 0.00000000 0.02260909 0.00000000 0.00000000## aeronautics 0.00000000 0.00000000 0.00000000 0.01514693## affecting 0.00000000 0.00000000 0.00000000 0.00000000## affects 0.00000000 0.00000000 0.00000000 0.00000000## affiliated 0.00000000 0.00000000 0.00000000 0.00000000## affluent 0.00000000 0.02260909 0.00000000 0.00000000## affront 0.00000000 0.00000000 0.01690617 0.00000000## afghanistan^s 0.00000000 0.00000000 0.00000000 0.00000000## afterward 0.00000000 0.00000000 0.00000000 0.00000000## afterwards 0.00000000 0.00000000 0.00000000 0.01514693## agribusiness 0.00000000 0.00000000 0.00000000 0.00000000## aided 0.00000000 0.00000000 0.00000000 0.00000000## aiding 0.00000000 0.00000000 0.00000000 0.00000000## aids-free 0.00000000 0.00000000 0.00000000 0.00000000## aimed 0.00000000 0.00000000 0.00000000 0.00000000## ain^t 0.00000000 0.00000000 0.00000000 0.01514693## airlines 0.00000000 0.00000000 0.00000000 0.00000000## airmen 0.00000000 0.00000000 0.00000000 0.00000000## airplanes 0.00000000 0.00000000 0.00000000 0.00000000## al-asad 0.00000000 0.00000000 0.00000000 0.00000000## alarming 0.00000000 0.00000000 0.00000000 0.00000000## alert 0.00000000 0.00000000 0.00000000 0.00000000## alesandro 0.00000000 0.00000000 0.00000000 0.00000000## alienating 0.00000000 0.00000000 0.00000000 0.00000000## aligned 0.00000000 0.00000000 0.00000000 0.00000000## alito 0.01863933 0.00000000 0.00000000 0.00000000## all-in 0.00000000 0.00000000 0.00000000 0.00000000## all-out 0.00000000 0.00000000 0.00000000 0.00000000## all-powerful 0.00000000 0.00000000 0.00000000 0.00000000## allegiance 0.00000000 0.00000000 0.00000000 0.00000000## allentown 0.00000000 0.00000000 0.00000000 0.00000000## allowance 0.00000000 0.00000000 0.00000000 0.00000000## although 0.00000000 0.00000000 0.00000000 0.01514693## altogether 0.00000000 0.00000000 0.00000000 0.00000000## alzheimer^s 0.00000000 0.00000000 0.00000000 0.00000000## american-made 0.00000000 0.00000000 0.00000000 0.00000000## ammunition 0.00000000 0.00000000 0.00000000 0.00000000## amounts 0.00000000 0.00000000 0.00000000 0.00000000## analysts 0.00000000 0.00000000 0.00000000 0.00000000## anchor 0.00000000 0.00000000 0.00000000 0.00000000## andrews 0.00000000 0.00000000 0.00000000 0.00000000## angeles 0.00000000 0.00000000 0.00000000 0.00000000## anguish 0.00000000 0.00000000 0.00000000 0.00000000## animosity 0.00000000 0.00000000 0.00000000 0.00000000## annapolis 0.00000000 0.00000000 0.00000000 0.00000000## anniversaries 0.00000000 0.00000000 0.00000000 0.00000000## announcement 0.00000000 0.00000000 0.00000000 0.00000000## answered 0.00000000 0.00000000 0.00000000 0.00000000## anthem 0.00000000 0.00000000 0.00000000 0.00000000## anti-semitism 0.00000000 0.00000000 0.00000000 0.00000000## antifraud 0.00000000 0.00000000 0.00000000 0.00000000## antipoverty 0.00000000 0.00000000 0.00000000 0.00000000## antsy 0.00000000 0.00000000 0.00000000 0.01514693## anymore 0.00000000 0.00000000 0.00000000 0.00000000## anyone^s 0.00000000 0.00000000 0.00000000 0.00000000## anytime 0.00000000 0.00000000 0.00000000 0.01514693## anyway 0.00000000 0.00000000 0.00000000 0.00000000## apartments 0.00000000 0.00000000 0.00000000 0.01514693## apathy 0.00000000 0.00000000 0.00000000 0.00000000## apollo 0.00000000 0.00000000 0.00000000 0.00000000## applaud 0.00000000 0.00000000 0.00000000 0.00000000## applauded 0.00000000 0.00000000 0.00000000 0.00000000## applications 0.00000000 0.00000000 0.00000000 0.00000000## apprenticeship 0.00000000 0.00000000 0.00000000 0.00000000## approaches 0.00000000 0.00000000 0.01690617 0.00000000## approval 0.00000000 0.02260909 0.00000000 0.00000000## april^s 0.00000000 0.00000000 0.00000000 0.00000000## arab-israeli 0.00000000 0.00000000 0.00000000 0.00000000## archaic 0.00000000 0.00000000 0.00000000 0.00000000## arguing 0.00000000 0.00000000 0.00000000 0.00000000## ariel 0.00000000 0.00000000 0.00000000 0.00000000## arlene 0.00000000 0.00000000 0.00000000 0.00000000## armored 0.00000000 0.00000000 0.00000000 0.00000000## arrivals 0.00000000 0.00000000 0.00000000 0.00000000## arrive 0.00000000 0.00000000 0.00000000 0.00000000## arrives 0.00000000 0.00000000 0.00000000 0.00000000## art 0.00000000 0.00000000 0.00000000 0.00000000## articles 0.00000000 0.00000000 0.00000000 0.00000000## artificial 0.00000000 0.00000000 0.00000000 0.00000000## artist 0.00000000 0.00000000 0.00000000 0.00000000## asbestos 0.00000000 0.00000000 0.00000000 0.00000000## ashcroft 0.00000000 0.00000000 0.00000000 0.00000000## aspect 0.00000000 0.00000000 0.00000000 0.00000000## aspects 0.00000000 0.00000000 0.01690617 0.00000000## aspires 0.00000000 0.00000000 0.00000000 0.00000000## assassin^s 0.00000000 0.00000000 0.00000000 0.00000000## assassinated 0.00000000 0.00000000 0.00000000 0.00000000## assault 0.00000000 0.00000000 0.00000000 0.00000000## assaulted 0.01863933 0.00000000 0.00000000 0.00000000## asserting 0.00000000 0.00000000 0.00000000 0.00000000## asset 0.00000000 0.00000000 0.00000000 0.00000000## assimilates 0.00000000 0.00000000 0.00000000 0.00000000## assisted 0.00000000 0.00000000 0.00000000 0.00000000## associate^s 0.00000000 0.00000000 0.00000000 0.00000000## assuming 0.00000000 0.00000000 0.00000000 0.00000000## assumptions 0.00000000 0.00000000 0.00000000 0.00000000## assuring 0.00000000 0.00000000 0.00000000 0.00000000## astronauts 0.00000000 0.00000000 0.00000000 0.00000000## at-risk 0.00000000 0.00000000 0.00000000 0.00000000## athification 0.00000000 0.00000000 0.00000000 0.00000000## athist 0.00000000 0.00000000 0.00000000 0.00000000## athletics 0.00000000 0.00000000 0.00000000 0.00000000## attached 0.00000000 0.00000000 0.00000000 0.00000000## attackers 0.01863933 0.00000000 0.00000000 0.00000000## attempts 0.00000000 0.00000000 0.00000000 0.00000000## attitudes 0.00000000 0.00000000 0.00000000 0.01514693## attorneys 0.00000000 0.00000000 0.00000000 0.00000000## aurora 0.00000000 0.00000000 0.00000000 0.00000000## austin 0.00000000 0.00000000 0.00000000 0.01514693## authorized 0.01863933 0.00000000 0.00000000 0.00000000## authorizing 0.00000000 0.00000000 0.01690617 0.00000000## authors 0.00000000 0.00000000 0.00000000 0.00000000## automated 0.00000000 0.00000000 0.00000000 0.01514693## automatic 0.00000000 0.00000000 0.00000000 0.00000000## automatically 0.00000000 0.00000000 0.00000000 0.00000000## autoworker 0.00000000 0.00000000 0.00000000 0.00000000## avenue 0.00000000 0.00000000 0.00000000 0.00000000## avenues 0.00000000 0.00000000 0.00000000 0.00000000## aviation 0.00000000 0.00000000 0.00000000 0.00000000## avoidance 0.00000000 0.00000000 0.00000000 0.00000000## avoided 0.00000000 0.00000000 0.00000000 0.01514693## avoids 0.00000000 0.00000000 0.00000000 0.01514693## awakened 0.00000000 0.00000000 0.00000000 0.00000000## awakening 0.00000000 0.00000000 0.00000000 0.00000000## awarded 0.00000000 0.00000000 0.00000000 0.00000000## awed 0.00000000 0.00000000 0.00000000 0.00000000## awful 0.00000000 0.00000000 0.00000000 0.00000000## awoke 0.00000000 0.00000000 0.00000000 0.00000000## ayad 0.00000000 0.00000000 0.00000000 0.00000000## az 0.00000000 0.00000000 0.00000000 0.00000000## backing 0.00000000 0.00000000 0.00000000 0.00000000## backsliding 0.00000000 0.00000000 0.00000000 0.00000000## backwards 0.00000000 0.00000000 0.00000000 0.00000000## bacteria 0.00000000 0.00000000 0.00000000 0.00000000## bag 0.00000000 0.00000000 0.00000000 0.00000000## bahrain 0.00000000 0.00000000 0.00000000 0.00000000## bailing 0.00000000 0.00000000 0.00000000 0.00000000## bailout 0.00000000 0.00000000 0.00000000 0.00000000## balances 0.00000000 0.00000000 0.00000000 0.00000000## bali 0.00000000 0.00000000 0.00000000 0.00000000## baltimore 0.00000000 0.00000000 0.00000000 0.00000000## band 0.00000000 0.00000000 0.00000000 0.00000000## bang 0.00000000 0.00000000 0.00000000 0.00000000## banker 0.00000000 0.00000000 0.00000000 0.00000000## bankers 0.00000000 0.00000000 0.00000000 0.00000000## banking 0.00000000 0.00000000 0.00000000 0.00000000## bankroll 0.00000000 0.00000000 0.00000000 0.01514693## bankrolled 0.00000000 0.00000000 0.00000000 0.00000000## banner 0.00000000 0.00000000 0.00000000 0.00000000## bar 0.00000000 0.00000000 0.00000000 0.00000000## barkeep 0.00000000 0.00000000 0.00000000 0.00000000## barrels 0.00000000 0.00000000 0.00000000 0.00000000## basement 0.00000000 0.00000000 0.00000000 0.00000000## basest 0.00000000 0.00000000 0.00000000 0.00000000## bashing 0.00000000 0.00000000 0.00000000 0.00000000## basically 0.00000000 0.02260909 0.00000000 0.00000000## basketball 0.00000000 0.00000000 0.00000000 0.00000000## battalions 0.00000000 0.00000000 0.00000000 0.00000000## battling 0.00000000 0.00000000 0.00000000 0.01514693## beard 0.00000000 0.00000000 0.00000000 0.00000000## bears 0.00000000 0.00000000 0.00000000 0.00000000## beaten 0.00000000 0.00000000 0.00000000 0.00000000## beauty 0.00000000 0.00000000 0.00000000 0.00000000## beginnings 0.00000000 0.00000000 0.00000000 0.00000000## begrudge 0.00000000 0.00000000 0.00000000 0.00000000## behead 0.01863933 0.00000000 0.00000000 0.00000000## beings 0.00000000 0.00000000 0.00000000 0.00000000## belongs 0.00000000 0.00000000 0.00000000 0.00000000## belt 0.00000000 0.00000000 0.00000000 0.00000000## belts 0.00000000 0.00000000 0.00000000 0.00000000## benchmarks 0.00000000 0.00000000 0.00000000 0.00000000## beneficial 0.00000000 0.00000000 0.01690617 0.00000000## beneficiaries 0.00000000 0.02260909 0.00000000 0.00000000## benefitted 0.01863933 0.00000000 0.00000000 0.00000000## berlin^s 0.00000000 0.00000000 0.00000000 0.00000000## beside 0.00000000 0.00000000 0.00000000 0.00000000## beslan 0.01863933 0.00000000 0.00000000 0.00000000## betray 0.01863933 0.00000000 0.00000000 0.00000000## betraying 0.00000000 0.00000000 0.00000000 0.00000000## betrays 0.00000000 0.00000000 0.00000000 0.01514693## bias 0.00000000 0.00000000 0.00000000 0.00000000## bickering 0.00000000 0.00000000 0.01690617 0.00000000## biden^s 0.00000000 0.00000000 0.00000000 0.00000000## big-hearted 0.00000000 0.00000000 0.00000000 0.00000000## billion-dollar 0.00000000 0.00000000 0.00000000 0.00000000## obama_12022013 obama_20012015 obama_24012012 obama_24022009## the 4.14954262 3.83328687 3.90967742 4.22127400## and 4.17605727 3.94480067 3.40645161 3.94696739## to 3.14198595 3.45692779 3.00645161 3.15452606## of 2.45260506 2.28603290 2.37419355 2.74306614## a 1.98859870 2.18845832 2.19354839 2.13349589## in 1.49807769 1.54725397 1.41935484 1.64583968## we 1.73670953 2.17451910 1.08387097 1.78299299## our 1.97534138 1.57513242 1.08387097 1.78299299## that 1.65716558 1.74240312 1.85806452 2.28588845## is 0.74241018 0.71090047 0.76129032 1.17342274## for 0.82195413 0.87817117 0.81290323 1.26485827## will 0.72915286 0.48787287 0.73548387 1.29533679## this 0.59657961 0.87817117 0.67096774 1.14294422## i 0.43749171 0.87817117 0.64516129 1.11246571## have 0.54355031 0.65514357 0.41290323 0.57909174## are 0.51703566 0.71090047 0.42580645 0.56385248## on 0.67612356 0.52969055 0.67096774 0.54861323## it 0.58332229 0.69696125 0.61935484 0.83815910## with 0.64960891 0.64120435 0.63225806 0.36574215## not 0.26514649 0.29272372 0.34838710 0.62480951## more 0.54355031 0.57150822 0.55483871 0.45717769## their 0.41097706 0.33454140 0.40000000 0.42669918## you 0.22537452 0.39029830 0.49032258 0.42669918## by 0.46400636 0.20908837 0.25806452 0.30478513## be 0.30491847 0.11151380 0.36129032 0.47241695## as 0.37120509 0.62726512 0.50322581 0.38098141## but 0.50377834 0.41817675 0.41290323 0.60957025## america 0.31817579 0.48787287 0.38709677 0.27430661## from 0.42423439 0.37635907 0.60645161 0.36574215## they 0.39771974 0.29272372 0.41290323 0.28954587## can 0.35794777 0.33454140 0.33548387 0.45717769## people 0.23863184 0.30666295 0.27096774 0.32002438## who 0.21211719 0.33454140 0.50322581 0.38098141## all 0.34469044 0.26484527 0.20645161 0.22858884## or 0.26514649 0.30666295 0.46451613 0.47241695## has 0.17234522 0.26484527 0.29677419 0.28954587## so 0.35794777 0.37635907 0.37419355 0.30478513## us 0.25188917 0.40423752 0.15483871 0.28954587## new 0.34469044 0.57150822 0.34838710 0.32002438## now 0.51703566 0.23696682 0.34838710 0.39622066## american 0.25188917 0.26484527 0.43870968 0.41145992## at 0.19885987 0.45999442 0.33548387 0.18287108## do 0.37120509 0.33454140 0.32258065 0.25906736## americans 0.17234522 0.25090605 0.25806452 0.21334959## an 0.17234522 0.09757457 0.32258065 0.32002438## health 0.10605860 0.16727070 0.07741935 0.41145992## than 0.27840382 0.37635907 0.30967742 0.18287108## congress 0.25188917 0.22302760 0.25806452 0.21334959## every 0.19885987 0.33454140 0.29677419 0.30478513## years 0.29166114 0.34848062 0.23225806 0.22858884## country 0.17234522 0.26484527 0.23225806 0.18287108## economy 0.25188917 0.29272372 0.27096774 0.45717769## these 0.22537452 0.13939225 0.18064516 0.25906736## work 0.26514649 0.27878450 0.20645161 0.13715331## one 0.18560255 0.26484527 0.29677419 0.16763182## world 0.10605860 0.25090605 0.19354839 0.15239256## make 0.26514649 0.32060217 0.19354839 0.21334959## must 0.22537452 0.00000000 0.02580645 0.22858884## jobs 0.42423439 0.25090605 0.43870968 0.21334959## year 0.22537452 0.20908837 0.24516129 0.15239256## them 0.10605860 0.16727070 0.29677419 0.15239256## care 0.17234522 0.12545302 0.06451613 0.33526364## when 0.19885987 0.23696682 0.33548387 0.16763182## government 0.17234522 0.06969612 0.15483871 0.15239256## if 0.10605860 0.23696682 0.25806452 0.19811033## that^s 0.23863184 0.41817675 0.30967742 0.22858884## no 0.21211719 0.15333147 0.43870968 0.19811033## because 0.18560255 0.15333147 0.32258065 0.35050290## what 0.23863184 0.26484527 0.14193548 0.15239256## tax 0.19885987 0.05575690 0.36129032 0.19811033## help 0.15908790 0.11151380 0.18064516 0.12191405## security 0.27840382 0.13939225 0.09032258 0.07619628## energy 0.30491847 0.05575690 0.47741935 0.28954587## tonight 0.25188917 0.18120992 0.15483871 0.18287108## time 0.21211719 0.29272372 0.20645161 0.24382810## education 0.39771974 0.15333147 0.29677419 0.39622066## need 0.23863184 0.30666295 0.16774194 0.13715331## should 0.22537452 0.11151380 0.30967742 0.06095703## those 0.15908790 0.13939225 0.15483871 0.16763182## it^s 0.11931592 0.32060217 0.20645161 0.22858884## also 0.21211719 0.08363535 0.15483871 0.25906736## know 0.17234522 0.22302760 0.15483871 0.38098141## some 0.09280127 0.22302760 0.23225806 0.13715331## nation 0.09280127 0.11151380 0.11612903 0.16763182## up 0.10605860 0.30666295 0.14193548 0.13715331## my 0.15908790 0.23696682 0.23225806 0.12191405## right 0.21211719 0.19514915 0.34838710 0.12191405## just 0.21211719 0.11151380 0.10322581 0.13715331## get 0.29166114 0.15333147 0.32258065 0.10667479## many 0.07954395 0.16727070 0.07741935 0.07619628## like 0.22537452 0.27878450 0.24516129 0.07619628## efforts 0.34469044 0.16727070 0.34838710 0.10667479## about 0.09280127 0.09757457 0.20645161 0.19811033## over 0.10605860 0.16727070 0.23225806 0.07619628## there 0.13257325 0.08363535 0.10322581 0.19811033## he 0.10605860 0.08363535 0.09032258 0.07619628## reform 0.19885987 0.05575690 0.11612903 0.21334959## was 0.14583057 0.13939225 0.21935484 0.12191405## been 0.11931592 0.06969612 0.15483871 0.09143554## we^re 0.07954395 0.23696682 0.10322581 0.06095703## s 0.22537452 0.15333147 0.21935484 0.15239256## your 0.06628662 0.13939225 0.12903226 0.22858884## insurance 0.00000000 0.02787845 0.02580645 0.09143554## here 0.15908790 0.15333147 0.12903226 0.21334959## would 0.15908790 0.05575690 0.03870968 0.07619628## out 0.10605860 0.13939225 0.18064516 0.16763182## we^ve 0.05302930 0.18120992 0.24516129 0.18287108## national 0.19885987 0.13939225 0.19354839 0.18287108## states 0.18560255 0.12545302 0.12903226 0.06095703## last 0.14583057 0.09757457 0.19354839 0.07619628## u 0.19885987 0.15333147 0.20645161 0.13715331## future 0.10605860 0.12545302 0.09032258 0.15239256## want 0.14583057 0.29272372 0.15483871 0.04571777## own 0.10605860 0.08363535 0.10322581 0.03047851## united 0.13257325 0.09757457 0.07741935 0.07619628## only 0.09280127 0.11151380 0.12903226 0.10667479## businesses 0.11931592 0.13939225 0.19354839 0.10667479## his 0.03977197 0.09757457 0.10322581 0.04571777## why 0.15908790 0.22302760 0.14193548 0.19811033## most 0.18560255 0.01393922 0.14193548 0.09143554## iraq 0.00000000 0.08363535 0.05161290 0.07619628## other 0.06628662 0.12545302 0.11612903 0.07619628## where 0.17234522 0.25090605 0.09032258 0.15239256## good 0.11931592 0.11151380 0.03870968 0.04571777## way 0.13257325 0.05575690 0.09032258 0.12191405## how 0.13257325 0.18120992 0.12903226 0.16763182## its 0.05302930 0.12545302 0.10322581 0.07619628## job 0.19885987 0.16727070 0.15483871 0.10667479## plan 0.06628662 0.06969612 0.03870968 0.32002438## together 0.13257325 0.11151380 0.10322581 0.04571777## next 0.13257325 0.06969612 0.10322581 0.15239256## families 0.22537452 0.22302760 0.05161290 0.10667479## take 0.09280127 0.04181767 0.06451613 0.12191405## president 0.07954395 0.13939225 0.15483871 0.10667479## come 0.10605860 0.06969612 0.07741935 0.09143554## even 0.21211719 0.06969612 0.05161290 0.15239256## federal 0.13257325 0.00000000 0.14193548 0.16763182## children 0.09280127 0.04181767 0.02580645 0.15239256## act 0.11931592 0.08363535 0.02580645 0.07619628## business 0.13257325 0.04181767 0.27096774 0.10667479## back 0.11931592 0.18120992 0.20645161 0.12191405## budget 0.10605860 0.02787845 0.05161290 0.30478513## first 0.07954395 0.18120992 0.10322581 0.12191405## great 0.03977197 0.09757457 0.09032258 0.04571777## workers 0.02651465 0.15333147 0.15483871 0.06095703## better 0.07954395 0.16727070 0.07741935 0.00000000## keep 0.14583057 0.16727070 0.10322581 0.07619628## into 0.13257325 0.18120992 0.09032258 0.04571777## support 0.09280127 0.04181767 0.09032258 0.07619628## war 0.03977197 0.06969612 0.07741935 0.06095703## give 0.07954395 0.09757457 0.07741935 0.03047851## don^t 0.09280127 0.12545302 0.16774194 0.16763182## me 0.03977197 0.12545302 0.16774194 0.13715331## system 0.03977197 0.08363535 0.05161290 0.10667479## terrorists 0.03977197 0.06969612 0.00000000 0.06095703## medical 0.07954395 0.05575690 0.03870968 0.06095703## let^s 0.29166114 0.23696682 0.15483871 0.00000000## weapons 0.11931592 0.01393922 0.01290323 0.01523926## ask 0.09280127 0.01393922 0.02580645 0.07619628## citizens 0.07954395 0.01393922 0.06451613 0.03047851## home 0.15908790 0.15333147 0.16774194 0.07619628## still 0.03977197 0.20908837 0.03870968 0.09143554## could 0.02651465 0.11151380 0.06451613 0.06095703## forces 0.09280127 0.08363535 0.09032258 0.06095703## freedom 0.03977197 0.01393922 0.01290323 0.01523926## against 0.03977197 0.06969612 0.09032258 0.01523926## before 0.07954395 0.09757457 0.11612903 0.09143554## million 0.02651465 0.06969612 0.14193548 0.12191405## too 0.10605860 0.15333147 0.11612903 0.09143554## i^m 0.14583057 0.08363535 0.19354839 0.06095703## day 0.05302930 0.02787845 0.06451613 0.16763182## military 0.10605860 0.09757457 0.09032258 0.01523926## change 0.11931592 0.09757457 0.09032258 0.04571777## law 0.10605860 0.05575690 0.06451613 0.03047851## money 0.01325732 0.02787845 0.07741935 0.15239256## down 0.06628662 0.11151380 0.18064516 0.12191405## middle 0.14583057 0.12545302 0.06451613 0.07619628## nuclear 0.13257325 0.06969612 0.05161290 0.01523926## put 0.09280127 0.06969612 0.10322581 0.13715331## today 0.10605860 0.13939225 0.11612903 0.04571777## industry 0.11931592 0.08363535 0.37419355 0.09143554## made 0.09280127 0.12545302 0.09032258 0.09143554## power 0.10605860 0.11151380 0.10322581 0.10667479## america^s 0.05302930 0.04181767 0.03870968 0.01523926## state 0.09280127 0.11151380 0.12903226 0.04571777## let 0.01325732 0.08363535 0.07741935 0.06095703## women 0.07954395 0.02787845 0.06451613 0.04571777## working 0.07954395 0.09757457 0.09032258 0.06095703## al 0.06628662 0.00000000 0.03870968 0.03047851## companies 0.05302930 0.05575690 0.14193548 0.00000000## men 0.03977197 0.01393922 0.05161290 0.06095703## continue 0.06628662 0.06969612 0.01290323 0.03047851## same 0.06628662 0.06969612 0.11612903 0.04571777## any 0.03977197 0.06969612 0.07741935 0.07619628## free 0.06628662 0.11151380 0.03870968 0.03047851## had 0.01325732 0.08363535 0.07741935 0.03047851## life 0.01325732 0.04181767 0.01290323 0.04571777## medicare 0.07954395 0.01393922 0.01290323 0.06095703## house 0.07954395 0.04181767 0.05161290 0.06095703## pass 0.05302930 0.04181767 0.07741935 0.03047851## see 0.02651465 0.06969612 0.01290323 0.12191405## afghanistan 0.07954395 0.06969612 0.07741935 0.04571777## nations 0.01325732 0.06969612 0.01290323 0.04571777## believe 0.05302930 0.09757457 0.03870968 0.03047851## coverage 0.00000000 0.02787845 0.01290323 0.03047851## protect 0.10605860 0.12545302 0.02580645 0.04571777## sure 0.10605860 0.18120992 0.05161290 0.01523926## yet 0.01325732 0.04181767 0.02580645 0.06095703## deficit 0.15908790 0.00000000 0.10322581 0.15239256## go 0.05302930 0.08363535 0.11612903 0.01523926## never 0.03977197 0.01393922 0.07741935 0.07619628## through 0.05302930 0.06969612 0.09032258 0.09143554## were 0.06628662 0.11151380 0.10322581 0.07619628## without 0.02651465 0.04181767 0.05161290 0.06095703## best 0.07954395 0.08363535 0.03870968 0.03047851## can^t 0.13257325 0.06969612 0.18064516 0.06095703## end 0.02651465 0.04181767 0.09032258 0.12191405## meet 0.05302930 0.05575690 0.02580645 0.13715331## millions 0.06628662 0.06969612 0.10322581 0.03047851## schools 0.10605860 0.01393922 0.05161290 0.10667479## spending 0.06628662 0.00000000 0.05161290 0.04571777## economic 0.06628662 0.05575690 0.05161290 0.13715331## pay 0.03977197 0.11151380 0.14193548 0.06095703## lives 0.06628662 0.05575690 0.02580645 0.01523926## peace 0.01325732 0.01393922 0.00000000 0.04571777## small 0.01325732 0.06969612 0.07741935 0.03047851## social 0.05302930 0.01393922 0.01290323 0.04571777## after 0.11931592 0.04181767 0.03870968 0.04571777## already 0.10605860 0.02787845 0.06451613 0.09143554## cut 0.03977197 0.05575690 0.06451613 0.07619628## programs 0.07954395 0.02787845 0.05161290 0.09143554## taxes 0.01325732 0.04181767 0.10322581 0.01523926## which 0.02651465 0.05575690 0.03870968 0.04571777## school 0.10605860 0.05575690 0.06451613 0.12191405## while 0.05302930 0.09757457 0.07741935 0.06095703## done 0.14583057 0.12545302 0.06451613 0.04571777## percent 0.05302930 0.04181767 0.07741935 0.06095703## union 0.10605860 0.05575690 0.06451613 0.00000000## fight 0.02651465 0.01393922 0.05161290 0.00000000## i^ve 0.03977197 0.12545302 0.09032258 0.03047851## making 0.07954395 0.12545302 0.10322581 0.01523926## qaida 0.06628662 0.00000000 0.02580645 0.03047851## we^ll 0.15908790 0.04181767 0.03870968 0.06095703## hard 0.10605860 0.15333147 0.06451613 0.03047851## office 0.01325732 0.05575690 0.05161290 0.06095703## college 0.03977197 0.13939225 0.10322581 0.15239256## goal 0.03977197 0.00000000 0.03870968 0.09143554## members 0.01325732 0.04181767 0.03870968 0.03047851## two 0.06628662 0.06969612 0.07741935 0.00000000## chamber 0.05302930 0.04181767 0.03870968 0.09143554## child 0.05302930 0.05575690 0.01290323 0.04571777## lead 0.06628662 0.08363535 0.05161290 0.07619628## leaders 0.07954395 0.01393922 0.06451613 0.00000000## long 0.07954395 0.09757457 0.10322581 0.04571777## responsibility 0.03977197 0.00000000 0.09032258 0.18287108## across 0.06628662 0.04181767 0.02580645 0.06095703## international 0.03977197 0.09757457 0.07741935 0.04571777## may 0.01325732 0.05575690 0.05161290 0.06095703## opportunity 0.03977197 0.06969612 0.02580645 0.07619628## page 0.00000000 0.01393922 0.01290323 0.01523926## again 0.03977197 0.05575690 0.05161290 0.10667479## away 0.05302930 0.01393922 0.10322581 0.03047851## build 0.02651465 0.04181767 0.03870968 0.04571777## laughter 0.01325732 0.12545302 0.01290323 0.03047851## set 0.01325732 0.09757457 0.05161290 0.03047851## she 0.15908790 0.08363535 0.00000000 0.06095703## terror 0.00000000 0.01393922 0.00000000 0.00000000## use 0.02651465 0.12545302 0.09032258 0.04571777## another 0.05302930 0.06969612 0.05161290 0.09143554## bill 0.06628662 0.04181767 0.05161290 0.01523926## both 0.10605860 0.06969612 0.03870968 0.03047851## each 0.02651465 0.08363535 0.09032258 0.10667479## much 0.02651465 0.04181767 0.03870968 0.01523926## oil 0.07954395 0.05575690 0.21935484 0.03047851## program 0.03977197 0.06969612 0.03870968 0.06095703## research 0.06628662 0.05575690 0.06451613 0.03047851## terrorist 0.01325732 0.05575690 0.01290323 0.03047851## hope 0.01325732 0.04181767 0.01290323 0.04571777## past 0.01325732 0.15333147 0.02580645 0.00000000## strong 0.02651465 0.12545302 0.05161290 0.03047851## democracy 0.09280127 0.01393922 0.05161290 0.00000000## her 0.17234522 0.04181767 0.05161290 0.04571777## high 0.09280127 0.05575690 0.02580645 0.10667479## history 0.01325732 0.02787845 0.02580645 0.10667479## iraqi 0.00000000 0.00000000 0.00000000 0.00000000## technology 0.05302930 0.04181767 0.07741935 0.07619628## address 0.02651465 0.04181767 0.02580645 0.10667479## ago 0.10605860 0.06969612 0.06451613 0.00000000## needs 0.02651465 0.05575690 0.06451613 0.01523926## rights 0.15908790 0.05575690 0.03870968 0.00000000## young 0.07954395 0.11151380 0.03870968 0.04571777## community 0.02651465 0.11151380 0.09032258 0.04571777## costs 0.09280127 0.02787845 0.05161290 0.06095703## higher 0.13257325 0.13939225 0.05161290 0.04571777## part 0.07954395 0.02787845 0.06451613 0.04571777## place 0.06628662 0.01393922 0.05161290 0.04571777## public 0.03977197 0.01393922 0.07741935 0.03047851## since 0.05302930 0.11151380 0.03870968 0.01523926## trade 0.05302930 0.08363535 0.06451613 0.01523926## troops 0.02651465 0.04181767 0.06451613 0.01523926## unemployment 0.01325732 0.04181767 0.06451613 0.07619628## washington 0.03977197 0.02787845 0.07741935 0.03047851## bring 0.03977197 0.05575690 0.06451613 0.09143554## chance 0.07954395 0.05575690 0.09032258 0.00000000## cost 0.07954395 0.01393922 0.01290323 0.18287108## global 0.06628662 0.05575690 0.03870968 0.10667479## training 0.07954395 0.05575690 0.07741935 0.06095703## administration 0.10605860 0.02787845 0.09032258 0.07619628## clean 0.02651465 0.00000000 0.11612903 0.09143554## financial 0.02651465 0.02787845 0.18064516 0.12191405## nearly 0.05302930 0.02787845 0.10322581 0.06095703## progress 0.07954395 0.04181767 0.01290323 0.04571777## always 0.02651465 0.05575690 0.05161290 0.01523926## afford 0.02651465 0.02787845 0.09032258 0.12191405## benefits 0.05302930 0.05575690 0.01290323 0.03047851## create 0.07954395 0.01393922 0.06451613 0.01523926## ever 0.05302930 0.12545302 0.07741935 0.07619628## fellow 0.03977197 0.02787845 0.02580645 0.00000000## thank 0.06628662 0.06969612 0.01290323 0.03047851## they^re 0.03977197 0.02787845 0.03870968 0.00000000## countries 0.09280127 0.04181767 0.06451613 0.03047851## credit 0.02651465 0.01393922 0.06451613 0.12191405## growth 0.09280127 0.04181767 0.01290323 0.03047851## iran 0.02651465 0.08363535 0.06451613 0.00000000## said 0.09280127 0.05575690 0.05161290 0.04571777## save 0.03977197 0.02787845 0.03870968 0.09143554## vote 0.18560255 0.04181767 0.01290323 0.00000000## cuts 0.14583057 0.00000000 0.02580645 0.03047851## housing 0.10605860 0.01393922 0.11612903 0.10667479## retirement 0.05302930 0.02787845 0.01290323 0.01523926## students 0.06628662 0.02787845 0.06451613 0.04571777## allies 0.03977197 0.08363535 0.00000000 0.01523926## different 0.06628662 0.02787845 0.00000000 0.03047851## east 0.03977197 0.02787845 0.02580645 0.06095703## human 0.02651465 0.04181767 0.03870968 0.03047851## live 0.06628662 0.05575690 0.01290323 0.01523926## number 0.02651465 0.05575690 0.05161290 0.03047851## provide 0.01325732 0.00000000 0.00000000 0.07619628## stand 0.05302930 0.02787845 0.03870968 0.06095703## threat 0.06628662 0.05575690 0.02580645 0.01523926## defense 0.10605860 0.02787845 0.07741935 0.03047851## foreign 0.03977197 0.05575690 0.07741935 0.01523926## growing 0.03977197 0.06969612 0.05161290 0.04571777## off 0.05302930 0.06969612 0.07741935 0.07619628## saddam 0.00000000 0.00000000 0.00000000 0.00000000## well 0.03977197 0.05575690 0.06451613 0.06095703## century 0.01325732 0.15333147 0.01290323 0.09143554## debt 0.03977197 0.02787845 0.12903226 0.10667479## fair 0.03977197 0.12545302 0.10322581 0.01523926## relief 0.01325732 0.01393922 0.03870968 0.03047851## republicans 0.03977197 0.09757457 0.01290323 0.04571777## crisis 0.03977197 0.06969612 0.05161290 0.16763182## did 0.03977197 0.02787845 0.03870968 0.03047851## recovery 0.03977197 0.01393922 0.01290323 0.24382810## say 0.05302930 0.02787845 0.00000000 0.06095703## seen 0.03977197 0.06969612 0.01290323 0.04571777## send 0.03977197 0.06969612 0.09032258 0.06095703## start 0.05302930 0.02787845 0.06451613 0.00000000## hussein 0.00000000 0.00000000 0.00000000 0.00000000## kids 0.06628662 0.08363535 0.06451613 0.01523926## reforms 0.07954395 0.00000000 0.07741935 0.03047851## science 0.06628662 0.02787845 0.05161290 0.01523926## secure 0.06628662 0.01393922 0.03870968 0.03047851## single 0.06628662 0.04181767 0.02580645 0.06095703## sources 0.05302930 0.01393922 0.03870968 0.04571777## values 0.01325732 0.08363535 0.09032258 0.06095703## class 0.10605860 0.09757457 0.05161290 0.03047851## democrats 0.03977197 0.09757457 0.01290323 0.04571777## does 0.05302930 0.06969612 0.02580645 0.06095703## half 0.03977197 0.02787845 0.02580645 0.04571777## policy 0.03977197 0.04181767 0.05161290 0.04571777## terrorism 0.05302930 0.02787845 0.02580645 0.07619628## ahead 0.06628662 0.08363535 0.02580645 0.01523926## aids 0.01325732 0.00000000 0.00000000 0.00000000## clear 0.01325732 0.01393922 0.01290323 0.03047851## commitment 0.02651465 0.04181767 0.05161290 0.06095703## dollars 0.03977197 0.01393922 0.07741935 0.06095703## enough 0.00000000 0.01393922 0.09032258 0.04571777## helping 0.03977197 0.04181767 0.02580645 0.09143554## market 0.06628662 0.04181767 0.09032258 0.10667479## passed 0.02651465 0.02787845 0.02580645 0.04571777## safe 0.01325732 0.04181767 0.01290323 0.04571777## show 0.02651465 0.01393922 0.00000000 0.01523926## things 0.05302930 0.08363535 0.00000000 0.00000000## around 0.02651465 0.05575690 0.03870968 0.03047851## find 0.01325732 0.01393922 0.01290323 0.01523926## forward 0.02651465 0.02787845 0.02580645 0.04571777## funding 0.00000000 0.00000000 0.02580645 0.01523926## important 0.00000000 0.00000000 0.01290323 0.03047851## intelligence 0.01325732 0.02787845 0.00000000 0.00000000## issue 0.03977197 0.05575690 0.02580645 0.10667479## share 0.02651465 0.09757457 0.06451613 0.00000000## speaker 0.02651465 0.02787845 0.03870968 0.03047851## able 0.03977197 0.01393922 0.03870968 0.06095703## behind 0.05302930 0.00000000 0.02580645 0.01523926## between 0.02651465 0.04181767 0.06451613 0.01523926## family 0.01325732 0.11151380 0.03870968 0.07619628## finally 0.07954395 0.06969612 0.02580645 0.07619628## gas 0.10605860 0.02787845 0.19354839 0.01523926## generation 0.01325732 0.06969612 0.05161290 0.03047851## immigration 0.07954395 0.04181767 0.07741935 0.00000000## income 0.01325732 0.00000000 0.03870968 0.00000000## invest 0.05302930 0.02787845 0.01290323 0.09143554## others 0.02651465 0.01393922 0.02580645 0.01523926## private 0.06628662 0.00000000 0.02580645 0.06095703## seniors 0.02651465 0.00000000 0.01290323 0.01523926## serve 0.03977197 0.01393922 0.03870968 0.04571777## action 0.02651465 0.04181767 0.03870968 0.06095703## billion 0.00000000 0.00000000 0.02580645 0.01523926## cannot 0.05302930 0.01393922 0.05161290 0.12191405## control 0.05302930 0.00000000 0.06451613 0.03047851## everyone 0.01325732 0.11151380 0.06451613 0.04571777## god 0.02651465 0.02787845 0.02580645 0.03047851## instead 0.01325732 0.11151380 0.02580645 0.03047851## justice 0.01325732 0.04181767 0.01290323 0.01523926## means 0.03977197 0.02787845 0.05161290 0.01523926## reduce 0.07954395 0.02787845 0.01290323 0.01523926## under 0.01325732 0.00000000 0.02580645 0.03047851## basic 0.02651465 0.04181767 0.03870968 0.01523926## big 0.01325732 0.01393922 0.01290323 0.01523926## challenges 0.02651465 0.04181767 0.01290323 0.09143554## communities 0.10605860 0.00000000 0.01290323 0.01523926## effort 0.03977197 0.09757457 0.01290323 0.07619628## employees 0.00000000 0.02787845 0.02580645 0.03047851## face 0.02651465 0.00000000 0.01290323 0.03047851## few 0.07954395 0.01393922 0.03870968 0.03047851## idea 0.07954395 0.04181767 0.01290323 0.00000000## leadership 0.00000000 0.08363535 0.01290323 0.00000000## look 0.05302930 0.02787845 0.06451613 0.04571777## months 0.06628662 0.04181767 0.02580645 0.03047851## possible 0.02651465 0.04181767 0.05161290 0.00000000## steps 0.00000000 0.05575690 0.01290323 0.01523926## thousands 0.05302930 0.01393922 0.05161290 0.03047851## veterans 0.05302930 0.09757457 0.09032258 0.01523926## vice 0.03977197 0.04181767 0.05161290 0.04571777## affordable 0.02651465 0.02787845 0.00000000 0.03047851## agree 0.06628662 0.09757457 0.03870968 0.01523926## attacks 0.03977197 0.01393922 0.01290323 0.00000000## going 0.02651465 0.02787845 0.01290323 0.00000000## increase 0.02651465 0.01393922 0.03870968 0.01523926## once 0.00000000 0.02787845 0.01290323 0.10667479## strengthen 0.03977197 0.01393922 0.01290323 0.03047851## stronger 0.11931592 0.06969612 0.02580645 0.03047851## thing 0.01325732 0.11151380 0.03870968 0.00000000## trust 0.01325732 0.01393922 0.02580645 0.03047851## being 0.03977197 0.02787845 0.01290323 0.03047851## courage 0.03977197 0.01393922 0.01290323 0.00000000## days 0.01325732 0.01393922 0.07741935 0.06095703## deserve 0.11931592 0.01393922 0.02580645 0.00000000## doing 0.02651465 0.06969612 0.01290323 0.01523926## friends 0.01325732 0.00000000 0.02580645 0.01523926## got 0.03977197 0.06969612 0.07741935 0.00000000## left 0.01325732 0.00000000 0.03870968 0.01523926## manufacturing 0.09280127 0.02787845 0.14193548 0.00000000## move 0.03977197 0.01393922 0.01290323 0.04571777## politics 0.01325732 0.11151380 0.05161290 0.01523926## sent 0.03977197 0.02787845 0.02580645 0.04571777## standards 0.03977197 0.02787845 0.02580645 0.04571777## strengthening 0.05302930 0.05575690 0.06451613 0.04571777## success 0.00000000 0.02787845 0.03870968 0.01523926## access 0.03977197 0.06969612 0.00000000 0.01523926## cause 0.01325732 0.00000000 0.00000000 0.04571777## choose 0.03977197 0.04181767 0.03870968 0.00000000## comes 0.00000000 0.04181767 0.02580645 0.04571777## development 0.05302930 0.08363535 0.05161290 0.00000000## greater 0.02651465 0.02787845 0.01290323 0.01523926## less 0.03977197 0.04181767 0.06451613 0.01523926## man 0.02651465 0.04181767 0.01290323 0.00000000## recession 0.01325732 0.02787845 0.03870968 0.10667479## africa 0.02651465 0.05575690 0.02580645 0.00000000## building 0.00000000 0.05575690 0.02580645 0.00000000## called 0.00000000 0.00000000 0.00000000 0.07619628## code 0.05302930 0.04181767 0.06451613 0.03047851## company 0.01325732 0.00000000 0.09032258 0.03047851## department 0.03977197 0.00000000 0.06451613 0.09143554## employment 0.02651465 0.02787845 0.06451613 0.04571777## including 0.02651465 0.05575690 0.00000000 0.01523926## innovation 0.02651465 0.00000000 0.07741935 0.03047851## makes 0.03977197 0.05575690 0.03870968 0.04571777## open 0.03977197 0.02787845 0.05161290 0.03047851## raise 0.03977197 0.05575690 0.02580645 0.01523926## regime 0.02651465 0.00000000 0.03870968 0.00000000## regulations 0.01325732 0.02787845 0.14193548 0.04571777## stop 0.01325732 0.04181767 0.10322581 0.01523926## there^s 0.05302930 0.04181767 0.07741935 0.00000000## threats 0.03977197 0.02787845 0.01290323 0.03047851## am 0.01325732 0.01393922 0.01290323 0.06095703## biden 0.07954395 0.04181767 0.06451613 0.03047851## built 0.02651465 0.00000000 0.15483871 0.03047851## challenge 0.01325732 0.04181767 0.05161290 0.01523926## decade 0.03977197 0.05575690 0.02580645 0.04571777## decades 0.02651465 0.02787845 0.01290323 0.01523926## grow 0.06628662 0.02787845 0.02580645 0.01523926## improvement 0.09280127 0.04181767 0.07741935 0.01523926## liberty 0.00000000 0.00000000 0.01290323 0.00000000## parents 0.03977197 0.04181767 0.00000000 0.01523926## parties 0.07954395 0.02787845 0.03870968 0.00000000## problem 0.01325732 0.00000000 0.01290323 0.04571777## promise 0.03977197 0.01393922 0.06451613 0.06095703## rules 0.00000000 0.08363535 0.11612903 0.03047851## savings 0.02651465 0.01393922 0.01290323 0.04571777## service 0.02651465 0.01393922 0.05161290 0.06095703## taken 0.00000000 0.02787845 0.00000000 0.00000000## white 0.02651465 0.04181767 0.02580645 0.01523926## abroad 0.02651465 0.01393922 0.01290323 0.01523926## applause 0.05302930 0.05575690 0.00000000 0.03047851## confidence 0.02651465 0.00000000 0.01290323 0.10667479## defend 0.00000000 0.04181767 0.03870968 0.01523926## democratic 0.00000000 0.04181767 0.02580645 0.01523926## drug 0.01325732 0.00000000 0.00000000 0.00000000## enemies 0.01325732 0.01393922 0.02580645 0.00000000## everything 0.01325732 0.00000000 0.02580645 0.01523926## full 0.01325732 0.02787845 0.03870968 0.04571777## john 0.05302930 0.01393922 0.03870968 0.00000000## leave 0.00000000 0.12545302 0.02580645 0.00000000## math 0.03977197 0.01393922 0.00000000 0.00000000## matter 0.06628662 0.00000000 0.06451613 0.00000000## mission 0.01325732 0.04181767 0.09032258 0.00000000## ourselves 0.01325732 0.12545302 0.00000000 0.03047851## postsecondary 0.03977197 0.04181767 0.06451613 0.04571777## prevent 0.05302930 0.04181767 0.06451613 0.01523926## seek 0.02651465 0.02787845 0.00000000 0.03047851## such 0.01325732 0.01393922 0.00000000 0.01523926## used 0.00000000 0.02787845 0.01290323 0.01523926## agreement 0.01325732 0.02787845 0.00000000 0.00000000## bipartisan 0.06628662 0.05575690 0.03870968 0.01523926## colleges 0.05302930 0.04181767 0.06451613 0.00000000## course 0.03977197 0.02787845 0.06451613 0.01523926## ensure 0.02651465 0.00000000 0.01290323 0.10667479## environment 0.03977197 0.01393922 0.05161290 0.01523926## example 0.05302930 0.06969612 0.02580645 0.03047851## fact 0.06628662 0.02787845 0.03870968 0.07619628## given 0.00000000 0.00000000 0.00000000 0.04571777## north 0.06628662 0.01393922 0.03870968 0.00000000## nothing 0.03977197 0.04181767 0.02580645 0.00000000## organization 0.01325732 0.02787845 0.02580645 0.03047851## paid 0.01325732 0.13939225 0.02580645 0.01523926## propose 0.03977197 0.00000000 0.00000000 0.00000000## prosperity 0.03977197 0.00000000 0.01290323 0.07619628## republican 0.01325732 0.02787845 0.07741935 0.01523926## require 0.01325732 0.04181767 0.00000000 0.03047851## september 0.01325732 0.00000000 0.00000000 0.00000000## student 0.01325732 0.06969612 0.05161290 0.00000000## teachers 0.01325732 0.00000000 0.07741935 0.04571777## technologies 0.01325732 0.01393922 0.06451613 0.03047851## then 0.02651465 0.02787845 0.02580645 0.04571777## times 0.01325732 0.06969612 0.00000000 0.12191405## almost 0.03977197 0.04181767 0.00000000 0.00000000## bless 0.02651465 0.02787845 0.02580645 0.03047851## call 0.00000000 0.02787845 0.02580645 0.00000000## civil 0.03977197 0.08363535 0.02580645 0.01523926## created 0.02651465 0.01393922 0.03870968 0.04571777## doesn^t 0.01325732 0.11151380 0.05161290 0.03047851## enforcement 0.07954395 0.02787845 0.01290323 0.00000000## faith 0.03977197 0.01393922 0.00000000 0.00000000## happen 0.02651465 0.02787845 0.05161290 0.01523926## ideas 0.02651465 0.06969612 0.05161290 0.03047851## laws 0.03977197 0.04181767 0.01290323 0.00000000## legislation 0.01325732 0.01393922 0.02580645 0.04571777## lower 0.03977197 0.05575690 0.05161290 0.03047851## markets 0.02651465 0.00000000 0.03870968 0.04571777## rates 0.06628662 0.00000000 0.05161290 0.04571777## skills 0.05302930 0.01393922 0.06451613 0.00000000## tell 0.00000000 0.01393922 0.00000000 0.06095703## took 0.00000000 0.04181767 0.05161290 0.03047851## violence 0.10605860 0.00000000 0.01290323 0.00000000## worked 0.05302930 0.06969612 0.05161290 0.01523926## climate 0.05302930 0.06969612 0.02580645 0.03047851## him 0.00000000 0.01393922 0.02580645 0.04571777## hire 0.05302930 0.02787845 0.05161290 0.01523926## information 0.01325732 0.04181767 0.01290323 0.01523926## korea 0.02651465 0.00000000 0.01290323 0.01523926## reach 0.03977197 0.02787845 0.02580645 0.01523926## secretary 0.00000000 0.00000000 0.06451613 0.01523926## session 0.01325732 0.01393922 0.01290323 0.04571777## speak 0.01325732 0.02787845 0.01290323 0.04571777## spirit 0.00000000 0.01393922 0.00000000 0.04571777## strength 0.01325732 0.04181767 0.01290323 0.03047851## very 0.00000000 0.08363535 0.01290323 0.01523926## begin 0.02651465 0.04181767 0.00000000 0.09143554## coming 0.01325732 0.01393922 0.00000000 0.01523926## enemy 0.00000000 0.00000000 0.00000000 0.00000000## expansion 0.01325732 0.01393922 0.03870968 0.03047851## far 0.01325732 0.02787845 0.03870968 0.03047851## focus 0.02651465 0.04181767 0.01290323 0.00000000## fund 0.02651465 0.00000000 0.01290323 0.01523926## join 0.01325732 0.02787845 0.01290323 0.01523926## lot 0.02651465 0.02787845 0.02580645 0.00000000## m 0.01325732 0.01393922 0.02580645 0.03047851## offer 0.02651465 0.01393922 0.02580645 0.00000000## race 0.05302930 0.01393922 0.01290323 0.00000000## rest 0.03977197 0.01393922 0.03870968 0.01523926## spend 0.02651465 0.04181767 0.02580645 0.07619628## taxation 0.02651465 0.01393922 0.03870968 0.03047851## th 0.00000000 0.02787845 0.00000000 0.00000000## think 0.00000000 0.02787845 0.02580645 0.04571777## wage 0.11931592 0.05575690 0.01290323 0.00000000## within 0.01325732 0.00000000 0.02580645 0.00000000## won^t 0.02651465 0.04181767 0.01290323 0.04571777## armed 0.02651465 0.00000000 0.03870968 0.03047851## china 0.01325732 0.05575690 0.05161290 0.01523926## decisions 0.02651465 0.01393922 0.00000000 0.04571777## generations 0.03977197 0.02787845 0.01290323 0.03047851## improve 0.02651465 0.00000000 0.00000000 0.01523926## infrastructure 0.05302930 0.08363535 0.05161290 0.01523926## initiative 0.01325732 0.01393922 0.00000000 0.00000000## investment 0.02651465 0.00000000 0.01290323 0.06095703## medicaid 0.01325732 0.01393922 0.01290323 0.01523926## mr 0.02651465 0.04181767 0.02580645 0.01523926## person 0.01325732 0.00000000 0.03870968 0.00000000## places 0.02651465 0.00000000 0.03870968 0.03047851## political 0.01325732 0.01393922 0.00000000 0.00000000## problems 0.00000000 0.00000000 0.00000000 0.06095703## proposed 0.02651465 0.00000000 0.01290323 0.00000000## rate 0.01325732 0.06969612 0.02580645 0.00000000## responsible 0.03977197 0.00000000 0.05161290 0.03047851## second 0.01325732 0.04181767 0.02580645 0.01523926## society 0.00000000 0.00000000 0.00000000 0.00000000## top 0.03977197 0.01393922 0.05161290 0.00000000## understand 0.01325732 0.05575690 0.02580645 0.04571777## achieve 0.03977197 0.02787845 0.02580645 0.01523926## asking 0.03977197 0.06969612 0.02580645 0.01523926## capitol 0.01325732 0.04181767 0.01290323 0.01523926## drugs 0.01325732 0.00000000 0.00000000 0.00000000## elections 0.05302930 0.01393922 0.00000000 0.00000000## encourage 0.05302930 0.01393922 0.01290323 0.01523926## fighting 0.01325732 0.01393922 0.01290323 0.01523926## force 0.00000000 0.02787845 0.01290323 0.06095703## former 0.05302930 0.01393922 0.02580645 0.00000000## investments 0.06628662 0.01393922 0.06451613 0.01523926## respect 0.02651465 0.02787845 0.00000000 0.00000000## rising 0.03977197 0.02787845 0.01290323 0.00000000## sense 0.00000000 0.05575690 0.07741935 0.06095703## serious 0.00000000 0.00000000 0.01290323 0.03047851## something 0.02651465 0.06969612 0.01290323 0.03047851## treatment 0.02651465 0.01393922 0.00000000 0.01523926## until 0.01325732 0.01393922 0.01290323 0.00000000## whether 0.01325732 0.02787845 0.01290323 0.01523926## words 0.01325732 0.00000000 0.00000000 0.06095703## additional 0.02651465 0.00000000 0.00000000 0.00000000## afghan 0.05302930 0.01393922 0.02580645 0.00000000## alone 0.02651465 0.01393922 0.00000000 0.01523926## asked 0.01325732 0.00000000 0.01290323 0.06095703## assistance 0.03977197 0.01393922 0.02580645 0.03047851## coalition 0.02651465 0.02787845 0.00000000 0.00000000## commerce 0.01325732 0.02787845 0.06451613 0.06095703## confront 0.00000000 0.00000000 0.00000000 0.04571777## difficult 0.00000000 0.00000000 0.00000000 0.06095703## doctors 0.00000000 0.01393922 0.00000000 0.03047851## earth 0.02651465 0.02787845 0.02580645 0.01523926## everybody 0.03977197 0.04181767 0.02580645 0.00000000## expand 0.02651465 0.00000000 0.02580645 0.03047851## joint 0.01325732 0.01393922 0.01290323 0.04571777## known 0.02651465 0.01393922 0.01290323 0.01523926## longer 0.00000000 0.01393922 0.03870968 0.06095703## promote 0.01325732 0.00000000 0.00000000 0.00000000## receive 0.03977197 0.00000000 0.01290323 0.06095703## south 0.00000000 0.01393922 0.01290323 0.03047851## told 0.02651465 0.04181767 0.03870968 0.03047851## trying 0.01325732 0.02787845 0.02580645 0.03047851## urge 0.03977197 0.01393922 0.00000000 0.00000000## willing 0.03977197 0.00000000 0.01290323 0.01523926## world^s 0.02651465 0.05575690 0.06451613 0.01523926## allow 0.01325732 0.01393922 0.01290323 0.03047851## banks 0.00000000 0.00000000 0.03870968 0.15239256## debate 0.00000000 0.01393922 0.02580645 0.01523926## didn^t 0.00000000 0.01393922 0.05161290 0.04571777## fear 0.01325732 0.00000000 0.00000000 0.01523926## folks 0.06628662 0.06969612 0.03870968 0.01523926## hold 0.02651465 0.01393922 0.03870968 0.04571777## incentives 0.03977197 0.01393922 0.05161290 0.01523926## issues 0.00000000 0.11151380 0.02580645 0.00000000## old 0.02651465 0.02787845 0.00000000 0.06095703## point 0.00000000 0.04181767 0.03870968 0.01523926## poverty 0.09280127 0.01393922 0.01290323 0.01523926## proud 0.01325732 0.01393922 0.03870968 0.01523926## stay 0.00000000 0.05575690 0.05161290 0.00000000## strategy 0.00000000 0.02787845 0.03870968 0.01523926## taking 0.01325732 0.02787845 0.02580645 0.01523926## three 0.02651465 0.02787845 0.00000000 0.01523926## trillion 0.03977197 0.00000000 0.05161290 0.01523926## true 0.03977197 0.02787845 0.02580645 0.00000000## approach 0.02651465 0.02787845 0.00000000 0.03047851## danger 0.00000000 0.00000000 0.01290323 0.00000000## expect 0.05302930 0.02787845 0.00000000 0.01523926## highest 0.00000000 0.04181767 0.02580645 0.03047851## honor 0.00000000 0.00000000 0.00000000 0.01523926## kind 0.01325732 0.01393922 0.02580645 0.01523926## largest 0.00000000 0.01393922 0.03870968 0.09143554## loans 0.01325732 0.04181767 0.03870968 0.07619628## love 0.01325732 0.02787845 0.00000000 0.00000000## message 0.00000000 0.00000000 0.03870968 0.01523926## p 0.02651465 0.04181767 0.01290323 0.01523926## products 0.01325732 0.01393922 0.09032258 0.00000000## r 0.01325732 0.01393922 0.01290323 0.01523926## region 0.00000000 0.01393922 0.01290323 0.00000000## russia 0.02651465 0.08363535 0.01290323 0.00000000## side 0.00000000 0.02787845 0.01290323 0.00000000## step 0.01325732 0.01393922 0.01290323 0.04571777## street 0.00000000 0.02787845 0.06451613 0.04571777## struggle 0.00000000 0.00000000 0.00000000 0.01523926## turn 0.01325732 0.01393922 0.05161290 0.03047851## vital 0.00000000 0.00000000 0.00000000 0.00000000## ways 0.00000000 0.01393922 0.01290323 0.04571777## what^s 0.01325732 0.00000000 0.05161290 0.03047851## accounts 0.00000000 0.00000000 0.00000000 0.03047851## attack 0.00000000 0.00000000 0.00000000 0.00000000## border 0.03977197 0.00000000 0.01290323 0.00000000## came 0.01325732 0.01393922 0.02580645 0.01523926## choice 0.01325732 0.01393922 0.01290323 0.00000000## choices 0.00000000 0.01393922 0.01290323 0.01523926## commission 0.07954395 0.00000000 0.00000000 0.00000000## comprehensive 0.05302930 0.01393922 0.03870968 0.04571777## corporate 0.02651465 0.00000000 0.01290323 0.01523926## getting 0.03977197 0.02787845 0.09032258 0.03047851## helped 0.00000000 0.02787845 0.02580645 0.03047851## inspectors 0.00000000 0.00000000 0.00000000 0.00000000## leading 0.01325732 0.02787845 0.02580645 0.00000000## living 0.03977197 0.00000000 0.01290323 0.03047851## lost 0.01325732 0.00000000 0.02580645 0.04571777## medicine 0.00000000 0.02787845 0.00000000 0.01523926## might 0.01325732 0.00000000 0.00000000 0.00000000## natural 0.06628662 0.00000000 0.06451613 0.00000000## necessary 0.03977197 0.00000000 0.00000000 0.07619628## remains 0.05302930 0.00000000 0.02580645 0.00000000## remember 0.01325732 0.00000000 0.02580645 0.00000000## resources 0.01325732 0.00000000 0.03870968 0.04571777## return 0.00000000 0.00000000 0.05161290 0.04571777## run 0.00000000 0.02787845 0.01290323 0.01523926## senate 0.01325732 0.00000000 0.02580645 0.00000000## small-business 0.01325732 0.02787845 0.01290323 0.01523926## spoke 0.01325732 0.01393922 0.02580645 0.01523926## succeed 0.00000000 0.02787845 0.02580645 0.01523926## wages 0.02651465 0.05575690 0.02580645 0.01523926## week 0.02651465 0.00000000 0.00000000 0.01523926## woman 0.01325732 0.05575690 0.01290323 0.00000000## you^re 0.00000000 0.02787845 0.15483871 0.00000000## add 0.00000000 0.00000000 0.01290323 0.00000000## alternative 0.02651465 0.00000000 0.03870968 0.01523926## beyond 0.01325732 0.04181767 0.02580645 0.04571777## bills 0.03977197 0.00000000 0.03870968 0.01523926## buy 0.02651465 0.00000000 0.01290323 0.09143554## cars 0.03977197 0.00000000 0.01290323 0.03047851## common 0.00000000 0.04181767 0.03870968 0.03047851## compassion 0.00000000 0.00000000 0.00000000 0.00000000## competitiveness 0.01325732 0.04181767 0.03870968 0.01523926## determined 0.00000000 0.01393922 0.01290323 0.00000000## develop 0.02651465 0.00000000 0.03870968 0.01523926## diplomacy 0.00000000 0.08363535 0.01290323 0.00000000## dream 0.00000000 0.01393922 0.00000000 0.00000000## dreams 0.00000000 0.02787845 0.01290323 0.03047851## during 0.01325732 0.01393922 0.01290323 0.00000000## duty 0.00000000 0.01393922 0.00000000 0.00000000## election 0.02651465 0.00000000 0.00000000 0.01523926## equal 0.03977197 0.01393922 0.02580645 0.01523926## especially 0.00000000 0.01393922 0.01290323 0.01523926## giving 0.02651465 0.01393922 0.01290323 0.00000000## groups 0.03977197 0.00000000 0.00000000 0.00000000## homes 0.03977197 0.00000000 0.02580645 0.07619628## hopeful 0.01325732 0.01393922 0.01290323 0.00000000## kill 0.00000000 0.00000000 0.01290323 0.00000000## leader 0.01325732 0.00000000 0.00000000 0.00000000## long-term 0.01325732 0.01393922 0.01290323 0.09143554## materials 0.02651465 0.00000000 0.01290323 0.00000000## moment 0.00000000 0.04181767 0.02580645 0.06095703## month 0.01325732 0.02787845 0.01290323 0.00000000## often 0.01325732 0.01393922 0.01290323 0.04571777## people^s 0.02651465 0.01393922 0.02580645 0.00000000## prescription 0.01325732 0.00000000 0.00000000 0.01523926## quality 0.02651465 0.02787845 0.01290323 0.03047851## real 0.05302930 0.00000000 0.02580645 0.03047851## reason 0.01325732 0.02787845 0.01290323 0.01523926## record 0.01325732 0.04181767 0.00000000 0.00000000## reduction 0.11931592 0.02787845 0.00000000 0.00000000## renewable 0.02651465 0.00000000 0.03870968 0.07619628## requires 0.01325732 0.00000000 0.01290323 0.00000000## sanctions 0.00000000 0.06969612 0.02580645 0.00000000## sick 0.00000000 0.09757457 0.00000000 0.01523926## solar 0.02651465 0.02787845 0.01290323 0.04571777## solve 0.02651465 0.00000000 0.01290323 0.04571777## works 0.06628662 0.02787845 0.00000000 0.00000000## agenda 0.02651465 0.04181767 0.02580645 0.03047851## along 0.01325732 0.01393922 0.00000000 0.03047851## arms 0.05302930 0.01393922 0.00000000 0.00000000## bad 0.01325732 0.00000000 0.06451613 0.07619628## close 0.00000000 0.05575690 0.00000000 0.03047851## construction 0.01325732 0.04181767 0.06451613 0.00000000## dcpd 0.02651465 0.02787845 0.02580645 0.03047851## deliver 0.02651465 0.00000000 0.00000000 0.00000000## developing 0.03977197 0.00000000 0.00000000 0.00000000## dignity 0.00000000 0.02787845 0.02580645 0.00000000## easy 0.01325732 0.00000000 0.00000000 0.06095703## elected 0.01325732 0.00000000 0.01290323 0.00000000## found 0.00000000 0.00000000 0.01290323 0.03047851## i^ll 0.02651465 0.02787845 0.00000000 0.00000000## institutions 0.01325732 0.00000000 0.02580645 0.00000000## interests 0.02651465 0.00000000 0.01290323 0.00000000## iraqis 0.00000000 0.00000000 0.00000000 0.00000000## january 0.00000000 0.01393922 0.01290323 0.00000000## kennedy 0.01325732 0.00000000 0.00000000 0.03047851## labor 0.01325732 0.06969612 0.00000000 0.00000000## level 0.03977197 0.01393922 0.01290323 0.01523926## mass 0.00000000 0.00000000 0.00000000 0.01523926## nation^s 0.01325732 0.00000000 0.00000000 0.01523926## order 0.02651465 0.00000000 0.01290323 0.03047851## paying 0.01325732 0.04181767 0.03870968 0.01523926## personal 0.01325732 0.00000000 0.02580645 0.00000000## produce 0.02651465 0.01393922 0.00000000 0.00000000## production 0.01325732 0.01393922 0.02580645 0.01523926## referred 0.02651465 0.02787845 0.01290323 0.01523926## says 0.00000000 0.01393922 0.00000000 0.04571777## simple 0.05302930 0.00000000 0.06451613 0.00000000## soon 0.02651465 0.00000000 0.05161290 0.04571777## special 0.01325732 0.00000000 0.02580645 0.03047851## tough 0.01325732 0.00000000 0.00000000 0.03047851## toward 0.00000000 0.00000000 0.00000000 0.00000000## wall 0.00000000 0.01393922 0.05161290 0.03047851## win 0.00000000 0.01393922 0.02580645 0.01523926## advanced 0.00000000 0.02787845 0.01290323 0.01523926## age 0.01325732 0.00000000 0.00000000 0.01523926## asia 0.02651465 0.04181767 0.01290323 0.00000000## combat 0.05302930 0.06969612 0.01290323 0.01523926## compete 0.00000000 0.00000000 0.00000000 0.04571777## competitive 0.00000000 0.02787845 0.00000000 0.01523926## dangerous 0.03977197 0.01393922 0.00000000 0.00000000## differences 0.00000000 0.01393922 0.05161290 0.00000000## domestic 0.03977197 0.01393922 0.02580645 0.00000000## double 0.00000000 0.01393922 0.02580645 0.01523926## eliminate 0.00000000 0.00000000 0.02580645 0.03047851## executive 0.03977197 0.00000000 0.05161290 0.01523926## further 0.05302930 0.00000000 0.00000000 0.01523926## group 0.01325732 0.01393922 0.02580645 0.03047851## illegal 0.02651465 0.00000000 0.03870968 0.00000000## knows 0.00000000 0.01393922 0.01290323 0.00000000## local 0.01325732 0.01393922 0.00000000 0.01523926## marriage 0.01325732 0.01393922 0.00000000 0.00000000## none 0.03977197 0.00000000 0.01290323 0.01523926## party 0.05302930 0.00000000 0.02580645 0.00000000## path 0.02651465 0.00000000 0.00000000 0.00000000## pays 0.01325732 0.00000000 0.02580645 0.00000000## priorities 0.02651465 0.00000000 0.00000000 0.03047851## process 0.02651465 0.00000000 0.01290323 0.03047851## promotion 0.01325732 0.02787845 0.07741935 0.00000000## rise 0.00000000 0.01393922 0.02580645 0.00000000## supporting 0.01325732 0.04181767 0.00000000 0.00000000## task 0.09280127 0.00000000 0.00000000 0.01523926## thanks 0.01325732 0.04181767 0.00000000 0.01523926## third 0.01325732 0.02787845 0.01290323 0.03047851## yes 0.01325732 0.01393922 0.01290323 0.01523926## actions 0.02651465 0.01393922 0.02580645 0.00000000## break 0.00000000 0.02787845 0.02580645 0.01523926## campaign 0.02651465 0.02787845 0.02580645 0.00000000## character 0.00000000 0.00000000 0.00000000 0.00000000## chief 0.02651465 0.01393922 0.02580645 0.00000000## city 0.02651465 0.04181767 0.01290323 0.00000000## competition 0.01325732 0.01393922 0.01290323 0.00000000## creating 0.01325732 0.04181767 0.02580645 0.03047851## crime 0.06628662 0.02787845 0.00000000 0.00000000## dc 0.01325732 0.01393922 0.01290323 0.01523926## effective 0.00000000 0.01393922 0.01290323 0.00000000## evidence 0.00000000 0.01393922 0.00000000 0.00000000## evil 0.00000000 0.00000000 0.00000000 0.00000000## fall 0.01325732 0.00000000 0.01290323 0.01523926## fix 0.02651465 0.01393922 0.03870968 0.00000000## homeland 0.00000000 0.00000000 0.00000000 0.00000000## individuals 0.00000000 0.00000000 0.00000000 0.01523926## little 0.02651465 0.00000000 0.02580645 0.01523926## lose 0.00000000 0.00000000 0.00000000 0.03047851## neighbors 0.00000000 0.01393922 0.00000000 0.01523926## note 0.01325732 0.01393922 0.01290323 0.01523926## parts 0.01325732 0.02787845 0.01290323 0.01523926## presidential 0.03977197 0.00000000 0.01290323 0.00000000## proposal 0.00000000 0.00000000 0.01290323 0.00000000## proposing 0.03977197 0.00000000 0.02580645 0.00000000## question 0.01325732 0.02787845 0.01290323 0.00000000## remain 0.02651465 0.01393922 0.03870968 0.00000000## remarks 0.01325732 0.01393922 0.01290323 0.03047851## result 0.01325732 0.00000000 0.00000000 0.03047851## saw 0.02651465 0.01393922 0.02580645 0.00000000## scientists 0.01325732 0.05575690 0.00000000 0.00000000## shouldn^t 0.03977197 0.00000000 0.06451613 0.00000000## sign 0.01325732 0.00000000 0.05161290 0.00000000## syria 0.01325732 0.05575690 0.05161290 0.00000000## train 0.00000000 0.02787845 0.01290323 0.01523926## air 0.02651465 0.00000000 0.01290323 0.00000000## anyone 0.01325732 0.00000000 0.03870968 0.01523926## aren^t 0.00000000 0.01393922 0.05161290 0.01523926## average 0.00000000 0.00000000 0.00000000 0.01523926## based 0.03977197 0.01393922 0.00000000 0.00000000## begun 0.01325732 0.01393922 0.02580645 0.03047851## chemical 0.00000000 0.00000000 0.00000000 0.00000000## death 0.00000000 0.00000000 0.00000000 0.00000000## depends 0.02651465 0.00000000 0.00000000 0.04571777## destruction 0.00000000 0.00000000 0.01290323 0.00000000## earn 0.01325732 0.04181767 0.03870968 0.00000000## europe 0.02651465 0.02787845 0.01290323 0.00000000## exports 0.02651465 0.01393922 0.03870968 0.00000000## extremists 0.00000000 0.00000000 0.00000000 0.00000000## friend 0.01325732 0.00000000 0.01290323 0.01523926## gets 0.01325732 0.02787845 0.01290323 0.00000000## greatest 0.01325732 0.00000000 0.01290323 0.01523926## hand 0.00000000 0.02787845 0.03870968 0.00000000## hard-working 0.02651465 0.04181767 0.03870968 0.00000000## interest 0.01325732 0.01393922 0.01290323 0.01523926## internet 0.01325732 0.05575690 0.01290323 0.00000000## iraq^s 0.00000000 0.00000000 0.00000000 0.00000000## israel 0.02651465 0.01393922 0.02580645 0.01523926## jr 0.01325732 0.01393922 0.02580645 0.03047851## least 0.00000000 0.01393922 0.06451613 0.01523926## major 0.00000000 0.01393922 0.02580645 0.04571777## material 0.03977197 0.01393922 0.00000000 0.00000000## minimum 0.09280127 0.04181767 0.01290323 0.00000000## obama 0.02651465 0.02787845 0.02580645 0.03047851## opportunities 0.05302930 0.06969612 0.00000000 0.00000000## options 0.00000000 0.01393922 0.02580645 0.00000000## policies 0.00000000 0.01393922 0.03870968 0.04571777## projects 0.01325732 0.00000000 0.05161290 0.00000000## providing 0.00000000 0.00000000 0.01290323 0.00000000## purpose 0.00000000 0.02787845 0.02580645 0.01523926## recognize 0.03977197 0.01393922 0.01290323 0.00000000## resolve 0.00000000 0.02787845 0.01290323 0.01523926## risk 0.01325732 0.04181767 0.02580645 0.00000000## role 0.01325732 0.01393922 0.00000000 0.01523926## spent 0.01325732 0.00000000 0.00000000 0.01523926## story 0.01325732 0.05575690 0.01290323 0.01523926## talk 0.00000000 0.01393922 0.01290323 0.01523926## throughout 0.02651465 0.01393922 0.00000000 0.00000000## tomorrow 0.01325732 0.00000000 0.02580645 0.03047851## try 0.00000000 0.04181767 0.00000000 0.00000000## worker 0.01325732 0.02787845 0.00000000 0.00000000## worse 0.01325732 0.00000000 0.01290323 0.06095703## ability 0.03977197 0.00000000 0.00000000 0.04571777## accountability 0.01325732 0.00000000 0.01290323 0.07619628## beginning 0.01325732 0.00000000 0.01290323 0.01523926## bigger 0.02651465 0.01393922 0.01290323 0.01523926## borders 0.00000000 0.01393922 0.01290323 0.01523926## broken 0.00000000 0.01393922 0.03870968 0.01523926## deficits 0.00000000 0.04181767 0.00000000 0.00000000## deny 0.00000000 0.01393922 0.01290323 0.00000000## difference 0.02651465 0.02787845 0.03870968 0.00000000## disease 0.00000000 0.02787845 0.01290323 0.03047851## employers 0.02651465 0.02787845 0.00000000 0.00000000## entrepreneurs 0.02651465 0.01393922 0.02580645 0.04571777## faster 0.00000000 0.01393922 0.01290323 0.01523926## fully 0.03977197 0.00000000 0.00000000 0.03047851## gave 0.00000000 0.05575690 0.01290323 0.01523926## hit 0.02651465 0.01393922 0.05161290 0.00000000## learn 0.00000000 0.00000000 0.02580645 0.01523926## looking 0.02651465 0.06969612 0.05161290 0.00000000## patients 0.01325732 0.01393922 0.00000000 0.00000000## police 0.05302930 0.02787845 0.00000000 0.01523926## profits 0.01325732 0.01393922 0.03870968 0.00000000## representatives 0.01325732 0.01393922 0.01290323 0.01523926## responsibilities 0.01325732 0.00000000 0.01290323 0.01523926## road 0.01325732 0.02787845 0.00000000 0.01523926## test 0.00000000 0.00000000 0.01290323 0.00000000## they^ve 0.01325732 0.04181767 0.02580645 0.00000000## track 0.00000000 0.00000000 0.01290323 0.01523926## wait 0.03977197 0.00000000 0.01290323 0.04571777## whole 0.02651465 0.00000000 0.01290323 0.00000000## worst 0.01325732 0.00000000 0.00000000 0.00000000## york 0.06628662 0.02787845 0.00000000 0.00000000## become 0.00000000 0.00000000 0.02580645 0.03047851## biological 0.00000000 0.00000000 0.00000000 0.00000000## breaks 0.01325732 0.00000000 0.01290323 0.04571777## bringing 0.02651465 0.00000000 0.00000000 0.01523926## brought 0.02651465 0.00000000 0.03870968 0.00000000## cancer 0.00000000 0.01393922 0.01290323 0.03047851## changed 0.00000000 0.00000000 0.01290323 0.00000000## changes 0.00000000 0.00000000 0.01290323 0.00000000## changing 0.01325732 0.01393922 0.01290323 0.00000000## concerns 0.01325732 0.00000000 0.01290323 0.01523926## confident 0.00000000 0.00000000 0.01290323 0.00000000## creation 0.02651465 0.01393922 0.02580645 0.03047851## critical 0.00000000 0.00000000 0.01290323 0.06095703## current 0.00000000 0.00000000 0.00000000 0.00000000## demand 0.02651465 0.00000000 0.00000000 0.03047851## early 0.02651465 0.00000000 0.00000000 0.01523926## else 0.00000000 0.01393922 0.03870968 0.00000000## expanding 0.02651465 0.01393922 0.00000000 0.01523926## feel 0.00000000 0.01393922 0.02580645 0.01523926## fiscal 0.02651465 0.01393922 0.00000000 0.06095703## five 0.00000000 0.00000000 0.00000000 0.00000000## follow 0.05302930 0.01393922 0.01290323 0.00000000## gone 0.00000000 0.01393922 0.01290323 0.00000000## ground 0.00000000 0.02787845 0.01290323 0.01523926## he^s 0.00000000 0.00000000 0.00000000 0.00000000## hear 0.00000000 0.00000000 0.01290323 0.01523926## helps 0.03977197 0.02787845 0.01290323 0.00000000## hiv 0.01325732 0.00000000 0.00000000 0.00000000## hundreds 0.03977197 0.00000000 0.01290323 0.00000000## industries 0.00000000 0.01393922 0.05161290 0.03047851## intend 0.01325732 0.02787845 0.02580645 0.01523926## isn^t 0.01325732 0.04181767 0.01290323 0.00000000## jill 0.05302930 0.04181767 0.03870968 0.00000000## keeping 0.00000000 0.01393922 0.00000000 0.00000000## mean 0.02651465 0.01393922 0.01290323 0.01523926## met 0.00000000 0.00000000 0.00000000 0.01523926## mom 0.00000000 0.02787845 0.01290323 0.00000000## online 0.00000000 0.01393922 0.00000000 0.00000000## option 0.00000000 0.00000000 0.00000000 0.01523926## partners 0.01325732 0.00000000 0.00000000 0.00000000## pursue 0.02651465 0.00000000 0.00000000 0.00000000## rebuilding 0.03977197 0.01393922 0.01290323 0.01523926## results 0.00000000 0.00000000 0.00000000 0.01523926## safer 0.00000000 0.02787845 0.01290323 0.01523926## safety 0.03977197 0.00000000 0.02580645 0.00000000## spread 0.01325732 0.05575690 0.00000000 0.00000000## starting 0.00000000 0.04181767 0.00000000 0.01523926## stopped 0.00000000 0.00000000 0.01290323 0.03047851## takes 0.01325732 0.01393922 0.00000000 0.03047851## taxpayers 0.02651465 0.00000000 0.02580645 0.01523926## uniform 0.01325732 0.00000000 0.02580645 0.01523926## unless 0.01325732 0.00000000 0.02580645 0.01523926## upon 0.01325732 0.00000000 0.00000000 0.03047851## victory 0.00000000 0.00000000 0.00000000 0.00000000## whatever 0.01325732 0.00000000 0.00000000 0.04571777## wind 0.02651465 0.01393922 0.03870968 0.03047851## worth 0.01325732 0.01393922 0.02580645 0.00000000## account 0.00000000 0.00000000 0.00000000 0.00000000## achievement 0.00000000 0.00000000 0.00000000 0.01523926## advance 0.00000000 0.01393922 0.00000000 0.01523926## agents 0.00000000 0.00000000 0.00000000 0.00000000## allowed 0.00000000 0.00000000 0.05161290 0.00000000## available 0.01325732 0.01393922 0.01290323 0.01523926## began 0.00000000 0.00000000 0.02580645 0.00000000## brave 0.02651465 0.00000000 0.00000000 0.00000000## career 0.01325732 0.02787845 0.02580645 0.04571777## certain 0.03977197 0.04181767 0.00000000 0.01523926## committed 0.00000000 0.04181767 0.00000000 0.03047851## conflict 0.00000000 0.04181767 0.00000000 0.01523926## congressional 0.01325732 0.00000000 0.00000000 0.01523926## constitution 0.01325732 0.00000000 0.00000000 0.00000000## credits 0.02651465 0.00000000 0.03870968 0.01523926## debates 0.00000000 0.02787845 0.00000000 0.03047851## decline 0.00000000 0.00000000 0.05161290 0.04571777## diplomatic 0.01325732 0.01393922 0.01290323 0.00000000## easier 0.00000000 0.02787845 0.01290323 0.00000000## either 0.00000000 0.01393922 0.02580645 0.01523926## entire 0.02651465 0.00000000 0.01290323 0.01523926## equality 0.02651465 0.01393922 0.01290323 0.00000000## extend 0.00000000 0.01393922 0.01290323 0.00000000## fastest 0.01325732 0.06969612 0.00000000 0.03047851## fill 0.03977197 0.02787845 0.00000000 0.00000000## food 0.01325732 0.00000000 0.01290323 0.00000000## gives 0.00000000 0.01393922 0.02580645 0.01523926## killed 0.01325732 0.00000000 0.00000000 0.00000000## korean 0.00000000 0.00000000 0.00000000 0.00000000## later 0.02651465 0.00000000 0.01290323 0.00000000## lay 0.03977197 0.00000000 0.02580645 0.04571777## learning 0.02651465 0.00000000 0.01290323 0.01523926## lift 0.00000000 0.00000000 0.00000000 0.03047851## line 0.03977197 0.00000000 0.01290323 0.03047851## michelle 0.02651465 0.04181767 0.02580645 0.01523926## mortgage 0.02651465 0.02787845 0.03870968 0.04571777## murder 0.00000000 0.00000000 0.00000000 0.00000000## needed 0.00000000 0.01393922 0.00000000 0.00000000## networks 0.01325732 0.05575690 0.00000000 0.00000000## officers 0.02651465 0.01393922 0.00000000 0.01523926## ones 0.00000000 0.00000000 0.06451613 0.01523926## overseas 0.01325732 0.02787845 0.03870968 0.03047851## plans 0.00000000 0.00000000 0.00000000 0.00000000## prepare 0.01325732 0.02787845 0.01290323 0.01523926## prison 0.00000000 0.02787845 0.00000000 0.00000000## raising 0.01325732 0.00000000 0.01290323 0.00000000## rebuild 0.01325732 0.02787845 0.00000000 0.03047851## reducing 0.03977197 0.00000000 0.00000000 0.00000000## restore 0.01325732 0.01393922 0.02580645 0.06095703## sacrifice 0.02651465 0.02787845 0.00000000 0.03047851## services 0.00000000 0.00000000 0.00000000 0.01523926## size 0.00000000 0.00000000 0.00000000 0.00000000## source 0.01325732 0.00000000 0.02580645 0.03047851## st 0.00000000 0.00000000 0.00000000 0.04571777## standing 0.00000000 0.01393922 0.00000000 0.00000000## started 0.01325732 0.00000000 0.01290323 0.00000000## themselves 0.01325732 0.00000000 0.02580645 0.01523926## today^s 0.05302930 0.01393922 0.00000000 0.00000000## transportation 0.01325732 0.01393922 0.01290323 0.00000000## turned 0.00000000 0.01393922 0.01290323 0.00000000## welcome 0.00000000 0.01393922 0.00000000 0.00000000## you^ve 0.01325732 0.02787845 0.00000000 0.01523926## above 0.00000000 0.00000000 0.01290323 0.01523926## ambitions 0.00000000 0.00000000 0.00000000 0.00000000## areas 0.00000000 0.00000000 0.00000000 0.04571777## begins 0.01325732 0.01393922 0.01290323 0.04571777## biggest 0.01325732 0.00000000 0.01290323 0.00000000## burden 0.02651465 0.00000000 0.00000000 0.03047851## carbon 0.02651465 0.04181767 0.00000000 0.01523926## citizen 0.00000000 0.01393922 0.00000000 0.01523926## cleaner 0.02651465 0.00000000 0.02580645 0.00000000## cuba 0.00000000 0.08363535 0.00000000 0.01523926## customers 0.01325732 0.01393922 0.02580645 0.00000000## dangers 0.01325732 0.00000000 0.01290323 0.00000000## depend 0.00000000 0.00000000 0.00000000 0.04571777## deployment 0.01325732 0.01393922 0.03870968 0.00000000## destroyed 0.00000000 0.00000000 0.00000000 0.01523926## disarm 0.00000000 0.00000000 0.00000000 0.00000000## earned 0.02651465 0.04181767 0.01290323 0.01523926## failure 0.00000000 0.00000000 0.00000000 0.03047851## field 0.02651465 0.01393922 0.01290323 0.00000000## george 0.00000000 0.00000000 0.03870968 0.03047851## grateful 0.00000000 0.01393922 0.00000000 0.01523926## hands 0.02651465 0.00000000 0.01290323 0.01523926## here^s 0.01325732 0.04181767 0.01290323 0.00000000## hour 0.03977197 0.00000000 0.00000000 0.00000000## increased 0.00000000 0.00000000 0.01290323 0.01523926## isil 0.00000000 0.04181767 0.00000000 0.00000000## land 0.00000000 0.00000000 0.01290323 0.00000000## loopholes 0.02651465 0.04181767 0.01290323 0.00000000## munitions 0.03977197 0.00000000 0.00000000 0.00000000## names 0.01325732 0.01393922 0.02580645 0.01523926## officials 0.01325732 0.00000000 0.00000000 0.00000000## owners 0.01325732 0.01393922 0.00000000 0.00000000## payroll 0.00000000 0.00000000 0.02580645 0.01523926## permanent 0.00000000 0.00000000 0.00000000 0.00000000## play 0.00000000 0.02787845 0.05161290 0.00000000## pollution 0.02651465 0.01393922 0.01290323 0.01523926## prepared 0.01325732 0.00000000 0.01290323 0.01523926## presidency 0.01325732 0.02787845 0.02580645 0.01523926## press 0.00000000 0.00000000 0.00000000 0.01523926## prevention 0.02651465 0.00000000 0.02580645 0.01523926## prices 0.02651465 0.01393922 0.00000000 0.00000000## protecting 0.00000000 0.00000000 0.01290323 0.00000000## protection 0.00000000 0.00000000 0.03870968 0.01523926## relations 0.01325732 0.05575690 0.01290323 0.00000000## required 0.00000000 0.01393922 0.01290323 0.01523926## rule 0.00000000 0.00000000 0.05161290 0.00000000## sell 0.00000000 0.01393922 0.01290323 0.01523926## shape 0.00000000 0.02787845 0.00000000 0.01523926## simply 0.01325732 0.01393922 0.00000000 0.04571777## sound 0.00000000 0.00000000 0.00000000 0.00000000## stock 0.01325732 0.01393922 0.00000000 0.03047851## taliban 0.00000000 0.00000000 0.00000000 0.00000000## teacher 0.00000000 0.00000000 0.03870968 0.04571777## thousand 0.02651465 0.01393922 0.06451613 0.00000000## tools 0.00000000 0.04181767 0.00000000 0.00000000## tuition 0.00000000 0.00000000 0.06451613 0.03047851## universities 0.00000000 0.01393922 0.03870968 0.01523926## using 0.00000000 0.02787845 0.00000000 0.00000000## walk 0.00000000 0.01393922 0.05161290 0.03047851## wrong 0.02651465 0.01393922 0.01290323 0.00000000## you^ll 0.00000000 0.01393922 0.01290323 0.01523926## adding 0.01325732 0.00000000 0.00000000 0.00000000## agencies 0.01325732 0.01393922 0.00000000 0.00000000## agreements 0.00000000 0.00000000 0.01290323 0.00000000## aid 0.01325732 0.00000000 0.01290323 0.00000000## among 0.00000000 0.00000000 0.00000000 0.00000000## answer 0.00000000 0.00000000 0.00000000 0.00000000## authority 0.00000000 0.02787845 0.02580645 0.00000000## born 0.00000000 0.00000000 0.00000000 0.01523926## capital 0.01325732 0.00000000 0.00000000 0.00000000## center 0.01325732 0.00000000 0.00000000 0.01523926## charge 0.00000000 0.00000000 0.02580645 0.01523926## consumer 0.00000000 0.01393922 0.06451613 0.00000000## cooperation 0.03977197 0.02787845 0.01290323 0.00000000## cover 0.00000000 0.00000000 0.01290323 0.00000000## cutting 0.01325732 0.00000000 0.00000000 0.00000000## demands 0.01325732 0.00000000 0.01290323 0.00000000## directly 0.00000000 0.00000000 0.01290323 0.03047851## doubt 0.00000000 0.00000000 0.02580645 0.01523926## essential 0.00000000 0.00000000 0.00000000 0.00000000## faith-based 0.00000000 0.00000000 0.00000000 0.00000000## fewer 0.01325732 0.01393922 0.02580645 0.00000000## finish 0.01325732 0.02787845 0.01290323 0.01523926## forget 0.00000000 0.00000000 0.01290323 0.00000000## fuel 0.00000000 0.02787845 0.01290323 0.01523926## funds 0.00000000 0.00000000 0.00000000 0.00000000## grants 0.01325732 0.00000000 0.00000000 0.00000000## healthy 0.00000000 0.00000000 0.01290323 0.03047851## held 0.00000000 0.01393922 0.00000000 0.03047851## independent 0.01325732 0.00000000 0.00000000 0.00000000## influence 0.02651465 0.00000000 0.02580645 0.00000000## itself 0.00000000 0.01393922 0.00000000 0.00000000## joe 0.05302930 0.00000000 0.01290323 0.01523926## joseph 0.03977197 0.01393922 0.01290323 0.01523926## late 0.01325732 0.00000000 0.01290323 0.00000000## leads 0.01325732 0.02787845 0.01290323 0.00000000## lending 0.00000000 0.01393922 0.01290323 0.12191405## letter 0.00000000 0.01393922 0.00000000 0.04571777## lobbyists 0.00000000 0.01393922 0.00000000 0.00000000## majority 0.00000000 0.01393922 0.02580645 0.00000000## measures 0.00000000 0.00000000 0.00000000 0.00000000## naturalization 0.03977197 0.01393922 0.03870968 0.00000000## offensive 0.00000000 0.01393922 0.00000000 0.00000000## palestinian 0.00000000 0.00000000 0.00000000 0.00000000## partnership 0.05302930 0.00000000 0.03870968 0.00000000## paychecks 0.00000000 0.00000000 0.01290323 0.03047851## peaceful 0.00000000 0.00000000 0.01290323 0.00000000## per 0.00000000 0.05575690 0.00000000 0.01523926## planet 0.01325732 0.04181767 0.00000000 0.01523926## pledge 0.00000000 0.00000000 0.01290323 0.00000000## quickly 0.00000000 0.00000000 0.01290323 0.03047851## recently 0.01325732 0.00000000 0.02580645 0.00000000## reductions 0.02651465 0.00000000 0.00000000 0.00000000## released 0.00000000 0.00000000 0.00000000 0.01523926## review 0.00000000 0.00000000 0.01290323 0.04571777## reward 0.02651465 0.01393922 0.01290323 0.00000000## sector 0.05302930 0.00000000 0.01290323 0.01523926## senator 0.00000000 0.00000000 0.00000000 0.03047851## served 0.02651465 0.04181767 0.02580645 0.00000000## several 0.00000000 0.00000000 0.01290323 0.01523926## shared 0.01325732 0.00000000 0.03870968 0.00000000## showing 0.00000000 0.01393922 0.00000000 0.01523926## space 0.01325732 0.04181767 0.00000000 0.00000000## struggling 0.01325732 0.00000000 0.01290323 0.04571777## supported 0.01325732 0.00000000 0.01290323 0.00000000## surely 0.00000000 0.08363535 0.00000000 0.03047851## threaten 0.00000000 0.01393922 0.01290323 0.00000000## value 0.01325732 0.01393922 0.00000000 0.00000000## weeks 0.01325732 0.02787845 0.02580645 0.00000000## workforce 0.00000000 0.05575690 0.01290323 0.00000000## accept 0.01325732 0.01393922 0.00000000 0.01523926## added 0.02651465 0.02787845 0.01290323 0.00000000## anything 0.00000000 0.01393922 0.01290323 0.01523926## baghdad 0.00000000 0.00000000 0.00000000 0.00000000## base 0.00000000 0.02787845 0.01290323 0.01523926## benefit 0.00000000 0.01393922 0.00000000 0.00000000## bin 0.00000000 0.00000000 0.02580645 0.00000000## capacity 0.03977197 0.00000000 0.02580645 0.00000000## categories 0.01325732 0.01393922 0.01290323 0.01523926## civilians 0.01325732 0.00000000 0.00000000 0.00000000## complete 0.02651465 0.00000000 0.00000000 0.03047851## conditions 0.00000000 0.01393922 0.00000000 0.01523926## defeat 0.00000000 0.01393922 0.00000000 0.01523926## deserves 0.02651465 0.00000000 0.00000000 0.00000000## desire 0.00000000 0.00000000 0.00000000 0.00000000## distinguished 0.00000000 0.00000000 0.01290323 0.01523926## documents 0.00000000 0.00000000 0.00000000 0.01523926## drive 0.02651465 0.01393922 0.00000000 0.01523926## earmarks 0.00000000 0.00000000 0.00000000 0.01523926## effects 0.01325732 0.00000000 0.02580645 0.01523926## emergency 0.01325732 0.00000000 0.00000000 0.00000000## empower 0.00000000 0.00000000 0.00000000 0.00000000## ends 0.00000000 0.02787845 0.01290323 0.01523926## february 0.01325732 0.00000000 0.00000000 0.01523926## forced 0.00000000 0.00000000 0.02580645 0.01523926## forge 0.02651465 0.00000000 0.00000000 0.03047851## four 0.00000000 0.00000000 0.00000000 0.01523926## general 0.00000000 0.00000000 0.05161290 0.03047851## gift 0.00000000 0.01393922 0.00000000 0.00000000## girls 0.00000000 0.00000000 0.00000000 0.00000000## goes 0.00000000 0.00000000 0.00000000 0.00000000## goods 0.01325732 0.00000000 0.02580645 0.01523926## gov 0.00000000 0.00000000 0.00000000 0.01523926## governments 0.00000000 0.00000000 0.00000000 0.00000000## gun 0.09280127 0.00000000 0.00000000 0.00000000## having 0.01325732 0.02787845 0.00000000 0.01523926## high-speed 0.01325732 0.00000000 0.01290323 0.00000000## impact 0.01325732 0.00000000 0.02580645 0.01523926## includes 0.02651465 0.00000000 0.01290323 0.04571777## increasing 0.01325732 0.00000000 0.00000000 0.00000000## knew 0.00000000 0.00000000 0.01290323 0.03047851## laden 0.00000000 0.00000000 0.02580645 0.00000000## leaving 0.00000000 0.00000000 0.02580645 0.00000000## led 0.01325732 0.00000000 0.03870968 0.01523926## massive 0.01325732 0.01393922 0.00000000 0.03047851## operations 0.00000000 0.00000000 0.00000000 0.00000000## pakistan 0.00000000 0.01393922 0.01290323 0.03047851## passing 0.03977197 0.01393922 0.00000000 0.00000000## potential 0.01325732 0.02787845 0.01290323 0.00000000## powerful 0.02651465 0.00000000 0.00000000 0.01523926## priority 0.02651465 0.02787845 0.02580645 0.00000000## project 0.00000000 0.00000000 0.00000000 0.00000000## proposals 0.03977197 0.01393922 0.00000000 0.00000000## protections 0.01325732 0.01393922 0.01290323 0.00000000## putting 0.01325732 0.01393922 0.01290323 0.00000000## reading 0.00000000 0.01393922 0.00000000 0.00000000## reflect 0.00000000 0.02787845 0.00000000 0.00000000## renew 0.00000000 0.00000000 0.00000000 0.00000000## senior 0.01325732 0.00000000 0.01290323 0.00000000## son 0.00000000 0.02787845 0.00000000 0.00000000## stake 0.00000000 0.01393922 0.03870968 0.00000000## stands 0.01325732 0.02787845 0.01290323 0.00000000## streets 0.02651465 0.01393922 0.01290323 0.01523926## supports 0.01325732 0.00000000 0.00000000 0.00000000## tens 0.02651465 0.00000000 0.00000000 0.00000000## thought 0.01325732 0.01393922 0.02580645 0.01523926## unemployed 0.01325732 0.00000000 0.00000000 0.00000000## urgent 0.01325732 0.00000000 0.01290323 0.01523926## veto 0.00000000 0.04181767 0.00000000 0.00000000## vision 0.00000000 0.04181767 0.00000000 0.01523926## vulnerable 0.00000000 0.01393922 0.00000000 0.00000000## waiting 0.02651465 0.01393922 0.00000000 0.01523926## wants 0.00000000 0.01393922 0.01290323 0.01523926## waste 0.01325732 0.00000000 0.02580645 0.03047851## wealthiest 0.05302930 0.00000000 0.02580645 0.01523926## west 0.00000000 0.06969612 0.00000000 0.00000000## accountable 0.00000000 0.00000000 0.02580645 0.06095703## achieved 0.00000000 0.00000000 0.00000000 0.00000000## addiction 0.00000000 0.00000000 0.00000000 0.00000000## addresses 0.01325732 0.01393922 0.01290323 0.01523926## affordability 0.02651465 0.02787845 0.01290323 0.01523926## alliances 0.01325732 0.01393922 0.01290323 0.01523926## arguments 0.00000000 0.02787845 0.00000000 0.00000000## barack 0.01325732 0.01393922 0.01290323 0.01523926## believed 0.00000000 0.05575690 0.01290323 0.00000000## bipartisanship 0.00000000 0.01393922 0.01290323 0.00000000## car 0.00000000 0.01393922 0.01290323 0.03047851## citizenship 0.02651465 0.00000000 0.02580645 0.00000000## coal 0.00000000 0.00000000 0.00000000 0.01523926## commit 0.00000000 0.02787845 0.00000000 0.01523926## communications 0.00000000 0.01393922 0.01290323 0.00000000## confronting 0.00000000 0.00000000 0.00000000 0.00000000## conscience 0.00000000 0.00000000 0.00000000 0.01523926## continuing 0.01325732 0.01393922 0.01290323 0.01523926## corporations 0.00000000 0.01393922 0.00000000 0.03047851## cory 0.00000000 0.00000000 0.00000000 0.00000000## council 0.00000000 0.00000000 0.00000000 0.00000000## counterterrorism 0.03977197 0.00000000 0.01290323 0.00000000## deal 0.00000000 0.00000000 0.02580645 0.00000000## delivered 0.00000000 0.01393922 0.00000000 0.01523926## destiny 0.01325732 0.00000000 0.01290323 0.01523926## direct 0.02651465 0.01393922 0.00000000 0.01523926## diseases 0.00000000 0.01393922 0.00000000 0.01523926## dramatically 0.00000000 0.00000000 0.00000000 0.01523926## efficiency 0.01325732 0.00000000 0.01290323 0.01523926## ended 0.00000000 0.00000000 0.00000000 0.00000000## era 0.00000000 0.01393922 0.01290323 0.03047851## extra 0.00000000 0.00000000 0.00000000 0.00000000## faced 0.00000000 0.00000000 0.01290323 0.00000000## facilities 0.00000000 0.01393922 0.00000000 0.01523926## facts 0.00000000 0.01393922 0.01290323 0.01523926## fail 0.00000000 0.00000000 0.02580645 0.00000000## fast 0.00000000 0.00000000 0.01290323 0.00000000## foundation 0.01325732 0.02787845 0.00000000 0.04571777## g 0.00000000 0.00000000 0.00000000 0.04571777## gay 0.01325732 0.04181767 0.01290323 0.00000000## globe 0.00000000 0.04181767 0.01290323 0.01523926## grew 0.00000000 0.01393922 0.00000000 0.00000000## grows 0.00000000 0.00000000 0.00000000 0.00000000## guests 0.00000000 0.00000000 0.01290323 0.00000000## harder 0.01325732 0.01393922 0.00000000 0.00000000## hardship 0.01325732 0.01393922 0.00000000 0.01523926## honest 0.02651465 0.00000000 0.00000000 0.01523926## hours 0.02651465 0.00000000 0.00000000 0.00000000## immigrants 0.01325732 0.01393922 0.00000000 0.00000000## innocent 0.00000000 0.00000000 0.02580645 0.00000000## insist 0.01325732 0.00000000 0.00000000 0.00000000## kept 0.02651465 0.01393922 0.02580645 0.00000000## key 0.00000000 0.00000000 0.00000000 0.00000000## launch 0.02651465 0.00000000 0.00000000 0.01523926## launched 0.00000000 0.02787845 0.00000000 0.03047851## lawsuits 0.00000000 0.00000000 0.00000000 0.00000000## learned 0.00000000 0.01393922 0.02580645 0.01523926## lebanon 0.00000000 0.00000000 0.00000000 0.00000000## locations 0.01325732 0.01393922 0.01290323 0.01523926## low 0.01325732 0.00000000 0.01290323 0.00000000## low-income 0.01325732 0.01393922 0.00000000 0.00000000## matters 0.01325732 0.02787845 0.00000000 0.00000000## measure 0.00000000 0.00000000 0.00000000 0.01523926## moral 0.00000000 0.00000000 0.01290323 0.00000000## network 0.01325732 0.00000000 0.01290323 0.00000000## pages 0.00000000 0.00000000 0.00000000 0.00000000## partner 0.03977197 0.00000000 0.00000000 0.00000000## playing 0.01325732 0.01393922 0.01290323 0.00000000## premiums 0.00000000 0.01393922 0.00000000 0.01523926## price 0.01325732 0.00000000 0.01290323 0.04571777## principle 0.00000000 0.01393922 0.00000000 0.01523926## promised 0.00000000 0.02787845 0.00000000 0.00000000## pursuing 0.00000000 0.00000000 0.00000000 0.00000000## radical 0.00000000 0.00000000 0.00000000 0.00000000## ready 0.02651465 0.01393922 0.00000000 0.00000000## regimes 0.00000000 0.00000000 0.00000000 0.00000000## report 0.02651465 0.01393922 0.00000000 0.00000000## robert 0.02651465 0.00000000 0.01290323 0.00000000## rural 0.01325732 0.00000000 0.01290323 0.00000000## saving 0.01325732 0.01393922 0.01290323 0.00000000## shores 0.01325732 0.04181767 0.01290323 0.00000000## shot 0.01325732 0.04181767 0.01290323 0.00000000## spanish 0.00000000 0.00000000 0.00000000 0.01523926## standard 0.00000000 0.00000000 0.01290323 0.00000000## status 0.01325732 0.00000000 0.01290323 0.00000000## subjects 0.01325732 0.01393922 0.01290323 0.01523926## subsidies 0.01325732 0.00000000 0.02580645 0.00000000## suffering 0.00000000 0.00000000 0.00000000 0.03047851## supply 0.00000000 0.00000000 0.01290323 0.01523926## taxpayer 0.01325732 0.00000000 0.01290323 0.04571777## teaching 0.00000000 0.00000000 0.02580645 0.01523926## terrible 0.00000000 0.00000000 0.00000000 0.01523926## trained 0.01325732 0.02787845 0.01290323 0.00000000## transition 0.01325732 0.02787845 0.01290323 0.00000000## transparency 0.00000000 0.01393922 0.00000000 0.06095703## travel 0.01325732 0.00000000 0.00000000 0.00000000## truth 0.00000000 0.02787845 0.01290323 0.01523926## unprecedented 0.00000000 0.00000000 0.00000000 0.01523926## water 0.01325732 0.00000000 0.01290323 0.00000000## whose 0.02651465 0.00000000 0.00000000 0.01523926## wife 0.02651465 0.01393922 0.01290323 0.00000000## write 0.00000000 0.06969612 0.01290323 0.00000000## wrote 0.01325732 0.02787845 0.00000000 0.00000000## yemen 0.02651465 0.00000000 0.01290323 0.00000000## younger 0.00000000 0.01393922 0.00000000 0.00000000## advantage 0.00000000 0.00000000 0.01290323 0.01523926## announce 0.01325732 0.00000000 0.01290323 0.01523926## army 0.00000000 0.00000000 0.01290323 0.00000000## aside 0.01325732 0.01393922 0.00000000 0.01523926## attacked 0.01325732 0.00000000 0.00000000 0.00000000## attention 0.00000000 0.00000000 0.00000000 0.00000000## auto 0.00000000 0.01393922 0.02580645 0.04571777## baby 0.00000000 0.00000000 0.00000000 0.00000000## bank 0.01325732 0.01393922 0.01290323 0.04571777## billions 0.01325732 0.00000000 0.01290323 0.03047851## body 0.01325732 0.01393922 0.00000000 0.00000000## bridges 0.02651465 0.01393922 0.01290323 0.01523926## brings 0.00000000 0.00000000 0.01290323 0.00000000## calling 0.00000000 0.00000000 0.00000000 0.00000000## captured 0.00000000 0.00000000 0.00000000 0.01523926## carry 0.00000000 0.00000000 0.00000000 0.01523926## case 0.00000000 0.01393922 0.00000000 0.01523926## cells 0.00000000 0.00000000 0.01290323 0.00000000## chaos 0.01325732 0.00000000 0.00000000 0.00000000## childcare 0.00000000 0.12545302 0.00000000 0.00000000## claims 0.00000000 0.00000000 0.00000000 0.01523926## colombia 0.00000000 0.00000000 0.01290323 0.00000000## commitments 0.00000000 0.00000000 0.01290323 0.00000000## consumers 0.02651465 0.00000000 0.02580645 0.01523926## continued 0.01325732 0.00000000 0.00000000 0.03047851## corps 0.00000000 0.00000000 0.01290323 0.00000000## couldn^t 0.01325732 0.00000000 0.03870968 0.01523926## courts 0.00000000 0.00000000 0.00000000 0.00000000## d 0.03977197 0.00000000 0.00000000 0.00000000## decency 0.00000000 0.01393922 0.00000000 0.01523926## defeated 0.00000000 0.00000000 0.01290323 0.00000000## democrat 0.00000000 0.00000000 0.01290323 0.00000000## denied 0.01325732 0.01393922 0.01290323 0.00000000## dime 0.01325732 0.00000000 0.00000000 0.04571777## diploma 0.02651465 0.00000000 0.01290323 0.03047851## discipline 0.00000000 0.00000000 0.00000000 0.03047851## dollar 0.05302930 0.00000000 0.00000000 0.03047851## doubling 0.00000000 0.00000000 0.05161290 0.00000000## emissions 0.02651465 0.04181767 0.00000000 0.01523926## enterprise 0.01325732 0.00000000 0.00000000 0.03047851## equipment 0.00000000 0.00000000 0.01290323 0.01523926## everywhere 0.00000000 0.01393922 0.00000000 0.01523926## experience 0.01325732 0.01393922 0.02580645 0.00000000## factories 0.00000000 0.00000000 0.03870968 0.01523926## factory 0.01325732 0.00000000 0.03870968 0.00000000## failed 0.00000000 0.00000000 0.00000000 0.01523926## fought 0.01325732 0.00000000 0.01290323 0.00000000## freeze 0.00000000 0.00000000 0.00000000 0.01523926## gain 0.00000000 0.00000000 0.00000000 0.00000000## governor 0.02651465 0.00000000 0.00000000 0.00000000## gpo 0.00000000 0.00000000 0.00000000 0.00000000## graduate 0.03977197 0.02787845 0.02580645 0.00000000## grown 0.00000000 0.00000000 0.01290323 0.01523926## gulf 0.00000000 0.01393922 0.02580645 0.00000000## h 0.00000000 0.00000000 0.01290323 0.01523926## happened 0.00000000 0.00000000 0.01290323 0.00000000## hardest 0.01325732 0.01393922 0.01290323 0.01523926## haven 0.00000000 0.01393922 0.00000000 0.00000000## haven^t 0.00000000 0.01393922 0.01290323 0.03047851## havens 0.00000000 0.00000000 0.00000000 0.03047851## hidden 0.00000000 0.00000000 0.00000000 0.00000000## high-quality 0.03977197 0.01393922 0.00000000 0.00000000## high-tech 0.03977197 0.00000000 0.05161290 0.00000000## hiring 0.01325732 0.01393922 0.03870968 0.00000000## historic 0.01325732 0.01393922 0.00000000 0.03047851## homeowners 0.01325732 0.00000000 0.02580645 0.00000000## hopes 0.00000000 0.01393922 0.00000000 0.00000000## huge 0.01325732 0.00000000 0.03870968 0.00000000## hundred 0.02651465 0.00000000 0.03870968 0.00000000## ideals 0.02651465 0.00000000 0.00000000 0.00000000## independence 0.01325732 0.00000000 0.00000000 0.00000000## india 0.00000000 0.00000000 0.00000000 0.00000000## individual 0.01325732 0.00000000 0.00000000 0.00000000## islamic 0.00000000 0.02787845 0.00000000 0.00000000## japan 0.01325732 0.01393922 0.00000000 0.01523926## killers 0.00000000 0.00000000 0.00000000 0.00000000## language 0.00000000 0.00000000 0.00000000 0.01523926## lasting 0.01325732 0.00000000 0.00000000 0.03047851## legal 0.03977197 0.01393922 0.00000000 0.00000000## lie 0.00000000 0.01393922 0.00000000 0.01523926## march 0.00000000 0.01393922 0.00000000 0.00000000## meeting 0.01325732 0.01393922 0.00000000 0.00000000## missile 0.02651465 0.00000000 0.00000000 0.00000000## monday 0.00000000 0.00000000 0.00000000 0.00000000## moving 0.00000000 0.00000000 0.03870968 0.01523926## n 0.00000000 0.00000000 0.00000000 0.00000000## named 0.05302930 0.00000000 0.00000000 0.00000000## news 0.02651465 0.01393922 0.00000000 0.00000000## officer 0.02651465 0.01393922 0.02580645 0.00000000## opened 0.01325732 0.00000000 0.02580645 0.00000000## owe 0.00000000 0.01393922 0.01290323 0.00000000## pace 0.01325732 0.02787845 0.00000000 0.00000000## peninsula 0.01325732 0.00000000 0.00000000 0.00000000## poor 0.01325732 0.00000000 0.01290323 0.00000000## practices 0.00000000 0.01393922 0.02580645 0.01523926## president^s 0.01325732 0.00000000 0.01290323 0.01523926## presidents 0.00000000 0.00000000 0.01290323 0.00000000## pressure 0.01325732 0.00000000 0.01290323 0.00000000## privilege 0.00000000 0.00000000 0.00000000 0.01523926## protects 0.01325732 0.01393922 0.00000000 0.00000000## publishing 0.00000000 0.00000000 0.00000000 0.00000000## qaida^s 0.00000000 0.00000000 0.01290323 0.00000000## rather 0.01325732 0.02787845 0.00000000 0.00000000## read 0.02651465 0.00000000 0.00000000 0.01523926## refinancing 0.02651465 0.00000000 0.03870968 0.01523926## refuse 0.00000000 0.00000000 0.01290323 0.01523926## reject 0.00000000 0.01393922 0.00000000 0.01523926## risks 0.00000000 0.01393922 0.00000000 0.00000000## roads 0.01325732 0.00000000 0.02580645 0.01523926## seeing 0.01325732 0.00000000 0.00000000 0.00000000## sending 0.00000000 0.02787845 0.01290323 0.01523926## signed 0.01325732 0.01393922 0.01290323 0.00000000## solution 0.02651465 0.00000000 0.00000000 0.00000000## teach 0.00000000 0.00000000 0.02580645 0.00000000## town 0.00000000 0.01393922 0.03870968 0.01523926## transcript 0.00000000 0.00000000 0.00000000 0.01523926## tyranny 0.00000000 0.00000000 0.01290323 0.00000000## ukraine 0.00000000 0.02787845 0.00000000 0.00000000## uninsured 0.00000000 0.01393922 0.00000000 0.00000000## uranium 0.00000000 0.00000000 0.00000000 0.00000000## violent 0.01325732 0.01393922 0.00000000 0.00000000## voice 0.00000000 0.01393922 0.00000000 0.00000000## voices 0.00000000 0.00000000 0.00000000 0.00000000## volume 0.00000000 0.00000000 0.00000000 0.00000000## wars 0.00000000 0.01393922 0.00000000 0.01523926## watch 0.00000000 0.00000000 0.00000000 0.01523926## watching 0.00000000 0.00000000 0.02580645 0.04571777## weapon 0.01325732 0.00000000 0.01290323 0.00000000## went 0.00000000 0.01393922 0.01290323 0.03047851## who^s 0.02651465 0.02787845 0.01290323 0.00000000## worthy 0.01325732 0.02787845 0.00000000 0.03047851## www 0.00000000 0.00000000 0.00000000 0.00000000## absolutely 0.01325732 0.00000000 0.01290323 0.04571777## accounted 0.00000000 0.00000000 0.00000000 0.00000000## acted 0.00000000 0.00000000 0.01290323 0.00000000## acts 0.01325732 0.00000000 0.00000000 0.00000000## addicted 0.00000000 0.00000000 0.00000000 0.00000000## agreed 0.02651465 0.00000000 0.02580645 0.01523926## allen 0.00000000 0.00000000 0.00000000 0.00000000## allowing 0.00000000 0.01393922 0.00000000 0.00000000## ambitious 0.00000000 0.01393922 0.00000000 0.00000000## announcing 0.05302930 0.00000000 0.01290323 0.00000000## apart 0.01325732 0.01393922 0.00000000 0.00000000## argue 0.00000000 0.00000000 0.00000000 0.00000000## battle 0.00000000 0.00000000 0.01290323 0.00000000## belief 0.00000000 0.00000000 0.00000000 0.00000000## boehner 0.01325732 0.01393922 0.01290323 0.00000000## boys 0.00000000 0.00000000 0.00000000 0.00000000## breakthroughs 0.00000000 0.00000000 0.00000000 0.01523926## broader 0.00000000 0.01393922 0.01290323 0.00000000## buildings 0.02651465 0.00000000 0.01290323 0.03047851## burma 0.02651465 0.00000000 0.02580645 0.00000000## cases 0.00000000 0.00000000 0.01290323 0.01523926## causes 0.00000000 0.00000000 0.00000000 0.01523926## cheney 0.00000000 0.00000000 0.00000000 0.00000000## childhood 0.02651465 0.00000000 0.00000000 0.01523926## children^s 0.00000000 0.01393922 0.00000000 0.03047851## cities 0.00000000 0.01393922 0.00000000 0.01523926## classroom 0.00000000 0.01393922 0.01290323 0.01523926## commanders 0.00000000 0.00000000 0.00000000 0.00000000## compilation 0.00000000 0.00000000 0.00000000 0.00000000## concern 0.01325732 0.00000000 0.00000000 0.04571777## conservation 0.00000000 0.00000000 0.01290323 0.00000000## consider 0.01325732 0.00000000 0.00000000 0.00000000## culture 0.00000000 0.00000000 0.00000000 0.00000000## decision 0.00000000 0.01393922 0.00000000 0.00000000## decisive 0.00000000 0.00000000 0.01290323 0.00000000## declared 0.01325732 0.00000000 0.00000000 0.00000000## depression 0.00000000 0.00000000 0.02580645 0.01523926## desk 0.00000000 0.01393922 0.01290323 0.00000000## despite 0.00000000 0.00000000 0.00000000 0.00000000## determination 0.01325732 0.01393922 0.00000000 0.01523926## determine 0.00000000 0.00000000 0.00000000 0.01523926## discretionary 0.00000000 0.00000000 0.00000000 0.00000000## dominate 0.00000000 0.00000000 0.00000000 0.00000000## doubled 0.01325732 0.01393922 0.01290323 0.00000000## dropped 0.00000000 0.00000000 0.00000000 0.00000000## e 0.00000000 0.00000000 0.02580645 0.03047851## earlier 0.01325732 0.00000000 0.01290323 0.00000000## efficient 0.01325732 0.00000000 0.01290323 0.03047851## ending 0.00000000 0.02787845 0.01290323 0.01523926## exchange 0.00000000 0.00000000 0.01290323 0.00000000## expire 0.00000000 0.00000000 0.00000000 0.00000000## extremism 0.00000000 0.01393922 0.00000000 0.03047851## f 0.01325732 0.00000000 0.00000000 0.00000000## fallen 0.01325732 0.01393922 0.00000000 0.01523926## farmers 0.00000000 0.00000000 0.01290323 0.00000000## fears 0.00000000 0.04181767 0.00000000 0.00000000## felt 0.00000000 0.00000000 0.02580645 0.00000000## fields 0.00000000 0.00000000 0.00000000 0.01523926## final 0.00000000 0.00000000 0.01290323 0.00000000## fixing 0.01325732 0.00000000 0.00000000 0.00000000## gentlemen 0.00000000 0.00000000 0.00000000 0.00000000## goals 0.00000000 0.01393922 0.00000000 0.00000000## guantanamo 0.00000000 0.01393922 0.00000000 0.04571777## guarantee 0.02651465 0.02787845 0.01290323 0.00000000## hide 0.00000000 0.00000000 0.00000000 0.01523926## however 0.00000000 0.00000000 0.00000000 0.00000000## ideology 0.00000000 0.01393922 0.00000000 0.00000000## ignore 0.00000000 0.00000000 0.00000000 0.03047851## immediate 0.00000000 0.01393922 0.01290323 0.01523926## improving 0.01325732 0.01393922 0.00000000 0.00000000## incomes 0.02651465 0.01393922 0.02580645 0.00000000## intentions 0.00000000 0.00000000 0.00000000 0.01523926## investing 0.01325732 0.01393922 0.01290323 0.00000000## iranian 0.00000000 0.00000000 0.00000000 0.00000000## ladies 0.00000000 0.00000000 0.00000000 0.00000000## laid 0.00000000 0.01393922 0.02580645 0.01523926## large 0.00000000 0.01393922 0.00000000 0.01523926## liability 0.00000000 0.00000000 0.00000000 0.00000000## limit 0.00000000 0.00000000 0.01290323 0.00000000## listen 0.00000000 0.00000000 0.00000000 0.00000000## losing 0.00000000 0.00000000 0.01290323 0.00000000## main 0.00000000 0.00000000 0.01290323 0.00000000## manufacturers 0.02651465 0.01393922 0.03870968 0.00000000## maybe 0.00000000 0.00000000 0.01290323 0.01523926## mayor 0.00000000 0.00000000 0.00000000 0.00000000## mind 0.01325732 0.02787845 0.00000000 0.00000000## movement 0.00000000 0.01393922 0.00000000 0.00000000## nato 0.00000000 0.01393922 0.00000000 0.00000000## negotiations 0.01325732 0.01393922 0.00000000 0.00000000## neither 0.00000000 0.00000000 0.01290323 0.00000000## night 0.01325732 0.02787845 0.00000000 0.00000000## obligations 0.05302930 0.00000000 0.01290323 0.00000000## offered 0.00000000 0.00000000 0.01290323 0.00000000## ordered 0.02651465 0.00000000 0.01290323 0.01523926## ours 0.00000000 0.01393922 0.01290323 0.00000000## owner 0.00000000 0.01393922 0.01290323 0.00000000## panama 0.00000000 0.00000000 0.01290323 0.00000000## parent 0.00000000 0.00000000 0.00000000 0.03047851## paycheck 0.01325732 0.01393922 0.01290323 0.00000000## pennsylvania 0.00000000 0.00000000 0.00000000 0.00000000## pockets 0.02651465 0.01393922 0.00000000 0.01523926## preventive 0.00000000 0.00000000 0.00000000 0.01523926## prime 0.00000000 0.00000000 0.00000000 0.00000000## professionals 0.00000000 0.00000000 0.01290323 0.01523926## promises 0.02651465 0.00000000 0.00000000 0.01523926## provided 0.00000000 0.01393922 0.00000000 0.03047851## providers 0.00000000 0.01393922 0.00000000 0.01523926## provides 0.00000000 0.00000000 0.00000000 0.01523926## realize 0.01325732 0.00000000 0.00000000 0.00000000## rebekah 0.00000000 0.11151380 0.00000000 0.00000000## recent 0.00000000 0.00000000 0.00000000 0.00000000## redtape 0.01325732 0.00000000 0.02580645 0.00000000## regions 0.02651465 0.00000000 0.00000000 0.00000000## reliable 0.00000000 0.00000000 0.00000000 0.00000000## response 0.01325732 0.02787845 0.00000000 0.00000000## retreat 0.00000000 0.00000000 0.00000000 0.00000000## sergeant 0.00000000 0.00000000 0.00000000 0.00000000## serving 0.01325732 0.00000000 0.02580645 0.00000000## shown 0.00000000 0.00000000 0.00000000 0.00000000## significant 0.00000000 0.00000000 0.00000000 0.01523926## sit 0.00000000 0.01393922 0.01290323 0.00000000## situation 0.00000000 0.00000000 0.01290323 0.01523926## slow 0.02651465 0.01393922 0.00000000 0.00000000## someone 0.00000000 0.01393922 0.00000000 0.01523926## sometimes 0.00000000 0.00000000 0.01290323 0.00000000## speed 0.01325732 0.00000000 0.01290323 0.00000000## stability 0.00000000 0.00000000 0.00000000 0.01523926## stood 0.00000000 0.01393922 0.00000000 0.00000000## stories 0.00000000 0.00000000 0.00000000 0.01523926## strategic 0.00000000 0.00000000 0.00000000 0.00000000## study 0.02651465 0.00000000 0.01290323 0.00000000## sudden 0.01325732 0.00000000 0.00000000 0.00000000## supplies 0.00000000 0.00000000 0.01290323 0.00000000## surplus 0.00000000 0.00000000 0.00000000 0.01523926## surveillance 0.00000000 0.02787845 0.00000000 0.00000000## sustain 0.00000000 0.00000000 0.00000000 0.01523926## team 0.00000000 0.00000000 0.02580645 0.01523926## temporary 0.00000000 0.00000000 0.01290323 0.00000000## though 0.01325732 0.00000000 0.00000000 0.03047851## tired 0.02651465 0.01393922 0.00000000 0.00000000## trucks 0.01325732 0.00000000 0.01290323 0.01523926## turning 0.00000000 0.01393922 0.00000000 0.00000000## ultimately 0.00000000 0.02787845 0.01290323 0.01523926## unit 0.00000000 0.00000000 0.09032258 0.00000000## usama 0.00000000 0.00000000 0.01290323 0.00000000## w 0.02651465 0.00000000 0.02580645 0.00000000## weekly 0.00000000 0.00000000 0.00000000 0.00000000## word 0.02651465 0.00000000 0.00000000 0.00000000## -year 0.01325732 0.00000000 0.00000000 0.01523926## abandon 0.00000000 0.01393922 0.00000000 0.00000000## abuse 0.00000000 0.01393922 0.00000000 0.03047851## active 0.00000000 0.00000000 0.00000000 0.00000000## actually 0.02651465 0.01393922 0.00000000 0.00000000## african 0.00000000 0.00000000 0.00000000 0.00000000## agency 0.00000000 0.01393922 0.02580645 0.00000000## allows 0.00000000 0.00000000 0.00000000 0.00000000## amazing 0.00000000 0.02787845 0.00000000 0.00000000## amid 0.00000000 0.00000000 0.00000000 0.03047851## arrived 0.02651465 0.00000000 0.00000000 0.03047851## assembly 0.00000000 0.01393922 0.01290323 0.01523926## avoid 0.00000000 0.01393922 0.01290323 0.01523926## balance 0.00000000 0.00000000 0.00000000 0.03047851## balanced 0.01325732 0.00000000 0.00000000 0.00000000## battles 0.00000000 0.01393922 0.00000000 0.00000000## bay 0.00000000 0.01393922 0.00000000 0.04571777## birth 0.01325732 0.00000000 0.00000000 0.00000000## bold 0.00000000 0.02787845 0.00000000 0.01523926## bottom 0.00000000 0.00000000 0.02580645 0.00000000## bridge 0.00000000 0.01393922 0.02580645 0.00000000## broad 0.01325732 0.02787845 0.00000000 0.00000000## brothers 0.00000000 0.00000000 0.00000000 0.00000000## buffett 0.00000000 0.00000000 0.05161290 0.00000000## bush 0.00000000 0.00000000 0.02580645 0.00000000## buying 0.02651465 0.00000000 0.00000000 0.00000000## california 0.00000000 0.01393922 0.00000000 0.00000000## camps 0.00000000 0.00000000 0.00000000 0.00000000## carolina 0.01325732 0.00000000 0.01290323 0.03047851## ceo 0.03977197 0.01393922 0.01290323 0.00000000## chambers 0.01325732 0.00000000 0.01290323 0.00000000## charged 0.00000000 0.00000000 0.02580645 0.00000000## charter 0.00000000 0.00000000 0.00000000 0.03047851## cheaper 0.01325732 0.00000000 0.02580645 0.00000000## conduct 0.00000000 0.00000000 0.00000000 0.00000000## corruption 0.00000000 0.00000000 0.00000000 0.00000000## creates 0.02651465 0.00000000 0.02580645 0.01523926## criminals 0.02651465 0.00000000 0.00000000 0.00000000## crucial 0.00000000 0.00000000 0.00000000 0.00000000## cyber 0.02651465 0.02787845 0.01290323 0.01523926## dad 0.00000000 0.00000000 0.00000000 0.00000000## decent 0.01325732 0.00000000 0.00000000 0.00000000## dedication 0.03977197 0.00000000 0.01290323 0.01523926## deeply 0.01325732 0.00000000 0.00000000 0.00000000## defeating 0.01325732 0.00000000 0.00000000 0.00000000## degree 0.02651465 0.00000000 0.01290323 0.00000000## dependence 0.00000000 0.01393922 0.00000000 0.01523926## dependent 0.00000000 0.00000000 0.00000000 0.00000000## destroy 0.00000000 0.01393922 0.01290323 0.00000000## dictator 0.00000000 0.00000000 0.00000000 0.00000000## directed 0.00000000 0.00000000 0.00000000 0.00000000## division 0.00000000 0.00000000 0.00000000 0.00000000## doctor 0.00000000 0.00000000 0.00000000 0.00000000## door 0.00000000 0.01393922 0.00000000 0.00000000## earmark 0.00000000 0.00000000 0.00000000 0.00000000## educate 0.02651465 0.00000000 0.00000000 0.01523926## effect 0.01325732 0.00000000 0.01290323 0.00000000## egypt 0.02651465 0.00000000 0.00000000 0.00000000## electric 0.00000000 0.00000000 0.00000000 0.00000000## enforce 0.00000000 0.00000000 0.00000000 0.00000000## engineers 0.01325732 0.00000000 0.00000000 0.00000000## entrepreneur 0.00000000 0.00000000 0.01290323 0.00000000## events 0.00000000 0.01393922 0.01290323 0.00000000## exactly 0.00000000 0.01393922 0.01290323 0.00000000## experts 0.01325732 0.00000000 0.01290323 0.00000000## export 0.00000000 0.01393922 0.00000000 0.00000000## failing 0.00000000 0.00000000 0.00000000 0.00000000## fbi 0.00000000 0.00000000 0.00000000 0.00000000## feed 0.01325732 0.00000000 0.00000000 0.00000000## finance 0.00000000 0.00000000 0.00000000 0.01523926## founders 0.00000000 0.00000000 0.00000000 0.00000000## fraud 0.00000000 0.00000000 0.03870968 0.03047851## frivolous 0.00000000 0.00000000 0.00000000 0.00000000## fundamental 0.02651465 0.00000000 0.00000000 0.00000000## funded 0.00000000 0.00000000 0.00000000 0.00000000## gains 0.00000000 0.00000000 0.00000000 0.01523926## game 0.00000000 0.01393922 0.00000000 0.00000000## gather 0.01325732 0.00000000 0.01290323 0.00000000## girl 0.01325732 0.00000000 0.00000000 0.01523926## grandchildren 0.00000000 0.00000000 0.00000000 0.00000000## guide 0.01325732 0.00000000 0.01290323 0.00000000## harm 0.00000000 0.01393922 0.00000000 0.01523926## heard 0.00000000 0.02787845 0.00000000 0.00000000## holding 0.02651465 0.00000000 0.01290323 0.00000000## honored 0.00000000 0.01393922 0.00000000 0.00000000## hospitals 0.00000000 0.00000000 0.00000000 0.00000000## humanity 0.00000000 0.00000000 0.00000000 0.00000000## i^d 0.00000000 0.00000000 0.00000000 0.01523926## imagine 0.00000000 0.02787845 0.01290323 0.01523926## increases 0.00000000 0.00000000 0.00000000 0.01523926## incredible 0.00000000 0.00000000 0.01290323 0.01523926## inequality 0.01325732 0.01393922 0.01290323 0.00000000## inflation 0.00000000 0.01393922 0.00000000 0.00000000## innovative 0.00000000 0.00000000 0.00000000 0.01523926## intimidate 0.00000000 0.00000000 0.00000000 0.00000000## iran^s 0.00000000 0.00000000 0.01290323 0.00000000## joined 0.00000000 0.00000000 0.01290323 0.00000000## judges 0.00000000 0.00000000 0.00000000 0.00000000## keeps 0.00000000 0.01393922 0.01290323 0.00000000## libya 0.02651465 0.00000000 0.00000000 0.00000000## limits 0.00000000 0.00000000 0.00000000 0.00000000## lines 0.00000000 0.01393922 0.00000000 0.03047851## loan 0.00000000 0.00000000 0.00000000 0.03047851## madam 0.00000000 0.00000000 0.00000000 0.01523926## meanwhile 0.00000000 0.00000000 0.02580645 0.00000000## medicines 0.00000000 0.00000000 0.00000000 0.00000000## mentors 0.00000000 0.00000000 0.00000000 0.00000000## methods 0.00000000 0.00000000 0.00000000 0.00000000## minority 0.00000000 0.00000000 0.00000000 0.00000000## modern 0.03977197 0.01393922 0.00000000 0.00000000## modernization 0.00000000 0.00000000 0.02580645 0.01523926## mortgages 0.00000000 0.00000000 0.03870968 0.01523926## muslim 0.00000000 0.00000000 0.00000000 0.00000000## operatives 0.00000000 0.00000000 0.01290323 0.00000000## ordinary 0.00000000 0.00000000 0.00000000 0.03047851## organizations 0.00000000 0.00000000 0.00000000 0.00000000## outcome 0.00000000 0.00000000 0.01290323 0.00000000## outdated 0.00000000 0.00000000 0.02580645 0.01523926## overcome 0.00000000 0.00000000 0.00000000 0.01523926## participate 0.00000000 0.01393922 0.00000000 0.01523926## partisan 0.01325732 0.01393922 0.00000000 0.00000000## patient 0.00000000 0.00000000 0.00000000 0.00000000## period 0.01325732 0.00000000 0.00000000 0.00000000## personnel 0.00000000 0.00000000 0.00000000 0.00000000## please 0.01325732 0.00000000 0.00000000 0.00000000## preexisting 0.00000000 0.00000000 0.00000000 0.00000000## preserve 0.00000000 0.00000000 0.00000000 0.01523926## prevents 0.00000000 0.01393922 0.01290323 0.00000000## principles 0.00000000 0.01393922 0.00000000 0.00000000## prisoners 0.00000000 0.01393922 0.00000000 0.00000000## privacy 0.01325732 0.04181767 0.00000000 0.01523926## profitable 0.00000000 0.00000000 0.01290323 0.01523926## protected 0.01325732 0.00000000 0.00000000 0.00000000## pull 0.00000000 0.01393922 0.00000000 0.01523926## purchase 0.00000000 0.00000000 0.00000000 0.01523926## qaeda 0.00000000 0.00000000 0.00000000 0.00000000## quarter 0.00000000 0.00000000 0.02580645 0.03047851## quo 0.00000000 0.00000000 0.01290323 0.00000000## raised 0.01325732 0.00000000 0.00000000 0.00000000## reduced 0.00000000 0.01393922 0.00000000 0.00000000## regardless 0.00000000 0.00000000 0.00000000 0.00000000## rely 0.00000000 0.01393922 0.00000000 0.01523926## repeat 0.01325732 0.01393922 0.01290323 0.01523926## replace 0.00000000 0.00000000 0.01290323 0.00000000## rescue 0.01325732 0.00000000 0.00000000 0.00000000## rewarded 0.01325732 0.00000000 0.01290323 0.00000000## rich 0.00000000 0.02787845 0.02580645 0.00000000## rid 0.01325732 0.00000000 0.02580645 0.00000000## root 0.00000000 0.00000000 0.00000000 0.03047851## running 0.00000000 0.00000000 0.02580645 0.01523926## saudi 0.00000000 0.00000000 0.00000000 0.00000000## sectarian 0.00000000 0.01393922 0.00000000 0.00000000## setting 0.00000000 0.00000000 0.00000000 0.00000000## severe 0.01325732 0.00000000 0.00000000 0.00000000## shi 0.00000000 0.00000000 0.00000000 0.00000000## shift 0.01325732 0.02787845 0.00000000 0.00000000## skill 0.00000000 0.00000000 0.00000000 0.01523926## slowly 0.00000000 0.01393922 0.00000000 0.01523926## sold 0.00000000 0.00000000 0.02580645 0.00000000## straight 0.01325732 0.01393922 0.01290323 0.00000000## strike 0.00000000 0.00000000 0.01290323 0.00000000## strongly 0.00000000 0.00000000 0.01290323 0.00000000## suggested 0.01325732 0.01393922 0.00000000 0.00000000## summit 0.00000000 0.00000000 0.00000000 0.03047851## surge 0.00000000 0.00000000 0.01290323 0.00000000## suspected 0.00000000 0.00000000 0.00000000 0.01523926## t 0.02651465 0.01393922 0.00000000 0.00000000## talked 0.00000000 0.01393922 0.01290323 0.00000000## telling 0.00000000 0.01393922 0.00000000 0.00000000## treat 0.00000000 0.01393922 0.00000000 0.00000000## treated 0.00000000 0.00000000 0.00000000 0.00000000## treaty 0.00000000 0.00000000 0.00000000 0.00000000## truly 0.00000000 0.02787845 0.00000000 0.01523926## unfair 0.00000000 0.00000000 0.01290323 0.00000000## unnecessary 0.00000000 0.01393922 0.01290323 0.00000000## uphold 0.02651465 0.01393922 0.00000000 0.00000000## vast 0.00000000 0.01393922 0.01290323 0.00000000## voted 0.01325732 0.00000000 0.00000000 0.00000000## votes 0.00000000 0.00000000 0.00000000 0.00000000## wasteful 0.00000000 0.00000000 0.00000000 0.03047851## wealth 0.00000000 0.01393922 0.00000000 0.01523926## who^ve 0.01325732 0.00000000 0.02580645 0.00000000## winning 0.00000000 0.00000000 0.00000000 0.00000000## wisdom 0.00000000 0.01393922 0.00000000 0.00000000## wise 0.01325732 0.00000000 0.00000000 0.00000000## worry 0.00000000 0.00000000 0.00000000 0.01523926## abu 0.00000000 0.00000000 0.00000000 0.00000000## advances 0.00000000 0.00000000 0.00000000 0.00000000## adversity 0.00000000 0.02787845 0.00000000 0.00000000## affiliates 0.02651465 0.00000000 0.00000000 0.00000000## aggressive 0.00000000 0.00000000 0.00000000 0.01523926## alan 0.02651465 0.05575690 0.00000000 0.00000000## amount 0.02651465 0.00000000 0.00000000 0.00000000## anger 0.00000000 0.00000000 0.00000000 0.01523926## apply 0.00000000 0.00000000 0.01290323 0.00000000## appropriate 0.00000000 0.00000000 0.00000000 0.00000000## asian 0.00000000 0.01393922 0.01290323 0.00000000## aspirations 0.00000000 0.00000000 0.00000000 0.01523926## badly 0.01325732 0.00000000 0.00000000 0.00000000## beat 0.00000000 0.01393922 0.00000000 0.00000000## became 0.00000000 0.00000000 0.00000000 0.01523926## black 0.00000000 0.02787845 0.01290323 0.00000000## blind 0.00000000 0.02787845 0.00000000 0.00000000## bomb 0.00000000 0.00000000 0.00000000 0.00000000## bound 0.00000000 0.00000000 0.00000000 0.00000000## brandon 0.00000000 0.00000000 0.00000000 0.00000000## budgetary 0.01325732 0.00000000 0.00000000 0.03047851## card 0.00000000 0.01393922 0.02580645 0.00000000## caring 0.00000000 0.00000000 0.00000000 0.01523926## checks 0.02651465 0.00000000 0.00000000 0.01523926## civilized 0.00000000 0.00000000 0.00000000 0.00000000## closely 0.00000000 0.00000000 0.00000000 0.00000000## coast 0.00000000 0.01393922 0.00000000 0.01523926## collective 0.00000000 0.00000000 0.00000000 0.00000000## committee 0.00000000 0.00000000 0.00000000 0.00000000## commonsense 0.01325732 0.00000000 0.01290323 0.01523926## complicated 0.01325732 0.00000000 0.00000000 0.00000000## computer 0.00000000 0.00000000 0.01290323 0.00000000## congressman 0.00000000 0.00000000 0.00000000 0.00000000## consequence 0.00000000 0.00000000 0.00000000 0.00000000## constant 0.00000000 0.02787845 0.00000000 0.00000000## continent 0.00000000 0.00000000 0.00000000 0.00000000## contributions 0.00000000 0.00000000 0.01290323 0.00000000## conviction 0.00000000 0.00000000 0.00000000 0.00000000## costly 0.00000000 0.04181767 0.01290323 0.01523926## court 0.00000000 0.00000000 0.00000000 0.00000000## damage 0.01325732 0.00000000 0.00000000 0.00000000## date 0.00000000 0.01393922 0.00000000 0.00000000## decide 0.01325732 0.00000000 0.02580645 0.00000000## deep 0.00000000 0.01393922 0.01290323 0.00000000## defining 0.00000000 0.00000000 0.01290323 0.00000000## democracies 0.00000000 0.00000000 0.01290323 0.00000000## design 0.00000000 0.00000000 0.01290323 0.00000000## designed 0.00000000 0.00000000 0.00000000 0.01523926## detention 0.01325732 0.01393922 0.00000000 0.03047851## died 0.00000000 0.00000000 0.00000000 0.00000000## direction 0.00000000 0.00000000 0.00000000 0.00000000## disarming 0.00000000 0.00000000 0.00000000 0.00000000## disaster 0.00000000 0.01393922 0.00000000 0.00000000## disrupt 0.00000000 0.00000000 0.00000000 0.00000000## driven 0.00000000 0.00000000 0.00000000 0.00000000## driving 0.01325732 0.00000000 0.00000000 0.00000000## drop 0.00000000 0.00000000 0.01290323 0.00000000## ebola 0.00000000 0.02787845 0.00000000 0.00000000## economists 0.03977197 0.00000000 0.00000000 0.00000000## edward 0.00000000 0.00000000 0.00000000 0.03047851## electricity 0.00000000 0.00000000 0.00000000 0.00000000## electronic 0.00000000 0.01393922 0.00000000 0.01523926## elimination 0.00000000 0.00000000 0.01290323 0.00000000## emerge 0.00000000 0.01393922 0.00000000 0.01523926## encouraging 0.00000000 0.00000000 0.00000000 0.00000000## enduring 0.01325732 0.00000000 0.02580645 0.01523926## engineering 0.02651465 0.00000000 0.01290323 0.00000000## entitlement 0.02651465 0.00000000 0.01290323 0.00000000## establish 0.00000000 0.00000000 0.01290323 0.00000000## european 0.02651465 0.00000000 0.00000000 0.00000000## evening 0.00000000 0.00000000 0.00000000 0.00000000## eventually 0.00000000 0.00000000 0.00000000 0.00000000## expanded 0.00000000 0.00000000 0.00000000 0.03047851## expectations 0.00000000 0.00000000 0.01290323 0.00000000## expensive 0.00000000 0.00000000 0.01290323 0.00000000## facing 0.00000000 0.00000000 0.00000000 0.01523926## fairness 0.01325732 0.00000000 0.00000000 0.01523926## false 0.00000000 0.00000000 0.00000000 0.00000000## father 0.00000000 0.01393922 0.00000000 0.03047851## federally 0.00000000 0.00000000 0.02580645 0.01523926## fighters 0.00000000 0.00000000 0.00000000 0.00000000## financing 0.00000000 0.00000000 0.03870968 0.00000000## fine 0.00000000 0.00000000 0.00000000 0.00000000## fire 0.02651465 0.00000000 0.00000000 0.00000000## firm 0.01325732 0.00000000 0.00000000 0.00000000## followed 0.00000000 0.00000000 0.01290323 0.01523926## fuels 0.00000000 0.00000000 0.00000000 0.00000000## generate 0.02651465 0.01393922 0.00000000 0.00000000## graduates 0.01325732 0.01393922 0.00000000 0.01523926## graduation 0.01325732 0.01393922 0.00000000 0.00000000## hatred 0.00000000 0.00000000 0.00000000 0.00000000## heart 0.00000000 0.00000000 0.00000000 0.00000000## holy 0.00000000 0.01393922 0.00000000 0.00000000## ii 0.00000000 0.01393922 0.02580645 0.00000000## immediately 0.00000000 0.00000000 0.00000000 0.00000000## increasingly 0.00000000 0.00000000 0.00000000 0.00000000## initiatives 0.02651465 0.00000000 0.00000000 0.00000000## inside 0.01325732 0.00000000 0.00000000 0.00000000## institution 0.00000000 0.00000000 0.01290323 0.01523926## invite 0.00000000 0.00000000 0.00000000 0.00000000## isolation 0.00000000 0.00000000 0.00000000 0.00000000## kid 0.00000000 0.01393922 0.00000000 0.00000000## knowing 0.01325732 0.00000000 0.02580645 0.00000000## labs 0.00000000 0.00000000 0.02580645 0.00000000## lands 0.01325732 0.01393922 0.02580645 0.00000000## larger 0.00000000 0.00000000 0.01290323 0.00000000## launching 0.00000000 0.01393922 0.00000000 0.00000000## levels 0.01325732 0.00000000 0.00000000 0.00000000## liberation 0.00000000 0.00000000 0.00000000 0.00000000## lincoln 0.00000000 0.00000000 0.01290323 0.00000000## london 0.00000000 0.01393922 0.00000000 0.00000000## lonely 0.00000000 0.00000000 0.00000000 0.00000000## maintain 0.01325732 0.01393922 0.02580645 0.00000000## marine 0.00000000 0.00000000 0.00000000 0.00000000## marines 0.00000000 0.00000000 0.00000000 0.01523926## meaning 0.00000000 0.00000000 0.00000000 0.00000000## meaningful 0.02651465 0.01393922 0.00000000 0.00000000## member 0.01325732 0.01393922 0.02580645 0.01523926## minister 0.00000000 0.00000000 0.00000000 0.00000000## missions 0.01325732 0.01393922 0.01290323 0.00000000## moments 0.00000000 0.01393922 0.00000000 0.00000000## moved 0.00000000 0.01393922 0.00000000 0.00000000## neighborhoods 0.01325732 0.00000000 0.00000000 0.00000000## noble 0.00000000 0.00000000 0.00000000 0.00000000## nor 0.00000000 0.00000000 0.00000000 0.04571777## oak 0.05302930 0.00000000 0.00000000 0.00000000## onto 0.01325732 0.01393922 0.00000000 0.01523926## oppressed 0.00000000 0.00000000 0.00000000 0.00000000## participation 0.01325732 0.01393922 0.00000000 0.00000000## partnerships 0.01325732 0.00000000 0.01290323 0.00000000## payments 0.00000000 0.01393922 0.00000000 0.03047851## pell 0.00000000 0.00000000 0.00000000 0.00000000## penalty 0.01325732 0.00000000 0.01290323 0.00000000## performance 0.00000000 0.00000000 0.00000000 0.03047851## peril 0.00000000 0.00000000 0.00000000 0.01523926## plants 0.01325732 0.00000000 0.01290323 0.00000000## plot 0.00000000 0.00000000 0.00000000 0.01523926## politicians 0.00000000 0.00000000 0.00000000 0.00000000## pope 0.00000000 0.04181767 0.00000000 0.00000000## practice 0.00000000 0.00000000 0.00000000 0.00000000## preventing 0.01325732 0.00000000 0.00000000 0.00000000## producing 0.00000000 0.00000000 0.00000000 0.01523926## punish 0.00000000 0.00000000 0.00000000 0.00000000## questions 0.01325732 0.00000000 0.00000000 0.00000000## railroad 0.00000000 0.00000000 0.00000000 0.01523926## ran 0.00000000 0.01393922 0.01290323 0.00000000## really 0.01325732 0.01393922 0.01290323 0.00000000## recover 0.00000000 0.00000000 0.00000000 0.03047851## reforming 0.00000000 0.00000000 0.00000000 0.00000000## religious 0.00000000 0.01393922 0.00000000 0.00000000## renewed 0.01325732 0.00000000 0.00000000 0.03047851## respects 0.00000000 0.00000000 0.00000000 0.00000000## respond 0.00000000 0.00000000 0.00000000 0.01523926## retirees 0.00000000 0.00000000 0.00000000 0.00000000## revenues 0.01325732 0.00000000 0.00000000 0.00000000## revolution 0.01325732 0.00000000 0.00000000 0.01523926## room 0.00000000 0.00000000 0.01290323 0.00000000## roosevelt 0.00000000 0.00000000 0.00000000 0.01523926## sake 0.01325732 0.00000000 0.00000000 0.01523926## saved 0.00000000 0.00000000 0.00000000 0.01523926## saying 0.01325732 0.01393922 0.00000000 0.00000000## scores 0.00000000 0.01393922 0.00000000 0.01523926## secret 0.00000000 0.00000000 0.00000000 0.00000000## seize 0.00000000 0.00000000 0.01290323 0.00000000## selling 0.00000000 0.00000000 0.01290323 0.00000000## serves 0.00000000 0.01393922 0.00000000 0.00000000## servicemembers 0.02651465 0.00000000 0.02580645 0.00000000## ship 0.00000000 0.00000000 0.01290323 0.03047851## shoulder 0.02651465 0.01393922 0.01290323 0.00000000## smart 0.01325732 0.02787845 0.01290323 0.00000000## smarter 0.02651465 0.01393922 0.01290323 0.00000000## soldiers 0.00000000 0.00000000 0.01290323 0.01523926## sorrow 0.00000000 0.00000000 0.00000000 0.00000000## stabilization 0.00000000 0.00000000 0.01290323 0.03047851## stable 0.03977197 0.00000000 0.01290323 0.00000000## steven 0.00000000 0.00000000 0.00000000 0.00000000## stockpile 0.02651465 0.01393922 0.00000000 0.00000000## strive 0.00000000 0.00000000 0.00000000 0.00000000## strongest 0.00000000 0.00000000 0.01290323 0.00000000## summer 0.00000000 0.00000000 0.02580645 0.00000000## syrian 0.02651465 0.00000000 0.00000000 0.00000000## systems 0.01325732 0.00000000 0.00000000 0.01523926## tactics 0.00000000 0.00000000 0.01290323 0.00000000## testing 0.00000000 0.00000000 0.00000000 0.00000000## texas 0.00000000 0.01393922 0.00000000 0.00000000## thinking 0.01325732 0.01393922 0.01290323 0.00000000## threatens 0.01325732 0.01393922 0.00000000 0.00000000## torture 0.00000000 0.01393922 0.00000000 0.01523926## tougher 0.00000000 0.00000000 0.00000000 0.00000000## towards 0.01325732 0.01393922 0.01290323 0.01523926## towns 0.03977197 0.01393922 0.00000000 0.01523926## tragedy 0.00000000 0.00000000 0.00000000 0.01523926## transform 0.00000000 0.00000000 0.00000000 0.01523926## transformation 0.00000000 0.00000000 0.01290323 0.01523926## treatments 0.00000000 0.00000000 0.01290323 0.00000000## troubled 0.00000000 0.00000000 0.00000000 0.01523926## tucson 0.01325732 0.01393922 0.00000000 0.00000000## turns 0.00000000 0.00000000 0.00000000 0.00000000## tv 0.00000000 0.00000000 0.00000000 0.01523926## ultimate 0.00000000 0.00000000 0.00000000 0.00000000## uncertainty 0.00000000 0.00000000 0.00000000 0.00000000## unfinished 0.02651465 0.00000000 0.00000000 0.00000000## unity 0.00000000 0.00000000 0.00000000 0.00000000## victims 0.00000000 0.00000000 0.00000000 0.00000000## voting 0.01325732 0.02787845 0.00000000 0.00000000## warren 0.00000000 0.00000000 0.03870968 0.00000000## wasn^t 0.01325732 0.01393922 0.00000000 0.00000000## weak 0.00000000 0.00000000 0.00000000 0.01523926## weakened 0.00000000 0.00000000 0.01290323 0.03047851## wealthy 0.00000000 0.00000000 0.00000000 0.01523926## wherever 0.00000000 0.00000000 0.00000000 0.00000000## wisely 0.00000000 0.02787845 0.00000000 0.01523926## written 0.00000000 0.00000000 0.00000000 0.00000000## accomplish 0.00000000 0.00000000 0.01290323 0.00000000## activities 0.00000000 0.01393922 0.00000000 0.00000000## adults 0.01325732 0.00000000 0.00000000 0.00000000## affairs 0.00000000 0.00000000 0.01290323 0.00000000## aggressively 0.00000000 0.00000000 0.00000000 0.01523926## aim 0.00000000 0.00000000 0.00000000 0.00000000## airports 0.00000000 0.00000000 0.00000000 0.00000000## ally 0.00000000 0.00000000 0.00000000 0.00000000## amanda 0.00000000 0.00000000 0.00000000 0.00000000## americas 0.01325732 0.00000000 0.01290323 0.00000000## announced 0.00000000 0.00000000 0.01290323 0.00000000## anthrax 0.00000000 0.00000000 0.00000000 0.00000000## anywhere 0.00000000 0.01393922 0.01290323 0.00000000## arabia 0.00000000 0.00000000 0.00000000 0.00000000## assume 0.00000000 0.00000000 0.00000000 0.00000000## atlantic 0.01325732 0.00000000 0.00000000 0.00000000## attract 0.02651465 0.00000000 0.00000000 0.00000000## automobile 0.01325732 0.00000000 0.01290323 0.03047851## b 0.02651465 0.00000000 0.00000000 0.00000000## barriers 0.00000000 0.00000000 0.00000000 0.00000000## batteries 0.01325732 0.00000000 0.01290323 0.01523926## behalf 0.01325732 0.01393922 0.00000000 0.00000000## behavior 0.00000000 0.00000000 0.02580645 0.00000000## bench 0.00000000 0.00000000 0.00000000 0.00000000## biofuels 0.00000000 0.00000000 0.00000000 0.01523926## blessed 0.00000000 0.00000000 0.00000000 0.00000000## blow 0.00000000 0.00000000 0.01290323 0.00000000## bonds 0.00000000 0.00000000 0.01290323 0.00000000## boost 0.01325732 0.00000000 0.00000000 0.00000000## bought 0.00000000 0.01393922 0.00000000 0.03047851## brian 0.06628662 0.00000000 0.00000000 0.00000000## british 0.00000000 0.00000000 0.00000000 0.00000000## broadband 0.00000000 0.00000000 0.01290323 0.01523926## broke 0.00000000 0.01393922 0.01290323 0.00000000## brutal 0.00000000 0.00000000 0.00000000 0.00000000## bullet 0.02651465 0.00000000 0.01290323 0.00000000## careers 0.00000000 0.00000000 0.00000000 0.00000000## catastrophic 0.00000000 0.00000000 0.00000000 0.00000000## central 0.00000000 0.00000000 0.01290323 0.00000000## charitable 0.00000000 0.00000000 0.00000000 0.00000000## civilian 0.00000000 0.01393922 0.00000000 0.00000000## claim 0.00000000 0.00000000 0.00000000 0.00000000## clinton 0.00000000 0.00000000 0.02580645 0.00000000## closer 0.00000000 0.01393922 0.00000000 0.00000000## cold 0.00000000 0.00000000 0.00000000 0.01523926## collapse 0.01325732 0.00000000 0.01290323 0.00000000## compassionate 0.00000000 0.00000000 0.00000000 0.00000000## compromise 0.01325732 0.00000000 0.00000000 0.00000000## conflicts 0.00000000 0.02787845 0.00000000 0.00000000## connected 0.00000000 0.00000000 0.01290323 0.00000000## connecting 0.01325732 0.01393922 0.00000000 0.00000000## constitutional 0.00000000 0.00000000 0.00000000 0.00000000## courses 0.00000000 0.00000000 0.02580645 0.00000000## covered 0.00000000 0.00000000 0.00000000 0.00000000## currently 0.00000000 0.00000000 0.00000000 0.00000000## daughters 0.03977197 0.00000000 0.00000000 0.00000000## declined 0.00000000 0.00000000 0.00000000 0.00000000## deduction 0.00000000 0.00000000 0.02580645 0.00000000## defenses 0.01325732 0.00000000 0.00000000 0.00000000## desiline 0.06628662 0.00000000 0.00000000 0.00000000## despair 0.00000000 0.00000000 0.00000000 0.00000000## details 0.00000000 0.00000000 0.01290323 0.00000000## detroit 0.00000000 0.00000000 0.02580645 0.00000000## die 0.00000000 0.00000000 0.01290323 0.00000000## disabilities 0.00000000 0.00000000 0.00000000 0.00000000## disagree 0.00000000 0.01393922 0.00000000 0.00000000## discovery 0.00000000 0.00000000 0.00000000 0.00000000## doors 0.01325732 0.00000000 0.00000000 0.03047851## dozens 0.00000000 0.00000000 0.00000000 0.00000000## dramatic 0.00000000 0.00000000 0.00000000 0.00000000## drawing 0.00000000 0.00000000 0.00000000 0.00000000## drove 0.00000000 0.00000000 0.00000000 0.00000000## duties 0.00000000 0.00000000 0.00000000 0.00000000## eager 0.00000000 0.00000000 0.01290323 0.00000000## earns 0.02651465 0.00000000 0.00000000 0.01523926## economics 0.00000000 0.06969612 0.00000000 0.00000000## embassy 0.00000000 0.00000000 0.00000000 0.00000000## encourages 0.02651465 0.00000000 0.00000000 0.00000000## engine 0.01325732 0.00000000 0.00000000 0.01523926## enormous 0.00000000 0.00000000 0.00000000 0.01523926## epidemic 0.00000000 0.01393922 0.00000000 0.00000000## erler 0.00000000 0.06969612 0.00000000 0.00000000## ethanol 0.00000000 0.00000000 0.00000000 0.00000000## excuse 0.00000000 0.01393922 0.00000000 0.01523926## existing 0.00000000 0.00000000 0.00000000 0.00000000## expected 0.00000000 0.00000000 0.00000000 0.00000000## expenses 0.00000000 0.00000000 0.01290323 0.00000000## extending 0.00000000 0.00000000 0.00000000 0.00000000## extraordinary 0.00000000 0.00000000 0.00000000 0.01523926## faces 0.00000000 0.01393922 0.00000000 0.00000000## faithful 0.00000000 0.00000000 0.00000000 0.00000000## family^s 0.00000000 0.00000000 0.00000000 0.01523926## favor 0.00000000 0.00000000 0.00000000 0.00000000## fee 0.00000000 0.00000000 0.01290323 0.00000000## feet 0.02651465 0.00000000 0.00000000 0.00000000## finding 0.00000000 0.00000000 0.00000000 0.01523926## flag 0.00000000 0.00000000 0.02580645 0.00000000## focused 0.00000000 0.00000000 0.00000000 0.00000000## foreclosure 0.00000000 0.00000000 0.01290323 0.03047851## form 0.01325732 0.00000000 0.00000000 0.00000000## fourth 0.00000000 0.00000000 0.00000000 0.00000000## framework 0.02651465 0.00000000 0.00000000 0.00000000## freedom^s 0.00000000 0.00000000 0.00000000 0.00000000## gathered 0.00000000 0.00000000 0.00000000 0.01523926## giffords 0.03977197 0.00000000 0.00000000 0.00000000## govern 0.00000000 0.00000000 0.00000000 0.04571777## governing 0.00000000 0.00000000 0.00000000 0.00000000## governors 0.00000000 0.00000000 0.00000000 0.01523926## grant 0.00000000 0.00000000 0.02580645 0.00000000## gravest 0.01325732 0.00000000 0.00000000 0.00000000## grid 0.01325732 0.00000000 0.02580645 0.01523926## grief 0.00000000 0.00000000 0.00000000 0.00000000## grit 0.01325732 0.01393922 0.00000000 0.00000000## guard 0.00000000 0.00000000 0.00000000 0.00000000## haiti 0.00000000 0.00000000 0.00000000 0.00000000## hasn^t 0.00000000 0.01393922 0.00000000 0.00000000## hate 0.00000000 0.00000000 0.00000000 0.00000000## healing 0.02651465 0.00000000 0.00000000 0.00000000## healthier 0.00000000 0.01393922 0.00000000 0.01523926## highways 0.00000000 0.00000000 0.01290323 0.01523926## hizballah 0.00000000 0.00000000 0.00000000 0.00000000## honorable 0.00000000 0.00000000 0.00000000 0.00000000## hospital 0.02651465 0.00000000 0.00000000 0.00000000## hubs 0.02651465 0.00000000 0.00000000 0.00000000## hydrogen 0.00000000 0.00000000 0.00000000 0.00000000## ideological 0.00000000 0.00000000 0.00000000 0.00000000## impose 0.00000000 0.00000000 0.00000000 0.00000000## impossible 0.01325732 0.00000000 0.00000000 0.00000000## include 0.00000000 0.00000000 0.00000000 0.00000000## inspire 0.00000000 0.00000000 0.00000000 0.00000000## investors 0.01325732 0.00000000 0.00000000 0.01523926## irresponsible 0.00000000 0.00000000 0.02580645 0.00000000## islam 0.00000000 0.00000000 0.00000000 0.00000000## isolated 0.00000000 0.01393922 0.01290323 0.00000000## j 0.00000000 0.01393922 0.00000000 0.03047851## journey 0.00000000 0.00000000 0.01290323 0.00000000## julie 0.00000000 0.00000000 0.00000000 0.00000000## kentucky 0.00000000 0.00000000 0.00000000 0.00000000## l 0.02651465 0.00000000 0.00000000 0.00000000## lady 0.00000000 0.00000000 0.00000000 0.01523926## lawyers 0.00000000 0.00000000 0.00000000 0.01523926## laying 0.00000000 0.00000000 0.00000000 0.03047851## lessons 0.00000000 0.01393922 0.00000000 0.00000000## lets 0.00000000 0.00000000 0.01290323 0.00000000## lifting 0.00000000 0.01393922 0.00000000 0.00000000## loved 0.01325732 0.00000000 0.00000000 0.00000000## lowest 0.01325732 0.01393922 0.00000000 0.00000000## manufacturer 0.00000000 0.00000000 0.05161290 0.00000000## mccain 0.02651465 0.00000000 0.00000000 0.00000000## meant 0.00000000 0.00000000 0.01290323 0.00000000## measured 0.00000000 0.00000000 0.00000000 0.00000000## minds 0.01325732 0.00000000 0.00000000 0.00000000## minorities 0.00000000 0.02787845 0.00000000 0.00000000## modernize 0.00000000 0.00000000 0.00000000 0.00000000## modest 0.01325732 0.00000000 0.01290323 0.00000000## momentum 0.00000000 0.00000000 0.02580645 0.00000000## monthly 0.00000000 0.01393922 0.00000000 0.01523926## mother 0.00000000 0.00000000 0.00000000 0.01523926## muslims 0.00000000 0.01393922 0.01290323 0.00000000## near 0.01325732 0.00000000 0.00000000 0.00000000## needless 0.00000000 0.00000000 0.00000000 0.00000000## negotiate 0.00000000 0.01393922 0.00000000 0.00000000## newtown 0.05302930 0.01393922 0.00000000 0.00000000## nobody 0.00000000 0.00000000 0.00000000 0.03047851## numbers 0.00000000 0.00000000 0.00000000 0.01523926## nurses 0.00000000 0.01393922 0.00000000 0.00000000## opening 0.01325732 0.00000000 0.00000000 0.00000000## oppose 0.00000000 0.00000000 0.01290323 0.00000000## opposition 0.01325732 0.01393922 0.00000000 0.00000000## organized 0.00000000 0.01393922 0.00000000 0.00000000## otherwise 0.01325732 0.00000000 0.01290323 0.00000000## outside 0.00000000 0.01393922 0.01290323 0.00000000## painful 0.01325732 0.00000000 0.00000000 0.01523926## paris 0.00000000 0.01393922 0.00000000 0.00000000## passion 0.00000000 0.00000000 0.01290323 0.00000000## patriot 0.00000000 0.00000000 0.00000000 0.00000000## pentagon 0.00000000 0.01393922 0.00000000 0.00000000## performing 0.01325732 0.00000000 0.00000000 0.00000000## permanently 0.00000000 0.00000000 0.00000000 0.00000000## placed 0.00000000 0.00000000 0.00000000 0.00000000## pleased 0.00000000 0.00000000 0.00000000 0.01523926## pledged 0.00000000 0.00000000 0.00000000 0.01523926## plenty 0.00000000 0.00000000 0.01290323 0.00000000## points 0.00000000 0.00000000 0.00000000 0.00000000## population 0.01325732 0.01393922 0.00000000 0.00000000## ports 0.01325732 0.01393922 0.00000000 0.00000000## pose 0.02651465 0.01393922 0.00000000 0.00000000## possibility 0.00000000 0.01393922 0.00000000 0.01523926## prayers 0.00000000 0.00000000 0.00000000 0.00000000## preparing 0.00000000 0.00000000 0.00000000 0.01523926## prevented 0.00000000 0.00000000 0.00000000 0.01523926## principal 0.00000000 0.00000000 0.00000000 0.01523926## principled 0.00000000 0.00000000 0.00000000 0.00000000## productive 0.00000000 0.00000000 0.02580645 0.00000000## profound 0.00000000 0.01393922 0.00000000 0.00000000## prosperous 0.00000000 0.01393922 0.00000000 0.00000000## proven 0.01325732 0.00000000 0.00000000 0.01523926## pursuit 0.01325732 0.00000000 0.00000000 0.00000000## push 0.00000000 0.00000000 0.00000000 0.00000000## puts 0.01325732 0.00000000 0.01290323 0.00000000## quit 0.00000000 0.00000000 0.00000000 0.01523926## rail 0.01325732 0.00000000 0.00000000 0.00000000## range 0.01325732 0.00000000 0.00000000 0.00000000## reaching 0.00000000 0.00000000 0.00000000 0.00000000## reagan 0.00000000 0.00000000 0.00000000 0.00000000## reasons 0.00000000 0.00000000 0.00000000 0.01523926## reauthorize 0.00000000 0.00000000 0.00000000 0.00000000## recommendations 0.00000000 0.01393922 0.00000000 0.00000000## recruit 0.00000000 0.01393922 0.00000000 0.00000000## reduces 0.00000000 0.00000000 0.00000000 0.00000000## refinance 0.02651465 0.00000000 0.00000000 0.01523926## reflects 0.00000000 0.00000000 0.00000000 0.03047851## rejects 0.00000000 0.00000000 0.00000000 0.00000000## relationship 0.00000000 0.00000000 0.01290323 0.00000000## religion 0.00000000 0.00000000 0.00000000 0.00000000## remaining 0.00000000 0.00000000 0.00000000 0.00000000## reminded 0.00000000 0.00000000 0.01290323 0.00000000## removed 0.00000000 0.00000000 0.00000000 0.00000000## repair 0.01325732 0.00000000 0.01290323 0.00000000## repeal 0.00000000 0.00000000 0.00000000 0.00000000## reserve 0.00000000 0.01393922 0.00000000 0.00000000## resilience 0.00000000 0.01393922 0.00000000 0.01523926## restart 0.00000000 0.00000000 0.00000000 0.07619628## restraint 0.00000000 0.00000000 0.00000000 0.01523926## retire 0.00000000 0.00000000 0.00000000 0.01523926## revealed 0.00000000 0.00000000 0.00000000 0.00000000## rewarding 0.00000000 0.01393922 0.02580645 0.01523926## rewards 0.01325732 0.01393922 0.00000000 0.03047851## romney 0.03977197 0.00000000 0.00000000 0.00000000## ryan 0.00000000 0.00000000 0.00000000 0.00000000## sacred 0.00000000 0.01393922 0.00000000 0.01523926## sandy 0.05302930 0.00000000 0.00000000 0.00000000## season 0.00000000 0.01393922 0.00000000 0.00000000## seeking 0.01325732 0.00000000 0.00000000 0.01523926## seeks 0.00000000 0.00000000 0.00000000 0.00000000## seem 0.00000000 0.00000000 0.00000000 0.00000000## self-government 0.01325732 0.00000000 0.00000000 0.00000000## servants 0.00000000 0.00000000 0.00000000 0.00000000## sets 0.01325732 0.00000000 0.00000000 0.00000000## short 0.00000000 0.00000000 0.00000000 0.01523926## shows 0.01325732 0.02787845 0.01290323 0.00000000## shut 0.00000000 0.02787845 0.00000000 0.00000000## sides 0.01325732 0.01393922 0.00000000 0.00000000## skies 0.00000000 0.00000000 0.00000000 0.00000000## skilled 0.01325732 0.00000000 0.00000000 0.00000000## solved 0.00000000 0.00000000 0.00000000 0.00000000## somebody 0.00000000 0.01393922 0.02580645 0.00000000## somehow 0.00000000 0.00000000 0.01290323 0.00000000## specific 0.00000000 0.00000000 0.00000000 0.00000000## speech 0.00000000 0.02787845 0.00000000 0.00000000## spill 0.00000000 0.00000000 0.05161290 0.00000000## spring 0.01325732 0.02787845 0.00000000 0.00000000## stewards 0.00000000 0.00000000 0.00000000 0.00000000## stopping 0.00000000 0.02787845 0.01290323 0.00000000## strengths 0.00000000 0.00000000 0.00000000 0.00000000## strikes 0.00000000 0.00000000 0.00000000 0.00000000## subject 0.00000000 0.00000000 0.00000000 0.00000000## submit 0.00000000 0.00000000 0.00000000 0.03047851## subsidizing 0.01325732 0.00000000 0.02580645 0.00000000## succeeded 0.00000000 0.00000000 0.02580645 0.00000000## sunni 0.00000000 0.00000000 0.00000000 0.00000000## talks 0.01325732 0.00000000 0.00000000 0.00000000## tells 0.00000000 0.00000000 0.02580645 0.01523926## term 0.00000000 0.00000000 0.00000000 0.03047851## tested 0.00000000 0.00000000 0.00000000 0.00000000## thomas 0.00000000 0.00000000 0.01290323 0.00000000## tight-knit 0.00000000 0.05575690 0.00000000 0.00000000## tom 0.00000000 0.00000000 0.01290323 0.00000000## trapped 0.00000000 0.00000000 0.00000000 0.00000000## treating 0.00000000 0.01393922 0.00000000 0.00000000## trial 0.00000000 0.00000000 0.01290323 0.00000000## undermine 0.00000000 0.00000000 0.00000000 0.00000000## unfortunately 0.00000000 0.00000000 0.00000000 0.00000000## universal 0.01325732 0.02787845 0.00000000 0.01523926## university 0.02651465 0.01393922 0.00000000 0.00000000## veteran 0.00000000 0.04181767 0.01290323 0.00000000## view 0.00000000 0.00000000 0.00000000 0.03047851## violated 0.00000000 0.00000000 0.00000000 0.00000000## visit 0.01325732 0.01393922 0.01290323 0.00000000## volunteers 0.00000000 0.00000000 0.00000000 0.00000000## wake 0.00000000 0.00000000 0.00000000 0.03047851## watched 0.00000000 0.01393922 0.00000000 0.00000000## waters 0.01325732 0.01393922 0.00000000 0.00000000## whom 0.00000000 0.01393922 0.00000000 0.00000000## willingness 0.01325732 0.00000000 0.00000000 0.01523926## women^s 0.02651465 0.02787845 0.00000000 0.00000000## youth 0.00000000 0.01393922 0.00000000 0.00000000## abuses 0.00000000 0.00000000 0.00000000 0.00000000## achieving 0.00000000 0.00000000 0.00000000 0.00000000## acres 0.00000000 0.00000000 0.01290323 0.00000000## affected 0.00000000 0.00000000 0.00000000 0.01523926## afflicted 0.00000000 0.00000000 0.00000000 0.00000000## afghans 0.00000000 0.00000000 0.00000000 0.00000000## aggression 0.00000000 0.02787845 0.00000000 0.00000000## aging 0.02651465 0.00000000 0.00000000 0.00000000## aisle 0.00000000 0.01393922 0.00000000 0.00000000## alike 0.00000000 0.01393922 0.00000000 0.01523926## alliance 0.00000000 0.00000000 0.00000000 0.00000000## alltime 0.01325732 0.02787845 0.00000000 0.00000000## amnesty 0.00000000 0.00000000 0.00000000 0.00000000## analyze 0.00000000 0.00000000 0.00000000 0.00000000## andra 0.00000000 0.00000000 0.00000000 0.00000000## annual 0.00000000 0.00000000 0.01290323 0.00000000## appointed 0.00000000 0.00000000 0.00000000 0.03047851## approved 0.00000000 0.00000000 0.01290323 0.00000000## arbitrary 0.01325732 0.00000000 0.00000000 0.00000000## argued 0.00000000 0.00000000 0.00000000 0.00000000## argument 0.00000000 0.00000000 0.00000000 0.00000000## arrested 0.00000000 0.00000000 0.00000000 0.00000000## ashley 0.00000000 0.00000000 0.00000000 0.00000000## assembling 0.00000000 0.00000000 0.00000000 0.00000000## association 0.00000000 0.00000000 0.00000000 0.00000000## atomic 0.00000000 0.00000000 0.00000000 0.00000000## attempt 0.00000000 0.00000000 0.00000000 0.01523926## attorney 0.00000000 0.00000000 0.03870968 0.00000000## authorities 0.00000000 0.00000000 0.00000000 0.00000000## automakers 0.00000000 0.00000000 0.01290323 0.01523926## automobiles 0.00000000 0.00000000 0.01290323 0.00000000## aware 0.00000000 0.00000000 0.00000000 0.00000000## background 0.02651465 0.00000000 0.00000000 0.00000000## backgrounds 0.00000000 0.00000000 0.00000000 0.00000000## bankruptcy 0.00000000 0.00000000 0.00000000 0.01523926## barely 0.01325732 0.00000000 0.01290323 0.00000000## battery 0.00000000 0.00000000 0.02580645 0.00000000## bauer 0.02651465 0.00000000 0.00000000 0.00000000## bear 0.00000000 0.00000000 0.00000000 0.01523926## beliefs 0.00000000 0.00000000 0.00000000 0.00000000## believes 0.00000000 0.00000000 0.00000000 0.00000000## ben 0.00000000 0.05575690 0.00000000 0.00000000## benjamin 0.02651465 0.00000000 0.00000000 0.00000000## blame 0.00000000 0.00000000 0.01290323 0.01523926## blood 0.00000000 0.00000000 0.01290323 0.00000000## board 0.00000000 0.00000000 0.00000000 0.03047851## boldly 0.00000000 0.00000000 0.00000000 0.03047851## boom 0.01325732 0.00000000 0.00000000 0.00000000## booming 0.00000000 0.02787845 0.00000000 0.00000000## botulinum 0.00000000 0.00000000 0.00000000 0.00000000## branches 0.00000000 0.00000000 0.00000000 0.00000000## britain 0.00000000 0.00000000 0.00000000 0.00000000## broadly 0.00000000 0.00000000 0.00000000 0.00000000## bryan 0.00000000 0.00000000 0.05161290 0.00000000## builds 0.00000000 0.00000000 0.00000000 0.01523926## burdens 0.00000000 0.00000000 0.00000000 0.00000000## calls 0.00000000 0.00000000 0.00000000 0.00000000## calm 0.00000000 0.00000000 0.00000000 0.00000000## capabilities 0.02651465 0.00000000 0.00000000 0.00000000## capable 0.00000000 0.00000000 0.00000000 0.00000000## carried 0.00000000 0.00000000 0.00000000 0.00000000## carrying 0.00000000 0.00000000 0.00000000 0.00000000## cast 0.01325732 0.00000000 0.00000000 0.00000000## cell 0.00000000 0.00000000 0.00000000 0.00000000## centers 0.01325732 0.00000000 0.01290323 0.00000000## ceos 0.01325732 0.00000000 0.00000000 0.01523926## charities 0.00000000 0.00000000 0.00000000 0.00000000## chose 0.00000000 0.00000000 0.00000000 0.00000000## chosen 0.01325732 0.00000000 0.00000000 0.00000000## classrooms 0.00000000 0.00000000 0.00000000 0.00000000## clearly 0.00000000 0.00000000 0.00000000 0.01523926## cloning 0.00000000 0.00000000 0.00000000 0.00000000## closing 0.01325732 0.00000000 0.00000000 0.01523926## closure 0.00000000 0.01393922 0.00000000 0.01523926## coalitions 0.00000000 0.01393922 0.01290323 0.00000000## cochairs 0.02651465 0.00000000 0.00000000 0.00000000## combined 0.00000000 0.01393922 0.00000000 0.00000000## commander 0.01325732 0.01393922 0.00000000 0.00000000## competitors 0.00000000 0.00000000 0.01290323 0.00000000## concluded 0.00000000 0.00000000 0.00000000 0.00000000## condition 0.00000000 0.00000000 0.00000000 0.00000000## confirmation 0.00000000 0.00000000 0.01290323 0.00000000## confronted 0.00000000 0.00000000 0.00000000 0.00000000## congresses 0.00000000 0.00000000 0.00000000 0.00000000## conquest 0.00000000 0.00000000 0.00000000 0.00000000## consequences 0.01325732 0.00000000 0.00000000 0.00000000## conservative 0.00000000 0.01393922 0.01290323 0.00000000## consumed 0.00000000 0.01393922 0.01290323 0.01523926## contained 0.00000000 0.00000000 0.00000000 0.00000000## contentious 0.00000000 0.00000000 0.00000000 0.00000000## continues 0.00000000 0.00000000 0.00000000 0.00000000## contribute 0.00000000 0.01393922 0.00000000 0.00000000## convictions 0.00000000 0.00000000 0.00000000 0.00000000## convinced 0.01325732 0.00000000 0.01290323 0.00000000## cops 0.01325732 0.00000000 0.02580645 0.00000000## core 0.01325732 0.00000000 0.01290323 0.00000000## counsel 0.01325732 0.00000000 0.00000000 0.00000000## country^s 0.00000000 0.01393922 0.00000000 0.00000000## creativity 0.00000000 0.00000000 0.01290323 0.00000000## creed 0.00000000 0.00000000 0.00000000 0.00000000## creek 0.05302930 0.00000000 0.00000000 0.00000000## criminal 0.00000000 0.02787845 0.00000000 0.00000000## critics 0.00000000 0.00000000 0.00000000 0.00000000## cynical 0.00000000 0.00000000 0.01290323 0.01523926## daily 0.00000000 0.01393922 0.00000000 0.00000000## daughter 0.00000000 0.00000000 0.00000000 0.00000000## dealing 0.00000000 0.00000000 0.00000000 0.00000000## deals 0.00000000 0.02787845 0.00000000 0.00000000## dealt 0.00000000 0.00000000 0.01290323 0.00000000## debating 0.00000000 0.00000000 0.00000000 0.00000000## deceiving 0.00000000 0.00000000 0.00000000 0.00000000## decided 0.00000000 0.00000000 0.00000000 0.00000000## dedicated 0.00000000 0.00000000 0.00000000 0.00000000## deductions 0.01325732 0.00000000 0.01290323 0.00000000## deeper 0.01325732 0.00000000 0.01290323 0.00000000## delay 0.00000000 0.00000000 0.01290323 0.00000000## delivering 0.00000000 0.00000000 0.00000000 0.00000000## demanding 0.01325732 0.00000000 0.00000000 0.00000000## deploy 0.00000000 0.00000000 0.00000000 0.01523926## deploying 0.00000000 0.00000000 0.00000000 0.00000000## describes 0.02651465 0.00000000 0.00000000 0.00000000## diplomats 0.01325732 0.00000000 0.00000000 0.00000000## directing 0.00000000 0.00000000 0.02580645 0.00000000## disadvantaged 0.00000000 0.00000000 0.00000000 0.00000000## discuss 0.00000000 0.00000000 0.00000000 0.00000000## discussion 0.00000000 0.00000000 0.00000000 0.00000000## disruptions 0.00000000 0.01393922 0.00000000 0.00000000## divided 0.00000000 0.01393922 0.01290323 0.00000000## drawn 0.01325732 0.01393922 0.00000000 0.00000000## drilling 0.00000000 0.00000000 0.01290323 0.00000000## drives 0.00000000 0.01393922 0.00000000 0.01523926## earning 0.00000000 0.01393922 0.01290323 0.00000000## earnings 0.00000000 0.01393922 0.00000000 0.00000000## egg 0.00000000 0.00000000 0.00000000 0.00000000## elements 0.00000000 0.01393922 0.00000000 0.01523926## employer 0.00000000 0.00000000 0.00000000 0.00000000## empty 0.00000000 0.00000000 0.00000000 0.00000000## encouraged 0.00000000 0.00000000 0.00000000 0.00000000## endure 0.01325732 0.00000000 0.01290323 0.00000000## engage 0.02651465 0.00000000 0.00000000 0.00000000## engaged 0.00000000 0.00000000 0.00000000 0.00000000## enlisting 0.00000000 0.00000000 0.01290323 0.00000000## enter 0.00000000 0.00000000 0.00000000 0.00000000## entering 0.00000000 0.00000000 0.01290323 0.00000000## environmental 0.00000000 0.00000000 0.02580645 0.00000000## envy 0.00000000 0.00000000 0.01290323 0.00000000## ethical 0.00000000 0.00000000 0.00000000 0.00000000## excessive 0.00000000 0.00000000 0.00000000 0.00000000## extreme 0.01325732 0.01393922 0.00000000 0.00000000## falling 0.00000000 0.00000000 0.00000000 0.00000000## fate 0.00000000 0.00000000 0.01290323 0.00000000## feeding 0.00000000 0.00000000 0.00000000 0.00000000## finances 0.01325732 0.00000000 0.00000000 0.00000000## firefighters 0.01325732 0.00000000 0.01290323 0.00000000## flexibility 0.00000000 0.00000000 0.01290323 0.00000000## flowing 0.00000000 0.00000000 0.00000000 0.01523926## flying 0.00000000 0.00000000 0.00000000 0.00000000## forests 0.00000000 0.00000000 0.00000000 0.00000000## forever 0.00000000 0.00000000 0.00000000 0.00000000## forms 0.01325732 0.00000000 0.01290323 0.00000000## forth 0.00000000 0.00000000 0.00000000 0.00000000## francis 0.00000000 0.02787845 0.00000000 0.00000000## friendship 0.00000000 0.01393922 0.00000000 0.00000000## fulfill 0.00000000 0.00000000 0.00000000 0.00000000## fulfilled 0.00000000 0.00000000 0.00000000 0.00000000## full-time 0.03977197 0.00000000 0.00000000 0.00000000## gained 0.00000000 0.01393922 0.00000000 0.00000000## games 0.00000000 0.00000000 0.00000000 0.01523926## gap 0.00000000 0.00000000 0.00000000 0.00000000## gasoline 0.01325732 0.00000000 0.00000000 0.00000000## gate 0.00000000 0.00000000 0.01290323 0.00000000## gates 0.00000000 0.00000000 0.02580645 0.00000000## generates 0.00000000 0.01393922 0.00000000 0.00000000## generosity 0.00000000 0.02787845 0.00000000 0.01523926## grade 0.01325732 0.00000000 0.00000000 0.00000000## grades 0.00000000 0.01393922 0.00000000 0.00000000## gradually 0.00000000 0.00000000 0.00000000 0.00000000## grasp 0.00000000 0.00000000 0.00000000 0.00000000## gratitude 0.00000000 0.00000000 0.00000000 0.00000000## guest 0.00000000 0.00000000 0.00000000 0.00000000## guided 0.00000000 0.00000000 0.00000000 0.00000000## hall 0.00000000 0.00000000 0.00000000 0.00000000## happy 0.00000000 0.00000000 0.00000000 0.00000000## harbor 0.00000000 0.00000000 0.00000000 0.00000000## hatch 0.00000000 0.00000000 0.00000000 0.03047851## hated 0.00000000 0.00000000 0.00000000 0.00000000## hearing 0.00000000 0.00000000 0.00000000 0.01523926## hemisphere 0.00000000 0.01393922 0.00000000 0.00000000## heroes 0.00000000 0.00000000 0.02580645 0.00000000## hiding 0.00000000 0.00000000 0.00000000 0.00000000## highs 0.01325732 0.00000000 0.00000000 0.00000000## himself 0.00000000 0.00000000 0.00000000 0.00000000## hole 0.00000000 0.00000000 0.00000000 0.00000000## homeownership 0.00000000 0.00000000 0.00000000 0.00000000## hopeless 0.00000000 0.00000000 0.00000000 0.01523926## hot 0.00000000 0.00000000 0.00000000 0.00000000## humane 0.00000000 0.00000000 0.00000000 0.00000000## hunger 0.00000000 0.01393922 0.01290323 0.00000000## husband 0.00000000 0.00000000 0.00000000 0.00000000## idealism 0.00000000 0.00000000 0.00000000 0.00000000## identified 0.00000000 0.00000000 0.00000000 0.01523926## ideologies 0.00000000 0.00000000 0.01290323 0.00000000## illness 0.00000000 0.01393922 0.00000000 0.00000000## imagined 0.00000000 0.00000000 0.00000000 0.00000000## imports 0.00000000 0.00000000 0.00000000 0.00000000## improved 0.00000000 0.00000000 0.00000000 0.00000000## inspired 0.00000000 0.00000000 0.00000000 0.01523926## institutes 0.00000000 0.00000000 0.00000000 0.00000000## interested 0.00000000 0.00000000 0.00000000 0.00000000## jackie 0.00000000 0.00000000 0.05161290 0.00000000## jeopardize 0.02651465 0.00000000 0.00000000 0.00000000## johnson 0.00000000 0.00000000 0.00000000 0.00000000## jordan 0.00000000 0.00000000 0.00000000 0.00000000## josefina 0.00000000 0.00000000 0.00000000 0.00000000## july 0.00000000 0.00000000 0.01290323 0.00000000## junk 0.00000000 0.00000000 0.00000000 0.00000000## k 0.02651465 0.00000000 0.00000000 0.00000000## knowledge 0.00000000 0.01393922 0.00000000 0.01523926## latino 0.00000000 0.01393922 0.01290323 0.00000000## layoffs 0.00000000 0.00000000 0.00000000 0.04571777## legitimate 0.00000000 0.00000000 0.00000000 0.00000000## lenders 0.00000000 0.00000000 0.01290323 0.01523926## lesson 0.00000000 0.01393922 0.01290323 0.00000000## levant 0.00000000 0.02787845 0.00000000 0.00000000## leverage 0.00000000 0.01393922 0.00000000 0.00000000## liberal 0.00000000 0.01393922 0.01290323 0.00000000## lies 0.00000000 0.00000000 0.00000000 0.01523926## light 0.00000000 0.00000000 0.00000000 0.00000000## liters 0.00000000 0.00000000 0.00000000 0.00000000## lived 0.00000000 0.01393922 0.00000000 0.01523926## locate 0.01325732 0.01393922 0.00000000 0.00000000## losses 0.00000000 0.00000000 0.01290323 0.01523926## malaria 0.00000000 0.00000000 0.00000000 0.00000000## master 0.00000000 0.00000000 0.05161290 0.00000000## match 0.00000000 0.01393922 0.01290323 0.00000000## meets 0.00000000 0.00000000 0.01290323 0.00000000## mentor 0.00000000 0.00000000 0.00000000 0.00000000## mercy 0.00000000 0.00000000 0.00000000 0.00000000## mexico 0.01325732 0.00000000 0.01290323 0.00000000## midst 0.00000000 0.00000000 0.00000000 0.01523926## militia 0.00000000 0.00000000 0.00000000 0.00000000## millionaires 0.00000000 0.00000000 0.02580645 0.00000000## mine 0.00000000 0.01393922 0.00000000 0.00000000## mitt 0.02651465 0.00000000 0.00000000 0.00000000## morning 0.00000000 0.00000000 0.00000000 0.00000000## mourning 0.00000000 0.00000000 0.00000000 0.00000000## movements 0.00000000 0.00000000 0.00000000 0.00000000## moves 0.01325732 0.00000000 0.01290323 0.00000000## name 0.00000000 0.00000000 0.00000000 0.01523926## nancy 0.00000000 0.00000000 0.00000000 0.01523926## native 0.00000000 0.01393922 0.01290323 0.00000000## nature 0.01325732 0.00000000 0.00000000 0.00000000## naval 0.00000000 0.01393922 0.00000000 0.01523926## nearing 0.00000000 0.01393922 0.00000000 0.00000000## nest 0.00000000 0.00000000 0.00000000 0.00000000## newly 0.00000000 0.00000000 0.00000000 0.00000000## norwood 0.00000000 0.00000000 0.00000000 0.00000000## notice 0.00000000 0.00000000 0.01290323 0.00000000## notion 0.00000000 0.00000000 0.01290323 0.00000000## obesity 0.00000000 0.00000000 0.00000000 0.00000000## offering 0.00000000 0.01393922 0.00000000 0.00000000## offshore 0.00000000 0.00000000 0.02580645 0.00000000## ohio 0.01325732 0.00000000 0.00000000 0.00000000## ongoing 0.00000000 0.00000000 0.00000000 0.00000000## oppression 0.00000000 0.00000000 0.00000000 0.00000000## orrin 0.00000000 0.00000000 0.00000000 0.03047851## outlined 0.01325732 0.01393922 0.00000000 0.00000000## outsourcing 0.00000000 0.01393922 0.02580645 0.00000000## overnight 0.00000000 0.00000000 0.00000000 0.01523926## oversight 0.00000000 0.00000000 0.01290323 0.03047851## ownership 0.00000000 0.00000000 0.00000000 0.00000000## pacific 0.00000000 0.00000000 0.01290323 0.00000000## pain 0.00000000 0.00000000 0.00000000 0.00000000## palestine 0.00000000 0.00000000 0.00000000 0.00000000## palestinians 0.00000000 0.00000000 0.00000000 0.00000000## partnering 0.00000000 0.01393922 0.00000000 0.00000000## payment 0.01325732 0.00000000 0.00000000 0.03047851## pelosi 0.00000000 0.00000000 0.00000000 0.01523926## perhaps 0.00000000 0.00000000 0.00000000 0.01523926## permitted 0.00000000 0.00000000 0.00000000 0.00000000## persian 0.00000000 0.00000000 0.00000000 0.00000000## philadelphia 0.00000000 0.00000000 0.00000000 0.00000000## plague 0.00000000 0.00000000 0.00000000 0.00000000## plotting 0.00000000 0.00000000 0.00000000 0.00000000## pocket 0.00000000 0.00000000 0.01290323 0.00000000## position 0.00000000 0.00000000 0.01290323 0.00000000## positioned 0.00000000 0.00000000 0.01290323 0.00000000## possibilities 0.00000000 0.00000000 0.00000000 0.00000000## pray 0.00000000 0.00000000 0.00000000 0.00000000## pre-k 0.00000000 0.00000000 0.00000000 0.00000000## precisely 0.00000000 0.00000000 0.00000000 0.00000000## preschool 0.05302930 0.00000000 0.00000000 0.00000000## present 0.00000000 0.00000000 0.00000000 0.00000000## previous 0.00000000 0.00000000 0.00000000 0.00000000## pride 0.00000000 0.00000000 0.00000000 0.01523926## probably 0.01325732 0.00000000 0.00000000 0.03047851## profit 0.00000000 0.00000000 0.00000000 0.01523926## prohibited 0.00000000 0.01393922 0.00000000 0.00000000## prove 0.01325732 0.00000000 0.00000000 0.00000000## purposes 0.00000000 0.00000000 0.00000000 0.00000000## qualities 0.00000000 0.00000000 0.00000000 0.01523926## quantities 0.00000000 0.00000000 0.00000000 0.00000000## quiet 0.00000000 0.00000000 0.00000000 0.01523926## raclin 0.00000000 0.00000000 0.00000000 0.00000000## rapidly 0.01325732 0.00000000 0.00000000 0.00000000## reaction 0.00000000 0.00000000 0.00000000 0.00000000## reality 0.00000000 0.00000000 0.00000000 0.01523926## reckless 0.01325732 0.00000000 0.00000000 0.01523926## records 0.00000000 0.00000000 0.00000000 0.01523926## regulation 0.00000000 0.00000000 0.00000000 0.01523926## rein 0.00000000 0.00000000 0.01290323 0.00000000## release 0.01325732 0.00000000 0.00000000 0.00000000## relent 0.00000000 0.01393922 0.01290323 0.00000000## remind 0.00000000 0.00000000 0.00000000 0.00000000## reminder 0.00000000 0.00000000 0.00000000 0.00000000## repayment 0.00000000 0.00000000 0.01290323 0.00000000## reports 0.00000000 0.00000000 0.00000000 0.00000000## represent 0.00000000 0.01393922 0.00000000 0.00000000## representative 0.00000000 0.00000000 0.00000000 0.00000000## represents 0.00000000 0.00000000 0.00000000 0.01523926## requiring 0.00000000 0.00000000 0.01290323 0.00000000## rescued 0.00000000 0.00000000 0.01290323 0.00000000## responsibly 0.00000000 0.01393922 0.00000000 0.01523926## rigged 0.00000000 0.01393922 0.00000000 0.00000000## ronald 0.00000000 0.00000000 0.00000000 0.00000000## rostrum 0.00000000 0.00000000 0.00000000 0.00000000## ruin 0.00000000 0.01393922 0.00000000 0.00000000## san 0.03977197 0.00000000 0.00000000 0.00000000## scientific 0.00000000 0.00000000 0.00000000 0.00000000## search 0.00000000 0.00000000 0.00000000 0.00000000## seems 0.00000000 0.01393922 0.01290323 0.00000000## senators 0.01325732 0.00000000 0.00000000 0.00000000## shadow 0.02651465 0.01393922 0.00000000 0.00000000## shield 0.00000000 0.01393922 0.00000000 0.00000000## shore 0.00000000 0.00000000 0.01290323 0.00000000## showed 0.00000000 0.00000000 0.00000000 0.00000000## siemens 0.02651465 0.00000000 0.02580645 0.00000000## site 0.00000000 0.00000000 0.01290323 0.01523926## six 0.00000000 0.01393922 0.00000000 0.01523926## skeptical 0.00000000 0.00000000 0.00000000 0.01523926## slipped 0.00000000 0.00000000 0.00000000 0.00000000## somewhere 0.00000000 0.00000000 0.01290323 0.01523926## southeast 0.00000000 0.00000000 0.00000000 0.00000000## sparing 0.00000000 0.00000000 0.00000000 0.00000000## sports 0.00000000 0.00000000 0.00000000 0.00000000## spouses 0.00000000 0.01393922 0.00000000 0.00000000## spreading 0.00000000 0.00000000 0.00000000 0.00000000## spur 0.00000000 0.00000000 0.01290323 0.03047851## st-century 0.00000000 0.02787845 0.00000000 0.00000000## stamp 0.00000000 0.00000000 0.00000000 0.01523926## star 0.01325732 0.00000000 0.00000000 0.00000000## stays 0.00000000 0.00000000 0.00000000 0.00000000## storm 0.01325732 0.00000000 0.00000000 0.01523926## straits 0.00000000 0.00000000 0.00000000 0.00000000## strategies 0.00000000 0.00000000 0.00000000 0.00000000## strengthened 0.00000000 0.00000000 0.00000000 0.00000000## striving 0.01325732 0.04181767 0.00000000 0.00000000## strongholds 0.00000000 0.00000000 0.00000000 0.00000000## struggles 0.00000000 0.00000000 0.00000000 0.00000000## successful 0.00000000 0.00000000 0.00000000 0.00000000## sudan 0.00000000 0.00000000 0.00000000 0.00000000## sufficient 0.00000000 0.00000000 0.00000000 0.00000000## supposed 0.00000000 0.00000000 0.01290323 0.00000000## supreme 0.00000000 0.00000000 0.00000000 0.00000000## table 0.00000000 0.01393922 0.01290323 0.01523926## tackle 0.00000000 0.00000000 0.00000000 0.00000000## talented 0.00000000 0.00000000 0.01290323 0.00000000## talking 0.01325732 0.00000000 0.01290323 0.00000000## target 0.02651465 0.00000000 0.00000000 0.00000000## targeted 0.00000000 0.01393922 0.00000000 0.00000000## tech 0.01325732 0.00000000 0.00000000 0.00000000## tehran 0.00000000 0.00000000 0.00000000 0.00000000## territories 0.00000000 0.00000000 0.00000000 0.00000000## territory 0.00000000 0.00000000 0.00000000 0.00000000## they^d 0.02651465 0.00000000 0.00000000 0.00000000## thriving 0.02651465 0.00000000 0.00000000 0.00000000## tide 0.00000000 0.01393922 0.01290323 0.00000000## tie 0.01325732 0.00000000 0.00000000 0.00000000## ties 0.00000000 0.00000000 0.01290323 0.00000000## tone 0.00000000 0.00000000 0.00000000 0.00000000## tool 0.00000000 0.00000000 0.00000000 0.00000000## toxin 0.00000000 0.00000000 0.00000000 0.00000000## trading 0.00000000 0.00000000 0.02580645 0.00000000## trains 0.00000000 0.01393922 0.00000000 0.00000000## trans-pacific 0.02651465 0.00000000 0.00000000 0.00000000## transforming 0.00000000 0.00000000 0.00000000 0.00000000## treasury 0.00000000 0.00000000 0.00000000 0.01523926## trends 0.00000000 0.00000000 0.00000000 0.00000000## tribal 0.00000000 0.00000000 0.00000000 0.01523926## trusting 0.00000000 0.00000000 0.00000000 0.00000000## tunisia 0.00000000 0.00000000 0.00000000 0.00000000## tyrants 0.00000000 0.00000000 0.00000000 0.00000000## uncovered 0.00000000 0.00000000 0.00000000 0.00000000## understood 0.00000000 0.00000000 0.01290323 0.00000000## unfairly 0.00000000 0.00000000 0.00000000 0.00000000## unions 0.00000000 0.02787845 0.00000000 0.00000000## up-or-down 0.00000000 0.00000000 0.01290323 0.00000000## upgrade 0.02651465 0.01393922 0.01290323 0.00000000## upholds 0.00000000 0.01393922 0.00000000 0.00000000## usa 0.00000000 0.00000000 0.00000000 0.00000000## usher 0.00000000 0.00000000 0.00000000 0.00000000## verge 0.00000000 0.00000000 0.01290323 0.00000000## verify 0.00000000 0.00000000 0.00000000 0.00000000## wanted 0.00000000 0.00000000 0.00000000 0.00000000## warfare 0.00000000 0.00000000 0.01290323 0.00000000## warning 0.00000000 0.00000000 0.00000000 0.00000000## warriors 0.01325732 0.00000000 0.00000000 0.00000000## wave 0.00000000 0.00000000 0.01290323 0.00000000## weaken 0.00000000 0.01393922 0.00000000 0.00000000## wear 0.01325732 0.00000000 0.00000000 0.00000000## web 0.00000000 0.00000000 0.01290323 0.01523926## weight 0.00000000 0.00000000 0.00000000 0.01523926## welfare 0.00000000 0.00000000 0.00000000 0.00000000## western 0.00000000 0.00000000 0.00000000 0.00000000## won 0.00000000 0.02787845 0.00000000 0.00000000## wonder 0.01325732 0.00000000 0.00000000 0.00000000## world-class 0.01325732 0.00000000 0.00000000 0.00000000## wouldn^t 0.00000000 0.00000000 0.00000000 0.00000000## wounded 0.01325732 0.00000000 0.00000000 0.00000000## year^s 0.00000000 0.00000000 0.00000000 0.00000000## you^d 0.00000000 0.00000000 0.00000000 0.01523926## yours 0.00000000 0.00000000 0.00000000 0.00000000## zarqawi 0.00000000 0.00000000 0.00000000 0.00000000## -percent 0.00000000 0.00000000 0.00000000 0.00000000## -year-old 0.00000000 0.00000000 0.00000000 0.00000000## abbas 0.00000000 0.00000000 0.00000000 0.00000000## abortion 0.00000000 0.00000000 0.00000000 0.00000000## abortions 0.00000000 0.01393922 0.00000000 0.00000000## abraham 0.00000000 0.00000000 0.01290323 0.00000000## abstinence 0.00000000 0.00000000 0.00000000 0.00000000## accelerate 0.01325732 0.00000000 0.00000000 0.00000000## accepted 0.00000000 0.00000000 0.00000000 0.00000000## accompany 0.00000000 0.00000000 0.00000000 0.00000000## accomplished 0.00000000 0.00000000 0.00000000 0.00000000## accountants 0.01325732 0.01393922 0.00000000 0.00000000## achievements 0.00000000 0.00000000 0.01290323 0.00000000## acknowledge 0.00000000 0.00000000 0.00000000 0.00000000## acting 0.00000000 0.00000000 0.01290323 0.00000000## activist 0.00000000 0.00000000 0.00000000 0.00000000## addition 0.00000000 0.00000000 0.00000000 0.00000000## addressing 0.00000000 0.00000000 0.00000000 0.00000000## adds 0.00000000 0.00000000 0.01290323 0.00000000## administered 0.00000000 0.00000000 0.00000000 0.01523926## administrations 0.00000000 0.00000000 0.01290323 0.00000000## adult 0.00000000 0.00000000 0.00000000 0.00000000## advocate 0.00000000 0.01393922 0.01290323 0.00000000## affect 0.00000000 0.00000000 0.00000000 0.00000000## airline 0.00000000 0.00000000 0.00000000 0.00000000## alive 0.00000000 0.00000000 0.01290323 0.00000000## all-of-the-above 0.01325732 0.00000000 0.01290323 0.00000000## ambition 0.00000000 0.00000000 0.01290323 0.00000000## anew 0.00000000 0.00000000 0.00000000 0.00000000## answers 0.01325732 0.00000000 0.00000000 0.01523926## anxious 0.00000000 0.00000000 0.00000000 0.00000000## appreciate 0.00000000 0.00000000 0.00000000 0.00000000## arab 0.00000000 0.01393922 0.00000000 0.00000000## arabian 0.01325732 0.00000000 0.00000000 0.00000000## area 0.01325732 0.00000000 0.00000000 0.00000000## arizona 0.00000000 0.00000000 0.00000000 0.00000000## arm 0.00000000 0.00000000 0.00000000 0.00000000## armies 0.00000000 0.00000000 0.00000000 0.00000000## arsenal 0.00000000 0.00000000 0.00000000 0.00000000## arsenals 0.01325732 0.00000000 0.00000000 0.00000000## asia-pacific 0.00000000 0.01393922 0.00000000 0.00000000## asks 0.00000000 0.00000000 0.00000000 0.01523926## assassins 0.00000000 0.00000000 0.00000000 0.00000000## attempted 0.00000000 0.00000000 0.00000000 0.00000000## attitude 0.01325732 0.00000000 0.00000000 0.00000000## audience 0.00000000 0.02787845 0.00000000 0.00000000## august 0.00000000 0.00000000 0.00000000 0.00000000## aung 0.03977197 0.00000000 0.00000000 0.00000000## australia 0.00000000 0.00000000 0.00000000 0.00000000## authorize 0.00000000 0.01393922 0.00000000 0.00000000## avoiding 0.00000000 0.01393922 0.00000000 0.00000000## backed 0.00000000 0.00000000 0.00000000 0.00000000## bailouts 0.00000000 0.01393922 0.01290323 0.01523926## ballistic 0.00000000 0.00000000 0.00000000 0.00000000## ballot 0.01325732 0.01393922 0.00000000 0.00000000## bankrupt 0.00000000 0.01393922 0.00000000 0.00000000## bargain 0.01325732 0.00000000 0.01290323 0.00000000## battered 0.00000000 0.00000000 0.00000000 0.00000000## battlefield 0.00000000 0.00000000 0.00000000 0.00000000## becomes 0.01325732 0.01393922 0.00000000 0.00000000## becoming 0.00000000 0.00000000 0.00000000 0.00000000## belong 0.00000000 0.00000000 0.01290323 0.00000000## beloved 0.00000000 0.00000000 0.00000000 0.00000000## below 0.01325732 0.00000000 0.00000000 0.00000000## benghazi 0.00000000 0.00000000 0.00000000 0.00000000## berlin 0.00000000 0.00000000 0.01290323 0.00000000## bet 0.00000000 0.00000000 0.03870968 0.00000000## bioterrorism 0.00000000 0.00000000 0.00000000 0.00000000## bisexual 0.00000000 0.01393922 0.00000000 0.00000000## blows 0.00000000 0.00000000 0.02580645 0.00000000## blueprint 0.00000000 0.00000000 0.02580645 0.01523926## bob 0.00000000 0.00000000 0.01290323 0.00000000## bombing 0.00000000 0.00000000 0.00000000 0.00000000## bombs 0.00000000 0.00000000 0.00000000 0.00000000## boss 0.00000000 0.00000000 0.00000000 0.00000000## boston 0.00000000 0.02787845 0.00000000 0.00000000## brain 0.01325732 0.00000000 0.00000000 0.00000000## brand 0.00000000 0.00000000 0.00000000 0.00000000## breakthrough 0.00000000 0.01393922 0.00000000 0.00000000## bubble 0.00000000 0.00000000 0.01290323 0.00000000## bucks 0.01325732 0.00000000 0.00000000 0.00000000## budgets 0.00000000 0.00000000 0.02580645 0.00000000## burdened 0.00000000 0.01393922 0.00000000 0.00000000## bureaucrats 0.00000000 0.00000000 0.00000000 0.00000000## burn 0.01325732 0.00000000 0.00000000 0.00000000## burning 0.00000000 0.00000000 0.00000000 0.00000000## busy 0.00000000 0.00000000 0.00000000 0.00000000## byron 0.00000000 0.00000000 0.00000000 0.00000000## cabinet 0.01325732 0.00000000 0.00000000 0.01523926## candid 0.00000000 0.00000000 0.00000000 0.00000000## cap 0.00000000 0.00000000 0.00000000 0.01523926## cards 0.00000000 0.00000000 0.02580645 0.00000000## carefully 0.00000000 0.00000000 0.00000000 0.01523926## cents 0.00000000 0.00000000 0.00000000 0.00000000## centuries 0.00000000 0.00000000 0.00000000 0.00000000## certainly 0.01325732 0.00000000 0.00000000 0.00000000## chair 0.00000000 0.00000000 0.00000000 0.01523926## chances 0.00000000 0.02787845 0.00000000 0.00000000## chapter 0.01325732 0.01393922 0.00000000 0.00000000## charges 0.00000000 0.00000000 0.00000000 0.00000000## check 0.01325732 0.00000000 0.00000000 0.00000000## chicago 0.01325732 0.01393922 0.01290323 0.00000000## chile 0.00000000 0.00000000 0.00000000 0.00000000## chip 0.00000000 0.00000000 0.01290323 0.00000000## chips 0.00000000 0.00000000 0.00000000 0.00000000## choosing 0.00000000 0.00000000 0.00000000 0.00000000## christians 0.00000000 0.00000000 0.01290323 0.00000000## christmas 0.00000000 0.00000000 0.00000000 0.00000000## church 0.00000000 0.00000000 0.00000000 0.00000000## circumstances 0.00000000 0.01393922 0.00000000 0.01523926## civilization 0.00000000 0.00000000 0.00000000 0.00000000## claimed 0.00000000 0.00000000 0.00000000 0.01523926## classes 0.01325732 0.00000000 0.00000000 0.00000000## cleanup 0.00000000 0.00000000 0.02580645 0.00000000## clearing 0.00000000 0.00000000 0.01290323 0.00000000## clock 0.00000000 0.01393922 0.00000000 0.00000000## closest 0.00000000 0.00000000 0.01290323 0.00000000## cole 0.00000000 0.00000000 0.00000000 0.00000000## collection 0.00000000 0.01393922 0.00000000 0.00000000## comforted 0.00000000 0.00000000 0.00000000 0.01523926## command 0.00000000 0.00000000 0.00000000 0.00000000## communism 0.00000000 0.00000000 0.00000000 0.00000000## company^s 0.00000000 0.01393922 0.00000000 0.00000000## competent 0.00000000 0.00000000 0.00000000 0.00000000## complex 0.00000000 0.00000000 0.00000000 0.00000000## concerned 0.00000000 0.00000000 0.00000000 0.00000000## connect 0.00000000 0.00000000 0.00000000 0.00000000## consensus 0.00000000 0.00000000 0.01290323 0.01523926## considered 0.00000000 0.00000000 0.00000000 0.00000000## consistent 0.02651465 0.00000000 0.00000000 0.00000000## consolidate 0.00000000 0.00000000 0.01290323 0.00000000## constructive 0.00000000 0.00000000 0.00000000 0.00000000## contain 0.00000000 0.00000000 0.03870968 0.00000000## contracting 0.00000000 0.00000000 0.00000000 0.01523926## contracts 0.00000000 0.00000000 0.00000000 0.01523926## convene 0.00000000 0.00000000 0.00000000 0.00000000## cooperate 0.00000000 0.00000000 0.00000000 0.00000000## coordination 0.02651465 0.00000000 0.00000000 0.00000000## cordray 0.00000000 0.00000000 0.03870968 0.00000000## corner 0.00000000 0.00000000 0.00000000 0.00000000## counter 0.00000000 0.00000000 0.00000000 0.00000000## countless 0.01325732 0.01393922 0.00000000 0.00000000## creative 0.00000000 0.00000000 0.00000000 0.00000000## crimes 0.00000000 0.00000000 0.01290323 0.00000000## criticism 0.00000000 0.00000000 0.00000000 0.00000000## crossings 0.01325732 0.00000000 0.01290323 0.00000000## crowds 0.00000000 0.00000000 0.00000000 0.00000000## cruelty 0.00000000 0.00000000 0.00000000 0.00000000## cure 0.00000000 0.00000000 0.00000000 0.01523926## custody 0.00000000 0.00000000 0.00000000 0.00000000## custom 0.00000000 0.00000000 0.00000000 0.00000000## cybersecurity 0.01325732 0.01393922 0.01290323 0.00000000## dan 0.00000000 0.00000000 0.00000000 0.00000000## dark 0.00000000 0.01393922 0.00000000 0.00000000## deaths 0.01325732 0.00000000 0.00000000 0.00000000## declare 0.02651465 0.00000000 0.00000000 0.00000000## deepest 0.00000000 0.00000000 0.00000000 0.00000000## defiance 0.00000000 0.00000000 0.00000000 0.00000000## defined 0.00000000 0.00000000 0.00000000 0.00000000## demars 0.00000000 0.00000000 0.00000000 0.00000000## democratization 0.00000000 0.00000000 0.00000000 0.00000000## denying 0.00000000 0.01393922 0.00000000 0.00000000## deployed 0.00000000 0.00000000 0.00000000 0.00000000## derail 0.00000000 0.01393922 0.00000000 0.00000000## destructive 0.00000000 0.00000000 0.00000000 0.01523926## detect 0.00000000 0.00000000 0.00000000 0.00000000## devastate 0.01325732 0.00000000 0.00000000 0.00000000## dictatorship 0.00000000 0.00000000 0.00000000 0.00000000## differently 0.00000000 0.00000000 0.01290323 0.01523926## digital 0.00000000 0.01393922 0.00000000 0.00000000## dikembe 0.00000000 0.00000000 0.00000000 0.00000000## director 0.00000000 0.00000000 0.01290323 0.00000000## disasters 0.01325732 0.00000000 0.00000000 0.00000000## disclose 0.00000000 0.00000000 0.01290323 0.00000000## discover 0.00000000 0.00000000 0.01290323 0.00000000## discoveries 0.00000000 0.01393922 0.01290323 0.01523926## dismantle 0.00000000 0.01393922 0.00000000 0.00000000## dismiss 0.00000000 0.00000000 0.00000000 0.00000000## disposition 0.00000000 0.00000000 0.00000000 0.01523926## distance 0.01325732 0.00000000 0.00000000 0.00000000## districts 0.00000000 0.00000000 0.00000000 0.00000000## diversity 0.00000000 0.00000000 0.00000000 0.00000000## dividends 0.00000000 0.00000000 0.00000000 0.00000000## divisions 0.00000000 0.00000000 0.00000000 0.00000000## doha 0.00000000 0.00000000 0.00000000 0.00000000## doubts 0.00000000 0.00000000 0.00000000 0.00000000## dozen 0.01325732 0.00000000 0.00000000 0.00000000## draft 0.01325732 0.00000000 0.00000000 0.00000000## draw 0.01325732 0.01393922 0.00000000 0.00000000## drawdown 0.01325732 0.00000000 0.00000000 0.00000000## dropout 0.00000000 0.00000000 0.01290323 0.01523926## dynamic 0.00000000 0.00000000 0.00000000 0.00000000## edge 0.00000000 0.00000000 0.00000000 0.00000000## educational 0.01325732 0.01393922 0.00000000 0.00000000## einstein 0.00000000 0.00000000 0.00000000 0.00000000## el 0.00000000 0.00000000 0.00000000 0.00000000## elderly 0.00000000 0.00000000 0.00000000 0.00000000## eliminated 0.00000000 0.01393922 0.00000000 0.00000000## eliminating 0.00000000 0.00000000 0.00000000 0.00000000## embassies 0.00000000 0.00000000 0.00000000 0.00000000## embolden 0.00000000 0.00000000 0.00000000 0.00000000## embrace 0.01325732 0.01393922 0.00000000 0.00000000## embraced 0.00000000 0.00000000 0.00000000 0.00000000## embryos 0.00000000 0.00000000 0.00000000 0.00000000## emerged 0.01325732 0.00000000 0.00000000 0.00000000## empire 0.00000000 0.00000000 0.00000000 0.00000000## employ 0.00000000 0.00000000 0.00000000 0.00000000## employer-based 0.00000000 0.00000000 0.00000000 0.00000000## endless 0.00000000 0.00000000 0.00000000 0.00000000## engagement 0.00000000 0.00000000 0.00000000 0.01523926## english 0.01325732 0.00000000 0.00000000 0.00000000## enjoy 0.01325732 0.00000000 0.00000000 0.00000000## enriching 0.00000000 0.00000000 0.00000000 0.00000000## enrichment 0.00000000 0.00000000 0.00000000 0.00000000## ensures 0.01325732 0.00000000 0.01290323 0.01523926## ensuring 0.00000000 0.02787845 0.00000000 0.00000000## entirely 0.00000000 0.00000000 0.00000000 0.00000000## entitlements 0.00000000 0.00000000 0.00000000 0.00000000## envoy 0.00000000 0.00000000 0.00000000 0.04571777## equally 0.00000000 0.00000000 0.00000000 0.00000000## equip 0.03977197 0.00000000 0.00000000 0.00000000## eric 0.02651465 0.00000000 0.01290323 0.00000000## errors 0.00000000 0.00000000 0.00000000 0.01523926## escape 0.00000000 0.00000000 0.02580645 0.00000000## estiven 0.00000000 0.00000000 0.00000000 0.00000000## ethnic 0.00000000 0.00000000 0.00000000 0.00000000## except 0.00000000 0.00000000 0.00000000 0.00000000## exceptional 0.00000000 0.01393922 0.00000000 0.00000000## executives 0.00000000 0.01393922 0.00000000 0.00000000## exercise 0.00000000 0.00000000 0.00000000 0.00000000## exist 0.00000000 0.01393922 0.00000000 0.01523926## existence 0.00000000 0.00000000 0.00000000 0.00000000## expense 0.00000000 0.01393922 0.00000000 0.01523926## expressed 0.00000000 0.00000000 0.00000000 0.00000000## eyes 0.00000000 0.00000000 0.00000000 0.01523926## falter 0.00000000 0.00000000 0.00000000 0.00000000## familiar 0.00000000 0.00000000 0.00000000 0.00000000## fascism 0.00000000 0.00000000 0.01290323 0.00000000## fearful 0.00000000 0.01393922 0.00000000 0.01523926## feeling 0.00000000 0.00000000 0.01290323 0.00000000## feels 0.00000000 0.00000000 0.00000000 0.00000000## fees 0.00000000 0.00000000 0.00000000 0.00000000## fifteen 0.00000000 0.02787845 0.00000000 0.00000000## filled 0.00000000 0.01393922 0.00000000 0.00000000## filling 0.01325732 0.00000000 0.00000000 0.00000000## finest 0.00000000 0.00000000 0.01290323 0.00000000## first-responders 0.00000000 0.00000000 0.00000000 0.00000000## flights 0.00000000 0.00000000 0.00000000 0.00000000## floods 0.01325732 0.01393922 0.00000000 0.00000000## flow 0.00000000 0.00000000 0.00000000 0.01523926## fly 0.00000000 0.01393922 0.00000000 0.00000000## footing 0.00000000 0.00000000 0.00000000 0.00000000## forcing 0.01325732 0.00000000 0.00000000 0.00000000## ford 0.01325732 0.00000000 0.01290323 0.00000000## forgot 0.00000000 0.00000000 0.00000000 0.00000000## formed 0.00000000 0.00000000 0.01290323 0.00000000## founding 0.00000000 0.00000000 0.00000000 0.00000000## freedoms 0.00000000 0.00000000 0.00000000 0.00000000## freer 0.00000000 0.01393922 0.00000000 0.00000000## front 0.00000000 0.01393922 0.00000000 0.00000000## frustration 0.00000000 0.00000000 0.00000000 0.00000000## function 0.00000000 0.00000000 0.00000000 0.00000000## furniture 0.00000000 0.00000000 0.01290323 0.00000000## futures 0.00000000 0.00000000 0.00000000 0.00000000## gabrielle 0.02651465 0.00000000 0.00000000 0.00000000## gangs 0.00000000 0.00000000 0.00000000 0.00000000## gaps 0.00000000 0.00000000 0.00000000 0.01523926## gary 0.00000000 0.00000000 0.00000000 0.00000000## generation^s 0.01325732 0.00000000 0.01290323 0.00000000## generous 0.00000000 0.00000000 0.00000000 0.00000000## georgia 0.01325732 0.00000000 0.00000000 0.00000000## germany 0.01325732 0.00000000 0.01290323 0.01523926## gi 0.00000000 0.00000000 0.01290323 0.01523926## ginsberg 0.01325732 0.00000000 0.00000000 0.00000000## god^s 0.00000000 0.00000000 0.00000000 0.00000000## golden 0.00000000 0.00000000 0.01290323 0.00000000## good-paying 0.01325732 0.01393922 0.00000000 0.00000000## goodness 0.00000000 0.00000000 0.00000000 0.00000000## google 0.00000000 0.01393922 0.00000000 0.00000000## grace 0.00000000 0.00000000 0.00000000 0.00000000## grandfather 0.00000000 0.01393922 0.01290323 0.00000000## greatness 0.00000000 0.00000000 0.00000000 0.00000000## gross 0.00000000 0.04181767 0.00000000 0.00000000## guarantees 0.00000000 0.01393922 0.00000000 0.00000000## guys 0.01325732 0.00000000 0.00000000 0.00000000## halfway 0.01325732 0.00000000 0.00000000 0.01523926## happens 0.00000000 0.00000000 0.01290323 0.01523926## harsh 0.01325732 0.00000000 0.00000000 0.00000000## havoc 0.00000000 0.00000000 0.00000000 0.00000000## heads 0.00000000 0.01393922 0.00000000 0.00000000## hearts 0.00000000 0.00000000 0.00000000 0.00000000## heat 0.01325732 0.01393922 0.00000000 0.00000000## henry 0.00000000 0.04181767 0.00000000 0.00000000## heroic 0.00000000 0.00000000 0.00000000 0.00000000## hesitate 0.00000000 0.00000000 0.00000000 0.00000000## highway 0.00000000 0.00000000 0.00000000 0.00000000## hijackers 0.00000000 0.00000000 0.00000000 0.00000000## history^s 0.00000000 0.00000000 0.00000000 0.00000000## holds 0.01325732 0.00000000 0.00000000 0.01523926## homeless 0.00000000 0.00000000 0.00000000 0.00000000## homelessness 0.00000000 0.00000000 0.00000000 0.00000000## honors 0.00000000 0.00000000 0.00000000 0.00000000## hostile 0.00000000 0.00000000 0.00000000 0.00000000## households 0.00000000 0.00000000 0.01290323 0.03047851## howard 0.00000000 0.00000000 0.00000000 0.00000000## hugged 0.00000000 0.00000000 0.00000000 0.00000000## hungry 0.00000000 0.00000000 0.00000000 0.00000000## hunt 0.00000000 0.01393922 0.00000000 0.00000000## hurricane 0.03977197 0.00000000 0.00000000 0.00000000## hurt 0.01325732 0.00000000 0.02580645 0.00000000## hybrid 0.00000000 0.00000000 0.01290323 0.00000000## ideal 0.00000000 0.00000000 0.00000000 0.00000000## iii 0.01325732 0.00000000 0.00000000 0.00000000## ill 0.00000000 0.00000000 0.00000000 0.01523926## illinois 0.00000000 0.01393922 0.00000000 0.00000000## images 0.00000000 0.00000000 0.00000000 0.00000000## immigrant 0.00000000 0.01393922 0.00000000 0.00000000## improvements 0.00000000 0.00000000 0.01290323 0.01523926## inc 0.00000000 0.00000000 0.01290323 0.00000000## incentive 0.00000000 0.00000000 0.00000000 0.00000000## industrialized 0.00000000 0.00000000 0.00000000 0.01523926## infection 0.00000000 0.00000000 0.00000000 0.00000000## infections 0.00000000 0.00000000 0.00000000 0.00000000## ingenuity 0.01325732 0.00000000 0.02580645 0.00000000## inherited 0.00000000 0.00000000 0.00000000 0.04571777## insurgency 0.00000000 0.00000000 0.00000000 0.00000000## insurgents 0.00000000 0.00000000 0.00000000 0.00000000## integrity 0.00000000 0.00000000 0.00000000 0.00000000## interior 0.00000000 0.00000000 0.01290323 0.01523926## intimidation 0.00000000 0.00000000 0.01290323 0.00000000## invited 0.00000000 0.00000000 0.00000000 0.00000000## involved 0.00000000 0.00000000 0.01290323 0.00000000## involves 0.00000000 0.00000000 0.00000000 0.00000000## iowa 0.00000000 0.00000000 0.00000000 0.00000000## isolating 0.00000000 0.00000000 0.00000000 0.00000000## isolationism 0.00000000 0.00000000 0.00000000 0.00000000## israelis 0.00000000 0.00000000 0.00000000 0.00000000## jack 0.00000000 0.04181767 0.00000000 0.00000000## janet 0.00000000 0.00000000 0.00000000 0.00000000## jews 0.00000000 0.00000000 0.01290323 0.00000000## judged 0.00000000 0.00000000 0.00000000 0.00000000## judgment 0.01325732 0.00000000 0.00000000 0.00000000## judicial 0.00000000 0.00000000 0.01290323 0.00000000## katherine 0.00000000 0.00000000 0.00000000 0.00000000## kathy 0.00000000 0.00000000 0.00000000 0.00000000## kay 0.00000000 0.00000000 0.00000000 0.00000000## kennedy^s 0.00000000 0.00000000 0.00000000 0.00000000## killing 0.00000000 0.00000000 0.00000000 0.00000000## kindness 0.00000000 0.00000000 0.00000000 0.00000000## king 0.00000000 0.00000000 0.00000000 0.00000000## kyi 0.03977197 0.00000000 0.00000000 0.00000000## laboratory 0.00000000 0.00000000 0.00000000 0.00000000## lack 0.01325732 0.00000000 0.00000000 0.00000000## ladders 0.01325732 0.00000000 0.00000000 0.00000000## latin 0.00000000 0.00000000 0.00000000 0.00000000## laura 0.00000000 0.00000000 0.00000000 0.00000000## lawful 0.00000000 0.00000000 0.00000000 0.00000000## league 0.01325732 0.00000000 0.00000000 0.00000000## leaves 0.00000000 0.00000000 0.00000000 0.01523926## lend 0.00000000 0.00000000 0.00000000 0.01523926## lesbian 0.00000000 0.01393922 0.00000000 0.00000000## letters 0.00000000 0.00000000 0.00000000 0.00000000## liberate 0.00000000 0.00000000 0.00000000 0.00000000## lieberman 0.03977197 0.00000000 0.00000000 0.00000000## lifetime 0.00000000 0.00000000 0.01290323 0.00000000## likely 0.02651465 0.00000000 0.00000000 0.00000000## limiting 0.00000000 0.01393922 0.00000000 0.00000000## lined 0.01325732 0.00000000 0.01290323 0.00000000## list 0.00000000 0.00000000 0.00000000 0.03047851## litigation 0.00000000 0.00000000 0.00000000 0.00000000## lock 0.00000000 0.00000000 0.03870968 0.00000000## longest 0.00000000 0.00000000 0.01290323 0.00000000## looked 0.00000000 0.00000000 0.01290323 0.00000000## louisiana 0.00000000 0.00000000 0.00000000 0.00000000## loving 0.00000000 0.00000000 0.00000000 0.00000000## lowering 0.00000000 0.01393922 0.01290323 0.00000000## loyalty 0.00000000 0.00000000 0.00000000 0.00000000## luxury 0.00000000 0.00000000 0.02580645 0.00000000## madrid 0.00000000 0.00000000 0.00000000 0.00000000## mali 0.02651465 0.00000000 0.00000000 0.00000000## malpractice 0.00000000 0.00000000 0.00000000 0.00000000## mankind 0.00000000 0.00000000 0.00000000 0.00000000## manufacture 0.00000000 0.00000000 0.00000000 0.00000000## meantime 0.01325732 0.00000000 0.00000000 0.00000000## media 0.00000000 0.00000000 0.00000000 0.00000000## menchu 0.03977197 0.00000000 0.00000000 0.00000000## mental 0.01325732 0.01393922 0.00000000 0.00000000## merge 0.00000000 0.00000000 0.00000000 0.00000000## messy 0.01325732 0.00000000 0.00000000 0.00000000## miles 0.00000000 0.00000000 0.00000000 0.01523926## milk 0.00000000 0.00000000 0.03870968 0.00000000## mindful 0.00000000 0.00000000 0.00000000 0.01523926## minneapolis 0.00000000 0.01393922 0.00000000 0.01523926## miracle 0.00000000 0.00000000 0.00000000 0.00000000## misguided 0.00000000 0.02787845 0.00000000 0.00000000## missiles 0.00000000 0.00000000 0.00000000 0.00000000## mistakes 0.00000000 0.00000000 0.00000000 0.00000000## mistrust 0.00000000 0.01393922 0.00000000 0.00000000## misty 0.00000000 0.00000000 0.00000000 0.00000000## misunderstanding 0.00000000 0.00000000 0.00000000 0.00000000## mobile 0.00000000 0.00000000 0.00000000 0.00000000## model 0.00000000 0.00000000 0.01290323 0.00000000## moon 0.00000000 0.00000000 0.00000000 0.01523926## mosque 0.00000000 0.00000000 0.00000000 0.00000000## mothers 0.01325732 0.00000000 0.00000000 0.00000000## mountain 0.00000000 0.00000000 0.00000000 0.01523926## murphy 0.03977197 0.00000000 0.00000000 0.00000000## narrow 0.00000000 0.00000000 0.00000000 0.00000000## nationwide 0.00000000 0.00000000 0.00000000 0.00000000## negotiated 0.00000000 0.00000000 0.00000000 0.00000000## neighborhood 0.00000000 0.01393922 0.00000000 0.01523926## nick 0.00000000 0.00000000 0.00000000 0.00000000## nights 0.00000000 0.00000000 0.00000000 0.01523926## nine 0.00000000 0.00000000 0.00000000 0.00000000## nominate 0.00000000 0.00000000 0.00000000 0.00000000## nominee 0.01325732 0.00000000 0.00000000 0.00000000## nominees 0.00000000 0.00000000 0.00000000 0.00000000## nonpartisan 0.02651465 0.00000000 0.00000000 0.00000000## nonproliferation 0.01325732 0.01393922 0.00000000 0.00000000## november 0.00000000 0.01393922 0.00000000 0.00000000## number-one 0.00000000 0.00000000 0.01290323 0.00000000## nurse 0.02651465 0.00000000 0.00000000 0.00000000## oath 0.00000000 0.01393922 0.00000000 0.00000000## objective 0.01325732 0.00000000 0.00000000 0.00000000## obligation 0.00000000 0.00000000 0.00000000 0.00000000## ocean 0.00000000 0.00000000 0.00000000 0.00000000## odds 0.00000000 0.01393922 0.00000000 0.00000000## offers 0.00000000 0.00000000 0.01290323 0.00000000## offices 0.00000000 0.00000000 0.01290323 0.00000000## official 0.00000000 0.00000000 0.01290323 0.00000000## older 0.00000000 0.01393922 0.00000000 0.00000000## olympic 0.00000000 0.00000000 0.00000000 0.00000000## open-ended 0.00000000 0.00000000 0.00000000 0.01523926## openings 0.00000000 0.01393922 0.02580645 0.00000000## opens 0.01325732 0.00000000 0.00000000 0.00000000## operating 0.00000000 0.00000000 0.00000000 0.00000000## opinions 0.00000000 0.00000000 0.01290323 0.01523926## opponents 0.00000000 0.00000000 0.01290323 0.00000000## opposed 0.00000000 0.00000000 0.00000000 0.00000000## oppressive 0.00000000 0.00000000 0.00000000 0.00000000## optimism 0.00000000 0.00000000 0.01290323 0.00000000## optimistic 0.00000000 0.01393922 0.00000000 0.00000000## orderly 0.00000000 0.00000000 0.00000000 0.00000000## orders 0.00000000 0.00000000 0.00000000 0.00000000## orleans 0.00000000 0.00000000 0.00000000 0.00000000## outlaw 0.00000000 0.00000000 0.00000000 0.00000000## overtime 0.00000000 0.01393922 0.00000000 0.00000000## overwhelming 0.02651465 0.00000000 0.00000000 0.00000000## pad 0.00000000 0.00000000 0.00000000 0.01523926## panels 0.00000000 0.00000000 0.00000000 0.01523926## parliament 0.01325732 0.00000000 0.00000000 0.00000000## passage 0.00000000 0.01393922 0.00000000 0.00000000## passenger 0.00000000 0.00000000 0.00000000 0.00000000## patent 0.00000000 0.00000000 0.00000000 0.00000000## pathway 0.01325732 0.00000000 0.00000000 0.01523926## patience 0.00000000 0.00000000 0.00000000 0.00000000## patrick 0.00000000 0.00000000 0.00000000 0.00000000## patrol 0.00000000 0.00000000 0.00000000 0.00000000## pendleton 0.03977197 0.00000000 0.00000000 0.00000000## penny 0.00000000 0.00000000 0.01290323 0.01523926## peoples 0.00000000 0.00000000 0.00000000 0.00000000## percentage 0.00000000 0.00000000 0.00000000 0.00000000## periods 0.01325732 0.00000000 0.00000000 0.00000000## permit 0.00000000 0.00000000 0.00000000 0.00000000## persistent 0.00000000 0.01393922 0.00000000 0.00000000## personally 0.00000000 0.00000000 0.00000000 0.01523926## phase 0.00000000 0.00000000 0.00000000 0.00000000## philippines 0.00000000 0.00000000 0.00000000 0.00000000## physical 0.00000000 0.01393922 0.00000000 0.00000000## pick 0.00000000 0.00000000 0.00000000 0.00000000## picture 0.00000000 0.00000000 0.00000000 0.00000000## placing 0.00000000 0.00000000 0.00000000 0.00000000## planning 0.00000000 0.00000000 0.00000000 0.00000000## plant 0.00000000 0.00000000 0.03870968 0.00000000## planted 0.00000000 0.00000000 0.00000000 0.00000000## plays 0.00000000 0.01393922 0.01290323 0.00000000## plots 0.00000000 0.00000000 0.00000000 0.00000000## poised 0.01325732 0.00000000 0.01290323 0.00000000## polls 0.00000000 0.00000000 0.00000000 0.00000000## pollution-free 0.00000000 0.00000000 0.00000000 0.00000000## popular 0.00000000 0.00000000 0.00000000 0.00000000## possess 0.00000000 0.00000000 0.00000000 0.01523926## posted 0.00000000 0.00000000 0.00000000 0.00000000## posts 0.00000000 0.00000000 0.00000000 0.00000000## practical 0.00000000 0.01393922 0.00000000 0.00000000## praise 0.00000000 0.00000000 0.00000000 0.00000000## precious 0.02651465 0.00000000 0.00000000 0.00000000## presents 0.02651465 0.01393922 0.00000000 0.00000000## pressing 0.00000000 0.00000000 0.00000000 0.00000000## pretty 0.00000000 0.00000000 0.00000000 0.00000000## prevail 0.00000000 0.00000000 0.00000000 0.00000000## priced 0.00000000 0.01393922 0.00000000 0.00000000## primary 0.00000000 0.00000000 0.00000000 0.00000000## promising 0.00000000 0.00000000 0.01290323 0.00000000## promoting 0.00000000 0.00000000 0.00000000 0.00000000## proof 0.00000000 0.02787845 0.00000000 0.00000000## proportion 0.00000000 0.00000000 0.00000000 0.01523926## prosper 0.00000000 0.00000000 0.00000000 0.00000000## providence 0.00000000 0.00000000 0.00000000 0.00000000## proving 0.00000000 0.00000000 0.02580645 0.00000000## pushed 0.00000000 0.00000000 0.00000000 0.04571777## pushing 0.00000000 0.01393922 0.00000000 0.00000000## qadhafi 0.00000000 0.00000000 0.01290323 0.00000000## radicalism 0.00000000 0.00000000 0.00000000 0.00000000## raids 0.00000000 0.00000000 0.00000000 0.00000000## rallying 0.00000000 0.00000000 0.00000000 0.00000000## rancor 0.00000000 0.00000000 0.00000000 0.00000000## reasonable 0.01325732 0.00000000 0.00000000 0.00000000## received 0.00000000 0.00000000 0.00000000 0.00000000## receiving 0.00000000 0.00000000 0.00000000 0.00000000## recklessness 0.00000000 0.00000000 0.01290323 0.00000000## reckoning 0.00000000 0.00000000 0.00000000 0.01523926## recognition 0.00000000 0.00000000 0.00000000 0.00000000## reconciliation 0.00000000 0.00000000 0.00000000 0.00000000## reconstruction 0.00000000 0.00000000 0.00000000 0.00000000## recruiting 0.00000000 0.00000000 0.00000000 0.00000000## red 0.00000000 0.01393922 0.00000000 0.00000000## redesign 0.01325732 0.00000000 0.01290323 0.00000000## refighting 0.00000000 0.01393922 0.00000000 0.00000000## refugees 0.00000000 0.00000000 0.00000000 0.00000000## regard 0.00000000 0.00000000 0.00000000 0.00000000## reinvented 0.00000000 0.00000000 0.00000000 0.00000000## reinvestment 0.00000000 0.00000000 0.00000000 0.03047851## rejected 0.01325732 0.00000000 0.00000000 0.00000000## rejoin 0.00000000 0.00000000 0.01290323 0.00000000## relied 0.00000000 0.00000000 0.01290323 0.00000000## relieve 0.00000000 0.01393922 0.00000000 0.01523926## removing 0.01325732 0.00000000 0.00000000 0.00000000## remsburg 0.00000000 0.00000000 0.00000000 0.00000000## repaid 0.00000000 0.00000000 0.00000000 0.00000000## represented 0.00000000 0.00000000 0.00000000 0.00000000## researchers 0.00000000 0.00000000 0.00000000 0.00000000## resentment 0.00000000 0.00000000 0.00000000 0.00000000## resolute 0.00000000 0.00000000 0.00000000 0.00000000## resolution 0.00000000 0.01393922 0.01290323 0.00000000## resolved 0.00000000 0.00000000 0.00000000 0.00000000## resource 0.01325732 0.00000000 0.01290323 0.00000000## responded 0.00000000 0.00000000 0.00000000 0.01523926## restrictions 0.00000000 0.01393922 0.00000000 0.00000000## retired 0.01325732 0.00000000 0.00000000 0.00000000## returned 0.01325732 0.00000000 0.01290323 0.00000000## returns 0.00000000 0.00000000 0.00000000 0.00000000## reverse 0.00000000 0.01393922 0.00000000 0.00000000## reversed 0.00000000 0.01393922 0.01290323 0.00000000## richard 0.00000000 0.00000000 0.03870968 0.00000000## rieman 0.00000000 0.00000000 0.00000000 0.00000000## rigid 0.00000000 0.00000000 0.01290323 0.00000000## risen 0.00000000 0.01393922 0.00000000 0.00000000## risky 0.00000000 0.00000000 0.02580645 0.00000000## roaring 0.00000000 0.00000000 0.00000000 0.00000000## rock 0.00000000 0.00000000 0.01290323 0.00000000## rodriguez 0.00000000 0.00000000 0.00000000 0.00000000## roll 0.00000000 0.00000000 0.00000000 0.01523926## rubble 0.01325732 0.00000000 0.00000000 0.01523926## rush 0.00000000 0.00000000 0.00000000 0.00000000## sacrifices 0.00000000 0.00000000 0.00000000 0.00000000## safia 0.00000000 0.00000000 0.00000000 0.00000000## salvador 0.00000000 0.00000000 0.00000000 0.00000000## sanchez 0.03977197 0.00000000 0.00000000 0.00000000## sat 0.00000000 0.00000000 0.01290323 0.00000000## saves 0.00000000 0.00000000 0.01290323 0.00000000## scandals 0.00000000 0.00000000 0.00000000 0.00000000## schedule 0.00000000 0.00000000 0.01290323 0.00000000## sciences 0.00000000 0.00000000 0.00000000 0.00000000## scott 0.00000000 0.02787845 0.00000000 0.00000000## securing 0.00000000 0.00000000 0.00000000 0.00000000## sends 0.00000000 0.00000000 0.00000000 0.00000000## series 0.00000000 0.00000000 0.00000000 0.00000000## seriously 0.00000000 0.00000000 0.00000000 0.00000000## setbacks 0.00000000 0.00000000 0.00000000 0.00000000## settled 0.00000000 0.00000000 0.00000000 0.00000000## seven 0.00000000 0.01393922 0.00000000 0.00000000## severely 0.00000000 0.00000000 0.00000000 0.01523926## shadows 0.00000000 0.00000000 0.00000000 0.00000000## shake 0.00000000 0.00000000 0.00000000 0.00000000## she^d 0.00000000 0.00000000 0.00000000 0.00000000## she^s 0.00000000 0.00000000 0.00000000 0.01523926## shelley 0.00000000 0.00000000 0.00000000 0.00000000## shelter 0.00000000 0.00000000 0.00000000 0.00000000## shifts 0.00000000 0.00000000 0.00000000 0.00000000## shootings 0.02651465 0.00000000 0.00000000 0.00000000## shop 0.00000000 0.00000000 0.00000000 0.00000000## short-term 0.00000000 0.00000000 0.00000000 0.01523926## shrinking 0.00000000 0.01393922 0.01290323 0.00000000## sight 0.00000000 0.00000000 0.00000000 0.01523926## sights 0.00000000 0.02787845 0.00000000 0.00000000## signs 0.00000000 0.00000000 0.00000000 0.00000000## silver 0.00000000 0.00000000 0.00000000 0.00000000## similar 0.00000000 0.00000000 0.00000000 0.00000000## simplify 0.00000000 0.01393922 0.00000000 0.00000000## sits 0.00000000 0.00000000 0.00000000 0.00000000## sitting 0.00000000 0.00000000 0.00000000 0.03047851## sixty 0.00000000 0.00000000 0.02580645 0.00000000## skepticism 0.00000000 0.00000000 0.00000000 0.01523926## skin 0.00000000 0.00000000 0.00000000 0.00000000## skyrocketing 0.01325732 0.00000000 0.01290323 0.00000000## slashing 0.00000000 0.01393922 0.00000000 0.00000000## slavery 0.00000000 0.00000000 0.00000000 0.00000000## soil 0.00000000 0.00000000 0.00000000 0.00000000## solutions 0.00000000 0.00000000 0.00000000 0.00000000## somalia 0.02651465 0.00000000 0.00000000 0.00000000## sons 0.01325732 0.00000000 0.00000000 0.00000000## sought 0.00000000 0.00000000 0.00000000 0.00000000## soviet 0.00000000 0.00000000 0.00000000 0.00000000## spare 0.00000000 0.00000000 0.00000000 0.00000000## speaking 0.00000000 0.00000000 0.00000000 0.01523926## spends 0.00000000 0.00000000 0.01290323 0.00000000## sputnik 0.00000000 0.00000000 0.00000000 0.00000000## staff 0.00000000 0.00000000 0.01290323 0.00000000## stagnant 0.00000000 0.00000000 0.01290323 0.00000000## steadily 0.00000000 0.00000000 0.00000000 0.00000000## steady 0.00000000 0.01393922 0.00000000 0.00000000## steal 0.01325732 0.01393922 0.00000000 0.00000000## stepped 0.00000000 0.00000000 0.00000000 0.00000000## strain 0.00000000 0.01393922 0.00000000 0.01523926## strangers 0.00000000 0.00000000 0.00000000 0.00000000## streamline 0.01325732 0.00000000 0.00000000 0.00000000## strides 0.00000000 0.01393922 0.00000000 0.00000000## succeeding 0.00000000 0.00000000 0.00000000 0.00000000## succeeds 0.00000000 0.00000000 0.00000000 0.00000000## suffered 0.00000000 0.00000000 0.00000000 0.00000000## sums 0.00000000 0.01393922 0.00000000 0.00000000## sunday 0.00000000 0.00000000 0.00000000 0.00000000## superpower 0.00000000 0.00000000 0.00000000 0.00000000## supporters 0.00000000 0.00000000 0.00000000 0.00000000## surpluses 0.00000000 0.00000000 0.00000000 0.00000000## surrounding 0.00000000 0.00000000 0.00000000 0.00000000## sustainable 0.01325732 0.00000000 0.00000000 0.00000000## suu 0.03977197 0.00000000 0.00000000 0.00000000## symbol 0.00000000 0.00000000 0.00000000 0.00000000## takeover 0.00000000 0.00000000 0.00000000 0.00000000## talent 0.00000000 0.00000000 0.01290323 0.00000000## targeting 0.01325732 0.00000000 0.00000000 0.00000000## tax-free 0.00000000 0.00000000 0.00000000 0.01523926## teams 0.00000000 0.00000000 0.00000000 0.00000000## ted 0.00000000 0.00000000 0.00000000 0.00000000## teen 0.01325732 0.01393922 0.00000000 0.00000000## temporary- 0.00000000 0.00000000 0.00000000 0.00000000## tempting 0.00000000 0.01393922 0.00000000 0.00000000## tests 0.01325732 0.00000000 0.00000000 0.00000000## threatened 0.00000000 0.01393922 0.00000000 0.00000000## three-quarters 0.00000000 0.00000000 0.00000000 0.01523926## tirelessly 0.01325732 0.00000000 0.01290323 0.00000000## total 0.00000000 0.00000000 0.00000000 0.00000000## totalitarian 0.00000000 0.00000000 0.00000000 0.00000000## tpp 0.01325732 0.00000000 0.00000000 0.00000000## tradition 0.00000000 0.01393922 0.00000000 0.00000000## traffic 0.01325732 0.00000000 0.00000000 0.00000000## trafficking 0.00000000 0.00000000 0.00000000 0.00000000## transgender 0.00000000 0.01393922 0.00000000 0.00000000## transit 0.00000000 0.00000000 0.00000000 0.01523926## transitional 0.00000000 0.00000000 0.00000000 0.00000000## translate 0.00000000 0.01393922 0.00000000 0.00000000## tremendous 0.00000000 0.00000000 0.00000000 0.01523926## trend 0.02651465 0.01393922 0.00000000 0.00000000## tried 0.00000000 0.00000000 0.00000000 0.00000000## twenty-first 0.00000000 0.04181767 0.00000000 0.00000000## twice 0.00000000 0.00000000 0.02580645 0.00000000## typical 0.00000000 0.01393922 0.00000000 0.00000000## uncertain 0.00000000 0.00000000 0.01290323 0.01523926## understanding 0.00000000 0.00000000 0.00000000 0.01523926## unfolding 0.00000000 0.00000000 0.00000000 0.00000000## unified 0.01325732 0.00000000 0.00000000 0.00000000## unique 0.00000000 0.00000000 0.00000000 0.00000000## untold 0.00000000 0.01393922 0.00000000 0.00000000## unwarranted 0.00000000 0.00000000 0.00000000 0.00000000## update 0.00000000 0.01393922 0.00000000 0.00000000## upholding 0.00000000 0.01393922 0.00000000 0.01523926## upward 0.00000000 0.00000000 0.00000000 0.00000000## usual 0.00000000 0.00000000 0.00000000 0.00000000## va 0.00000000 0.00000000 0.01290323 0.00000000## vaccines 0.00000000 0.00000000 0.00000000 0.00000000## vehicles 0.00000000 0.00000000 0.00000000 0.00000000## vicious 0.00000000 0.01393922 0.00000000 0.00000000## villages 0.00000000 0.00000000 0.00000000 0.00000000## visiting 0.00000000 0.00000000 0.00000000 0.00000000## volunteer 0.00000000 0.00000000 0.00000000 0.01523926## volunteered 0.00000000 0.00000000 0.00000000 0.00000000## voter 0.01325732 0.01393922 0.00000000 0.00000000## waited 0.00000000 0.01393922 0.00000000 0.00000000## walked 0.00000000 0.00000000 0.00000000 0.00000000## walks 0.00000000 0.01393922 0.00000000 0.00000000## warmest 0.00000000 0.02787845 0.00000000 0.00000000## weatherization 0.01325732 0.00000000 0.01290323 0.01523926## welcoming 0.00000000 0.00000000 0.00000000 0.00000000## weren^t 0.00000000 0.00000000 0.02580645 0.00000000## wesley 0.00000000 0.00000000 0.00000000 0.00000000## whenever 0.00000000 0.00000000 0.00000000 0.00000000## witnessed 0.00000000 0.00000000 0.00000000 0.00000000## wonderful 0.00000000 0.00000000 0.00000000 0.00000000## writing 0.00000000 0.00000000 0.00000000 0.00000000## yield 0.00000000 0.00000000 0.00000000 0.01523926## youngest 0.01325732 0.00000000 0.00000000 0.00000000## yourself 0.00000000 0.00000000 0.00000000 0.03047851## zero 0.00000000 0.01393922 0.00000000 0.00000000## abandoning 0.00000000 0.00000000 0.00000000 0.00000000## abess 0.00000000 0.00000000 0.00000000 0.03047851## abide 0.00000000 0.00000000 0.00000000 0.00000000## abusive 0.00000000 0.01393922 0.01290323 0.00000000## accident 0.00000000 0.00000000 0.00000000 0.00000000## according 0.00000000 0.00000000 0.00000000 0.00000000## acid 0.00000000 0.00000000 0.00000000 0.00000000## actively 0.00000000 0.01393922 0.00000000 0.00000000## adapt 0.00000000 0.01393922 0.00000000 0.01523926## adhere 0.00000000 0.00000000 0.00000000 0.00000000## adjusted 0.00000000 0.00000000 0.00000000 0.00000000## adjustments 0.00000000 0.00000000 0.00000000 0.01523926## administrative 0.01325732 0.00000000 0.00000000 0.00000000## admit 0.00000000 0.01393922 0.00000000 0.01523926## adoption 0.00000000 0.00000000 0.00000000 0.00000000## advancement 0.00000000 0.00000000 0.00000000 0.01523926## advantages 0.00000000 0.00000000 0.00000000 0.00000000## adversaries 0.00000000 0.00000000 0.01290323 0.00000000## advice 0.01325732 0.00000000 0.00000000 0.00000000## advisory 0.00000000 0.00000000 0.00000000 0.00000000## advocates 0.00000000 0.01393922 0.00000000 0.00000000## afloat 0.00000000 0.00000000 0.00000000 0.00000000## afraid 0.00000000 0.00000000 0.00000000 0.00000000## agent 0.00000000 0.00000000 0.00000000 0.00000000## agrees 0.00000000 0.00000000 0.00000000 0.00000000## agricultural 0.00000000 0.00000000 0.00000000 0.00000000## agriculture 0.00000000 0.00000000 0.00000000 0.01523926## ahmed 0.00000000 0.00000000 0.00000000 0.00000000## aigner-clark 0.00000000 0.00000000 0.00000000 0.00000000## aims 0.00000000 0.00000000 0.00000000 0.00000000## airplane 0.00000000 0.00000000 0.00000000 0.00000000## airstrikes 0.00000000 0.01393922 0.00000000 0.00000000## al- 0.00000000 0.00000000 0.01290323 0.00000000## al-suhail 0.00000000 0.00000000 0.00000000 0.00000000## alabama 0.00000000 0.00000000 0.00000000 0.00000000## alarm 0.00000000 0.00000000 0.00000000 0.00000000## allah 0.00000000 0.00000000 0.00000000 0.00000000## allawi 0.00000000 0.00000000 0.00000000 0.00000000## aluminum 0.00000000 0.00000000 0.00000000 0.00000000## amendment 0.01325732 0.00000000 0.00000000 0.00000000## ample 0.00000000 0.00000000 0.00000000 0.01523926## anbar 0.00000000 0.00000000 0.00000000 0.00000000## angry 0.00000000 0.00000000 0.00000000 0.00000000## anniversary 0.00000000 0.01393922 0.00000000 0.00000000## antidrug 0.00000000 0.00000000 0.00000000 0.00000000## antiretroviral 0.00000000 0.00000000 0.00000000 0.00000000## anxieties 0.00000000 0.00000000 0.00000000 0.00000000## anybody 0.00000000 0.00000000 0.00000000 0.00000000## appeal 0.00000000 0.01393922 0.00000000 0.00000000## appeared 0.00000000 0.00000000 0.00000000 0.00000000## appetite 0.00000000 0.00000000 0.00000000 0.00000000## apple 0.01325732 0.00000000 0.00000000 0.00000000## application 0.00000000 0.00000000 0.00000000 0.00000000## applying 0.00000000 0.00000000 0.00000000 0.00000000## apprenticeships 0.00000000 0.01393922 0.00000000 0.00000000## appropriations 0.00000000 0.00000000 0.00000000 0.00000000## approve 0.00000000 0.00000000 0.00000000 0.00000000## approving 0.00000000 0.00000000 0.00000000 0.00000000## april 0.00000000 0.00000000 0.00000000 0.01523926## arabic 0.00000000 0.00000000 0.00000000 0.00000000## arc 0.00000000 0.00000000 0.00000000 0.00000000## arming 0.00000000 0.00000000 0.00000000 0.00000000## asad 0.00000000 0.00000000 0.02580645 0.00000000## aspiring 0.00000000 0.00000000 0.01290323 0.00000000## assemble 0.00000000 0.00000000 0.00000000 0.00000000## assets 0.00000000 0.00000000 0.00000000 0.01523926## assistant 0.00000000 0.00000000 0.01290323 0.00000000## assisting 0.00000000 0.01393922 0.00000000 0.00000000## associate 0.00000000 0.00000000 0.00000000 0.00000000## assure 0.00000000 0.00000000 0.00000000 0.03047851## assured 0.00000000 0.00000000 0.00000000 0.00000000## asthma 0.00000000 0.00000000 0.00000000 0.00000000## atrocity 0.00000000 0.00000000 0.00000000 0.00000000## attend 0.00000000 0.00000000 0.00000000 0.01523926## attractive 0.00000000 0.01393922 0.00000000 0.00000000## attracts 0.01325732 0.00000000 0.01290323 0.00000000## automaker 0.00000000 0.00000000 0.01290323 0.00000000## autrey 0.00000000 0.00000000 0.00000000 0.00000000## avert 0.00000000 0.00000000 0.00000000 0.00000000## awaken 0.00000000 0.00000000 0.00000000 0.00000000## awareness 0.00000000 0.00000000 0.00000000 0.00000000## ba 0.00000000 0.00000000 0.00000000 0.00000000## backlog 0.00000000 0.01393922 0.00000000 0.00000000## backs 0.00000000 0.00000000 0.01290323 0.00000000## bailey 0.00000000 0.00000000 0.00000000 0.00000000## ban 0.00000000 0.00000000 0.00000000 0.00000000## banned 0.00000000 0.00000000 0.00000000 0.00000000## banning 0.00000000 0.00000000 0.00000000 0.00000000## bans 0.00000000 0.00000000 0.01290323 0.00000000## bargaining 0.00000000 0.00000000 0.00000000 0.00000000## barra 0.00000000 0.00000000 0.00000000 0.00000000## baseball 0.00000000 0.00000000 0.00000000 0.00000000## bashar 0.00000000 0.00000000 0.02580645 0.00000000## basics 0.00000000 0.00000000 0.00000000 0.00000000## basis 0.01325732 0.00000000 0.00000000 0.00000000## baton 0.00000000 0.00000000 0.00000000 0.00000000## beach 0.00000000 0.00000000 0.00000000 0.00000000## beacon 0.01325732 0.00000000 0.00000000 0.00000000## beamer 0.00000000 0.00000000 0.00000000 0.00000000## bedrock 0.00000000 0.02787845 0.00000000 0.00000000## beijing 0.00000000 0.01393922 0.00000000 0.00000000## belarus 0.00000000 0.00000000 0.00000000 0.00000000## ben^s 0.00000000 0.02787845 0.00000000 0.00000000## benchmark 0.00000000 0.00000000 0.00000000 0.00000000## beneficiary 0.00000000 0.00000000 0.00000000 0.00000000## benefited 0.00000000 0.00000000 0.02580645 0.00000000## berkshire 0.00000000 0.00000000 0.01290323 0.00000000## berra 0.00000000 0.00000000 0.00000000 0.00000000## beshear 0.00000000 0.00000000 0.00000000 0.00000000## bethea 0.00000000 0.00000000 0.00000000 0.03047851## bets 0.00000000 0.00000000 0.02580645 0.00000000## billionaires 0.01325732 0.00000000 0.00000000 0.00000000## binding 0.00000000 0.00000000 0.00000000 0.00000000## bioshield 0.00000000 0.00000000 0.00000000 0.00000000## biotechnology 0.00000000 0.00000000 0.00000000 0.00000000## bite 0.00000000 0.00000000 0.00000000 0.00000000## bitter 0.00000000 0.00000000 0.00000000 0.00000000## blackmail 0.00000000 0.00000000 0.00000000 0.00000000## blackmailed 0.00000000 0.00000000 0.00000000 0.00000000## blessings 0.00000000 0.00000000 0.00000000 0.00000000## blocking 0.00000000 0.00000000 0.00000000 0.00000000## blue 0.00000000 0.01393922 0.00000000 0.00000000## boards 0.00000000 0.00000000 0.00000000 0.00000000## boggs 0.01325732 0.00000000 0.00000000 0.00000000## bombings 0.00000000 0.00000000 0.00000000 0.00000000## bonuses 0.00000000 0.00000000 0.01290323 0.00000000## books 0.00000000 0.00000000 0.00000000 0.01523926## boomers 0.00000000 0.00000000 0.00000000 0.00000000## boosted 0.00000000 0.00000000 0.00000000 0.00000000## boots 0.01325732 0.00000000 0.01290323 0.00000000## borrowing 0.00000000 0.00000000 0.00000000 0.00000000## bosanek 0.00000000 0.00000000 0.02580645 0.00000000## bounce 0.00000000 0.02787845 0.00000000 0.00000000## bowles 0.02651465 0.00000000 0.00000000 0.00000000## box 0.00000000 0.00000000 0.00000000 0.00000000## bray 0.00000000 0.00000000 0.02580645 0.00000000## breast 0.00000000 0.00000000 0.00000000 0.00000000## breaux 0.00000000 0.00000000 0.00000000 0.00000000## brighter 0.00000000 0.01393922 0.00000000 0.00000000## brink 0.00000000 0.00000000 0.00000000 0.01523926## broad-based 0.02651465 0.00000000 0.00000000 0.00000000## bruce 0.00000000 0.00000000 0.00000000 0.00000000## brutality 0.00000000 0.00000000 0.00000000 0.00000000## budged 0.01325732 0.00000000 0.00000000 0.00000000## buffalo 0.00000000 0.00000000 0.00000000 0.00000000## builders 0.00000000 0.00000000 0.00000000 0.00000000## bureau 0.00000000 0.00000000 0.02580645 0.00000000## bureaucracy 0.00000000 0.00000000 0.01290323 0.00000000## bureaucrat 0.00000000 0.00000000 0.00000000 0.00000000## buyers 0.00000000 0.00000000 0.01290323 0.00000000## cable 0.00000000 0.01393922 0.00000000 0.00000000## cairo 0.00000000 0.00000000 0.01290323 0.00000000## calculated 0.00000000 0.00000000 0.00000000 0.00000000## camp 0.00000000 0.00000000 0.00000000 0.00000000## canal 0.00000000 0.00000000 0.00000000 0.00000000## candor 0.00000000 0.00000000 0.00000000 0.01523926## canister 0.00000000 0.00000000 0.00000000 0.00000000## capability 0.00000000 0.00000000 0.00000000 0.00000000## caribbean 0.00000000 0.00000000 0.00000000 0.00000000## caroline 0.00000000 0.00000000 0.00000000 0.00000000## carries 0.00000000 0.00000000 0.00000000 0.00000000## casualties 0.00000000 0.00000000 0.00000000 0.00000000## casualty 0.00000000 0.00000000 0.00000000 0.00000000## catch 0.00000000 0.01393922 0.00000000 0.00000000## category 0.00000000 0.00000000 0.00000000 0.00000000## caused 0.00000000 0.00000000 0.00000000 0.01523926## cedar 0.00000000 0.00000000 0.00000000 0.00000000## certainty 0.00000000 0.00000000 0.00000000 0.00000000## chairman 0.00000000 0.00000000 0.00000000 0.00000000## challenging 0.00000000 0.00000000 0.00000000 0.00000000## charity 0.00000000 0.00000000 0.00000000 0.00000000## charlotte 0.00000000 0.00000000 0.02580645 0.00000000## cheapest 0.00000000 0.00000000 0.00000000 0.00000000## chiefs 0.02651465 0.00000000 0.00000000 0.00000000## child^s 0.00000000 0.00000000 0.00000000 0.00000000## chinese 0.00000000 0.00000000 0.01290323 0.00000000## chute 0.00000000 0.00000000 0.00000000 0.00000000## cia 0.00000000 0.00000000 0.00000000 0.00000000## circumstance 0.01325732 0.00000000 0.01290323 0.00000000## civic 0.00000000 0.00000000 0.00000000 0.00000000## civility 0.00000000 0.00000000 0.00000000 0.00000000## clarity 0.00000000 0.00000000 0.00000000 0.00000000## classmates 0.01325732 0.00000000 0.00000000 0.00000000## client 0.00000000 0.00000000 0.00000000 0.00000000## co 0.00000000 0.00000000 0.01290323 0.00000000## coach 0.00000000 0.00000000 0.00000000 0.00000000## coached 0.00000000 0.00000000 0.00000000 0.00000000## coaches 0.00000000 0.00000000 0.00000000 0.00000000## coburn 0.00000000 0.00000000 0.02580645 0.00000000## collapsed 0.00000000 0.00000000 0.01290323 0.01523926## colleague 0.00000000 0.00000000 0.00000000 0.00000000## collected 0.00000000 0.00000000 0.00000000 0.00000000## colorado 0.00000000 0.01393922 0.00000000 0.00000000## comfortable 0.00000000 0.00000000 0.00000000 0.00000000## companionship 0.00000000 0.00000000 0.00000000 0.00000000## compare 0.01325732 0.00000000 0.00000000 0.00000000## computers 0.01325732 0.00000000 0.00000000 0.00000000## comrades 0.00000000 0.00000000 0.00000000 0.00000000## concentrate 0.00000000 0.00000000 0.00000000 0.00000000## concessions 0.00000000 0.00000000 0.00000000 0.00000000## conclusion 0.00000000 0.00000000 0.00000000 0.00000000## concrete 0.00000000 0.00000000 0.00000000 0.00000000## condemn 0.00000000 0.01393922 0.00000000 0.00000000## conducting 0.01325732 0.00000000 0.00000000 0.00000000## confessions 0.00000000 0.00000000 0.00000000 0.00000000## confirmed 0.00000000 0.00000000 0.00000000 0.00000000## confound 0.00000000 0.00000000 0.00000000 0.00000000## confusing 0.00000000 0.00000000 0.02580645 0.00000000## congressmen 0.00000000 0.00000000 0.00000000 0.01523926## conrad 0.00000000 0.00000000 0.00000000 0.00000000## consequential 0.00000000 0.00000000 0.00000000 0.00000000## conspiracies 0.00000000 0.00000000 0.00000000 0.00000000## constructing 0.01325732 0.00000000 0.00000000 0.01523926## consult 0.00000000 0.00000000 0.00000000 0.00000000## consultation 0.00000000 0.00000000 0.00000000 0.00000000## containment 0.00000000 0.01393922 0.00000000 0.00000000## contempt 0.00000000 0.00000000 0.00000000 0.00000000## contest 0.00000000 0.00000000 0.00000000 0.00000000## contract 0.00000000 0.00000000 0.00000000 0.00000000## contrary 0.00000000 0.00000000 0.00000000 0.00000000## contributing 0.00000000 0.00000000 0.01290323 0.00000000## controlled 0.00000000 0.00000000 0.00000000 0.00000000## controls 0.00000000 0.00000000 0.00000000 0.00000000## controversies 0.00000000 0.01393922 0.00000000 0.00000000## conversation 0.00000000 0.00000000 0.00000000 0.01523926## convince 0.00000000 0.00000000 0.00000000 0.00000000## corrosive 0.00000000 0.00000000 0.01290323 0.00000000## count 0.00000000 0.00000000 0.01290323 0.00000000## counted 0.00000000 0.00000000 0.00000000 0.00000000## couple 0.00000000 0.00000000 0.00000000 0.00000000## covering 0.00000000 0.00000000 0.00000000 0.00000000## crate 0.00000000 0.00000000 0.00000000 0.00000000## credibility 0.00000000 0.00000000 0.00000000 0.00000000## credibly 0.00000000 0.00000000 0.00000000 0.00000000## creditworthiness 0.00000000 0.00000000 0.01290323 0.00000000## crippling 0.00000000 0.00000000 0.01290323 0.00000000## crises 0.00000000 0.00000000 0.00000000 0.00000000## crops 0.00000000 0.00000000 0.00000000 0.00000000## cross 0.00000000 0.00000000 0.00000000 0.00000000## crowd 0.01325732 0.00000000 0.00000000 0.00000000## cruise 0.00000000 0.00000000 0.00000000 0.00000000## crumbling 0.00000000 0.00000000 0.01290323 0.00000000## crushing 0.00000000 0.00000000 0.00000000 0.03047851## cuban 0.00000000 0.01393922 0.00000000 0.00000000## cultures 0.00000000 0.00000000 0.00000000 0.00000000## cures 0.00000000 0.00000000 0.00000000 0.00000000## curran 0.00000000 0.00000000 0.00000000 0.00000000## curve 0.00000000 0.02787845 0.00000000 0.00000000## cutting-edge 0.00000000 0.00000000 0.00000000 0.00000000## cycle 0.00000000 0.00000000 0.00000000 0.01523926## cynicism 0.00000000 0.01393922 0.00000000 0.00000000## cynics 0.00000000 0.01393922 0.00000000 0.00000000## damaged 0.01325732 0.00000000 0.00000000 0.00000000## darkness 0.01325732 0.00000000 0.01290323 0.00000000## dates 0.00000000 0.00000000 0.00000000 0.00000000## david 0.00000000 0.00000000 0.00000000 0.00000000## day^s 0.01325732 0.00000000 0.00000000 0.00000000## de 0.02651465 0.00000000 0.00000000 0.00000000## dead 0.00000000 0.00000000 0.00000000 0.00000000## deadly 0.00000000 0.00000000 0.00000000 0.00000000## dear 0.00000000 0.00000000 0.00000000 0.00000000## debated 0.01325732 0.00000000 0.00000000 0.00000000## debbie 0.00000000 0.00000000 0.02580645 0.00000000## december 0.00000000 0.00000000 0.00000000 0.00000000## decides 0.00000000 0.00000000 0.00000000 0.00000000## declaration 0.00000000 0.00000000 0.00000000 0.00000000## declares 0.00000000 0.00000000 0.00000000 0.00000000## declines 0.00000000 0.00000000 0.00000000 0.00000000## deduct 0.00000000 0.00000000 0.00000000 0.00000000## deeds 0.00000000 0.00000000 0.00000000 0.01523926## defectors 0.00000000 0.00000000 0.00000000 0.00000000## defended 0.00000000 0.00000000 0.00000000 0.00000000## defenders 0.00000000 0.00000000 0.00000000 0.00000000## defending 0.01325732 0.00000000 0.01290323 0.00000000## defensive 0.00000000 0.00000000 0.00000000 0.00000000## defines 0.00000000 0.00000000 0.00000000 0.00000000## degrees 0.00000000 0.00000000 0.00000000 0.00000000## delayed 0.00000000 0.00000000 0.00000000 0.00000000## demonstrate 0.00000000 0.00000000 0.00000000 0.01523926## denver 0.00000000 0.00000000 0.00000000 0.00000000## dependents 0.00000000 0.00000000 0.00000000 0.00000000## deportation 0.00000000 0.00000000 0.01290323 0.00000000## deposits 0.00000000 0.00000000 0.01290323 0.00000000## designs 0.00000000 0.00000000 0.00000000 0.00000000## desperately 0.00000000 0.00000000 0.00000000 0.00000000## despise 0.00000000 0.00000000 0.00000000 0.00000000## determining 0.01325732 0.00000000 0.00000000 0.00000000## devaney 0.00000000 0.00000000 0.00000000 0.03047851## developed 0.00000000 0.00000000 0.00000000 0.00000000## diabetes 0.00000000 0.01393922 0.00000000 0.00000000## diagnosis 0.00000000 0.00000000 0.00000000 0.00000000## dictate 0.01325732 0.00000000 0.00000000 0.00000000## dictates 0.00000000 0.00000000 0.00000000 0.00000000## dictators 0.00000000 0.00000000 0.01290323 0.00000000## difficulties 0.00000000 0.00000000 0.00000000 0.00000000## dingell 0.00000000 0.00000000 0.00000000 0.00000000## dioxide 0.00000000 0.01393922 0.00000000 0.00000000## dirtier 0.00000000 0.00000000 0.00000000 0.00000000## disadvantage 0.00000000 0.01393922 0.00000000 0.00000000## disagreements 0.00000000 0.00000000 0.00000000 0.00000000## disappear 0.00000000 0.00000000 0.00000000 0.01523926## discarded 0.00000000 0.00000000 0.00000000 0.00000000## disclosed 0.00000000 0.00000000 0.00000000 0.00000000## discourage 0.00000000 0.00000000 0.00000000 0.00000000## discouraged 0.00000000 0.00000000 0.00000000 0.00000000## discovered 0.00000000 0.00000000 0.00000000 0.00000000## discriminate 0.00000000 0.00000000 0.00000000 0.00000000## discrimination 0.01325732 0.00000000 0.00000000 0.00000000## disfigured 0.00000000 0.00000000 0.00000000 0.00000000## displaced 0.00000000 0.00000000 0.00000000 0.00000000## disputes 0.00000000 0.01393922 0.00000000 0.00000000## disrupted 0.00000000 0.00000000 0.00000000 0.00000000## disruption 0.00000000 0.00000000 0.00000000 0.00000000## district 0.01325732 0.00000000 0.00000000 0.00000000## diversify 0.00000000 0.00000000 0.00000000 0.00000000## divide 0.00000000 0.00000000 0.01290323 0.00000000## dividend 0.00000000 0.00000000 0.00000000 0.00000000## divides 0.00000000 0.01393922 0.00000000 0.00000000## divisive 0.00000000 0.00000000 0.00000000 0.00000000## dna 0.00000000 0.00000000 0.00000000 0.00000000## doctor-patient 0.00000000 0.00000000 0.00000000 0.00000000## dole 0.00000000 0.00000000 0.00000000 0.00000000## dominated 0.01325732 0.00000000 0.00000000 0.00000000## domination 0.00000000 0.00000000 0.00000000 0.00000000## donna 0.00000000 0.00000000 0.00000000 0.00000000## doses 0.00000000 0.00000000 0.00000000 0.00000000## download 0.00000000 0.00000000 0.00000000 0.00000000## dr 0.01325732 0.00000000 0.00000000 0.00000000## dragged 0.00000000 0.02787845 0.00000000 0.00000000## drastic 0.00000000 0.00000000 0.00000000 0.00000000## dread 0.00000000 0.00000000 0.00000000 0.00000000## dreaming 0.00000000 0.00000000 0.00000000 0.00000000## drills 0.00000000 0.00000000 0.00000000 0.00000000## dripping 0.00000000 0.00000000 0.00000000 0.00000000## drones 0.00000000 0.01393922 0.00000000 0.00000000## dropping 0.00000000 0.00000000 0.00000000 0.01523926## drought 0.01325732 0.00000000 0.00000000 0.00000000## droughts 0.01325732 0.01393922 0.00000000 0.00000000## due 0.00000000 0.00000000 0.00000000 0.00000000## durable 0.01325732 0.00000000 0.00000000 0.00000000## duration 0.00000000 0.00000000 0.00000000 0.00000000## dying 0.00000000 0.00000000 0.00000000 0.00000000## e-mails 0.01325732 0.00000000 0.00000000 0.00000000## earl 0.00000000 0.00000000 0.00000000 0.03047851## earliest 0.01325732 0.00000000 0.00000000 0.00000000## earned-income 0.00000000 0.00000000 0.00000000 0.00000000## earthquake 0.00000000 0.00000000 0.00000000 0.00000000## eased 0.00000000 0.00000000 0.00000000 0.00000000## easily 0.00000000 0.00000000 0.00000000 0.00000000## eaten 0.00000000 0.00000000 0.00000000 0.00000000## economies 0.00000000 0.02787845 0.00000000 0.00000000## edison 0.00000000 0.00000000 0.00000000 0.00000000## educating 0.00000000 0.00000000 0.01290323 0.00000000## effectively 0.00000000 0.00000000 0.00000000 0.00000000## eight 0.00000000 0.00000000 0.00000000 0.00000000## eighth 0.00000000 0.00000000 0.00000000 0.00000000## elaborate 0.00000000 0.00000000 0.00000000 0.00000000## electing 0.00000000 0.00000000 0.00000000 0.00000000## eliminates 0.00000000 0.00000000 0.00000000 0.00000000## else^s 0.00000000 0.00000000 0.00000000 0.00000000## embargo 0.00000000 0.01393922 0.00000000 0.00000000## emphasis 0.00000000 0.00000000 0.00000000 0.00000000## employee 0.00000000 0.00000000 0.00000000 0.00000000## enact 0.01325732 0.00000000 0.00000000 0.00000000## endured 0.00000000 0.01393922 0.00000000 0.00000000## endures 0.00000000 0.00000000 0.01290323 0.00000000## enemy^s 0.00000000 0.00000000 0.00000000 0.00000000## energy-efficient 0.00000000 0.00000000 0.00000000 0.01523926## enforced 0.00000000 0.00000000 0.00000000 0.00000000## enrich 0.00000000 0.00000000 0.00000000 0.00000000## enrolled 0.01325732 0.01393922 0.00000000 0.00000000## enshrined 0.00000000 0.00000000 0.00000000 0.00000000## entered 0.00000000 0.00000000 0.00000000 0.00000000## enthusiasm 0.00000000 0.00000000 0.00000000 0.00000000## entrenched 0.00000000 0.00000000 0.00000000 0.00000000## entrepreneurship 0.00000000 0.00000000 0.01290323 0.00000000## entry 0.00000000 0.00000000 0.00000000 0.00000000## environmentally 0.00000000 0.00000000 0.00000000 0.00000000## equivalent 0.01325732 0.00000000 0.00000000 0.00000000## eradicate 0.01325732 0.01393922 0.00000000 0.00000000## erskine 0.02651465 0.00000000 0.00000000 0.00000000## escalating 0.00000000 0.00000000 0.00000000 0.01523926## estimate 0.00000000 0.00000000 0.00000000 0.00000000## estimates 0.00000000 0.00000000 0.00000000 0.00000000## ethic 0.00000000 0.00000000 0.00000000 0.00000000## evade 0.00000000 0.00000000 0.00000000 0.00000000## event 0.01325732 0.00000000 0.01290323 0.00000000## everyone^s 0.01325732 0.00000000 0.00000000 0.00000000## evolving 0.01325732 0.01393922 0.00000000 0.00000000## examine 0.00000000 0.00000000 0.00000000 0.00000000## excel 0.00000000 0.00000000 0.00000000 0.00000000## exception 0.00000000 0.00000000 0.00000000 0.01523926## exchanges 0.00000000 0.00000000 0.00000000 0.00000000## excluded 0.00000000 0.00000000 0.00000000 0.00000000## excuses 0.00000000 0.00000000 0.01290323 0.00000000## exhaust 0.00000000 0.00000000 0.00000000 0.00000000## exists 0.00000000 0.00000000 0.00000000 0.00000000## expands 0.00000000 0.00000000 0.00000000 0.00000000## expeditionary 0.00000000 0.00000000 0.00000000 0.00000000## expelling 0.00000000 0.00000000 0.01290323 0.00000000## experiment 0.00000000 0.00000000 0.00000000 0.00000000## explained 0.00000000 0.00000000 0.00000000 0.00000000## explaining 0.00000000 0.00000000 0.00000000 0.00000000## explanation 0.00000000 0.00000000 0.00000000 0.00000000## exploited 0.00000000 0.00000000 0.00000000 0.00000000## exploration 0.00000000 0.01393922 0.01290323 0.00000000## explore 0.00000000 0.00000000 0.00000000 0.00000000## exporters 0.00000000 0.01393922 0.00000000 0.00000000## exposed 0.00000000 0.00000000 0.00000000 0.00000000## extended 0.00000000 0.00000000 0.00000000 0.01523926## extends 0.00000000 0.01393922 0.00000000 0.00000000## extension 0.00000000 0.00000000 0.00000000 0.00000000## eye 0.00000000 0.00000000 0.00000000 0.00000000## eyed 0.00000000 0.00000000 0.00000000 0.00000000## facility 0.00000000 0.00000000 0.00000000 0.00000000## fails 0.00000000 0.01393922 0.01290323 0.00000000## fairest 0.00000000 0.00000000 0.00000000 0.00000000## fairly 0.00000000 0.00000000 0.00000000 0.00000000## fallujah 0.00000000 0.00000000 0.00000000 0.00000000## famine 0.00000000 0.00000000 0.00000000 0.00000000## fanfare 0.01325732 0.00000000 0.00000000 0.00000000## far-reaching 0.00000000 0.00000000 0.00000000 0.00000000## farmer 0.00000000 0.00000000 0.01290323 0.00000000## fatherless 0.00000000 0.00000000 0.00000000 0.00000000## favorite 0.00000000 0.00000000 0.00000000 0.00000000## fierce 0.00000000 0.00000000 0.00000000 0.00000000## fiercely 0.00000000 0.00000000 0.00000000 0.00000000## fifty 0.00000000 0.00000000 0.00000000 0.00000000## fights 0.00000000 0.00000000 0.00000000 0.00000000## financed 0.00000000 0.00000000 0.02580645 0.00000000## fingerprints 0.00000000 0.00000000 0.00000000 0.00000000## fingers 0.00000000 0.00000000 0.00000000 0.00000000## finished 0.00000000 0.00000000 0.00000000 0.00000000## finishing 0.00000000 0.00000000 0.00000000 0.00000000## fires 0.00000000 0.00000000 0.00000000 0.00000000## firmly 0.00000000 0.00000000 0.00000000 0.00000000## firms 0.00000000 0.00000000 0.01290323 0.00000000## first-class 0.00000000 0.00000000 0.00000000 0.00000000## first-time 0.00000000 0.00000000 0.00000000 0.00000000## fiscally 0.00000000 0.00000000 0.00000000 0.00000000## fisher 0.00000000 0.00000000 0.00000000 0.00000000## fits 0.00000000 0.00000000 0.00000000 0.00000000## flags 0.01325732 0.00000000 0.00000000 0.00000000## flexible 0.00000000 0.00000000 0.00000000 0.00000000## floor 0.00000000 0.00000000 0.00000000 0.00000000## florida 0.00000000 0.00000000 0.00000000 0.00000000## following 0.00000000 0.00000000 0.00000000 0.00000000## forgiven 0.00000000 0.00000000 0.00000000 0.00000000## fork 0.00000000 0.00000000 0.00000000 0.00000000## forsyth 0.00000000 0.00000000 0.00000000 0.00000000## fortunately 0.00000000 0.00000000 0.00000000 0.00000000## fossil 0.00000000 0.00000000 0.00000000 0.00000000## foundations 0.00000000 0.00000000 0.00000000 0.00000000## founded 0.00000000 0.00000000 0.00000000 0.00000000## foy 0.00000000 0.00000000 0.00000000 0.00000000## fragile 0.00000000 0.00000000 0.01290323 0.00000000## freely 0.00000000 0.00000000 0.00000000 0.00000000## friday 0.00000000 0.01393922 0.00000000 0.00000000## fringe 0.00000000 0.00000000 0.00000000 0.00000000## frontline 0.00000000 0.01393922 0.00000000 0.00000000## frozen 0.00000000 0.00000000 0.00000000 0.00000000## frustrated 0.00000000 0.00000000 0.00000000 0.00000000## frustrating 0.01325732 0.00000000 0.00000000 0.00000000## fuel-efficient 0.00000000 0.00000000 0.00000000 0.00000000## fumes 0.00000000 0.00000000 0.00000000 0.00000000## gabby 0.01325732 0.00000000 0.00000000 0.00000000## gaining 0.00000000 0.00000000 0.00000000 0.00000000## gallon 0.01325732 0.00000000 0.00000000 0.00000000## gallons 0.00000000 0.00000000 0.00000000 0.00000000## gender 0.01325732 0.00000000 0.00000000 0.00000000## generals 0.01325732 0.00000000 0.00000000 0.00000000## generational 0.00000000 0.00000000 0.00000000 0.00000000## genocide 0.00000000 0.00000000 0.00000000 0.00000000## genome 0.01325732 0.01393922 0.00000000 0.00000000## georgetown 0.00000000 0.00000000 0.00000000 0.00000000## germ 0.00000000 0.00000000 0.00000000 0.00000000## gibraltar 0.00000000 0.00000000 0.00000000 0.00000000## gitmo 0.00000000 0.02787845 0.00000000 0.00000000## giuliani 0.00000000 0.00000000 0.00000000 0.00000000## giveaways 0.00000000 0.01393922 0.01290323 0.00000000## glad 0.00000000 0.01393922 0.00000000 0.00000000## god-given 0.01325732 0.00000000 0.00000000 0.00000000## gotten 0.00000000 0.00000000 0.00000000 0.00000000## governance 0.00000000 0.00000000 0.00000000 0.00000000## graders 0.00000000 0.00000000 0.00000000 0.00000000## graduating 0.01325732 0.01393922 0.00000000 0.00000000## grandmother 0.00000000 0.01393922 0.01290323 0.00000000## grassley 0.00000000 0.00000000 0.00000000 0.00000000## grassroots 0.00000000 0.00000000 0.00000000 0.00000000## gray 0.00000000 0.00000000 0.00000000 0.00000000## greenhouse 0.00000000 0.00000000 0.00000000 0.01523926## gregg 0.00000000 0.00000000 0.00000000 0.00000000## gridlock 0.00000000 0.01393922 0.00000000 0.00000000## grocery 0.00000000 0.00000000 0.00000000 0.00000000## grueling 0.01325732 0.00000000 0.00000000 0.00000000## guaranteeing 0.00000000 0.00000000 0.00000000 0.00000000## guess 0.00000000 0.00000000 0.01290323 0.00000000## guidance 0.00000000 0.00000000 0.00000000 0.00000000## guides 0.01325732 0.00000000 0.00000000 0.00000000## guiding 0.00000000 0.00000000 0.00000000 0.00000000## gut 0.01325732 0.00000000 0.01290323 0.00000000## hadiya 0.02651465 0.00000000 0.00000000 0.00000000## hadn^t 0.00000000 0.00000000 0.00000000 0.00000000## halls 0.00000000 0.00000000 0.00000000 0.00000000## halt 0.00000000 0.01393922 0.00000000 0.00000000## halted 0.00000000 0.01393922 0.00000000 0.00000000## hamas 0.00000000 0.00000000 0.00000000 0.00000000## hambali 0.00000000 0.00000000 0.00000000 0.00000000## hamburg 0.00000000 0.00000000 0.00000000 0.00000000## hamid 0.00000000 0.00000000 0.00000000 0.00000000## handful 0.00000000 0.00000000 0.00000000 0.00000000## hands-on 0.00000000 0.00000000 0.00000000 0.00000000## hardships 0.00000000 0.00000000 0.00000000 0.00000000## harkin 0.00000000 0.00000000 0.00000000 0.00000000## hathaway 0.00000000 0.00000000 0.01290323 0.00000000## haul 0.00000000 0.00000000 0.00000000 0.00000000## head 0.00000000 0.00000000 0.00000000 0.00000000## headlines 0.00000000 0.01393922 0.00000000 0.00000000## healed 0.00000000 0.00000000 0.00000000 0.00000000## heavy 0.00000000 0.00000000 0.00000000 0.00000000## height 0.01325732 0.00000000 0.00000000 0.00000000## heppner 0.00000000 0.00000000 0.02580645 0.00000000## hesitation 0.00000000 0.00000000 0.00000000 0.00000000## high-paying 0.00000000 0.01393922 0.01290323 0.00000000## high-strength 0.00000000 0.00000000 0.00000000 0.00000000## high-wage 0.00000000 0.01393922 0.00000000 0.00000000## highly 0.01325732 0.00000000 0.01290323 0.00000000## hillary 0.00000000 0.00000000 0.02580645 0.00000000## hills 0.00000000 0.00000000 0.00000000 0.00000000## hinder 0.00000000 0.00000000 0.00000000 0.00000000## hired 0.00000000 0.00000000 0.01290323 0.00000000## hitlerism 0.00000000 0.00000000 0.00000000 0.00000000## hmos 0.00000000 0.00000000 0.00000000 0.00000000## holiness 0.00000000 0.01393922 0.00000000 0.00000000## homeowner 0.01325732 0.00000000 0.01290323 0.00000000## homework 0.00000000 0.00000000 0.00000000 0.01523926## honesty 0.00000000 0.00000000 0.00000000 0.01523926## honey 0.01325732 0.00000000 0.00000000 0.00000000## hopelessness 0.00000000 0.00000000 0.00000000 0.00000000## horizon 0.00000000 0.00000000 0.01290323 0.00000000## hormuz 0.00000000 0.00000000 0.00000000 0.00000000## horrific 0.00000000 0.00000000 0.00000000 0.00000000## horror 0.00000000 0.00000000 0.00000000 0.00000000## horrors 0.00000000 0.00000000 0.00000000 0.00000000## hostage 0.00000000 0.00000000 0.00000000 0.00000000## hotter 0.00000000 0.01393922 0.00000000 0.00000000## household 0.00000000 0.00000000 0.01290323 0.00000000## houser 0.00000000 0.00000000 0.00000000 0.00000000## houses 0.00000000 0.00000000 0.00000000 0.00000000## humanitarian 0.00000000 0.00000000 0.00000000 0.00000000## humbled 0.00000000 0.01393922 0.00000000 0.00000000## hunting 0.00000000 0.00000000 0.00000000 0.00000000## hurting 0.00000000 0.00000000 0.00000000 0.00000000## hussein^s 0.00000000 0.00000000 0.00000000 0.00000000## hutchison 0.00000000 0.00000000 0.00000000 0.00000000## hybrids 0.00000000 0.00000000 0.00000000 0.01523926## hydrogen-powered 0.00000000 0.00000000 0.00000000 0.00000000## illegally 0.00000000 0.00000000 0.00000000 0.00000000## illusions 0.00000000 0.00000000 0.00000000 0.01523926## imminent 0.00000000 0.00000000 0.00000000 0.00000000## impartial 0.00000000 0.00000000 0.00000000 0.00000000## imperatives 0.00000000 0.00000000 0.00000000 0.00000000## import 0.00000000 0.00000000 0.00000000 0.01523926## imported 0.00000000 0.00000000 0.01290323 0.00000000## imposed 0.00000000 0.00000000 0.00000000 0.00000000## imposing 0.00000000 0.01393922 0.00000000 0.00000000## imprisoned 0.01325732 0.00000000 0.00000000 0.00000000## incite 0.00000000 0.00000000 0.00000000 0.00000000## incorporates 0.00000000 0.00000000 0.00000000 0.00000000## independents 0.01325732 0.01393922 0.00000000 0.00000000## indicate 0.00000000 0.00000000 0.00000000 0.00000000## indicates 0.00000000 0.00000000 0.00000000 0.00000000## indicted 0.00000000 0.00000000 0.00000000 0.00000000## inevitable 0.00000000 0.00000000 0.00000000 0.00000000## infants 0.00000000 0.00000000 0.00000000 0.00000000## informed 0.01325732 0.00000000 0.00000000 0.00000000## inherit 0.00000000 0.00000000 0.00000000 0.01523926## inner 0.00000000 0.00000000 0.00000000 0.00000000## inoculating 0.00000000 0.00000000 0.00000000 0.00000000## insisted 0.00000000 0.00000000 0.00000000 0.00000000## insists 0.00000000 0.00000000 0.01290323 0.00000000## inspection 0.00000000 0.00000000 0.00000000 0.00000000## inspections 0.00000000 0.00000000 0.01290323 0.00000000## inspector 0.00000000 0.00000000 0.00000000 0.03047851## inspiration 0.00000000 0.00000000 0.00000000 0.03047851## installing 0.00000000 0.00000000 0.00000000 0.00000000## instance 0.00000000 0.00000000 0.00000000 0.00000000## instant 0.00000000 0.00000000 0.00000000 0.00000000## institute 0.01325732 0.00000000 0.00000000 0.00000000## instructing 0.00000000 0.00000000 0.00000000 0.00000000## integration 0.00000000 0.00000000 0.00000000 0.00000000## intense 0.01325732 0.00000000 0.00000000 0.00000000## intensified 0.00000000 0.00000000 0.00000000 0.00000000## intention 0.00000000 0.00000000 0.00000000 0.00000000## interstate 0.00000000 0.00000000 0.00000000 0.00000000## interview 0.00000000 0.00000000 0.00000000 0.00000000## invent 0.00000000 0.00000000 0.01290323 0.00000000## invented 0.00000000 0.00000000 0.00000000 0.03047851## inventors 0.00000000 0.00000000 0.00000000 0.00000000## invested 0.01325732 0.00000000 0.01290323 0.00000000## investor 0.00000000 0.00000000 0.00000000 0.00000000## invitation 0.00000000 0.00000000 0.00000000 0.00000000## involve 0.01325732 0.00000000 0.00000000 0.00000000## involvement 0.00000000 0.00000000 0.00000000 0.01523926## invulnerability 0.00000000 0.00000000 0.00000000 0.00000000## ira 0.00000000 0.00000000 0.00000000 0.00000000## iranians 0.00000000 0.00000000 0.00000000 0.00000000## ironclad 0.00000000 0.00000000 0.02580645 0.00000000## irons 0.00000000 0.00000000 0.00000000 0.00000000## isil^s 0.00000000 0.01393922 0.00000000 0.00000000## issuing 0.01325732 0.00000000 0.00000000 0.00000000## items 0.00000000 0.00000000 0.00000000 0.00000000## jailed 0.00000000 0.00000000 0.00000000 0.00000000## james 0.00000000 0.00000000 0.00000000 0.00000000## jerusalem 0.00000000 0.00000000 0.00000000 0.00000000## jewish 0.00000000 0.00000000 0.00000000 0.00000000## jim 0.00000000 0.00000000 0.00000000 0.00000000## job-creating 0.02651465 0.00000000 0.00000000 0.00000000## john^s 0.00000000 0.00000000 0.00000000 0.00000000## joining 0.00000000 0.01393922 0.00000000 0.00000000## judd 0.00000000 0.00000000 0.00000000 0.00000000## jump-start 0.00000000 0.00000000 0.00000000 0.00000000## junior 0.00000000 0.00000000 0.00000000 0.00000000## kara 0.00000000 0.00000000 0.00000000 0.00000000## karzai 0.00000000 0.00000000 0.00000000 0.00000000## kathleen 0.00000000 0.00000000 0.00000000 0.00000000## kathryn 0.00000000 0.00000000 0.00000000 0.00000000## keeper 0.00000000 0.02787845 0.00000000 0.00000000## kelly 0.00000000 0.02787845 0.00000000 0.00000000## kent 0.00000000 0.00000000 0.00000000 0.00000000## kerry 0.00000000 0.00000000 0.00000000 0.00000000## khalid 0.00000000 0.00000000 0.00000000 0.00000000## khattala 0.00000000 0.00000000 0.00000000 0.00000000## kristin 0.00000000 0.00000000 0.00000000 0.00000000## landed 0.00000000 0.00000000 0.01290323 0.00000000## landmark 0.00000000 0.00000000 0.00000000 0.00000000## large-scale 0.00000000 0.00000000 0.01290323 0.00000000## launchers 0.00000000 0.00000000 0.00000000 0.00000000## lawsuit 0.00000000 0.00000000 0.00000000 0.00000000## lawyer 0.00000000 0.00000000 0.00000000 0.00000000## leg 0.00000000 0.01393922 0.01290323 0.00000000## legacy 0.00000000 0.01393922 0.00000000 0.00000000## legally 0.01325732 0.00000000 0.00000000 0.00000000## legislate 0.00000000 0.00000000 0.00000000 0.00000000## lender 0.00000000 0.00000000 0.02580645 0.00000000## lengths 0.00000000 0.00000000 0.00000000 0.00000000## leonard 0.00000000 0.00000000 0.00000000 0.03047851## lethal 0.00000000 0.00000000 0.00000000 0.00000000## letting 0.00000000 0.00000000 0.00000000 0.00000000## lifeblood 0.00000000 0.00000000 0.00000000 0.01523926## likewise 0.01325732 0.00000000 0.00000000 0.00000000## limited 0.00000000 0.00000000 0.00000000 0.00000000## linked 0.00000000 0.00000000 0.00000000 0.00000000## links 0.00000000 0.00000000 0.00000000 0.00000000## lisa 0.00000000 0.00000000 0.00000000 0.00000000## listening 0.00000000 0.00000000 0.00000000 0.00000000## lists 0.00000000 0.00000000 0.00000000 0.00000000## literacy 0.00000000 0.00000000 0.00000000 0.00000000## llp 0.01325732 0.00000000 0.00000000 0.00000000## load 0.00000000 0.01393922 0.00000000 0.00000000## location 0.00000000 0.00000000 0.00000000 0.00000000## locked 0.00000000 0.00000000 0.01290323 0.00000000## logistics 0.00000000 0.00000000 0.00000000 0.00000000## logs 0.00000000 0.00000000 0.00000000 0.00000000## loss 0.00000000 0.00000000 0.00000000 0.00000000## loves 0.00000000 0.00000000 0.00000000 0.01523926## lowered 0.00000000 0.00000000 0.00000000 0.00000000## lowers 0.02651465 0.00000000 0.00000000 0.00000000## luna 0.02651465 0.00000000 0.00000000 0.00000000## mahmoud 0.00000000 0.00000000 0.00000000 0.00000000## maintaining 0.00000000 0.01393922 0.00000000 0.00000000## manage 0.00000000 0.00000000 0.00000000 0.01523926## management 0.00000000 0.00000000 0.02580645 0.00000000## mandate 0.00000000 0.00000000 0.00000000 0.00000000## mandates 0.00000000 0.00000000 0.00000000 0.00000000## mandatory 0.00000000 0.00000000 0.00000000 0.00000000## manmade 0.00000000 0.00000000 0.00000000 0.00000000## map 0.01325732 0.00000000 0.00000000 0.00000000## marching 0.00000000 0.00000000 0.01290323 0.00000000## market-based 0.01325732 0.00000000 0.00000000 0.01523926## marketplace 0.00000000 0.00000000 0.00000000 0.00000000## marks 0.00000000 0.00000000 0.00000000 0.00000000## married 0.00000000 0.01393922 0.00000000 0.00000000## mars 0.00000000 0.02787845 0.00000000 0.00000000## marshals 0.00000000 0.00000000 0.00000000 0.00000000## mary 0.00000000 0.00000000 0.00000000 0.00000000## maryland 0.00000000 0.00000000 0.01290323 0.00000000## matched 0.00000000 0.00000000 0.00000000 0.00000000## mayors 0.00000000 0.00000000 0.00000000 0.01523926## maze 0.00000000 0.00000000 0.01290323 0.00000000## mazen 0.00000000 0.00000000 0.00000000 0.00000000## medicare^s 0.00000000 0.00000000 0.00000000 0.00000000## meetings 0.00000000 0.00000000 0.00000000 0.00000000## melting 0.00000000 0.01393922 0.00000000 0.00000000## memories 0.00000000 0.00000000 0.00000000 0.00000000## memory 0.00000000 0.00000000 0.00000000 0.00000000## mentioned 0.00000000 0.00000000 0.00000000 0.00000000## mentoring 0.00000000 0.00000000 0.00000000 0.00000000## mercury 0.00000000 0.00000000 0.01290323 0.00000000## merely 0.00000000 0.00000000 0.00000000 0.00000000## mess 0.00000000 0.00000000 0.00000000 0.01523926## messages 0.01325732 0.00000000 0.00000000 0.00000000## miami 0.01325732 0.00000000 0.00000000 0.01523926## michigan 0.00000000 0.00000000 0.01290323 0.00000000## midwest 0.00000000 0.01393922 0.00000000 0.00000000## milan 0.00000000 0.00000000 0.00000000 0.00000000## militarism 0.00000000 0.00000000 0.00000000 0.00000000## millennium 0.00000000 0.00000000 0.00000000 0.00000000## miller 0.00000000 0.00000000 0.00000000 0.00000000## miners 0.00000000 0.00000000 0.00000000 0.00000000## minutes 0.00000000 0.00000000 0.00000000 0.00000000## miracles 0.00000000 0.00000000 0.00000000 0.00000000## miraculous 0.00000000 0.00000000 0.00000000 0.00000000## mistake 0.00000000 0.00000000 0.00000000 0.00000000## mitchell 0.00000000 0.00000000 0.00000000 0.03047851## mobility 0.00000000 0.00000000 0.00000000 0.00000000## mobilized 0.00000000 0.00000000 0.00000000 0.00000000## mobilizing 0.00000000 0.00000000 0.00000000 0.00000000## moderate 0.00000000 0.01393922 0.00000000 0.00000000## modernized 0.00000000 0.00000000 0.00000000 0.00000000## mohammed 0.00000000 0.00000000 0.00000000 0.00000000## moms 0.01325732 0.00000000 0.00000000 0.00000000## monitoring 0.00000000 0.00000000 0.00000000 0.00000000## mostly 0.01325732 0.00000000 0.00000000 0.00000000## motors 0.00000000 0.00000000 0.01290323 0.00000000## mounting 0.00000000 0.00000000 0.00000000 0.00000000## multinational 0.00000000 0.00000000 0.01290323 0.00000000## murderers 0.00000000 0.00000000 0.00000000 0.00000000## music 0.00000000 0.00000000 0.01290323 0.00000000## mustard 0.00000000 0.00000000 0.00000000 0.00000000## muster 0.00000000 0.00000000 0.00000000 0.00000000## mutilation 0.00000000 0.00000000 0.00000000 0.00000000## mutombo 0.00000000 0.00000000 0.00000000 0.00000000## myra 0.00000000 0.00000000 0.00000000 0.00000000## naive 0.00000000 0.01393922 0.00000000 0.00000000## nasa 0.00000000 0.01393922 0.00000000 0.00000000## nationalized 0.00000000 0.00000000 0.00000000 0.00000000## necessities 0.00000000 0.00000000 0.00000000 0.00000000## necessity 0.00000000 0.01393922 0.00000000 0.00000000## negotiating 0.01325732 0.00000000 0.00000000 0.01523926## neighbor 0.00000000 0.00000000 0.00000000 0.03047851## nerve 0.00000000 0.00000000 0.00000000 0.00000000## neutrality 0.00000000 0.01393922 0.00000000 0.00000000## newer 0.00000000 0.00000000 0.00000000 0.00000000## newspaper 0.00000000 0.00000000 0.00000000 0.01523926## noise 0.00000000 0.00000000 0.00000000 0.00000000## nominations 0.00000000 0.00000000 0.02580645 0.00000000## normal 0.00000000 0.00000000 0.00000000 0.00000000## nowhere 0.00000000 0.00000000 0.01290323 0.00000000## nuclear-armed 0.00000000 0.01393922 0.00000000 0.00000000## o 0.00000000 0.00000000 0.00000000 0.00000000## object 0.00000000 0.00000000 0.00000000 0.00000000## objections 0.00000000 0.00000000 0.00000000 0.00000000## obstacles 0.00000000 0.00000000 0.00000000 0.00000000## obtained 0.00000000 0.00000000 0.00000000 0.00000000## occupations 0.00000000 0.00000000 0.00000000 0.01523926## offense 0.00000000 0.00000000 0.00000000 0.00000000## omaha 0.00000000 0.00000000 0.00000000 0.00000000## one-tenth 0.00000000 0.00000000 0.00000000 0.00000000## one-third 0.00000000 0.00000000 0.00000000 0.00000000## operative 0.00000000 0.00000000 0.00000000 0.00000000## opinion 0.00000000 0.00000000 0.00000000 0.00000000## orphaned 0.00000000 0.00000000 0.00000000 0.00000000## other^s 0.00000000 0.01393922 0.01290323 0.00000000## out-build 0.00000000 0.00000000 0.00000000 0.00000000## out-educate 0.00000000 0.00000000 0.00000000 0.00000000## out-innovate 0.00000000 0.00000000 0.00000000 0.00000000## outrage 0.00000000 0.00000000 0.00000000 0.00000000## outstanding 0.00000000 0.00000000 0.00000000 0.01523926## overlook 0.00000000 0.00000000 0.00000000 0.00000000## overthrow 0.00000000 0.00000000 0.00000000 0.00000000## owning 0.00000000 0.00000000 0.01290323 0.00000000## oxygen 0.00000000 0.00000000 0.00000000 0.00000000## package 0.00000000 0.00000000 0.00000000 0.00000000## paint 0.00000000 0.00000000 0.00000000 0.01523926## pandemic 0.00000000 0.00000000 0.00000000 0.01523926## panel 0.00000000 0.00000000 0.00000000 0.00000000## parental 0.00000000 0.00000000 0.00000000 0.01523926## park 0.01325732 0.00000000 0.00000000 0.00000000## parks 0.00000000 0.00000000 0.00000000 0.00000000## partial-birth 0.00000000 0.00000000 0.00000000 0.00000000## particular 0.00000000 0.00000000 0.00000000 0.00000000## partisanship 0.00000000 0.01393922 0.00000000 0.00000000## passengers 0.00000000 0.00000000 0.00000000 0.00000000## passions 0.00000000 0.01393922 0.00000000 0.00000000## pastors 0.00000000 0.00000000 0.00000000 0.00000000## pataki 0.00000000 0.00000000 0.00000000 0.00000000## patenting 0.00000000 0.00000000 0.00000000 0.00000000## patrolling 0.00000000 0.01393922 0.00000000 0.00000000## patrols 0.00000000 0.00000000 0.00000000 0.00000000## patterns 0.00000000 0.01393922 0.00000000 0.00000000## patton 0.01325732 0.00000000 0.00000000 0.00000000## paul 0.00000000 0.00000000 0.00000000 0.00000000## peacefully 0.00000000 0.00000000 0.00000000 0.00000000## pearson 0.00000000 0.00000000 0.00000000 0.00000000## penalties 0.00000000 0.00000000 0.01290323 0.00000000## pension 0.00000000 0.00000000 0.00000000 0.00000000## perfect 0.01325732 0.00000000 0.00000000 0.00000000## permits 0.01325732 0.00000000 0.00000000 0.00000000## permitting 0.00000000 0.00000000 0.00000000 0.00000000## perpetrator 0.00000000 0.00000000 0.00000000 0.00000000## perpetual 0.00000000 0.00000000 0.01290323 0.00000000## perseverance 0.00000000 0.00000000 0.00000000 0.00000000## persons 0.00000000 0.00000000 0.00000000 0.00000000## pet 0.00000000 0.00000000 0.00000000 0.00000000## petraeus 0.00000000 0.00000000 0.00000000 0.00000000## philosophical 0.00000000 0.00000000 0.01290323 0.00000000## philosophy 0.00000000 0.00000000 0.00000000 0.00000000## phony 0.00000000 0.01393922 0.01290323 0.00000000## physicians 0.00000000 0.00000000 0.00000000 0.00000000## pictures 0.00000000 0.00000000 0.00000000 0.00000000## pile 0.00000000 0.00000000 0.00000000 0.01523926## pizza 0.00000000 0.01393922 0.00000000 0.00000000## placement 0.00000000 0.00000000 0.00000000 0.00000000## planned 0.00000000 0.00000000 0.00000000 0.00000000## platform 0.00000000 0.01393922 0.00000000 0.00000000## plug-in 0.00000000 0.00000000 0.00000000 0.01523926## plunged 0.01325732 0.00000000 0.01290323 0.00000000## plus 0.00000000 0.00000000 0.00000000 0.01523926## poland 0.00000000 0.00000000 0.00000000 0.00000000## politely 0.00000000 0.00000000 0.00000000 0.00000000## poll 0.00000000 0.00000000 0.00000000 0.00000000## portion 0.00000000 0.00000000 0.00000000 0.00000000## poses 0.00000000 0.02787845 0.00000000 0.00000000## posing 0.00000000 0.00000000 0.00000000 0.00000000## possessed 0.00000000 0.00000000 0.00000000 0.00000000## post 0.00000000 0.00000000 0.00000000 0.00000000## pot 0.00000000 0.01393922 0.00000000 0.00000000## potter 0.00000000 0.00000000 0.00000000 0.00000000## pouring 0.00000000 0.00000000 0.00000000 0.00000000## powell 0.00000000 0.00000000 0.00000000 0.00000000## powered 0.00000000 0.00000000 0.00000000 0.00000000## powerplants 0.00000000 0.00000000 0.00000000 0.00000000## powers 0.00000000 0.00000000 0.00000000 0.00000000## practiced 0.00000000 0.00000000 0.00000000 0.00000000## prayer 0.00000000 0.00000000 0.00000000 0.00000000## praying 0.00000000 0.00000000 0.00000000 0.00000000## predecessor 0.00000000 0.00000000 0.01290323 0.00000000## prefer 0.00000000 0.00000000 0.00000000 0.00000000## pregnancy 0.01325732 0.00000000 0.00000000 0.00000000## pretend 0.00000000 0.00000000 0.00000000 0.00000000## pretending 0.00000000 0.00000000 0.00000000 0.00000000## prevailed 0.00000000 0.00000000 0.00000000 0.00000000## primarily 0.00000000 0.00000000 0.00000000 0.00000000## principals 0.00000000 0.00000000 0.00000000 0.00000000## prior 0.00000000 0.00000000 0.00000000 0.00000000## prisoner 0.00000000 0.01393922 0.00000000 0.00000000## prize 0.00000000 0.00000000 0.00000000 0.00000000## procedures 0.00000000 0.00000000 0.00000000 0.01523926## proctor 0.00000000 0.00000000 0.00000000 0.00000000## produced 0.00000000 0.00000000 0.00000000 0.00000000## productivity 0.00000000 0.00000000 0.00000000 0.00000000## progressive 0.00000000 0.00000000 0.00000000 0.00000000## progrowth 0.00000000 0.00000000 0.00000000 0.00000000## proliferation 0.00000000 0.00000000 0.00000000 0.01523926## prominent 0.00000000 0.00000000 0.00000000 0.00000000## prompt 0.00000000 0.00000000 0.00000000 0.00000000## propaganda 0.00000000 0.00000000 0.00000000 0.00000000## proper 0.00000000 0.00000000 0.00000000 0.00000000## properly 0.00000000 0.01393922 0.00000000 0.00000000## prosecution 0.01325732 0.00000000 0.00000000 0.01523926## prospect 0.00000000 0.00000000 0.00000000 0.00000000## protectionism 0.00000000 0.00000000 0.00000000 0.01523926## proved 0.00000000 0.00000000 0.00000000 0.00000000## province 0.00000000 0.00000000 0.00000000 0.00000000## provinces 0.00000000 0.00000000 0.00000000 0.00000000## provincial 0.00000000 0.00000000 0.00000000 0.00000000## provision 0.00000000 0.00000000 0.00000000 0.00000000## provisions 0.00000000 0.00000000 0.00000000 0.00000000## prudent 0.00000000 0.00000000 0.00000000 0.00000000## pulled 0.00000000 0.00000000 0.00000000 0.00000000## pump 0.00000000 0.01393922 0.00000000 0.00000000## pundits 0.00000000 0.01393922 0.00000000 0.00000000## punishing 0.00000000 0.00000000 0.00000000 0.00000000## purchases 0.01325732 0.00000000 0.00000000 0.00000000## purchasing 0.00000000 0.00000000 0.01290323 0.00000000## pursued 0.00000000 0.00000000 0.00000000 0.00000000## pursues 0.00000000 0.00000000 0.00000000 0.00000000## putin 0.00000000 0.02787845 0.00000000 0.00000000## qualified 0.00000000 0.00000000 0.00000000 0.00000000## quick 0.00000000 0.00000000 0.00000000 0.03047851## quite 0.00000000 0.00000000 0.00000000 0.00000000## quitters 0.00000000 0.00000000 0.00000000 0.03047851## quitting 0.00000000 0.00000000 0.00000000 0.03047851## races 0.00000000 0.01393922 0.00000000 0.00000000## rage 0.00000000 0.00000000 0.00000000 0.00000000## railroads 0.00000000 0.00000000 0.00000000 0.00000000## raises 0.00000000 0.00000000 0.00000000 0.00000000## raleigh 0.00000000 0.00000000 0.01290323 0.00000000## rallied 0.00000000 0.00000000 0.00000000 0.00000000## rally 0.00000000 0.00000000 0.00000000 0.00000000## randolph 0.00000000 0.00000000 0.00000000 0.00000000## rape 0.00000000 0.00000000 0.00000000 0.00000000## rarely 0.00000000 0.00000000 0.01290323 0.00000000## rational 0.00000000 0.00000000 0.00000000 0.00000000## rations 0.00000000 0.00000000 0.00000000 0.00000000## reached 0.00000000 0.00000000 0.00000000 0.00000000## reaches 0.00000000 0.00000000 0.00000000 0.00000000## reaffirm 0.00000000 0.00000000 0.00000000 0.00000000## realized 0.00000000 0.00000000 0.00000000 0.00000000## realizing 0.01325732 0.00000000 0.00000000 0.00000000## rebounding 0.01325732 0.00000000 0.00000000 0.00000000## rebuilt 0.00000000 0.00000000 0.01290323 0.01523926## recedes 0.00000000 0.00000000 0.01290323 0.00000000## reclaim 0.00000000 0.00000000 0.01290323 0.00000000## recognizes 0.00000000 0.00000000 0.00000000 0.01523926## recommended 0.00000000 0.00000000 0.00000000 0.00000000## recovered 0.00000000 0.00000000 0.00000000 0.00000000## recovering 0.00000000 0.00000000 0.00000000 0.00000000## recriminations 0.00000000 0.00000000 0.00000000 0.00000000## redefine 0.00000000 0.00000000 0.00000000 0.00000000## reformed 0.00000000 0.00000000 0.01290323 0.00000000## reformers 0.00000000 0.00000000 0.00000000 0.00000000## refund 0.00000000 0.00000000 0.00000000 0.00000000## refundable 0.00000000 0.00000000 0.00000000 0.00000000## refused 0.00000000 0.00000000 0.01290323 0.00000000## refuses 0.00000000 0.01393922 0.00000000 0.00000000## reignite 0.01325732 0.00000000 0.00000000 0.00000000## reinforcements 0.00000000 0.00000000 0.00000000 0.00000000## reinvent 0.00000000 0.00000000 0.00000000 0.00000000## related 0.00000000 0.00000000 0.00000000 0.00000000## relentless 0.00000000 0.00000000 0.00000000 0.00000000## religions 0.00000000 0.00000000 0.00000000 0.00000000## reluctantly 0.00000000 0.00000000 0.00000000 0.00000000## remaking 0.00000000 0.01393922 0.00000000 0.00000000## remnants 0.01325732 0.00000000 0.00000000 0.00000000## remote 0.00000000 0.00000000 0.01290323 0.00000000## renewal 0.00000000 0.00000000 0.02580645 0.00000000## renovation 0.01325732 0.00000000 0.00000000 0.00000000## reorganized 0.00000000 0.00000000 0.00000000 0.00000000## repairing 0.00000000 0.00000000 0.00000000 0.00000000## replaced 0.00000000 0.00000000 0.00000000 0.00000000## reporting 0.00000000 0.00000000 0.00000000 0.00000000## represses 0.00000000 0.00000000 0.00000000 0.00000000## repressing 0.00000000 0.00000000 0.00000000 0.00000000## republic 0.00000000 0.00000000 0.00000000 0.00000000## requested 0.00000000 0.00000000 0.00000000 0.00000000## requests 0.00000000 0.00000000 0.00000000 0.00000000## resentments 0.00000000 0.00000000 0.00000000 0.00000000## reshaping 0.00000000 0.01393922 0.00000000 0.00000000## resident 0.00000000 0.00000000 0.00000000 0.00000000## resilient 0.00000000 0.00000000 0.00000000 0.00000000## respected 0.00000000 0.00000000 0.01290323 0.00000000## respiratory 0.00000000 0.00000000 0.00000000 0.00000000## responders 0.00000000 0.00000000 0.00000000 0.00000000## restored 0.00000000 0.00000000 0.00000000 0.00000000## restoring 0.00000000 0.00000000 0.00000000 0.01523926## restrained 0.00000000 0.00000000 0.00000000 0.00000000## restructure 0.00000000 0.00000000 0.01290323 0.00000000## restructuring 0.00000000 0.00000000 0.01290323 0.00000000## resume 0.00000000 0.00000000 0.00000000 0.00000000## retail 0.00000000 0.00000000 0.00000000 0.00000000## retaliation 0.00000000 0.00000000 0.00000000 0.00000000## retool 0.00000000 0.00000000 0.01290323 0.00000000## retooled 0.00000000 0.01393922 0.00000000 0.01523926## retrain 0.00000000 0.00000000 0.00000000 0.00000000## retreating 0.00000000 0.00000000 0.00000000 0.00000000## returning 0.00000000 0.00000000 0.00000000 0.00000000## reveal 0.00000000 0.00000000 0.00000000 0.00000000## revival 0.00000000 0.00000000 0.00000000 0.00000000## revive 0.00000000 0.00000000 0.00000000 0.03047851## revolutionary 0.00000000 0.01393922 0.00000000 0.00000000## richness 0.00000000 0.00000000 0.00000000 0.00000000## riddled 0.00000000 0.01393922 0.00000000 0.00000000## ride 0.00000000 0.00000000 0.00000000 0.00000000## ridge 0.00000000 0.00000000 0.00000000 0.00000000## rigorous 0.00000000 0.00000000 0.00000000 0.00000000## ripped 0.01325732 0.00000000 0.00000000 0.00000000## risked 0.00000000 0.00000000 0.00000000 0.00000000## risking 0.00000000 0.00000000 0.00000000 0.00000000## ritterby 0.00000000 0.00000000 0.02580645 0.00000000## rival 0.00000000 0.00000000 0.00000000 0.00000000## roadside 0.00000000 0.00000000 0.00000000 0.00000000## robotics 0.00000000 0.01393922 0.01290323 0.00000000## robust 0.00000000 0.00000000 0.00000000 0.00000000## rolled 0.00000000 0.00000000 0.00000000 0.00000000## rolling 0.00000000 0.01393922 0.00000000 0.01523926## romney^s 0.01325732 0.00000000 0.00000000 0.00000000## roofing 0.00000000 0.00000000 0.00000000 0.00000000## rooted 0.00000000 0.00000000 0.00000000 0.00000000## rose 0.00000000 0.00000000 0.00000000 0.00000000## rouge 0.00000000 0.00000000 0.00000000 0.00000000## routes 0.00000000 0.00000000 0.00000000 0.00000000## routine 0.00000000 0.00000000 0.01290323 0.00000000## rubio 0.00000000 0.00000000 0.00000000 0.00000000## rudolph 0.00000000 0.00000000 0.00000000 0.00000000## rugged 0.00000000 0.00000000 0.00000000 0.00000000## ruins 0.00000000 0.00000000 0.00000000 0.00000000## rulers 0.00000000 0.00000000 0.00000000 0.00000000## ruling 0.00000000 0.00000000 0.00000000 0.00000000## rushed 0.00000000 0.00000000 0.00000000 0.00000000## sacrificed 0.00000000 0.02787845 0.00000000 0.00000000## sacrificing 0.00000000 0.00000000 0.00000000 0.00000000## sadly 0.00000000 0.00000000 0.00000000 0.00000000## safeguard 0.00000000 0.00000000 0.01290323 0.00000000## safeguards 0.00000000 0.01393922 0.00000000 0.00000000## safely 0.00000000 0.00000000 0.01290323 0.00000000## salaries 0.00000000 0.00000000 0.00000000 0.00000000## salary 0.00000000 0.00000000 0.00000000 0.00000000## salute 0.00000000 0.01393922 0.01290323 0.00000000## sanctuary 0.00000000 0.00000000 0.00000000 0.00000000## sanitizing 0.00000000 0.00000000 0.00000000 0.00000000## sanity 0.00000000 0.00000000 0.00000000 0.00000000## sarin 0.00000000 0.00000000 0.00000000 0.00000000## scale 0.00000000 0.00000000 0.00000000 0.01523926## scattered 0.00000000 0.00000000 0.00000000 0.00000000## scavenger 0.00000000 0.00000000 0.00000000 0.00000000## scenes 0.00000000 0.00000000 0.00000000 0.00000000## schip 0.00000000 0.00000000 0.00000000 0.01523926## scholarships 0.00000000 0.00000000 0.00000000 0.00000000## scope 0.00000000 0.00000000 0.00000000 0.01523926## screeners 0.00000000 0.00000000 0.00000000 0.00000000## sebelius 0.00000000 0.00000000 0.00000000 0.00000000## seconds 0.00000000 0.00000000 0.00000000 0.01523926## secretly 0.00000000 0.00000000 0.00000000 0.00000000## secrets 0.01325732 0.01393922 0.00000000 0.00000000## sectors 0.00000000 0.01393922 0.00000000 0.00000000## secured 0.00000000 0.00000000 0.00000000 0.01523926## seized 0.00000000 0.00000000 0.00000000 0.00000000## seldom 0.00000000 0.00000000 0.00000000 0.00000000## self-appointed 0.00000000 0.00000000 0.00000000 0.00000000## self-reliant 0.00000000 0.00000000 0.00000000 0.00000000## selma 0.00000000 0.01393922 0.00000000 0.00000000## sensible 0.00000000 0.01393922 0.00000000 0.00000000## sensors 0.00000000 0.00000000 0.00000000 0.00000000## sentence 0.00000000 0.00000000 0.00000000 0.00000000## seoul 0.00000000 0.00000000 0.01290323 0.00000000## separate 0.00000000 0.01393922 0.00000000 0.00000000## settle 0.00000000 0.00000000 0.02580645 0.00000000## sexually 0.00000000 0.00000000 0.00000000 0.00000000## shadowy 0.00000000 0.00000000 0.00000000 0.00000000## shaking 0.00000000 0.00000000 0.00000000 0.00000000## shalala 0.00000000 0.00000000 0.00000000 0.00000000## shale 0.00000000 0.00000000 0.02580645 0.00000000## shareholder 0.00000000 0.00000000 0.00000000 0.00000000## sharing 0.01325732 0.00000000 0.00000000 0.00000000## sharon 0.00000000 0.00000000 0.00000000 0.00000000## sharp 0.00000000 0.00000000 0.00000000 0.00000000## sheer 0.00000000 0.00000000 0.00000000 0.00000000## sheik 0.00000000 0.00000000 0.00000000 0.00000000## sheoma 0.00000000 0.00000000 0.00000000 0.03047851## shifting 0.01325732 0.00000000 0.00000000 0.00000000## shipment 0.00000000 0.00000000 0.00000000 0.00000000## ships 0.00000000 0.00000000 0.00000000 0.00000000## shock 0.00000000 0.00000000 0.00000000 0.00000000## shortchanging 0.00000000 0.00000000 0.00000000 0.00000000## shortcuts 0.00000000 0.00000000 0.00000000 0.01523926## shortfall 0.00000000 0.00000000 0.00000000 0.00000000## showroom 0.00000000 0.00000000 0.00000000 0.00000000## shrapnel 0.00000000 0.00000000 0.00000000 0.00000000## shrink 0.00000000 0.00000000 0.00000000 0.00000000## shuttered 0.00000000 0.00000000 0.00000000 0.00000000## sidelines 0.00000000 0.00000000 0.00000000 0.00000000## signal 0.00000000 0.00000000 0.00000000 0.00000000## significantly 0.00000000 0.00000000 0.00000000 0.00000000## simpson 0.02651465 0.00000000 0.00000000 0.00000000## singapore 0.00000000 0.00000000 0.00000000 0.00000000## sites 0.00000000 0.00000000 0.00000000 0.00000000## slash 0.00000000 0.00000000 0.00000000 0.00000000## sleepless 0.00000000 0.00000000 0.00000000 0.01523926## slip 0.01325732 0.00000000 0.00000000 0.00000000## slipping 0.00000000 0.00000000 0.00000000 0.00000000## smallpox 0.00000000 0.00000000 0.00000000 0.00000000## sobered 0.00000000 0.00000000 0.00000000 0.00000000## societies 0.00000000 0.00000000 0.00000000 0.00000000## soldier 0.00000000 0.00000000 0.00000000 0.00000000## solemn 0.00000000 0.00000000 0.00000000 0.00000000## solid 0.01325732 0.00000000 0.00000000 0.00000000## solving 0.00000000 0.00000000 0.00000000 0.00000000## someday 0.00000000 0.00000000 0.00000000 0.01523926## someplace 0.00000000 0.00000000 0.00000000 0.00000000## soranno 0.00000000 0.00000000 0.00000000 0.00000000## sort 0.01325732 0.00000000 0.00000000 0.00000000## soul 0.00000000 0.00000000 0.00000000 0.00000000## southern 0.01325732 0.00000000 0.00000000 0.00000000## sovereign 0.01325732 0.00000000 0.00000000 0.00000000## sovereignty 0.00000000 0.00000000 0.00000000 0.00000000## soviets 0.00000000 0.00000000 0.00000000 0.00000000## speaks 0.00000000 0.00000000 0.00000000 0.00000000## spiegel 0.02651465 0.00000000 0.00000000 0.00000000## sponsor 0.00000000 0.00000000 0.00000000 0.00000000## squads 0.00000000 0.00000000 0.00000000 0.00000000## stabilize 0.01325732 0.00000000 0.00000000 0.00000000## stabilized 0.00000000 0.00000000 0.00000000 0.00000000## staffs 0.00000000 0.00000000 0.00000000 0.00000000## stage 0.00000000 0.00000000 0.01290323 0.00000000## staggering 0.00000000 0.00000000 0.00000000 0.00000000## stagnation 0.00000000 0.00000000 0.00000000 0.00000000## stairs 0.00000000 0.00000000 0.02580645 0.00000000## stalled 0.00000000 0.00000000 0.00000000 0.00000000## stamped 0.00000000 0.00000000 0.00000000 0.00000000## stark 0.00000000 0.00000000 0.00000000 0.01523926## starts 0.00000000 0.01393922 0.00000000 0.00000000## startup 0.00000000 0.00000000 0.00000000 0.00000000## startups 0.00000000 0.00000000 0.01290323 0.00000000## starvation 0.00000000 0.00000000 0.00000000 0.00000000## statements 0.00000000 0.00000000 0.00000000 0.00000000## station 0.00000000 0.00000000 0.00000000 0.00000000## statistics 0.00000000 0.00000000 0.00000000 0.01523926## statute 0.00000000 0.00000000 0.00000000 0.00000000## stayed 0.01325732 0.00000000 0.00000000 0.00000000## staying 0.00000000 0.00000000 0.00000000 0.00000000## steadfast 0.01325732 0.00000000 0.00000000 0.00000000## steel 0.00000000 0.00000000 0.00000000 0.00000000## steroids 0.00000000 0.00000000 0.00000000 0.00000000## steve 0.00000000 0.00000000 0.01290323 0.00000000## stimulate 0.00000000 0.00000000 0.00000000 0.00000000## stockpiles 0.00000000 0.00000000 0.00000000 0.00000000## strained 0.00000000 0.00000000 0.00000000 0.00000000## street^s 0.00000000 0.00000000 0.00000000 0.00000000## strengthens 0.00000000 0.00000000 0.00000000 0.00000000## stretch 0.00000000 0.00000000 0.00000000 0.00000000## stretches 0.00000000 0.01393922 0.00000000 0.00000000## structure 0.00000000 0.00000000 0.00000000 0.00000000## struggled 0.00000000 0.00000000 0.01290323 0.00000000## stubborn 0.00000000 0.00000000 0.00000000 0.00000000## stuck 0.00000000 0.00000000 0.00000000 0.00000000## submitted 0.00000000 0.00000000 0.00000000 0.00000000## subsidized 0.00000000 0.00000000 0.02580645 0.00000000## substantial 0.00000000 0.00000000 0.00000000 0.00000000## substantially 0.00000000 0.00000000 0.00000000 0.00000000## suddenly 0.00000000 0.00000000 0.00000000 0.00000000## sued 0.00000000 0.00000000 0.00000000 0.00000000## suffer 0.00000000 0.00000000 0.00000000 0.01523926## suitable 0.00000000 0.00000000 0.00000000 0.00000000## summon 0.00000000 0.00000000 0.00000000 0.01523926## sunlight 0.00000000 0.01393922 0.00000000 0.00000000## superb 0.00000000 0.00000000 0.00000000 0.00000000## surgery 0.00000000 0.00000000 0.00000000 0.00000000## surprise 0.00000000 0.00000000 0.00000000 0.00000000## surrender 0.00000000 0.00000000 0.00000000 0.00000000## suspicion 0.00000000 0.00000000 0.00000000 0.00000000## swift 0.00000000 0.00000000 0.00000000 0.01523926## switch 0.00000000 0.00000000 0.00000000 0.00000000## sympathy 0.00000000 0.00000000 0.00000000 0.00000000## system^s 0.00000000 0.00000000 0.01290323 0.00000000## systematically 0.00000000 0.00000000 0.00000000 0.00000000## tables 0.00000000 0.01393922 0.00000000 0.00000000## taleb 0.00000000 0.00000000 0.00000000 0.00000000## talents 0.01325732 0.00000000 0.00000000 0.01523926## tallest 0.00000000 0.00000000 0.00000000 0.00000000## targets 0.00000000 0.00000000 0.00000000 0.00000000## tasks 0.00000000 0.01393922 0.00000000 0.00000000## taught 0.00000000 0.01393922 0.00000000 0.00000000## teachings 0.00000000 0.00000000 0.00000000 0.00000000## tear 0.00000000 0.00000000 0.01290323 0.00000000## technical 0.01325732 0.00000000 0.00000000 0.00000000## teddy 0.00000000 0.00000000 0.00000000 0.01523926## teenager 0.00000000 0.00000000 0.00000000 0.00000000## television 0.00000000 0.00000000 0.00000000 0.00000000## tennessee 0.00000000 0.01393922 0.00000000 0.00000000## testified 0.00000000 0.00000000 0.00000000 0.00000000## theirs 0.01325732 0.00000000 0.00000000 0.00000000## thereby 0.00000000 0.00000000 0.00000000 0.00000000## therefore 0.00000000 0.00000000 0.00000000 0.00000000## they^ll 0.01325732 0.00000000 0.00000000 0.01523926## thompson 0.00000000 0.00000000 0.00000000 0.00000000## thread 0.00000000 0.00000000 0.00000000 0.01523926## threatening 0.00000000 0.00000000 0.00000000 0.00000000## thrive 0.00000000 0.00000000 0.00000000 0.01523926## thugs 0.00000000 0.00000000 0.00000000 0.00000000## tighter 0.00000000 0.00000000 0.00000000 0.00000000## tim 0.00000000 0.00000000 0.00000000 0.00000000## toil 0.00000000 0.00000000 0.00000000 0.00000000## tolerance 0.00000000 0.00000000 0.00000000 0.00000000## tomorrow^s 0.00000000 0.00000000 0.00000000 0.00000000## tongues 0.00000000 0.00000000 0.00000000 0.00000000## tons 0.00000000 0.00000000 0.00000000 0.00000000## torturing 0.00000000 0.00000000 0.00000000 0.00000000## touch 0.00000000 0.00000000 0.00000000 0.00000000## touched 0.00000000 0.00000000 0.00000000 0.01523926## touching 0.00000000 0.02787845 0.00000000 0.00000000## towers 0.00000000 0.00000000 0.00000000 0.00000000## toxic 0.00000000 0.00000000 0.01290323 0.00000000## tracking 0.00000000 0.00000000 0.00000000 0.00000000## tracks 0.00000000 0.00000000 0.00000000 0.01523926## traditional 0.00000000 0.00000000 0.00000000 0.00000000## traditions 0.00000000 0.00000000 0.00000000 0.00000000## traffickers 0.00000000 0.00000000 0.00000000 0.00000000## trajectory 0.00000000 0.00000000 0.01290323 0.00000000## transcontinental 0.00000000 0.00000000 0.00000000 0.00000000## transfer 0.00000000 0.00000000 0.00000000 0.01523926## transformed 0.00000000 0.00000000 0.00000000 0.00000000## transmitted 0.00000000 0.00000000 0.00000000 0.00000000## transparent 0.01325732 0.00000000 0.00000000 0.00000000## treasured 0.00000000 0.00000000 0.00000000 0.00000000## treaties 0.00000000 0.00000000 0.00000000 0.00000000## trillion-dollar 0.00000000 0.00000000 0.00000000 0.01523926## triple 0.00000000 0.00000000 0.00000000 0.00000000## triumph 0.00000000 0.00000000 0.00000000 0.00000000## trivial 0.00000000 0.01393922 0.00000000 0.01523926## troop 0.00000000 0.00000000 0.00000000 0.00000000## truman 0.00000000 0.00000000 0.00000000 0.00000000## trusted 0.00000000 0.00000000 0.01290323 0.00000000## tubes 0.00000000 0.00000000 0.00000000 0.00000000## tuesday 0.00000000 0.00000000 0.00000000 0.00000000## turbine 0.00000000 0.00000000 0.02580645 0.00000000## tutoring 0.00000000 0.00000000 0.00000000 0.00000000## twelve 0.00000000 0.00000000 0.00000000 0.00000000## twenty 0.00000000 0.00000000 0.00000000 0.01523926## two-thirds 0.00000000 0.01393922 0.00000000 0.00000000## ty 0.00000000 0.00000000 0.00000000 0.03047851## typhoon 0.00000000 0.00000000 0.00000000 0.00000000## u- 0.00000000 0.00000000 0.00000000 0.00000000## unable 0.00000000 0.00000000 0.00000000 0.00000000## unanswered 0.00000000 0.00000000 0.00000000 0.00000000## unarmed 0.00000000 0.00000000 0.00000000 0.00000000## uncertainties 0.00000000 0.00000000 0.00000000 0.00000000## unconditional 0.00000000 0.00000000 0.00000000 0.00000000## underway 0.00000000 0.00000000 0.00000000 0.00000000## undo 0.00000000 0.01393922 0.00000000 0.00000000## undocumented 0.00000000 0.00000000 0.00000000 0.00000000## unethical 0.00000000 0.00000000 0.00000000 0.00000000## uninterrupted 0.00000000 0.00000000 0.00000000 0.00000000## unite 0.00000000 0.01393922 0.00000000 0.00000000## unleash 0.00000000 0.01393922 0.00000000 0.00000000## unleashed 0.00000000 0.01393922 0.00000000 0.00000000## unraveling 0.00000000 0.01393922 0.00000000 0.00000000## unstable 0.00000000 0.00000000 0.01290323 0.00000000## unsustainable 0.01325732 0.00000000 0.00000000 0.00000000## untouched 0.00000000 0.00000000 0.01290323 0.00000000## unused 0.00000000 0.00000000 0.00000000 0.00000000## unwavering 0.00000000 0.00000000 0.00000000 0.00000000## unyielding 0.00000000 0.00000000 0.00000000 0.01523926## upwards 0.00000000 0.00000000 0.00000000 0.00000000## utter 0.00000000 0.00000000 0.00000000 0.00000000## vacant 0.01325732 0.00000000 0.00000000 0.00000000## vatican 0.00000000 0.01393922 0.00000000 0.00000000## vets 0.00000000 0.01393922 0.01290323 0.00000000## vibrant 0.00000000 0.00000000 0.00000000 0.00000000## victor 0.02651465 0.00000000 0.00000000 0.00000000## victoria 0.00000000 0.00000000 0.00000000 0.00000000## victories 0.00000000 0.00000000 0.00000000 0.00000000## video 0.00000000 0.00000000 0.00000000 0.01523926## videos 0.00000000 0.00000000 0.00000000 0.00000000## views 0.01325732 0.00000000 0.01290323 0.00000000## vigilant 0.00000000 0.00000000 0.00000000 0.01523926## vigorous 0.00000000 0.00000000 0.00000000 0.00000000## violate 0.01325732 0.00000000 0.01290323 0.00000000## violating 0.00000000 0.00000000 0.00000000 0.00000000## violations 0.00000000 0.00000000 0.00000000 0.00000000## virginia 0.00000000 0.01393922 0.00000000 0.00000000## virus 0.00000000 0.00000000 0.00000000 0.00000000## viruses 0.00000000 0.00000000 0.00000000 0.00000000## visited 0.00000000 0.00000000 0.00000000 0.01523926## visitor 0.00000000 0.00000000 0.00000000 0.00000000## vladimir 0.00000000 0.02787845 0.00000000 0.00000000## vladimirovich 0.00000000 0.02787845 0.00000000 0.00000000## voluntarily 0.00000000 0.00000000 0.00000000 0.00000000## vx 0.00000000 0.00000000 0.00000000 0.00000000## waitress 0.00000000 0.00000000 0.00000000 0.00000000## walking 0.00000000 0.00000000 0.00000000 0.00000000## warned 0.00000000 0.00000000 0.00000000 0.00000000## wasted 0.01325732 0.00000000 0.00000000 0.01523926## wastes 0.00000000 0.00000000 0.01290323 0.00000000## watchdog 0.00000000 0.01393922 0.01290323 0.00000000## waves 0.01325732 0.01393922 0.00000000 0.00000000## weakening 0.00000000 0.00000000 0.00000000 0.00000000## weaker 0.00000000 0.00000000 0.00000000 0.01523926## weakest 0.00000000 0.00000000 0.00000000 0.00000000## weather 0.00000000 0.00000000 0.00000000 0.01523926## weighed 0.00000000 0.00000000 0.00000000 0.01523926## welcomed 0.01325732 0.00000000 0.01290323 0.00000000## wendell 0.00000000 0.00000000 0.00000000 0.00000000## whim 0.00000000 0.00000000 0.00000000 0.00000000## whirlwind 0.00000000 0.00000000 0.00000000 0.00000000## wide 0.00000000 0.00000000 0.00000000 0.00000000## wildfires 0.02651465 0.00000000 0.00000000 0.00000000## wildlife 0.00000000 0.00000000 0.00000000 0.00000000## window 0.00000000 0.00000000 0.00000000 0.00000000## windows 0.00000000 0.00000000 0.00000000 0.00000000## winner 0.00000000 0.00000000 0.00000000 0.00000000## wiped 0.00000000 0.00000000 0.00000000 0.00000000## wireless 0.00000000 0.00000000 0.00000000 0.00000000## wisconsin 0.02651465 0.00000000 0.00000000 0.00000000## wish 0.00000000 0.00000000 0.00000000 0.00000000## witness 0.00000000 0.00000000 0.00000000 0.00000000## witnesses 0.00000000 0.00000000 0.00000000 0.00000000## wondering 0.00000000 0.00000000 0.00000000 0.00000000## wood 0.00000000 0.00000000 0.00000000 0.00000000## workplace 0.01325732 0.00000000 0.00000000 0.00000000## worksite 0.00000000 0.00000000 0.00000000 0.00000000## worried 0.00000000 0.00000000 0.01290323 0.00000000## worsened 0.00000000 0.01393922 0.00000000 0.01523926## wounds 0.01325732 0.00000000 0.00000000 0.00000000## wright 0.00000000 0.00000000 0.00000000 0.00000000## yesterday 0.00000000 0.00000000 0.00000000 0.01523926## yogi 0.00000000 0.00000000 0.00000000 0.00000000## youngstown 0.01325732 0.00000000 0.00000000 0.00000000## yourselves 0.00000000 0.00000000 0.01290323 0.00000000## zimbabwe 0.00000000 0.00000000 0.00000000 0.00000000## -foot 0.00000000 0.00000000 0.00000000 0.00000000## -h 0.00000000 0.00000000 0.00000000 0.00000000## -something 0.00000000 0.00000000 0.00000000 0.00000000## -year-olds 0.01325732 0.00000000 0.00000000 0.00000000## abandoned 0.00000000 0.00000000 0.00000000 0.00000000## abetting 0.00000000 0.00000000 0.00000000 0.00000000## abolition 0.00000000 0.00000000 0.00000000 0.00000000## abruptly 0.00000000 0.00000000 0.00000000 0.00000000## absence 0.00000000 0.00000000 0.00000000 0.01523926## academy 0.00000000 0.00000000 0.00000000 0.00000000## accelerating 0.00000000 0.00000000 0.00000000 0.00000000## acceptable 0.00000000 0.00000000 0.00000000 0.00000000## acceptance 0.00000000 0.00000000 0.00000000 0.01523926## accepts 0.00000000 0.00000000 0.00000000 0.00000000## accessible 0.00000000 0.00000000 0.00000000 0.00000000## accessing 0.00000000 0.00000000 0.01290323 0.00000000## accompanied 0.00000000 0.00000000 0.00000000 0.00000000## accomplishment 0.00000000 0.00000000 0.00000000 0.00000000## accomplishments 0.00000000 0.00000000 0.00000000 0.00000000## accumulated 0.00000000 0.01393922 0.00000000 0.00000000## accumulates 0.00000000 0.00000000 0.00000000 0.00000000## aching 0.01325732 0.00000000 0.00000000 0.00000000## acknowledgment 0.00000000 0.00000000 0.00000000 0.00000000## acne 0.00000000 0.00000000 0.00000000 0.00000000## acquire 0.00000000 0.00000000 0.00000000 0.00000000## acrimony 0.00000000 0.00000000 0.00000000 0.00000000## across-the-board 0.00000000 0.00000000 0.00000000 0.00000000## activity 0.00000000 0.00000000 0.00000000 0.00000000## actual 0.00000000 0.01393922 0.00000000 0.00000000## adapting 0.00000000 0.00000000 0.00000000 0.00000000## addressed 0.00000000 0.00000000 0.00000000 0.00000000## adjustment 0.00000000 0.00000000 0.00000000 0.00000000## administer 0.00000000 0.00000000 0.00000000 0.00000000## administration^s 0.00000000 0.00000000 0.00000000 0.00000000## administrator 0.00000000 0.00000000 0.00000000 0.00000000## admirals 0.01325732 0.00000000 0.00000000 0.00000000## admire 0.00000000 0.00000000 0.01290323 0.00000000## admitted 0.00000000 0.00000000 0.00000000 0.00000000## adnan 0.00000000 0.00000000 0.00000000 0.00000000## adopt 0.00000000 0.01393922 0.00000000 0.00000000## adopting 0.00000000 0.00000000 0.00000000 0.00000000## adopts 0.00000000 0.00000000 0.00000000 0.00000000## ads 0.00000000 0.01393922 0.00000000 0.00000000## adulthood 0.00000000 0.00000000 0.00000000 0.00000000## advanced-placement 0.00000000 0.00000000 0.00000000 0.00000000## advancing 0.00000000 0.00000000 0.00000000 0.00000000## advisers 0.00000000 0.00000000 0.00000000 0.00000000## advocated 0.00000000 0.00000000 0.00000000 0.00000000## advocating 0.00000000 0.00000000 0.00000000 0.00000000## aeronautics 0.00000000 0.00000000 0.00000000 0.00000000## affecting 0.00000000 0.00000000 0.00000000 0.00000000## affects 0.00000000 0.00000000 0.00000000 0.01523926## affiliated 0.00000000 0.00000000 0.00000000 0.00000000## affluent 0.00000000 0.00000000 0.00000000 0.00000000## affront 0.00000000 0.00000000 0.00000000 0.00000000## afghanistan^s 0.00000000 0.00000000 0.00000000 0.00000000## afterward 0.00000000 0.00000000 0.00000000 0.00000000## afterwards 0.00000000 0.00000000 0.00000000 0.00000000## agribusiness 0.00000000 0.00000000 0.00000000 0.01523926## aided 0.00000000 0.00000000 0.00000000 0.00000000## aiding 0.00000000 0.00000000 0.00000000 0.00000000## aids-free 0.01325732 0.00000000 0.00000000 0.00000000## aimed 0.00000000 0.00000000 0.00000000 0.00000000## ain^t 0.00000000 0.00000000 0.00000000 0.00000000## airlines 0.00000000 0.00000000 0.00000000 0.00000000## airmen 0.00000000 0.00000000 0.00000000 0.00000000## airplanes 0.00000000 0.00000000 0.00000000 0.00000000## al-asad 0.00000000 0.00000000 0.01290323 0.00000000## alarming 0.00000000 0.00000000 0.00000000 0.00000000## alert 0.00000000 0.00000000 0.00000000 0.00000000## alesandro 0.00000000 0.00000000 0.00000000 0.00000000## alienating 0.00000000 0.01393922 0.00000000 0.00000000## aligned 0.00000000 0.00000000 0.00000000 0.00000000## alito 0.00000000 0.00000000 0.00000000 0.00000000## all-in 0.00000000 0.00000000 0.00000000 0.00000000## all-out 0.00000000 0.00000000 0.01290323 0.00000000## all-powerful 0.00000000 0.00000000 0.00000000 0.00000000## allegiance 0.00000000 0.00000000 0.00000000 0.00000000## allentown 0.00000000 0.00000000 0.00000000 0.00000000## allowance 0.00000000 0.00000000 0.00000000 0.00000000## although 0.00000000 0.00000000 0.00000000 0.00000000## altogether 0.00000000 0.00000000 0.00000000 0.00000000## alzheimer^s 0.01325732 0.00000000 0.00000000 0.00000000## american-made 0.00000000 0.00000000 0.01290323 0.00000000## ammunition 0.01325732 0.00000000 0.00000000 0.00000000## amounts 0.00000000 0.00000000 0.00000000 0.00000000## analysts 0.00000000 0.00000000 0.00000000 0.00000000## anchor 0.01325732 0.00000000 0.00000000 0.00000000## andrews 0.00000000 0.00000000 0.01290323 0.00000000## angeles 0.00000000 0.00000000 0.00000000 0.00000000## anguish 0.00000000 0.00000000 0.00000000 0.00000000## animosity 0.00000000 0.00000000 0.00000000 0.00000000## annapolis 0.00000000 0.01393922 0.00000000 0.00000000## anniversaries 0.01325732 0.00000000 0.00000000 0.00000000## announcement 0.00000000 0.01393922 0.00000000 0.00000000## answered 0.00000000 0.00000000 0.00000000 0.00000000## anthem 0.00000000 0.00000000 0.00000000 0.00000000## anti-semitism 0.00000000 0.01393922 0.00000000 0.00000000## antifraud 0.00000000 0.00000000 0.01290323 0.00000000## antipoverty 0.00000000 0.00000000 0.00000000 0.00000000## antsy 0.00000000 0.00000000 0.00000000 0.00000000## anymore 0.01325732 0.00000000 0.00000000 0.00000000## anyone^s 0.00000000 0.01393922 0.00000000 0.00000000## anytime 0.00000000 0.00000000 0.00000000 0.00000000## anyway 0.00000000 0.00000000 0.00000000 0.01523926## apartments 0.00000000 0.00000000 0.00000000 0.00000000## apathy 0.00000000 0.00000000 0.00000000 0.00000000## apollo 0.00000000 0.00000000 0.00000000 0.00000000## applaud 0.01325732 0.00000000 0.00000000 0.00000000## applauded 0.00000000 0.01393922 0.00000000 0.00000000## applications 0.00000000 0.00000000 0.00000000 0.00000000## apprenticeship 0.00000000 0.00000000 0.00000000 0.01523926## approaches 0.00000000 0.00000000 0.00000000 0.00000000## approval 0.00000000 0.00000000 0.00000000 0.00000000## april^s 0.00000000 0.00000000 0.00000000 0.00000000## arab-israeli 0.00000000 0.00000000 0.00000000 0.00000000## archaic 0.00000000 0.00000000 0.00000000 0.00000000## arguing 0.00000000 0.01393922 0.00000000 0.00000000## ariel 0.00000000 0.00000000 0.00000000 0.00000000## arlene 0.00000000 0.00000000 0.00000000 0.00000000## armored 0.00000000 0.00000000 0.00000000 0.00000000## arrivals 0.00000000 0.00000000 0.00000000 0.00000000## arrive 0.01325732 0.00000000 0.00000000 0.00000000## arrives 0.00000000 0.00000000 0.00000000 0.00000000## art 0.00000000 0.00000000 0.00000000 0.00000000## articles 0.00000000 0.00000000 0.00000000 0.00000000## artificial 0.00000000 0.00000000 0.00000000 0.00000000## artist 0.00000000 0.00000000 0.00000000 0.00000000## asbestos 0.00000000 0.00000000 0.00000000 0.00000000## ashcroft 0.00000000 0.00000000 0.00000000 0.00000000## aspect 0.00000000 0.00000000 0.00000000 0.00000000## aspects 0.00000000 0.00000000 0.00000000 0.00000000## aspires 0.00000000 0.00000000 0.01290323 0.00000000## assassin^s 0.00000000 0.00000000 0.00000000 0.00000000## assassinated 0.00000000 0.00000000 0.00000000 0.00000000## assault 0.00000000 0.00000000 0.00000000 0.00000000## assaulted 0.00000000 0.00000000 0.00000000 0.00000000## asserting 0.00000000 0.00000000 0.00000000 0.00000000## asset 0.00000000 0.00000000 0.00000000 0.00000000## assimilates 0.00000000 0.00000000 0.00000000 0.00000000## assisted 0.00000000 0.00000000 0.00000000 0.00000000## associate^s 0.01325732 0.00000000 0.00000000 0.00000000## assuming 0.00000000 0.00000000 0.00000000 0.00000000## assumptions 0.00000000 0.00000000 0.00000000 0.00000000## assuring 0.00000000 0.00000000 0.00000000 0.01523926## astronauts 0.00000000 0.01393922 0.00000000 0.00000000## at-risk 0.00000000 0.00000000 0.00000000 0.00000000## athification 0.00000000 0.00000000 0.00000000 0.00000000## athist 0.00000000 0.00000000 0.00000000 0.00000000## athletics 0.00000000 0.00000000 0.00000000 0.00000000## attached 0.00000000 0.00000000 0.00000000 0.01523926## attackers 0.00000000 0.00000000 0.00000000 0.00000000## attempts 0.00000000 0.00000000 0.00000000 0.00000000## attitudes 0.00000000 0.00000000 0.00000000 0.00000000## attorneys 0.01325732 0.00000000 0.00000000 0.00000000## aurora 0.01325732 0.00000000 0.00000000 0.00000000## austin 0.00000000 0.00000000 0.00000000 0.00000000## authorized 0.00000000 0.00000000 0.00000000 0.00000000## authorizing 0.00000000 0.00000000 0.00000000 0.00000000## authors 0.01325732 0.00000000 0.00000000 0.00000000## automated 0.00000000 0.00000000 0.00000000 0.00000000## automatic 0.00000000 0.00000000 0.00000000 0.00000000## automatically 0.01325732 0.00000000 0.00000000 0.00000000## autoworker 0.00000000 0.00000000 0.00000000 0.00000000## avenue 0.00000000 0.00000000 0.00000000 0.00000000## avenues 0.00000000 0.00000000 0.00000000 0.00000000## aviation 0.00000000 0.00000000 0.00000000 0.00000000## avoidance 0.00000000 0.00000000 0.01290323 0.00000000## avoided 0.00000000 0.00000000 0.00000000 0.00000000## avoids 0.00000000 0.00000000 0.00000000 0.00000000## awakened 0.00000000 0.00000000 0.00000000 0.00000000## awakening 0.00000000 0.00000000 0.00000000 0.00000000## awarded 0.00000000 0.00000000 0.00000000 0.00000000## awed 0.00000000 0.00000000 0.00000000 0.00000000## awful 0.00000000 0.00000000 0.01290323 0.00000000## awoke 0.00000000 0.00000000 0.00000000 0.00000000## ayad 0.00000000 0.00000000 0.00000000 0.00000000## az 0.00000000 0.00000000 0.00000000 0.00000000## backing 0.00000000 0.00000000 0.00000000 0.00000000## backsliding 0.00000000 0.00000000 0.00000000 0.00000000## backwards 0.00000000 0.00000000 0.00000000 0.01523926## bacteria 0.00000000 0.00000000 0.00000000 0.00000000## bag 0.00000000 0.00000000 0.01290323 0.00000000## bahrain 0.00000000 0.00000000 0.00000000 0.00000000## bailing 0.00000000 0.00000000 0.01290323 0.00000000## bailout 0.00000000 0.00000000 0.00000000 0.00000000## balances 0.01325732 0.00000000 0.00000000 0.00000000## bali 0.00000000 0.00000000 0.00000000 0.00000000## baltimore 0.00000000 0.00000000 0.00000000 0.00000000## band 0.00000000 0.00000000 0.00000000 0.00000000## bang 0.01325732 0.00000000 0.00000000 0.00000000## banker 0.00000000 0.00000000 0.00000000 0.00000000## bankers 0.00000000 0.00000000 0.01290323 0.00000000## banking 0.00000000 0.00000000 0.00000000 0.00000000## bankroll 0.00000000 0.00000000 0.00000000 0.00000000## bankrolled 0.00000000 0.00000000 0.00000000 0.00000000## banner 0.00000000 0.00000000 0.00000000 0.00000000## bar 0.00000000 0.00000000 0.00000000 0.00000000## barkeep 0.00000000 0.00000000 0.00000000 0.00000000## barrels 0.00000000 0.00000000 0.00000000 0.01523926## basement 0.00000000 0.00000000 0.00000000 0.00000000## basest 0.00000000 0.01393922 0.00000000 0.00000000## bashing 0.00000000 0.00000000 0.01290323 0.00000000## basically 0.00000000 0.00000000 0.00000000 0.00000000## basketball 0.00000000 0.00000000 0.00000000 0.00000000## battalions 0.00000000 0.00000000 0.00000000 0.00000000## battling 0.00000000 0.00000000 0.00000000 0.00000000## beard 0.00000000 0.00000000 0.00000000 0.00000000## bears 0.00000000 0.00000000 0.00000000 0.01523926## beaten 0.00000000 0.00000000 0.00000000 0.00000000## beauty 0.00000000 0.00000000 0.00000000 0.00000000## beginnings 0.00000000 0.00000000 0.00000000 0.00000000## begrudge 0.00000000 0.00000000 0.01290323 0.00000000## behead 0.00000000 0.00000000 0.00000000 0.00000000## beings 0.00000000 0.00000000 0.01290323 0.00000000## belongs 0.00000000 0.01393922 0.00000000 0.00000000## belt 0.00000000 0.00000000 0.00000000 0.00000000## belts 0.00000000 0.00000000 0.00000000 0.00000000## benchmarks 0.00000000 0.00000000 0.00000000 0.00000000## beneficial 0.00000000 0.00000000 0.00000000 0.00000000## beneficiaries 0.00000000 0.00000000 0.00000000 0.00000000## benefitted 0.00000000 0.00000000 0.00000000 0.00000000## berlin^s 0.00000000 0.00000000 0.00000000 0.00000000## beside 0.01325732 0.00000000 0.00000000 0.00000000## beslan 0.00000000 0.00000000 0.00000000 0.00000000## betray 0.00000000 0.00000000 0.00000000 0.00000000## betraying 0.01325732 0.00000000 0.00000000 0.00000000## betrays 0.00000000 0.00000000 0.00000000 0.00000000## bias 0.00000000 0.00000000 0.00000000 0.00000000## bickering 0.00000000 0.00000000 0.00000000 0.00000000## biden^s 0.00000000 0.01393922 0.00000000 0.00000000## big-hearted 0.00000000 0.01393922 0.00000000 0.00000000## billion-dollar 0.00000000 0.00000000 0.00000000 0.00000000## obama_25012011 obama_27012010 obama_28012014## the 4.78869554 4.34945165 3.87300751## and 3.91207641 3.71385842 3.83348702## to 2.94387021 3.05333998 3.54367014## of 2.74761219 2.31804586 2.17362666## a 1.93641240 1.59521436 1.83111580## in 1.58314798 1.30857428 1.54129891## we 1.94949627 1.74476570 1.29100250## our 1.59623185 1.49551346 1.54129891## that 1.54389638 1.83200399 1.38321697## is 0.85045139 0.54835494 0.86945067## for 0.79811592 1.08424726 0.97483862## will 0.75886432 0.74775673 0.55328679## this 0.71961272 0.76021934 0.68502174## i 0.65419338 0.95962114 0.67184824## have 0.61494178 0.66051844 0.57963378## are 0.56260631 0.72283151 0.35568436## on 0.45793537 0.87238285 0.73771572## it 0.60185791 0.73529412 0.50059281## with 0.91587073 0.38634098 0.71136873## not 0.43176763 0.41126620 0.51376630## more 0.44485150 0.53589232 0.85627717## their 0.44485150 0.43619143 0.47424582## you 0.39251603 0.27417747 0.32933737## by 0.39251603 0.42372881 0.40837834## be 0.54952244 0.36141575 0.30299038## as 0.44485150 0.39880359 0.42155184## but 0.61494178 0.52342971 0.56646028## america 0.23550962 0.22432702 0.43472533## from 0.39251603 0.27417747 0.34251087## they 0.34018056 0.52342971 0.27664339## can 0.48410310 0.28664008 0.47424582## people 0.40559990 0.39880359 0.31616388## who 0.36634829 0.38634098 0.25029640## all 0.36634829 0.46111665 0.31616388## or 0.30092895 0.37387836 0.31616388## has 0.32709669 0.28664008 0.34251087## so 0.22242575 0.34895314 0.31616388## us 0.43176763 0.23678963 0.26346990## new 0.47101923 0.24925224 0.39520485## now 0.35326442 0.44865404 0.23712291## american 0.26167735 0.24925224 0.27664339## at 0.30092895 0.17447657 0.25029640## do 0.35326442 0.34895314 0.31616388## americans 0.15700641 0.34895314 0.34251087## an 0.19625801 0.16201396 0.31616388## health 0.23550962 0.23678963 0.18442893## than 0.27476122 0.17447657 0.36885786## congress 0.17009028 0.19940179 0.30299038## every 0.15700641 0.11216351 0.31616388## years 0.32709669 0.23678963 0.25029640## country 0.17009028 0.16201396 0.18442893## economy 0.17009028 0.28664008 0.21077592## these 0.14392254 0.34895314 0.10538796## work 0.26167735 0.26171486 0.36885786## one 0.18317415 0.22432702 0.25029640## world 0.19625801 0.06231306 0.17125543## make 0.30092895 0.17447657 0.28981689## must 0.11775481 0.07477567 0.06586747## jobs 0.32709669 0.29910269 0.32933737## year 0.20934188 0.34895314 0.19760242## them 0.23550962 0.08723829 0.18442893## care 0.26167735 0.24925224 0.14490844## when 0.15700641 0.22432702 0.23712291## government 0.34018056 0.21186441 0.10538796## if 0.23550962 0.27417747 0.27664339## that^s 0.31401282 0.32402792 0.31616388## no 0.23550962 0.18693918 0.14490844## because 0.22242575 0.24925224 0.19760242## what 0.40559990 0.31156530 0.26346990## tax 0.19625801 0.28664008 0.11856145## help 0.09158707 0.13708873 0.42155184## security 0.13083868 0.24925224 0.18442893## energy 0.20934188 0.38634098 0.21077592## tonight 0.22242575 0.13708873 0.17125543## time 0.18317415 0.22432702 0.18442893## education 0.37943216 0.27417747 0.30299038## need 0.20934188 0.17447657 0.17125543## should 0.11775481 0.22432702 0.11856145## those 0.10467094 0.22432702 0.22394941## it^s 0.27476122 0.24925224 0.18442893## also 0.15700641 0.17447657 0.07904097## know 0.20934188 0.24925224 0.17125543## some 0.10467094 0.24925224 0.15808194## nation 0.20934188 0.16201396 0.09221446## up 0.17009028 0.16201396 0.18442893## my 0.06541934 0.12462612 0.19760242## right 0.05233547 0.22432702 0.14490844## just 0.27476122 0.18693918 0.19760242## get 0.15700641 0.18693918 0.26346990## many 0.10467094 0.16201396 0.07904097## like 0.15700641 0.13708873 0.25029640## efforts 0.22242575 0.19940179 0.25029640## about 0.23550962 0.22432702 0.15808194## over 0.17009028 0.16201396 0.18442893## there 0.15700641 0.16201396 0.06586747## he 0.10467094 0.03738784 0.19760242## reform 0.15700641 0.18693918 0.17125543## was 0.07850321 0.27417747 0.10538796## been 0.14392254 0.22432702 0.10538796## we^re 0.19625801 0.17447657 0.23712291## s 0.28784509 0.24925224 0.23712291## your 0.09158707 0.01246261 0.06586747## insurance 0.09158707 0.13708873 0.13173495## here 0.11775481 0.12462612 0.19760242## would 0.11775481 0.24925224 0.01317349## out 0.03925160 0.11216351 0.10538796## we^ve 0.17009028 0.13708873 0.06586747## national 0.18317415 0.27417747 0.11856145## states 0.06541934 0.07477567 0.18442893## last 0.23550962 0.19940179 0.13173495## u 0.28784509 0.23678963 0.21077592## future 0.19625801 0.07477567 0.13173495## want 0.19625801 0.06231306 0.10538796## own 0.07850321 0.06231306 0.13173495## united 0.05233547 0.08723829 0.07904097## only 0.07850321 0.08723829 0.02634699## businesses 0.11775481 0.23678963 0.21077592## his 0.13083868 0.03738784 0.19760242## why 0.14392254 0.33649053 0.14490844## most 0.13083868 0.12462612 0.10538796## iraq 0.06541934 0.06231306 0.03952048## other 0.03925160 0.12462612 0.10538796## where 0.14392254 0.11216351 0.13173495## good 0.11775481 0.04985045 0.11856145## way 0.09158707 0.04985045 0.09221446## how 0.15700641 0.12462612 0.11856145## its 0.05233547 0.07477567 0.06586747## job 0.09158707 0.09970090 0.18442893## plan 0.03925160 0.08723829 0.02634699## together 0.07850321 0.06231306 0.17125543## next 0.13083868 0.12462612 0.10538796## families 0.05233547 0.22432702 0.15808194## take 0.18317415 0.19940179 0.11856145## president 0.05233547 0.09970090 0.13173495## come 0.17009028 0.11216351 0.10538796## even 0.05233547 0.17447657 0.09221446## federal 0.15700641 0.09970090 0.07904097## children 0.09158707 0.07477567 0.03952048## act 0.03925160 0.16201396 0.06586747## business 0.13083868 0.18693918 0.11856145## back 0.09158707 0.09970090 0.07904097## budget 0.09158707 0.13708873 0.06586747## first 0.14392254 0.06231306 0.18442893## great 0.03925160 0.04985045 0.03952048## workers 0.07850321 0.06231306 0.09221446## better 0.10467094 0.03738784 0.10538796## keep 0.02616774 0.04985045 0.13173495## into 0.10467094 0.06231306 0.10538796## support 0.07850321 0.09970090 0.17125543## war 0.05233547 0.04985045 0.10538796## give 0.10467094 0.17447657 0.18442893## don^t 0.10467094 0.14955135 0.11856145## me 0.06541934 0.13708873 0.10538796## system 0.09158707 0.09970090 0.03952048## terrorists 0.01308387 0.02492522 0.02634699## medical 0.17009028 0.08723829 0.05269398## let^s 0.10467094 0.17447657 0.25029640## weapons 0.07850321 0.09970090 0.02634699## ask 0.06541934 0.02492522 0.05269398## citizens 0.03925160 0.07477567 0.01317349## home 0.07850321 0.12462612 0.17125543## still 0.06541934 0.14955135 0.10538796## could 0.09158707 0.03738784 0.09221446## forces 0.10467094 0.08723829 0.13173495## freedom 0.01308387 0.01246261 0.01317349## against 0.05233547 0.04985045 0.03952048## before 0.09158707 0.04985045 0.03952048## million 0.02616774 0.11216351 0.09221446## too 0.03925160 0.09970090 0.09221446## i^m 0.13083868 0.17447657 0.10538796## day 0.05233547 0.08723829 0.10538796## military 0.07850321 0.07477567 0.11856145## change 0.06541934 0.13708873 0.09221446## law 0.11775481 0.04985045 0.09221446## money 0.07850321 0.04985045 0.03952048## down 0.06541934 0.08723829 0.10538796## middle 0.01308387 0.07477567 0.07904097## nuclear 0.10467094 0.13708873 0.07904097## put 0.09158707 0.09970090 0.10538796## today 0.05233547 0.02492522 0.18442893## industry 0.10467094 0.09970090 0.07904097## made 0.07850321 0.09970090 0.05269398## power 0.02616774 0.00000000 0.05269398## america^s 0.10467094 0.07477567 0.07904097## state 0.05233547 0.03738784 0.11856145## let 0.06541934 0.08723829 0.06586747## women 0.05233547 0.07477567 0.09221446## working 0.02616774 0.11216351 0.15808194## al 0.06541934 0.03738784 0.05269398## companies 0.09158707 0.08723829 0.06586747## men 0.06541934 0.04985045 0.06586747## continue 0.02616774 0.11216351 0.05269398## same 0.09158707 0.09970090 0.03952048## any 0.06541934 0.04985045 0.07904097## free 0.07850321 0.00000000 0.05269398## had 0.06541934 0.13708873 0.03952048## life 0.07850321 0.02492522 0.06586747## medicare 0.02616774 0.04985045 0.02634699## house 0.09158707 0.13708873 0.11856145## pass 0.03925160 0.03738784 0.01317349## see 0.01308387 0.06231306 0.10538796## afghanistan 0.07850321 0.09970090 0.11856145## nations 0.03925160 0.08723829 0.03952048## believe 0.10467094 0.03738784 0.13173495## coverage 0.07850321 0.07477567 0.03952048## protect 0.03925160 0.02492522 0.06586747## sure 0.07850321 0.02492522 0.06586747## yet 0.05233547 0.01246261 0.00000000## deficit 0.14392254 0.13708873 0.03952048## go 0.07850321 0.13708873 0.05269398## never 0.06541934 0.07477567 0.09221446## through 0.02616774 0.12462612 0.11856145## were 0.05233547 0.06231306 0.03952048## without 0.10467094 0.04985045 0.10538796## best 0.13083868 0.03738784 0.07904097## can^t 0.03925160 0.13708873 0.01317349## end 0.05233547 0.07477567 0.06586747## meet 0.06541934 0.06231306 0.01317349## millions 0.03925160 0.04985045 0.06586747## schools 0.13083868 0.02492522 0.07904097## spending 0.17009028 0.08723829 0.00000000## economic 0.05233547 0.04985045 0.06586747## pay 0.02616774 0.06231306 0.05269398## lives 0.02616774 0.12462612 0.06586747## peace 0.01308387 0.02492522 0.05269398## small 0.03925160 0.13708873 0.03952048## social 0.03925160 0.02492522 0.02634699## after 0.09158707 0.12462612 0.07904097## already 0.09158707 0.03738784 0.07904097## cut 0.05233547 0.07477567 0.05269398## programs 0.06541934 0.06231306 0.06586747## taxes 0.02616774 0.09970090 0.02634699## which 0.03925160 0.07477567 0.01317349## school 0.10467094 0.06231306 0.03952048## while 0.02616774 0.07477567 0.09221446## done 0.07850321 0.04985045 0.07904097## percent 0.09158707 0.03738784 0.05269398## union 0.05233547 0.08723829 0.06586747## fight 0.01308387 0.06231306 0.01317349## i^ve 0.06541934 0.08723829 0.07904097## making 0.05233547 0.08723829 0.02634699## qaida 0.05233547 0.02492522 0.03952048## we^ll 0.15700641 0.04985045 0.10538796## hard 0.06541934 0.06231306 0.10538796## office 0.05233547 0.18693918 0.05269398## college 0.09158707 0.08723829 0.10538796## goal 0.09158707 0.04985045 0.01317349## members 0.02616774 0.02492522 0.03952048## two 0.06541934 0.12462612 0.06586747## chamber 0.05233547 0.02492522 0.07904097## child 0.10467094 0.03738784 0.05269398## lead 0.03925160 0.03738784 0.09221446## leaders 0.01308387 0.03738784 0.11856145## long 0.01308387 0.02492522 0.02634699## responsibility 0.09158707 0.06231306 0.03952048## across 0.07850321 0.07477567 0.05269398## international 0.03925160 0.11216351 0.06586747## may 0.09158707 0.04985045 0.03952048## opportunity 0.01308387 0.00000000 0.17125543## page 0.00000000 0.02492522 0.01317349## again 0.02616774 0.13708873 0.09221446## away 0.03925160 0.07477567 0.03952048## build 0.02616774 0.00000000 0.07904097## laughter 0.09158707 0.11216351 0.10538796## set 0.05233547 0.02492522 0.07904097## she 0.03925160 0.04985045 0.19760242## terror 0.00000000 0.00000000 0.01317349## use 0.02616774 0.01246261 0.03952048## another 0.01308387 0.09970090 0.03952048## bill 0.01308387 0.16201396 0.05269398## both 0.05233547 0.06231306 0.05269398## each 0.05233547 0.07477567 0.01317349## much 0.01308387 0.07477567 0.00000000## oil 0.03925160 0.02492522 0.06586747## program 0.00000000 0.06231306 0.07904097## research 0.13083868 0.02492522 0.06586747## terrorist 0.05233547 0.01246261 0.05269398## hope 0.01308387 0.01246261 0.00000000## past 0.02616774 0.01246261 0.03952048## strong 0.01308387 0.03738784 0.06586747## democracy 0.05233547 0.04985045 0.05269398## her 0.03925160 0.03738784 0.11856145## high 0.11775481 0.02492522 0.02634699## history 0.02616774 0.04985045 0.01317349## iraqi 0.01308387 0.02492522 0.00000000## technology 0.13083868 0.01246261 0.05269398## address 0.05233547 0.04985045 0.02634699## ago 0.07850321 0.04985045 0.03952048## needs 0.02616774 0.00000000 0.05269398## rights 0.01308387 0.08723829 0.06586747## young 0.05233547 0.02492522 0.11856145## community 0.05233547 0.06231306 0.09221446## costs 0.06541934 0.02492522 0.03952048## higher 0.01308387 0.00000000 0.07904097## part 0.07850321 0.02492522 0.06586747## place 0.10467094 0.04985045 0.05269398## public 0.03925160 0.08723829 0.01317349## since 0.06541934 0.01246261 0.05269398## trade 0.11775481 0.07477567 0.02634699## troops 0.07850321 0.04985045 0.07904097## unemployment 0.01308387 0.11216351 0.11856145## washington 0.02616774 0.12462612 0.06586747## bring 0.03925160 0.04985045 0.01317349## chance 0.06541934 0.04985045 0.11856145## cost 0.02616774 0.04985045 0.00000000## global 0.05233547 0.07477567 0.07904097## training 0.00000000 0.01246261 0.10538796## administration 0.02616774 0.06231306 0.09221446## clean 0.07850321 0.17447657 0.00000000## financial 0.03925160 0.18693918 0.02634699## nearly 0.03925160 0.04985045 0.05269398## progress 0.06541934 0.01246261 0.06586747## always 0.05233547 0.09970090 0.02634699## afford 0.02616774 0.08723829 0.01317349## benefits 0.05233547 0.03738784 0.03952048## create 0.05233547 0.09970090 0.11856145## ever 0.02616774 0.01246261 0.09221446## fellow 0.01308387 0.01246261 0.05269398## thank 0.02616774 0.02492522 0.01317349## they^re 0.13083868 0.16201396 0.06586747## countries 0.03925160 0.03738784 0.03952048## credit 0.06541934 0.13708873 0.05269398## growth 0.05233547 0.04985045 0.06586747## iran 0.03925160 0.03738784 0.11856145## said 0.09158707 0.04985045 0.02634699## save 0.02616774 0.06231306 0.05269398## vote 0.02616774 0.02492522 0.05269398## cuts 0.09158707 0.07477567 0.03952048## housing 0.01308387 0.08723829 0.03952048## retirement 0.02616774 0.04985045 0.05269398## students 0.11775481 0.02492522 0.06586747## allies 0.02616774 0.02492522 0.06586747## different 0.06541934 0.07477567 0.01317349## east 0.01308387 0.00000000 0.01317349## human 0.00000000 0.02492522 0.01317349## live 0.06541934 0.01246261 0.02634699## number 0.01308387 0.01246261 0.03952048## provide 0.00000000 0.02492522 0.00000000## stand 0.05233547 0.02492522 0.06586747## threat 0.02616774 0.01246261 0.03952048## defense 0.10467094 0.04985045 0.03952048## foreign 0.05233547 0.03738784 0.06586747## growing 0.01308387 0.04985045 0.00000000## off 0.02616774 0.01246261 0.07904097## saddam 0.00000000 0.00000000 0.00000000## well 0.02616774 0.02492522 0.07904097## century 0.03925160 0.04985045 0.01317349## debt 0.02616774 0.08723829 0.02634699## fair 0.01308387 0.00000000 0.02634699## relief 0.01308387 0.03738784 0.00000000## republicans 0.11775481 0.07477567 0.06586747## crisis 0.02616774 0.04985045 0.02634699## did 0.02616774 0.02492522 0.09221446## recovery 0.00000000 0.13708873 0.03952048## say 0.03925160 0.01246261 0.11856145## seen 0.05233547 0.00000000 0.01317349## send 0.01308387 0.02492522 0.02634699## start 0.05233547 0.09970090 0.03952048## hussein 0.00000000 0.00000000 0.00000000## kids 0.05233547 0.04985045 0.11856145## reforms 0.02616774 0.03738784 0.02634699## science 0.09158707 0.06231306 0.02634699## secure 0.01308387 0.01246261 0.01317349## single 0.03925160 0.08723829 0.05269398## sources 0.06541934 0.02492522 0.02634699## values 0.00000000 0.14955135 0.00000000## class 0.00000000 0.07477567 0.07904097## democrats 0.10467094 0.07477567 0.05269398## does 0.02616774 0.01246261 0.10538796## half 0.05233547 0.00000000 0.07904097## policy 0.09158707 0.01246261 0.06586747## terrorism 0.05233547 0.06231306 0.05269398## ahead 0.02616774 0.02492522 0.05269398## aids 0.00000000 0.03738784 0.00000000## clear 0.05233547 0.03738784 0.03952048## commitment 0.02616774 0.01246261 0.03952048## dollars 0.05233547 0.02492522 0.02634699## enough 0.01308387 0.03738784 0.06586747## helping 0.01308387 0.04985045 0.02634699## market 0.03925160 0.06231306 0.02634699## passed 0.05233547 0.04985045 0.01317349## safe 0.09158707 0.02492522 0.00000000## show 0.02616774 0.01246261 0.00000000## things 0.07850321 0.03738784 0.03952048## around 0.03925160 0.06231306 0.06586747## find 0.05233547 0.06231306 0.02634699## forward 0.05233547 0.03738784 0.02634699## funding 0.02616774 0.03738784 0.03952048## important 0.01308387 0.01246261 0.05269398## intelligence 0.01308387 0.02492522 0.02634699## issue 0.01308387 0.04985045 0.02634699## share 0.03925160 0.03738784 0.01317349## speaker 0.05233547 0.02492522 0.03952048## able 0.05233547 0.01246261 0.01317349## behind 0.09158707 0.02492522 0.01317349## between 0.02616774 0.03738784 0.01317349## family 0.05233547 0.02492522 0.02634699## finally 0.02616774 0.07477567 0.06586747## gas 0.02616774 0.02492522 0.05269398## generation 0.05233547 0.03738784 0.03952048## immigration 0.05233547 0.02492522 0.05269398## income 0.01308387 0.03738784 0.01317349## invest 0.05233547 0.07477567 0.07904097## others 0.03925160 0.02492522 0.02634699## private 0.05233547 0.01246261 0.01317349## seniors 0.03925160 0.01246261 0.01317349## serve 0.02616774 0.02492522 0.03952048## action 0.01308387 0.02492522 0.03952048## billion 0.01308387 0.03738784 0.02634699## cannot 0.00000000 0.03738784 0.05269398## control 0.02616774 0.02492522 0.00000000## everyone 0.00000000 0.02492522 0.01317349## god 0.02616774 0.02492522 0.03952048## instead 0.03925160 0.06231306 0.00000000## justice 0.01308387 0.00000000 0.01317349## means 0.03925160 0.06231306 0.05269398## reduce 0.02616774 0.06231306 0.06586747## under 0.03925160 0.01246261 0.03952048## basic 0.01308387 0.01246261 0.02634699## big 0.05233547 0.07477567 0.05269398## challenges 0.03925160 0.02492522 0.01317349## communities 0.05233547 0.03738784 0.09221446## effort 0.03925160 0.02492522 0.01317349## employees 0.14392254 0.02492522 0.09221446## face 0.01308387 0.09970090 0.03952048## few 0.03925160 0.02492522 0.06586747## idea 0.09158707 0.02492522 0.00000000## leadership 0.06541934 0.04985045 0.06586747## look 0.02616774 0.06231306 0.01317349## months 0.01308387 0.00000000 0.05269398## possible 0.09158707 0.03738784 0.02634699## steps 0.03925160 0.08723829 0.02634699## thousands 0.03925160 0.01246261 0.00000000## veterans 0.03925160 0.02492522 0.06586747## vice 0.02616774 0.03738784 0.05269398## affordable 0.05233547 0.03738784 0.01317349## agree 0.02616774 0.02492522 0.05269398## attacks 0.03925160 0.01246261 0.02634699## going 0.00000000 0.06231306 0.06586747## increase 0.00000000 0.06231306 0.01317349## once 0.07850321 0.02492522 0.00000000## strengthen 0.02616774 0.04985045 0.03952048## stronger 0.00000000 0.02492522 0.03952048## thing 0.03925160 0.06231306 0.01317349## trust 0.00000000 0.02492522 0.02634699## being 0.06541934 0.03738784 0.05269398## courage 0.00000000 0.01246261 0.01317349## days 0.05233547 0.01246261 0.00000000## deserve 0.06541934 0.02492522 0.02634699## doing 0.03925160 0.03738784 0.01317349## friends 0.00000000 0.00000000 0.02634699## got 0.00000000 0.01246261 0.05269398## left 0.06541934 0.03738784 0.01317349## manufacturing 0.01308387 0.00000000 0.10538796## move 0.05233547 0.06231306 0.03952048## politics 0.01308387 0.06231306 0.00000000## sent 0.02616774 0.04985045 0.01317349## standards 0.03925160 0.01246261 0.06586747## strengthening 0.03925160 0.02492522 0.05269398## success 0.11775481 0.04985045 0.03952048## access 0.03925160 0.03738784 0.07904097## cause 0.00000000 0.02492522 0.00000000## choose 0.00000000 0.03738784 0.00000000## comes 0.05233547 0.01246261 0.01317349## development 0.07850321 0.04985045 0.02634699## greater 0.03925160 0.00000000 0.02634699## less 0.01308387 0.01246261 0.03952048## man 0.03925160 0.01246261 0.05269398## recession 0.06541934 0.08723829 0.01317349## africa 0.00000000 0.00000000 0.02634699## building 0.05233547 0.06231306 0.07904097## called 0.03925160 0.01246261 0.00000000## code 0.03925160 0.01246261 0.03952048## company 0.10467094 0.03738784 0.01317349## department 0.09158707 0.02492522 0.01317349## employment 0.01308387 0.08723829 0.02634699## including 0.02616774 0.04985045 0.02634699## innovation 0.11775481 0.03738784 0.03952048## makes 0.02616774 0.02492522 0.01317349## open 0.02616774 0.01246261 0.01317349## raise 0.02616774 0.02492522 0.11856145## regime 0.01308387 0.00000000 0.00000000## regulations 0.05233547 0.04985045 0.00000000## stop 0.03925160 0.02492522 0.01317349## there^s 0.03925160 0.07477567 0.00000000## threats 0.01308387 0.01246261 0.03952048## am 0.05233547 0.06231306 0.01317349## biden 0.01308387 0.06231306 0.07904097## built 0.02616774 0.03738784 0.02634699## challenge 0.03925160 0.01246261 0.00000000## decade 0.03925160 0.08723829 0.02634699## decades 0.01308387 0.08723829 0.07904097## grow 0.03925160 0.03738784 0.01317349## improvement 0.03925160 0.02492522 0.05269398## liberty 0.00000000 0.00000000 0.00000000## parents 0.06541934 0.01246261 0.07904097## parties 0.03925160 0.03738784 0.02634699## problem 0.01308387 0.06231306 0.02634699## promise 0.03925160 0.06231306 0.02634699## rules 0.05233547 0.02492522 0.00000000## savings 0.03925160 0.02492522 0.05269398## service 0.01308387 0.01246261 0.01317349## taken 0.06541934 0.02492522 0.01317349## white 0.06541934 0.04985045 0.07904097## abroad 0.03925160 0.02492522 0.05269398## applause 0.00000000 0.06231306 0.06586747## confidence 0.00000000 0.00000000 0.01317349## defend 0.00000000 0.01246261 0.00000000## democratic 0.02616774 0.03738784 0.00000000## drug 0.01308387 0.01246261 0.00000000## enemies 0.01308387 0.00000000 0.00000000## everything 0.03925160 0.02492522 0.05269398## full 0.01308387 0.03738784 0.03952048## john 0.02616774 0.01246261 0.06586747## leave 0.01308387 0.01246261 0.02634699## math 0.05233547 0.03738784 0.01317349## matter 0.06541934 0.03738784 0.00000000## mission 0.00000000 0.00000000 0.02634699## ourselves 0.02616774 0.01246261 0.00000000## postsecondary 0.05233547 0.07477567 0.05269398## prevent 0.01308387 0.01246261 0.01317349## seek 0.00000000 0.01246261 0.00000000## such 0.00000000 0.06231306 0.00000000## used 0.06541934 0.01246261 0.03952048## agreement 0.06541934 0.01246261 0.01317349## bipartisan 0.02616774 0.03738784 0.03952048## colleges 0.05233547 0.03738784 0.03952048## course 0.03925160 0.01246261 0.02634699## ensure 0.00000000 0.01246261 0.00000000## environment 0.00000000 0.02492522 0.03952048## example 0.03925160 0.01246261 0.05269398## fact 0.03925160 0.02492522 0.05269398## given 0.00000000 0.00000000 0.00000000## north 0.05233547 0.03738784 0.01317349## nothing 0.01308387 0.03738784 0.02634699## organization 0.10467094 0.03738784 0.03952048## paid 0.01308387 0.00000000 0.00000000## propose 0.00000000 0.00000000 0.00000000## prosperity 0.01308387 0.04985045 0.02634699## republican 0.01308387 0.06231306 0.02634699## require 0.05233547 0.02492522 0.02634699## september 0.02616774 0.01246261 0.00000000## student 0.05233547 0.04985045 0.07904097## teachers 0.06541934 0.01246261 0.03952048## technologies 0.05233547 0.04985045 0.01317349## then 0.02616774 0.01246261 0.05269398## times 0.00000000 0.02492522 0.00000000## almost 0.01308387 0.00000000 0.02634699## bless 0.02616774 0.02492522 0.03952048## call 0.01308387 0.02492522 0.05269398## civil 0.00000000 0.06231306 0.05269398## created 0.05233547 0.03738784 0.01317349## doesn^t 0.03925160 0.00000000 0.02634699## enforcement 0.01308387 0.00000000 0.02634699## faith 0.03925160 0.02492522 0.03952048## happen 0.01308387 0.02492522 0.03952048## ideas 0.03925160 0.00000000 0.02634699## laws 0.03925160 0.04985045 0.01317349## legislation 0.02616774 0.06231306 0.02634699## lower 0.01308387 0.00000000 0.02634699## markets 0.01308387 0.07477567 0.02634699## rates 0.01308387 0.01246261 0.02634699## skills 0.01308387 0.01246261 0.05269398## tell 0.03925160 0.02492522 0.03952048## took 0.01308387 0.16201396 0.03952048## violence 0.02616774 0.00000000 0.02634699## worked 0.03925160 0.00000000 0.03952048## climate 0.00000000 0.06231306 0.05269398## him 0.01308387 0.00000000 0.06586747## hire 0.01308387 0.03738784 0.03952048## information 0.06541934 0.03738784 0.01317349## korea 0.09158707 0.04985045 0.00000000## reach 0.05233547 0.00000000 0.03952048## secretary 0.02616774 0.01246261 0.00000000## session 0.01308387 0.01246261 0.01317349## speak 0.05233547 0.00000000 0.05269398## spirit 0.00000000 0.06231306 0.02634699## strength 0.01308387 0.04985045 0.02634699## very 0.01308387 0.02492522 0.02634699## begin 0.03925160 0.04985045 0.00000000## coming 0.03925160 0.01246261 0.05269398## enemy 0.00000000 0.00000000 0.00000000## expansion 0.06541934 0.09970090 0.05269398## far 0.01308387 0.01246261 0.02634699## focus 0.01308387 0.02492522 0.03952048## fund 0.02616774 0.02492522 0.01317349## join 0.02616774 0.00000000 0.03952048## lot 0.02616774 0.01246261 0.01317349## m 0.02616774 0.01246261 0.03952048## offer 0.01308387 0.00000000 0.05269398## race 0.13083868 0.01246261 0.07904097## rest 0.02616774 0.02492522 0.03952048## spend 0.01308387 0.02492522 0.01317349## taxation 0.03925160 0.07477567 0.02634699## th 0.02616774 0.00000000 0.02634699## think 0.06541934 0.02492522 0.02634699## wage 0.00000000 0.02492522 0.09221446## within 0.07850321 0.02492522 0.02634699## won^t 0.03925160 0.02492522 0.05269398## armed 0.05233547 0.03738784 0.03952048## china 0.07850321 0.01246261 0.02634699## decisions 0.00000000 0.03738784 0.00000000## generations 0.02616774 0.01246261 0.02634699## improve 0.02616774 0.01246261 0.01317349## infrastructure 0.05233547 0.02492522 0.03952048## initiative 0.02616774 0.03738784 0.01317349## investment 0.03925160 0.09970090 0.01317349## medicaid 0.02616774 0.03738784 0.02634699## mr 0.02616774 0.00000000 0.02634699## person 0.02616774 0.01246261 0.00000000## places 0.02616774 0.02492522 0.01317349## political 0.01308387 0.04985045 0.01317349## problems 0.01308387 0.07477567 0.00000000## proposed 0.03925160 0.16201396 0.00000000## rate 0.02616774 0.01246261 0.02634699## responsible 0.01308387 0.00000000 0.01317349## second 0.00000000 0.04985045 0.00000000## society 0.01308387 0.00000000 0.01317349## top 0.05233547 0.02492522 0.05269398## understand 0.00000000 0.02492522 0.01317349## achieve 0.00000000 0.00000000 0.03952048## asking 0.02616774 0.02492522 0.01317349## capitol 0.01308387 0.01246261 0.01317349## drugs 0.01308387 0.00000000 0.00000000## elections 0.00000000 0.04985045 0.01317349## encourage 0.00000000 0.02492522 0.00000000## fighting 0.01308387 0.01246261 0.00000000## force 0.00000000 0.02492522 0.03952048## former 0.01308387 0.00000000 0.01317349## investments 0.05233547 0.07477567 0.01317349## respect 0.02616774 0.01246261 0.00000000## rising 0.01308387 0.00000000 0.01317349## sense 0.02616774 0.01246261 0.01317349## serious 0.00000000 0.06231306 0.02634699## something 0.03925160 0.01246261 0.00000000## treatment 0.01308387 0.01246261 0.00000000## until 0.01308387 0.03738784 0.00000000## whether 0.07850321 0.01246261 0.01317349## words 0.01308387 0.00000000 0.02634699## additional 0.00000000 0.00000000 0.00000000## afghan 0.09158707 0.02492522 0.06586747## alone 0.02616774 0.01246261 0.02634699## asked 0.00000000 0.02492522 0.03952048## assistance 0.02616774 0.03738784 0.01317349## coalition 0.00000000 0.00000000 0.01317349## commerce 0.02616774 0.04985045 0.02634699## confront 0.01308387 0.00000000 0.00000000## difficult 0.01308387 0.07477567 0.02634699## doctors 0.01308387 0.01246261 0.00000000## earth 0.05233547 0.00000000 0.03952048## everybody 0.00000000 0.01246261 0.02634699## expand 0.00000000 0.02492522 0.03952048## joint 0.01308387 0.01246261 0.01317349## known 0.03925160 0.03738784 0.01317349## longer 0.01308387 0.03738784 0.01317349## promote 0.01308387 0.02492522 0.03952048## receive 0.00000000 0.00000000 0.02634699## south 0.07850321 0.03738784 0.00000000## told 0.02616774 0.03738784 0.01317349## trying 0.00000000 0.04985045 0.01317349## urge 0.01308387 0.03738784 0.00000000## willing 0.09158707 0.01246261 0.02634699## world^s 0.03925160 0.01246261 0.01317349## allow 0.01308387 0.03738784 0.01317349## banks 0.01308387 0.11216351 0.00000000## debate 0.02616774 0.00000000 0.03952048## didn^t 0.06541934 0.02492522 0.00000000## fear 0.00000000 0.02492522 0.03952048## folks 0.01308387 0.00000000 0.05269398## hold 0.00000000 0.04985045 0.02634699## incentives 0.01308387 0.06231306 0.03952048## issues 0.00000000 0.02492522 0.02634699## old 0.02616774 0.00000000 0.02634699## point 0.03925160 0.00000000 0.05269398## poverty 0.00000000 0.01246261 0.03952048## proud 0.01308387 0.00000000 0.01317349## stay 0.01308387 0.02492522 0.05269398## strategy 0.00000000 0.01246261 0.01317349## taking 0.00000000 0.02492522 0.01317349## three 0.01308387 0.01246261 0.02634699## trillion 0.01308387 0.07477567 0.01317349## true 0.00000000 0.02492522 0.01317349## approach 0.02616774 0.06231306 0.00000000## danger 0.00000000 0.01246261 0.01317349## expect 0.01308387 0.02492522 0.01317349## highest 0.02616774 0.00000000 0.02634699## honor 0.00000000 0.00000000 0.01317349## kind 0.02616774 0.01246261 0.01317349## largest 0.02616774 0.04985045 0.01317349## loans 0.01308387 0.04985045 0.03952048## love 0.03925160 0.02492522 0.01317349## message 0.01308387 0.00000000 0.00000000## p 0.01308387 0.01246261 0.01317349## products 0.03925160 0.03738784 0.00000000## r 0.01308387 0.01246261 0.02634699## region 0.01308387 0.00000000 0.01317349## russia 0.06541934 0.03738784 0.01317349## side 0.00000000 0.03738784 0.02634699## step 0.05233547 0.01246261 0.01317349## street 0.00000000 0.08723829 0.02634699## struggle 0.02616774 0.01246261 0.00000000## turn 0.02616774 0.01246261 0.00000000## vital 0.00000000 0.00000000 0.01317349## ways 0.01308387 0.01246261 0.01317349## what^s 0.06541934 0.03738784 0.00000000## accounts 0.00000000 0.01246261 0.02634699## attack 0.00000000 0.01246261 0.00000000## border 0.02616774 0.01246261 0.00000000## came 0.01308387 0.01246261 0.02634699## choice 0.02616774 0.01246261 0.01317349## choices 0.01308387 0.00000000 0.01317349## commission 0.02616774 0.04985045 0.03952048## comprehensive 0.00000000 0.01246261 0.00000000## corporate 0.03925160 0.01246261 0.01317349## getting 0.01308387 0.01246261 0.00000000## helped 0.01308387 0.06231306 0.05269398## inspectors 0.00000000 0.00000000 0.00000000## leading 0.00000000 0.00000000 0.03952048## living 0.03925160 0.01246261 0.00000000## lost 0.01308387 0.06231306 0.00000000## medicine 0.00000000 0.00000000 0.00000000## might 0.05233547 0.03738784 0.01317349## natural 0.01308387 0.01246261 0.05269398## necessary 0.03925160 0.03738784 0.02634699## remains 0.01308387 0.02492522 0.02634699## remember 0.05233547 0.01246261 0.03952048## resources 0.01308387 0.01246261 0.00000000## return 0.00000000 0.00000000 0.02634699## run 0.01308387 0.02492522 0.00000000## senate 0.00000000 0.07477567 0.01317349## small-business 0.05233547 0.06231306 0.02634699## spoke 0.01308387 0.01246261 0.01317349## succeed 0.01308387 0.02492522 0.06586747## wages 0.00000000 0.01246261 0.05269398## week 0.00000000 0.07477567 0.05269398## woman 0.02616774 0.02492522 0.03952048## you^re 0.01308387 0.00000000 0.00000000## add 0.02616774 0.02492522 0.02634699## alternative 0.03925160 0.02492522 0.00000000## beyond 0.02616774 0.01246261 0.00000000## bills 0.00000000 0.01246261 0.03952048## buy 0.00000000 0.00000000 0.02634699## cars 0.02616774 0.01246261 0.03952048## common 0.02616774 0.04985045 0.01317349## compassion 0.00000000 0.00000000 0.00000000## competitiveness 0.02616774 0.02492522 0.01317349## determined 0.03925160 0.00000000 0.01317349## develop 0.01308387 0.00000000 0.00000000## diplomacy 0.00000000 0.00000000 0.07904097## dream 0.11775481 0.03738784 0.02634699## dreams 0.03925160 0.00000000 0.07904097## during 0.00000000 0.02492522 0.00000000## duty 0.00000000 0.01246261 0.00000000## election 0.02616774 0.04985045 0.02634699## equal 0.00000000 0.04985045 0.02634699## especially 0.01308387 0.01246261 0.01317349## giving 0.02616774 0.01246261 0.01317349## groups 0.00000000 0.00000000 0.00000000## homes 0.03925160 0.03738784 0.00000000## hopeful 0.01308387 0.03738784 0.00000000## kill 0.00000000 0.01246261 0.00000000## leader 0.00000000 0.01246261 0.02634699## long-term 0.01308387 0.01246261 0.03952048## materials 0.01308387 0.01246261 0.01317349## moment 0.03925160 0.01246261 0.00000000## month 0.02616774 0.00000000 0.03952048## often 0.00000000 0.00000000 0.01317349## people^s 0.02616774 0.01246261 0.00000000## prescription 0.02616774 0.01246261 0.02634699## quality 0.03925160 0.00000000 0.01317349## real 0.01308387 0.01246261 0.03952048## reason 0.02616774 0.06231306 0.01317349## record 0.00000000 0.04985045 0.00000000## reduction 0.02616774 0.06231306 0.02634699## renewable 0.05233547 0.02492522 0.00000000## requires 0.00000000 0.00000000 0.01317349## sanctions 0.03925160 0.03738784 0.05269398## sick 0.01308387 0.00000000 0.03952048## solar 0.03925160 0.03738784 0.03952048## solve 0.00000000 0.06231306 0.00000000## works 0.00000000 0.02492522 0.01317349## agenda 0.00000000 0.01246261 0.02634699## along 0.01308387 0.00000000 0.02634699## arms 0.05233547 0.08723829 0.00000000## bad 0.02616774 0.01246261 0.00000000## close 0.00000000 0.02492522 0.03952048## construction 0.01308387 0.01246261 0.01317349## dcpd 0.02616774 0.02492522 0.02634699## deliver 0.01308387 0.02492522 0.00000000## developing 0.01308387 0.02492522 0.00000000## dignity 0.01308387 0.01246261 0.03952048## easy 0.01308387 0.02492522 0.09221446## elected 0.01308387 0.00000000 0.01317349## found 0.01308387 0.00000000 0.02634699## i^ll 0.00000000 0.03738784 0.05269398## institutions 0.00000000 0.04985045 0.00000000## interests 0.01308387 0.02492522 0.00000000## iraqis 0.00000000 0.00000000 0.00000000## january 0.01308387 0.01246261 0.05269398## kennedy 0.01308387 0.01246261 0.01317349## labor 0.02616774 0.02492522 0.02634699## level 0.05233547 0.00000000 0.00000000## mass 0.00000000 0.00000000 0.00000000## nation^s 0.01308387 0.01246261 0.00000000## order 0.00000000 0.02492522 0.01317349## paying 0.02616774 0.03738784 0.01317349## personal 0.00000000 0.00000000 0.00000000## produce 0.01308387 0.00000000 0.00000000## production 0.01308387 0.02492522 0.03952048## referred 0.01308387 0.00000000 0.01317349## says 0.03925160 0.00000000 0.01317349## simple 0.01308387 0.02492522 0.01317349## soon 0.02616774 0.01246261 0.01317349## special 0.01308387 0.01246261 0.00000000## tough 0.02616774 0.04985045 0.02634699## toward 0.00000000 0.00000000 0.02634699## wall 0.01308387 0.06231306 0.01317349## win 0.10467094 0.02492522 0.00000000## advanced 0.01308387 0.02492522 0.03952048## age 0.06541934 0.00000000 0.02634699## asia 0.02616774 0.02492522 0.01317349## combat 0.01308387 0.01246261 0.01317349## compete 0.06541934 0.01246261 0.00000000## competitive 0.01308387 0.01246261 0.00000000## dangerous 0.00000000 0.00000000 0.00000000## differences 0.02616774 0.02492522 0.01317349## domestic 0.03925160 0.02492522 0.01317349## double 0.00000000 0.02492522 0.02634699## eliminate 0.02616774 0.04985045 0.01317349## executive 0.00000000 0.01246261 0.05269398## further 0.06541934 0.02492522 0.00000000## group 0.01308387 0.02492522 0.01317349## illegal 0.02616774 0.00000000 0.00000000## knows 0.00000000 0.00000000 0.03952048## local 0.01308387 0.00000000 0.02634699## marriage 0.00000000 0.00000000 0.01317349## none 0.02616774 0.02492522 0.02634699## party 0.02616774 0.04985045 0.01317349## path 0.00000000 0.01246261 0.01317349## pays 0.00000000 0.01246261 0.01317349## priorities 0.00000000 0.01246261 0.01317349## process 0.00000000 0.01246261 0.03952048## promotion 0.03925160 0.00000000 0.03952048## rise 0.00000000 0.00000000 0.00000000## supporting 0.01308387 0.00000000 0.02634699## task 0.01308387 0.03738784 0.00000000## thanks 0.03925160 0.00000000 0.03952048## third 0.01308387 0.01246261 0.00000000## yes 0.02616774 0.03738784 0.02634699## actions 0.01308387 0.01246261 0.01317349## break 0.02616774 0.02492522 0.00000000## campaign 0.00000000 0.04985045 0.02634699## character 0.00000000 0.00000000 0.00000000## chief 0.00000000 0.00000000 0.05269398## city 0.00000000 0.01246261 0.02634699## competition 0.03925160 0.01246261 0.01317349## creating 0.00000000 0.01246261 0.03952048## crime 0.00000000 0.00000000 0.01317349## dc 0.01308387 0.02492522 0.02634699## effective 0.00000000 0.00000000 0.02634699## evidence 0.00000000 0.02492522 0.00000000## evil 0.00000000 0.00000000 0.00000000## fall 0.01308387 0.01246261 0.01317349## fix 0.02616774 0.00000000 0.03952048## homeland 0.00000000 0.01246261 0.00000000## individuals 0.00000000 0.00000000 0.00000000## little 0.05233547 0.01246261 0.01317349## lose 0.00000000 0.04985045 0.01317349## neighbors 0.01308387 0.03738784 0.03952048## note 0.01308387 0.01246261 0.01317349## parts 0.01308387 0.00000000 0.05269398## presidential 0.00000000 0.00000000 0.02634699## proposal 0.02616774 0.01246261 0.00000000## proposing 0.02616774 0.03738784 0.00000000## question 0.01308387 0.01246261 0.01317349## remain 0.00000000 0.01246261 0.02634699## remarks 0.01308387 0.00000000 0.01317349## result 0.00000000 0.03738784 0.00000000## saw 0.03925160 0.00000000 0.00000000## scientists 0.02616774 0.00000000 0.00000000## shouldn^t 0.02616774 0.01246261 0.00000000## sign 0.01308387 0.01246261 0.01317349## syria 0.00000000 0.00000000 0.02634699## train 0.02616774 0.00000000 0.03952048## air 0.01308387 0.01246261 0.02634699## anyone 0.01308387 0.02492522 0.00000000## aren^t 0.03925160 0.03738784 0.02634699## average 0.00000000 0.02492522 0.01317349## based 0.01308387 0.00000000 0.02634699## begun 0.03925160 0.00000000 0.01317349## chemical 0.00000000 0.00000000 0.01317349## death 0.00000000 0.00000000 0.00000000## depends 0.00000000 0.00000000 0.03952048## destruction 0.00000000 0.00000000 0.00000000## earn 0.00000000 0.00000000 0.01317349## europe 0.01308387 0.01246261 0.03952048## exports 0.03925160 0.03738784 0.02634699## extremists 0.01308387 0.00000000 0.01317349## friend 0.01308387 0.00000000 0.00000000## gets 0.03925160 0.01246261 0.00000000## greatest 0.02616774 0.02492522 0.01317349## hand 0.00000000 0.03738784 0.01317349## hard-working 0.01308387 0.00000000 0.03952048## interest 0.01308387 0.00000000 0.00000000## internet 0.07850321 0.00000000 0.00000000## iraq^s 0.00000000 0.00000000 0.00000000## israel 0.00000000 0.00000000 0.01317349## jr 0.01308387 0.01246261 0.01317349## least 0.02616774 0.00000000 0.01317349## major 0.01308387 0.00000000 0.00000000## material 0.02616774 0.04985045 0.01317349## minimum 0.00000000 0.00000000 0.05269398## obama 0.01308387 0.03738784 0.02634699## opportunities 0.01308387 0.00000000 0.02634699## options 0.00000000 0.01246261 0.02634699## policies 0.00000000 0.00000000 0.02634699## projects 0.05233547 0.02492522 0.01317349## providing 0.01308387 0.02492522 0.00000000## purpose 0.02616774 0.01246261 0.01317349## recognize 0.01308387 0.01246261 0.00000000## resolve 0.00000000 0.00000000 0.01317349## risk 0.01308387 0.01246261 0.02634699## role 0.01308387 0.02492522 0.01317349## spent 0.01308387 0.03738784 0.01317349## story 0.03925160 0.01246261 0.00000000## talk 0.01308387 0.06231306 0.01317349## throughout 0.02616774 0.01246261 0.00000000## tomorrow 0.01308387 0.04985045 0.03952048## try 0.03925160 0.03738784 0.00000000## worker 0.00000000 0.03738784 0.05269398## worse 0.00000000 0.04985045 0.00000000## ability 0.00000000 0.01246261 0.00000000## accountability 0.02616774 0.02492522 0.01317349## beginning 0.00000000 0.02492522 0.00000000## bigger 0.05233547 0.01246261 0.00000000## borders 0.03925160 0.02492522 0.00000000## broken 0.01308387 0.02492522 0.02634699## deficits 0.01308387 0.04985045 0.02634699## deny 0.02616774 0.00000000 0.00000000## difference 0.02616774 0.00000000 0.00000000## disease 0.00000000 0.01246261 0.00000000## employers 0.00000000 0.01246261 0.03952048## entrepreneurs 0.01308387 0.00000000 0.01317349## faster 0.03925160 0.01246261 0.01317349## fully 0.01308387 0.00000000 0.00000000## gave 0.02616774 0.00000000 0.03952048## hit 0.02616774 0.01246261 0.01317349## learn 0.01308387 0.00000000 0.00000000## looking 0.00000000 0.00000000 0.00000000## patients 0.02616774 0.02492522 0.00000000## police 0.00000000 0.00000000 0.01317349## profits 0.01308387 0.00000000 0.02634699## representatives 0.01308387 0.01246261 0.01317349## responsibilities 0.00000000 0.01246261 0.00000000## road 0.01308387 0.00000000 0.00000000## test 0.01308387 0.01246261 0.01317349## they^ve 0.02616774 0.06231306 0.01317349## track 0.01308387 0.01246261 0.01317349## wait 0.00000000 0.03738784 0.03952048## whole 0.00000000 0.01246261 0.00000000## worst 0.05233547 0.02492522 0.00000000## york 0.00000000 0.00000000 0.02634699## become 0.02616774 0.03738784 0.00000000## biological 0.00000000 0.01246261 0.00000000## breaks 0.01308387 0.03738784 0.01317349## bringing 0.01308387 0.02492522 0.03952048## brought 0.01308387 0.01246261 0.00000000## cancer 0.01308387 0.01246261 0.01317349## changed 0.05233547 0.00000000 0.00000000## changes 0.01308387 0.03738784 0.00000000## changing 0.02616774 0.00000000 0.02634699## concerns 0.02616774 0.01246261 0.01317349## confident 0.00000000 0.01246261 0.02634699## creation 0.01308387 0.02492522 0.00000000## critical 0.01308387 0.00000000 0.01317349## current 0.01308387 0.00000000 0.00000000## demand 0.00000000 0.00000000 0.00000000## early 0.00000000 0.00000000 0.02634699## else 0.02616774 0.02492522 0.01317349## expanding 0.00000000 0.01246261 0.01317349## feel 0.03925160 0.00000000 0.01317349## fiscal 0.03925160 0.04985045 0.00000000## five 0.01308387 0.00000000 0.02634699## follow 0.01308387 0.01246261 0.01317349## gone 0.02616774 0.01246261 0.00000000## ground 0.02616774 0.01246261 0.00000000## he^s 0.00000000 0.00000000 0.06586747## hear 0.01308387 0.03738784 0.00000000## helps 0.02616774 0.02492522 0.03952048## hiv 0.00000000 0.02492522 0.00000000## hundreds 0.01308387 0.01246261 0.00000000## industries 0.05233547 0.00000000 0.02634699## intend 0.01308387 0.00000000 0.03952048## isn^t 0.05233547 0.02492522 0.01317349## jill 0.00000000 0.02492522 0.03952048## keeping 0.00000000 0.00000000 0.01317349## mean 0.00000000 0.00000000 0.01317349## met 0.00000000 0.00000000 0.02634699## mom 0.00000000 0.01246261 0.03952048## online 0.01308387 0.02492522 0.00000000## option 0.00000000 0.00000000 0.00000000## partners 0.00000000 0.03738784 0.03952048## pursue 0.02616774 0.00000000 0.05269398## rebuilding 0.02616774 0.01246261 0.02634699## results 0.00000000 0.01246261 0.01317349## safer 0.00000000 0.00000000 0.03952048## safety 0.00000000 0.00000000 0.00000000## spread 0.00000000 0.01246261 0.00000000## starting 0.03925160 0.03738784 0.00000000## stopped 0.00000000 0.01246261 0.00000000## takes 0.03925160 0.03738784 0.01317349## taxpayers 0.00000000 0.01246261 0.01317349## uniform 0.00000000 0.01246261 0.02634699## unless 0.00000000 0.00000000 0.02634699## upon 0.00000000 0.01246261 0.00000000## victory 0.00000000 0.02492522 0.00000000## whatever 0.01308387 0.00000000 0.00000000## wind 0.01308387 0.01246261 0.01317349## worth 0.01308387 0.00000000 0.03952048## account 0.00000000 0.01246261 0.01317349## achievement 0.02616774 0.01246261 0.02634699## advance 0.00000000 0.01246261 0.01317349## agents 0.00000000 0.00000000 0.00000000## allowed 0.00000000 0.03738784 0.02634699## available 0.00000000 0.00000000 0.01317349## began 0.03925160 0.01246261 0.00000000## brave 0.01308387 0.00000000 0.00000000## career 0.01308387 0.02492522 0.02634699## certain 0.00000000 0.02492522 0.00000000## committed 0.00000000 0.01246261 0.01317349## conflict 0.00000000 0.00000000 0.03952048## congressional 0.01308387 0.02492522 0.01317349## constitution 0.01308387 0.02492522 0.00000000## credits 0.02616774 0.01246261 0.00000000## debates 0.01308387 0.02492522 0.00000000## decline 0.01308387 0.01246261 0.00000000## diplomatic 0.03925160 0.02492522 0.02634699## easier 0.00000000 0.01246261 0.01317349## either 0.00000000 0.02492522 0.00000000## entire 0.00000000 0.01246261 0.01317349## equality 0.00000000 0.01246261 0.07904097## extend 0.00000000 0.02492522 0.01317349## fastest 0.02616774 0.01246261 0.00000000## fill 0.00000000 0.00000000 0.03952048## food 0.02616774 0.01246261 0.00000000## gives 0.00000000 0.00000000 0.02634699## killed 0.00000000 0.01246261 0.01317349## korean 0.02616774 0.00000000 0.00000000## later 0.03925160 0.01246261 0.02634699## lay 0.00000000 0.01246261 0.02634699## learning 0.02616774 0.00000000 0.01317349## lift 0.00000000 0.01246261 0.01317349## line 0.00000000 0.02492522 0.01317349## michelle 0.00000000 0.03738784 0.03952048## mortgage 0.00000000 0.02492522 0.00000000## murder 0.00000000 0.00000000 0.00000000## needed 0.02616774 0.01246261 0.05269398## networks 0.00000000 0.00000000 0.03952048## officers 0.00000000 0.01246261 0.01317349## ones 0.01308387 0.01246261 0.01317349## overseas 0.01308387 0.01246261 0.01317349## plans 0.01308387 0.00000000 0.01317349## prepare 0.01308387 0.00000000 0.01317349## prison 0.00000000 0.00000000 0.01317349## raising 0.00000000 0.01246261 0.00000000## rebuild 0.01308387 0.01246261 0.00000000## reducing 0.02616774 0.00000000 0.01317349## restore 0.00000000 0.01246261 0.02634699## sacrifice 0.02616774 0.01246261 0.00000000## services 0.00000000 0.01246261 0.00000000## size 0.00000000 0.00000000 0.03952048## source 0.00000000 0.01246261 0.00000000## st 0.01308387 0.02492522 0.01317349## standing 0.03925160 0.01246261 0.03952048## started 0.02616774 0.01246261 0.00000000## themselves 0.00000000 0.01246261 0.02634699## today^s 0.01308387 0.00000000 0.03952048## transportation 0.03925160 0.01246261 0.02634699## turned 0.01308387 0.01246261 0.00000000## welcome 0.00000000 0.00000000 0.00000000## you^ve 0.01308387 0.02492522 0.00000000## above 0.00000000 0.00000000 0.00000000## ambitions 0.00000000 0.01246261 0.00000000## areas 0.01308387 0.01246261 0.00000000## begins 0.01308387 0.01246261 0.00000000## biggest 0.02616774 0.02492522 0.01317349## burden 0.03925160 0.02492522 0.00000000## carbon 0.00000000 0.00000000 0.05269398## citizen 0.00000000 0.00000000 0.01317349## cleaner 0.00000000 0.00000000 0.02634699## cuba 0.00000000 0.00000000 0.01317349## customers 0.00000000 0.00000000 0.01317349## dangers 0.00000000 0.00000000 0.00000000## depend 0.00000000 0.02492522 0.03952048## deployment 0.02616774 0.02492522 0.02634699## destroyed 0.00000000 0.00000000 0.00000000## disarm 0.00000000 0.00000000 0.00000000## earned 0.01308387 0.00000000 0.01317349## failure 0.00000000 0.02492522 0.00000000## field 0.01308387 0.00000000 0.00000000## george 0.00000000 0.00000000 0.02634699## grateful 0.00000000 0.01246261 0.00000000## hands 0.01308387 0.01246261 0.01317349## here^s 0.00000000 0.02492522 0.01317349## hour 0.01308387 0.00000000 0.03952048## increased 0.01308387 0.03738784 0.01317349## isil 0.00000000 0.00000000 0.00000000## land 0.00000000 0.00000000 0.00000000## loopholes 0.02616774 0.00000000 0.02634699## munitions 0.02616774 0.04985045 0.00000000## names 0.01308387 0.01246261 0.01317349## officials 0.01308387 0.00000000 0.01317349## owners 0.01308387 0.03738784 0.02634699## payroll 0.00000000 0.00000000 0.00000000## permanent 0.02616774 0.00000000 0.01317349## play 0.00000000 0.01246261 0.00000000## pollution 0.00000000 0.00000000 0.03952048## prepared 0.02616774 0.01246261 0.01317349## presidency 0.01308387 0.00000000 0.01317349## press 0.00000000 0.01246261 0.00000000## prevention 0.00000000 0.02492522 0.02634699## prices 0.00000000 0.00000000 0.01317349## protecting 0.00000000 0.02492522 0.00000000## protection 0.01308387 0.02492522 0.01317349## relations 0.03925160 0.01246261 0.00000000## required 0.01308387 0.02492522 0.00000000## rule 0.01308387 0.00000000 0.00000000## sell 0.03925160 0.01246261 0.00000000## shape 0.01308387 0.01246261 0.01317349## simply 0.01308387 0.01246261 0.01317349## sound 0.00000000 0.01246261 0.00000000## stock 0.02616774 0.00000000 0.02634699## taliban 0.02616774 0.00000000 0.00000000## teacher 0.02616774 0.01246261 0.01317349## thousand 0.00000000 0.03738784 0.00000000## tools 0.00000000 0.00000000 0.01317349## tuition 0.01308387 0.02492522 0.00000000## universities 0.02616774 0.01246261 0.02634699## using 0.02616774 0.00000000 0.00000000## walk 0.00000000 0.02492522 0.03952048## wrong 0.00000000 0.00000000 0.02634699## you^ll 0.01308387 0.00000000 0.00000000## adding 0.01308387 0.00000000 0.03952048## agencies 0.02616774 0.00000000 0.00000000## agreements 0.03925160 0.02492522 0.00000000## aid 0.00000000 0.00000000 0.01317349## among 0.00000000 0.01246261 0.01317349## answer 0.01308387 0.01246261 0.00000000## authority 0.00000000 0.00000000 0.02634699## born 0.01308387 0.00000000 0.00000000## capital 0.00000000 0.02492522 0.00000000## center 0.02616774 0.00000000 0.01317349## charge 0.01308387 0.00000000 0.00000000## consumer 0.02616774 0.01246261 0.00000000## cooperation 0.02616774 0.00000000 0.01317349## cover 0.01308387 0.02492522 0.01317349## cutting 0.03925160 0.01246261 0.00000000## demands 0.02616774 0.01246261 0.01317349## directly 0.00000000 0.00000000 0.01317349## doubt 0.00000000 0.03738784 0.00000000## essential 0.00000000 0.00000000 0.00000000## faith-based 0.00000000 0.00000000 0.00000000## fewer 0.03925160 0.01246261 0.00000000## finish 0.01308387 0.01246261 0.00000000## forget 0.01308387 0.00000000 0.01317349## fuel 0.01308387 0.00000000 0.05269398## funds 0.00000000 0.01246261 0.00000000## grants 0.01308387 0.02492522 0.00000000## healthy 0.00000000 0.02492522 0.00000000## held 0.01308387 0.01246261 0.00000000## independent 0.00000000 0.01246261 0.02634699## influence 0.00000000 0.01246261 0.00000000## itself 0.01308387 0.00000000 0.01317349## joe 0.00000000 0.00000000 0.01317349## joseph 0.01308387 0.01246261 0.01317349## late 0.00000000 0.00000000 0.00000000## leads 0.00000000 0.02492522 0.00000000## lending 0.00000000 0.02492522 0.00000000## letter 0.01308387 0.00000000 0.01317349## lobbyists 0.03925160 0.08723829 0.00000000## majority 0.00000000 0.01246261 0.01317349## measures 0.00000000 0.01246261 0.00000000## naturalization 0.02616774 0.01246261 0.01317349## offensive 0.00000000 0.00000000 0.00000000## palestinian 0.00000000 0.00000000 0.00000000## partnership 0.02616774 0.00000000 0.01317349## paychecks 0.02616774 0.00000000 0.00000000## peaceful 0.00000000 0.00000000 0.00000000## per 0.00000000 0.00000000 0.00000000## planet 0.01308387 0.00000000 0.01317349## pledge 0.01308387 0.00000000 0.00000000## quickly 0.00000000 0.00000000 0.00000000## recently 0.02616774 0.00000000 0.00000000## reductions 0.01308387 0.01246261 0.00000000## released 0.00000000 0.01246261 0.00000000## review 0.02616774 0.00000000 0.00000000## reward 0.01308387 0.02492522 0.02634699## sector 0.01308387 0.00000000 0.01317349## senator 0.00000000 0.00000000 0.01317349## served 0.02616774 0.00000000 0.00000000## several 0.00000000 0.00000000 0.01317349## shared 0.01308387 0.01246261 0.01317349## showing 0.02616774 0.00000000 0.00000000## space 0.05233547 0.00000000 0.00000000## struggling 0.00000000 0.02492522 0.01317349## supported 0.00000000 0.01246261 0.00000000## surely 0.00000000 0.01246261 0.01317349## threaten 0.00000000 0.02492522 0.01317349## value 0.00000000 0.02492522 0.01317349## weeks 0.01308387 0.00000000 0.01317349## workforce 0.00000000 0.01246261 0.07904097## accept 0.00000000 0.01246261 0.00000000## added 0.00000000 0.01246261 0.00000000## anything 0.02616774 0.02492522 0.01317349## baghdad 0.00000000 0.00000000 0.00000000## base 0.00000000 0.00000000 0.01317349## benefit 0.01308387 0.00000000 0.00000000## bin 0.00000000 0.00000000 0.00000000## capacity 0.01308387 0.01246261 0.02634699## categories 0.01308387 0.01246261 0.01317349## civilians 0.02616774 0.00000000 0.02634699## complete 0.00000000 0.00000000 0.02634699## conditions 0.00000000 0.02492522 0.00000000## defeat 0.02616774 0.00000000 0.01317349## deserves 0.02616774 0.00000000 0.05269398## desire 0.01308387 0.00000000 0.00000000## distinguished 0.01308387 0.01246261 0.00000000## documents 0.00000000 0.00000000 0.00000000## drive 0.00000000 0.01246261 0.00000000## earmarks 0.01308387 0.00000000 0.00000000## effects 0.02616774 0.02492522 0.00000000## emergency 0.00000000 0.01246261 0.01317349## empower 0.00000000 0.00000000 0.00000000## ends 0.00000000 0.02492522 0.01317349## february 0.00000000 0.00000000 0.00000000## forced 0.00000000 0.00000000 0.00000000## forge 0.03925160 0.03738784 0.01317349## four 0.01308387 0.00000000 0.00000000## general 0.00000000 0.00000000 0.01317349## gift 0.01308387 0.01246261 0.00000000## girls 0.00000000 0.00000000 0.00000000## goes 0.02616774 0.00000000 0.02634699## goods 0.01308387 0.02492522 0.01317349## gov 0.00000000 0.00000000 0.00000000## governments 0.00000000 0.00000000 0.01317349## gun 0.00000000 0.00000000 0.02634699## having 0.00000000 0.00000000 0.01317349## high-speed 0.06541934 0.02492522 0.01317349## impact 0.02616774 0.00000000 0.01317349## includes 0.00000000 0.01246261 0.00000000## increasing 0.00000000 0.01246261 0.00000000## knew 0.01308387 0.01246261 0.02634699## laden 0.00000000 0.00000000 0.00000000## leaving 0.00000000 0.02492522 0.00000000## led 0.01308387 0.00000000 0.01317349## massive 0.00000000 0.02492522 0.02634699## operations 0.00000000 0.00000000 0.01317349## pakistan 0.02616774 0.00000000 0.00000000## passing 0.00000000 0.02492522 0.00000000## potential 0.00000000 0.01246261 0.01317349## powerful 0.01308387 0.01246261 0.01317349## priority 0.00000000 0.00000000 0.00000000## project 0.03925160 0.00000000 0.01317349## proposals 0.01308387 0.00000000 0.01317349## protections 0.02616774 0.00000000 0.00000000## putting 0.01308387 0.01246261 0.01317349## reading 0.00000000 0.00000000 0.00000000## reflect 0.00000000 0.01246261 0.00000000## renew 0.00000000 0.02492522 0.00000000## senior 0.00000000 0.01246261 0.00000000## son 0.00000000 0.00000000 0.05269398## stake 0.02616774 0.00000000 0.00000000## stands 0.01308387 0.00000000 0.00000000## streets 0.02616774 0.01246261 0.00000000## supports 0.01308387 0.01246261 0.00000000## tens 0.01308387 0.01246261 0.00000000## thought 0.01308387 0.02492522 0.00000000## unemployed 0.00000000 0.02492522 0.02634699## urgent 0.00000000 0.01246261 0.00000000## veto 0.02616774 0.01246261 0.01317349## vision 0.00000000 0.01246261 0.00000000## vulnerable 0.02616774 0.01246261 0.00000000## waiting 0.00000000 0.03738784 0.00000000## wants 0.02616774 0.00000000 0.02634699## waste 0.01308387 0.00000000 0.00000000## wealthiest 0.01308387 0.00000000 0.00000000## west 0.01308387 0.00000000 0.00000000## accountable 0.00000000 0.01246261 0.00000000## achieved 0.00000000 0.00000000 0.00000000## addiction 0.00000000 0.00000000 0.00000000## addresses 0.01308387 0.01246261 0.01317349## affordability 0.01308387 0.01246261 0.01317349## alliances 0.02616774 0.00000000 0.00000000## arguments 0.00000000 0.01246261 0.01317349## barack 0.01308387 0.01246261 0.01317349## believed 0.00000000 0.00000000 0.00000000## bipartisanship 0.01308387 0.02492522 0.01317349## car 0.01308387 0.00000000 0.00000000## citizenship 0.00000000 0.00000000 0.05269398## coal 0.01308387 0.03738784 0.00000000## commit 0.00000000 0.00000000 0.00000000## communications 0.01308387 0.00000000 0.00000000## confronting 0.00000000 0.01246261 0.00000000## conscience 0.00000000 0.00000000 0.00000000## continuing 0.00000000 0.01246261 0.01317349## corporations 0.00000000 0.02492522 0.02634699## cory 0.00000000 0.00000000 0.13173495## council 0.00000000 0.00000000 0.00000000## counterterrorism 0.02616774 0.01246261 0.02634699## deal 0.02616774 0.00000000 0.01317349## delivered 0.00000000 0.00000000 0.00000000## destiny 0.02616774 0.01246261 0.00000000## direct 0.00000000 0.00000000 0.01317349## diseases 0.00000000 0.00000000 0.00000000## dramatically 0.00000000 0.00000000 0.00000000## efficiency 0.00000000 0.03738784 0.02634699## ended 0.02616774 0.00000000 0.00000000## era 0.02616774 0.01246261 0.00000000## extra 0.00000000 0.00000000 0.01317349## faced 0.00000000 0.01246261 0.00000000## facilities 0.01308387 0.01246261 0.01317349## facts 0.00000000 0.01246261 0.00000000## fail 0.00000000 0.01246261 0.00000000## fast 0.00000000 0.01246261 0.01317349## foundation 0.00000000 0.01246261 0.00000000## g 0.00000000 0.02492522 0.00000000## gay 0.01308387 0.01246261 0.01317349## globe 0.02616774 0.01246261 0.01317349## grew 0.01308387 0.01246261 0.00000000## grows 0.00000000 0.00000000 0.00000000## guests 0.01308387 0.01246261 0.00000000## harder 0.01308387 0.03738784 0.00000000## hardship 0.00000000 0.00000000 0.02634699## honest 0.00000000 0.00000000 0.01317349## hours 0.00000000 0.00000000 0.01317349## immigrants 0.01308387 0.01246261 0.00000000## innocent 0.00000000 0.00000000 0.01317349## insist 0.02616774 0.02492522 0.00000000## kept 0.01308387 0.00000000 0.00000000## key 0.00000000 0.01246261 0.01317349## launch 0.01308387 0.00000000 0.02634699## launched 0.01308387 0.00000000 0.02634699## lawsuits 0.01308387 0.00000000 0.00000000## learned 0.00000000 0.00000000 0.01317349## lebanon 0.00000000 0.00000000 0.01317349## locations 0.01308387 0.01246261 0.01317349## low 0.00000000 0.00000000 0.00000000## low-income 0.00000000 0.00000000 0.00000000## matters 0.00000000 0.00000000 0.00000000## measure 0.01308387 0.00000000 0.02634699## moral 0.01308387 0.00000000 0.00000000## network 0.00000000 0.00000000 0.00000000## pages 0.00000000 0.00000000 0.00000000## partner 0.00000000 0.01246261 0.02634699## playing 0.01308387 0.02492522 0.00000000## premiums 0.00000000 0.03738784 0.01317349## price 0.00000000 0.01246261 0.00000000## principle 0.00000000 0.00000000 0.01317349## promised 0.00000000 0.02492522 0.00000000## pursuing 0.00000000 0.00000000 0.00000000## radical 0.00000000 0.00000000 0.00000000## ready 0.00000000 0.01246261 0.01317349## regimes 0.00000000 0.00000000 0.00000000## report 0.00000000 0.00000000 0.00000000## robert 0.06541934 0.00000000 0.02634699## rural 0.02616774 0.02492522 0.01317349## saving 0.00000000 0.00000000 0.00000000## shores 0.01308387 0.02492522 0.00000000## shot 0.00000000 0.00000000 0.01317349## spanish 0.00000000 0.01246261 0.00000000## standard 0.00000000 0.00000000 0.00000000## status 0.00000000 0.03738784 0.00000000## subjects 0.01308387 0.01246261 0.01317349## subsidies 0.03925160 0.02492522 0.00000000## suffering 0.00000000 0.00000000 0.00000000## supply 0.00000000 0.00000000 0.00000000## taxpayer 0.02616774 0.01246261 0.00000000## teaching 0.01308387 0.01246261 0.00000000## terrible 0.00000000 0.00000000 0.00000000## trained 0.01308387 0.00000000 0.00000000## transition 0.01308387 0.00000000 0.01317349## transparency 0.01308387 0.02492522 0.00000000## travel 0.02616774 0.01246261 0.00000000## truth 0.00000000 0.01246261 0.00000000## unprecedented 0.01308387 0.00000000 0.01317349## water 0.03925160 0.00000000 0.01317349## whose 0.00000000 0.01246261 0.01317349## wife 0.00000000 0.00000000 0.01317349## write 0.01308387 0.00000000 0.00000000## wrote 0.00000000 0.02492522 0.02634699## yemen 0.01308387 0.00000000 0.01317349## younger 0.00000000 0.00000000 0.00000000## advantage 0.00000000 0.00000000 0.01317349## announce 0.00000000 0.00000000 0.01317349## army 0.00000000 0.00000000 0.02634699## aside 0.00000000 0.01246261 0.01317349## attacked 0.00000000 0.00000000 0.00000000## attention 0.01308387 0.00000000 0.00000000## auto 0.00000000 0.00000000 0.01317349## baby 0.01308387 0.00000000 0.01317349## bank 0.00000000 0.01246261 0.01317349## billions 0.02616774 0.00000000 0.00000000## body 0.00000000 0.00000000 0.00000000## bridges 0.01308387 0.00000000 0.00000000## brings 0.00000000 0.00000000 0.01317349## calling 0.00000000 0.03738784 0.00000000## captured 0.00000000 0.01246261 0.00000000## carry 0.00000000 0.01246261 0.01317349## case 0.00000000 0.00000000 0.01317349## cells 0.00000000 0.02492522 0.00000000## chaos 0.00000000 0.00000000 0.00000000## childcare 0.00000000 0.00000000 0.00000000## claims 0.00000000 0.01246261 0.00000000## colombia 0.01308387 0.02492522 0.00000000## commitments 0.00000000 0.01246261 0.01317349## consumers 0.00000000 0.01246261 0.00000000## continued 0.00000000 0.01246261 0.00000000## corps 0.00000000 0.00000000 0.00000000## couldn^t 0.01308387 0.00000000 0.03952048## courts 0.00000000 0.00000000 0.00000000## d 0.02616774 0.00000000 0.00000000## decency 0.00000000 0.03738784 0.00000000## defeated 0.00000000 0.00000000 0.00000000## democrat 0.00000000 0.01246261 0.00000000## denied 0.00000000 0.03738784 0.01317349## dime 0.00000000 0.02492522 0.01317349## diploma 0.02616774 0.01246261 0.00000000## discipline 0.02616774 0.01246261 0.00000000## dollar 0.00000000 0.00000000 0.01317349## doubling 0.01308387 0.01246261 0.00000000## emissions 0.00000000 0.00000000 0.01317349## enterprise 0.02616774 0.00000000 0.00000000## equipment 0.02616774 0.01246261 0.00000000## everywhere 0.01308387 0.00000000 0.00000000## experience 0.00000000 0.00000000 0.00000000## factories 0.02616774 0.01246261 0.02634699## factory 0.02616774 0.00000000 0.02634699## failed 0.00000000 0.01246261 0.00000000## fought 0.02616774 0.00000000 0.01317349## freeze 0.03925160 0.04985045 0.00000000## gain 0.00000000 0.02492522 0.00000000## governor 0.00000000 0.00000000 0.05269398## gpo 0.00000000 0.00000000 0.00000000## graduate 0.00000000 0.01246261 0.00000000## grown 0.00000000 0.01246261 0.01317349## gulf 0.00000000 0.00000000 0.00000000## h 0.00000000 0.01246261 0.00000000## happened 0.01308387 0.00000000 0.01317349## hardest 0.01308387 0.00000000 0.00000000## haven 0.01308387 0.00000000 0.00000000## haven^t 0.01308387 0.01246261 0.01317349## havens 0.03925160 0.00000000 0.00000000## hidden 0.01308387 0.00000000 0.00000000## high-quality 0.00000000 0.00000000 0.03952048## high-tech 0.00000000 0.00000000 0.02634699## hiring 0.00000000 0.00000000 0.01317349## historic 0.00000000 0.00000000 0.00000000## homeowners 0.00000000 0.01246261 0.00000000## hopes 0.01308387 0.00000000 0.01317349## huge 0.00000000 0.00000000 0.00000000## hundred 0.00000000 0.02492522 0.00000000## ideals 0.00000000 0.02492522 0.02634699## independence 0.02616774 0.00000000 0.01317349## india 0.07850321 0.00000000 0.00000000## individual 0.01308387 0.01246261 0.02634699## islamic 0.00000000 0.01246261 0.00000000## japan 0.00000000 0.00000000 0.00000000## killers 0.00000000 0.00000000 0.00000000## language 0.00000000 0.01246261 0.00000000## lasting 0.01308387 0.01246261 0.01317349## legal 0.00000000 0.00000000 0.00000000## lie 0.00000000 0.00000000 0.00000000## march 0.01308387 0.00000000 0.02634699## meeting 0.01308387 0.01246261 0.00000000## missile 0.02616774 0.00000000 0.00000000## monday 0.00000000 0.00000000 0.00000000## moving 0.00000000 0.00000000 0.01317349## n 0.00000000 0.00000000 0.00000000## named 0.02616774 0.00000000 0.00000000## news 0.01308387 0.00000000 0.01317349## officer 0.00000000 0.00000000 0.02634699## opened 0.01308387 0.00000000 0.01317349## owe 0.00000000 0.00000000 0.01317349## pace 0.00000000 0.00000000 0.00000000## peninsula 0.02616774 0.01246261 0.00000000## poor 0.00000000 0.00000000 0.01317349## practices 0.00000000 0.01246261 0.00000000## president^s 0.00000000 0.02492522 0.01317349## presidents 0.00000000 0.00000000 0.00000000## pressure 0.01308387 0.00000000 0.01317349## privilege 0.00000000 0.00000000 0.00000000## protects 0.00000000 0.00000000 0.01317349## publishing 0.00000000 0.00000000 0.00000000## qaida^s 0.01308387 0.01246261 0.01317349## rather 0.00000000 0.01246261 0.00000000## read 0.00000000 0.02492522 0.00000000## refinancing 0.00000000 0.02492522 0.00000000## refuse 0.00000000 0.01246261 0.00000000## reject 0.00000000 0.01246261 0.00000000## risks 0.00000000 0.01246261 0.01317349## roads 0.02616774 0.00000000 0.01317349## seeing 0.02616774 0.00000000 0.00000000## sending 0.01308387 0.00000000 0.00000000## signed 0.01308387 0.00000000 0.01317349## solution 0.01308387 0.00000000 0.00000000## teach 0.02616774 0.00000000 0.00000000## town 0.01308387 0.01246261 0.01317349## transcript 0.00000000 0.01246261 0.00000000## tyranny 0.00000000 0.00000000 0.01317349## ukraine 0.00000000 0.00000000 0.01317349## uninsured 0.01308387 0.02492522 0.00000000## uranium 0.00000000 0.00000000 0.01317349## violent 0.00000000 0.00000000 0.00000000## voice 0.01308387 0.00000000 0.01317349## voices 0.00000000 0.00000000 0.00000000## volume 0.00000000 0.00000000 0.00000000## wars 0.00000000 0.03738784 0.00000000## watch 0.00000000 0.01246261 0.00000000## watching 0.01308387 0.00000000 0.00000000## weapon 0.00000000 0.00000000 0.02634699## went 0.02616774 0.01246261 0.00000000## who^s 0.01308387 0.02492522 0.01317349## worthy 0.00000000 0.00000000 0.00000000## www 0.00000000 0.00000000 0.00000000## absolutely 0.00000000 0.03738784 0.00000000## accounted 0.00000000 0.00000000 0.00000000## acted 0.00000000 0.01246261 0.01317349## acts 0.01308387 0.00000000 0.00000000## addicted 0.00000000 0.00000000 0.00000000## agreed 0.01308387 0.00000000 0.00000000## allen 0.07850321 0.00000000 0.00000000## allowing 0.00000000 0.00000000 0.00000000## ambitious 0.00000000 0.01246261 0.00000000## announcing 0.00000000 0.00000000 0.01317349## apart 0.03925160 0.00000000 0.00000000## argue 0.01308387 0.02492522 0.00000000## battle 0.00000000 0.00000000 0.00000000## belief 0.00000000 0.01246261 0.02634699## boehner 0.02616774 0.00000000 0.01317349## boys 0.00000000 0.00000000 0.01317349## breakthroughs 0.02616774 0.00000000 0.00000000## broader 0.00000000 0.00000000 0.00000000## buildings 0.01308387 0.01246261 0.00000000## burma 0.00000000 0.00000000 0.01317349## cases 0.00000000 0.00000000 0.00000000## causes 0.00000000 0.00000000 0.01317349## cheney 0.00000000 0.00000000 0.00000000## childhood 0.00000000 0.01246261 0.02634699## children^s 0.00000000 0.00000000 0.01317349## cities 0.01308387 0.00000000 0.01317349## classroom 0.02616774 0.00000000 0.00000000## commanders 0.00000000 0.00000000 0.00000000## compilation 0.00000000 0.00000000 0.00000000## concern 0.00000000 0.00000000 0.00000000## conservation 0.00000000 0.00000000 0.00000000## consider 0.00000000 0.02492522 0.00000000## culture 0.00000000 0.00000000 0.01317349## decision 0.00000000 0.01246261 0.03952048## decisive 0.00000000 0.00000000 0.00000000## declared 0.00000000 0.00000000 0.01317349## depression 0.00000000 0.03738784 0.00000000## desk 0.01308387 0.02492522 0.01317349## despite 0.00000000 0.03738784 0.00000000## determination 0.00000000 0.02492522 0.00000000## determine 0.00000000 0.00000000 0.00000000## discretionary 0.01308387 0.01246261 0.00000000## dominate 0.00000000 0.00000000 0.00000000## doubled 0.00000000 0.00000000 0.01317349## dropped 0.01308387 0.01246261 0.01317349## e 0.00000000 0.00000000 0.00000000## earlier 0.01308387 0.01246261 0.01317349## efficient 0.01308387 0.01246261 0.00000000## ending 0.00000000 0.01246261 0.01317349## exchange 0.00000000 0.00000000 0.00000000## expire 0.00000000 0.00000000 0.01317349## extremism 0.00000000 0.00000000 0.01317349## f 0.00000000 0.01246261 0.03952048## fallen 0.01308387 0.00000000 0.01317349## farmers 0.02616774 0.01246261 0.01317349## fears 0.00000000 0.01246261 0.00000000## felt 0.00000000 0.02492522 0.01317349## fields 0.02616774 0.00000000 0.01317349## final 0.01308387 0.00000000 0.00000000## fixing 0.01308387 0.02492522 0.01317349## gentlemen 0.00000000 0.00000000 0.00000000## goals 0.00000000 0.00000000 0.00000000## guantanamo 0.00000000 0.00000000 0.02634699## guarantee 0.00000000 0.00000000 0.00000000## hide 0.00000000 0.00000000 0.00000000## however 0.00000000 0.00000000 0.00000000## ideology 0.00000000 0.00000000 0.00000000## ignore 0.00000000 0.01246261 0.00000000## immediate 0.00000000 0.00000000 0.00000000## improving 0.00000000 0.00000000 0.00000000## incomes 0.00000000 0.02492522 0.00000000## intentions 0.00000000 0.00000000 0.00000000## investing 0.02616774 0.00000000 0.01317349## iranian 0.01308387 0.00000000 0.00000000## ladies 0.00000000 0.00000000 0.00000000## laid 0.00000000 0.01246261 0.00000000## large 0.00000000 0.01246261 0.00000000## liability 0.01308387 0.00000000 0.00000000## limit 0.01308387 0.01246261 0.00000000## listen 0.00000000 0.00000000 0.01317349## losing 0.00000000 0.00000000 0.01317349## main 0.01308387 0.02492522 0.01317349## manufacturers 0.00000000 0.00000000 0.01317349## maybe 0.01308387 0.00000000 0.00000000## mayor 0.00000000 0.00000000 0.01317349## mind 0.00000000 0.00000000 0.02634699## movement 0.00000000 0.01246261 0.00000000## nato 0.01308387 0.00000000 0.01317349## negotiations 0.00000000 0.01246261 0.03952048## neither 0.00000000 0.02492522 0.02634699## night 0.00000000 0.01246261 0.00000000## obligations 0.01308387 0.01246261 0.00000000## offered 0.00000000 0.00000000 0.01317349## ordered 0.01308387 0.00000000 0.00000000## ours 0.02616774 0.00000000 0.00000000## owner 0.02616774 0.01246261 0.01317349## panama 0.02616774 0.02492522 0.00000000## parent 0.00000000 0.00000000 0.02634699## paycheck 0.01308387 0.01246261 0.00000000## pennsylvania 0.01308387 0.02492522 0.00000000## pockets 0.01308387 0.00000000 0.00000000## preventive 0.00000000 0.02492522 0.00000000## prime 0.00000000 0.00000000 0.00000000## professionals 0.01308387 0.00000000 0.00000000## promises 0.00000000 0.00000000 0.00000000## provided 0.01308387 0.00000000 0.00000000## providers 0.02616774 0.02492522 0.00000000## provides 0.00000000 0.00000000 0.00000000## realize 0.00000000 0.01246261 0.00000000## rebekah 0.00000000 0.00000000 0.00000000## recent 0.01308387 0.00000000 0.00000000## redtape 0.01308387 0.00000000 0.01317349## regions 0.00000000 0.00000000 0.00000000## reliable 0.01308387 0.00000000 0.00000000## response 0.00000000 0.01246261 0.00000000## retreat 0.00000000 0.00000000 0.00000000## sergeant 0.00000000 0.00000000 0.01317349## serving 0.01308387 0.00000000 0.01317349## shown 0.01308387 0.00000000 0.00000000## significant 0.00000000 0.00000000 0.00000000## sit 0.02616774 0.00000000 0.00000000## situation 0.00000000 0.01246261 0.00000000## slow 0.01308387 0.00000000 0.00000000## someone 0.02616774 0.00000000 0.02634699## sometimes 0.01308387 0.00000000 0.01317349## speed 0.01308387 0.00000000 0.03952048## stability 0.00000000 0.00000000 0.00000000## stood 0.00000000 0.00000000 0.01317349## stories 0.01308387 0.04985045 0.00000000## strategic 0.02616774 0.02492522 0.00000000## study 0.02616774 0.00000000 0.01317349## sudden 0.00000000 0.00000000 0.00000000## supplies 0.00000000 0.00000000 0.00000000## surplus 0.00000000 0.01246261 0.00000000## surveillance 0.00000000 0.00000000 0.02634699## sustain 0.01308387 0.01246261 0.01317349## team 0.00000000 0.00000000 0.02634699## temporary 0.00000000 0.00000000 0.00000000## though 0.00000000 0.03738784 0.00000000## tired 0.00000000 0.02492522 0.01317349## trucks 0.00000000 0.00000000 0.02634699## turning 0.01308387 0.00000000 0.00000000## ultimately 0.00000000 0.00000000 0.01317349## unit 0.00000000 0.00000000 0.00000000## usama 0.00000000 0.00000000 0.00000000## w 0.00000000 0.00000000 0.02634699## weekly 0.00000000 0.00000000 0.00000000## word 0.00000000 0.01246261 0.01317349## -year 0.00000000 0.01246261 0.01317349## abandon 0.01308387 0.00000000 0.00000000## abuse 0.00000000 0.00000000 0.00000000## active 0.00000000 0.00000000 0.00000000## actually 0.00000000 0.00000000 0.00000000## african 0.00000000 0.00000000 0.00000000## agency 0.00000000 0.00000000 0.00000000## allows 0.00000000 0.00000000 0.01317349## amazing 0.00000000 0.00000000 0.00000000## amid 0.01308387 0.02492522 0.00000000## arrived 0.00000000 0.00000000 0.00000000## assembly 0.00000000 0.00000000 0.00000000## avoid 0.00000000 0.01246261 0.00000000## balance 0.00000000 0.00000000 0.00000000## balanced 0.00000000 0.00000000 0.01317349## battles 0.02616774 0.01246261 0.02634699## bay 0.00000000 0.00000000 0.02634699## birth 0.00000000 0.00000000 0.01317349## bold 0.00000000 0.00000000 0.00000000## bottom 0.00000000 0.00000000 0.01317349## bridge 0.00000000 0.00000000 0.01317349## broad 0.00000000 0.00000000 0.00000000## brothers 0.06541934 0.00000000 0.00000000## buffett 0.00000000 0.00000000 0.00000000## bush 0.00000000 0.00000000 0.00000000## buying 0.00000000 0.00000000 0.00000000## california 0.02616774 0.01246261 0.00000000## camps 0.00000000 0.00000000 0.00000000## carolina 0.01308387 0.01246261 0.01317349## ceo 0.00000000 0.01246261 0.01317349## chambers 0.00000000 0.00000000 0.00000000## charged 0.00000000 0.00000000 0.01317349## charter 0.00000000 0.00000000 0.00000000## cheaper 0.01308387 0.01246261 0.00000000## conduct 0.00000000 0.00000000 0.00000000## corruption 0.01308387 0.03738784 0.00000000## creates 0.00000000 0.00000000 0.00000000## criminals 0.00000000 0.00000000 0.00000000## crucial 0.01308387 0.00000000 0.00000000## cyber 0.00000000 0.00000000 0.01317349## dad 0.00000000 0.01246261 0.01317349## decent 0.01308387 0.00000000 0.01317349## dedication 0.01308387 0.00000000 0.01317349## deeply 0.01308387 0.02492522 0.00000000## defeating 0.00000000 0.00000000 0.00000000## degree 0.05233547 0.00000000 0.00000000## dependence 0.01308387 0.00000000 0.00000000## dependent 0.00000000 0.00000000 0.01317349## destroy 0.00000000 0.00000000 0.00000000## dictator 0.01308387 0.00000000 0.00000000## directed 0.00000000 0.00000000 0.01317349## division 0.00000000 0.04985045 0.00000000## doctor 0.01308387 0.01246261 0.01317349## door 0.00000000 0.01246261 0.00000000## earmark 0.00000000 0.03738784 0.00000000## educate 0.02616774 0.00000000 0.00000000## effect 0.00000000 0.02492522 0.00000000## egypt 0.00000000 0.00000000 0.00000000## electric 0.01308387 0.00000000 0.00000000## enforce 0.03925160 0.02492522 0.00000000## engineers 0.02616774 0.00000000 0.00000000## entrepreneur 0.00000000 0.01246261 0.01317349## events 0.01308387 0.00000000 0.00000000## exactly 0.01308387 0.00000000 0.00000000## experts 0.00000000 0.02492522 0.00000000## export 0.02616774 0.04985045 0.00000000## failing 0.00000000 0.01246261 0.00000000## fbi 0.00000000 0.00000000 0.00000000## feed 0.00000000 0.01246261 0.01317349## finance 0.00000000 0.02492522 0.00000000## founders 0.00000000 0.00000000 0.01317349## fraud 0.00000000 0.00000000 0.00000000## frivolous 0.01308387 0.00000000 0.00000000## fundamental 0.00000000 0.01246261 0.00000000## funded 0.00000000 0.01246261 0.02634699## gains 0.00000000 0.02492522 0.00000000## game 0.01308387 0.02492522 0.01317349## gather 0.00000000 0.00000000 0.01317349## girl 0.01308387 0.01246261 0.00000000## grandchildren 0.00000000 0.01246261 0.00000000## guide 0.00000000 0.00000000 0.00000000## harm 0.00000000 0.00000000 0.00000000## heard 0.02616774 0.01246261 0.01317349## holding 0.00000000 0.00000000 0.00000000## honored 0.00000000 0.00000000 0.00000000## hospitals 0.00000000 0.00000000 0.00000000## humanity 0.00000000 0.00000000 0.00000000## i^d 0.01308387 0.04985045 0.00000000## imagine 0.00000000 0.00000000 0.00000000## increases 0.00000000 0.00000000 0.00000000## incredible 0.00000000 0.01246261 0.01317349## inequality 0.00000000 0.00000000 0.03952048## inflation 0.00000000 0.00000000 0.00000000## innovative 0.01308387 0.00000000 0.01317349## intimidate 0.00000000 0.00000000 0.00000000## iran^s 0.00000000 0.01246261 0.05269398## joined 0.00000000 0.02492522 0.00000000## judges 0.00000000 0.00000000 0.00000000## keeps 0.01308387 0.02492522 0.01317349## libya 0.00000000 0.00000000 0.00000000## limits 0.02616774 0.02492522 0.01317349## lines 0.02616774 0.01246261 0.00000000## loan 0.01308387 0.01246261 0.02634699## madam 0.00000000 0.01246261 0.00000000## meanwhile 0.02616774 0.01246261 0.01317349## medicines 0.00000000 0.00000000 0.00000000## mentors 0.00000000 0.00000000 0.00000000## methods 0.00000000 0.00000000 0.00000000## minority 0.00000000 0.01246261 0.01317349## modern 0.00000000 0.00000000 0.00000000## modernization 0.02616774 0.01246261 0.00000000## mortgages 0.00000000 0.01246261 0.00000000## muslim 0.01308387 0.01246261 0.00000000## operatives 0.01308387 0.00000000 0.00000000## ordinary 0.01308387 0.01246261 0.01317349## organizations 0.00000000 0.00000000 0.01317349## outcome 0.00000000 0.00000000 0.00000000## outdated 0.00000000 0.00000000 0.00000000## overcome 0.00000000 0.01246261 0.00000000## participate 0.00000000 0.00000000 0.00000000## partisan 0.00000000 0.00000000 0.00000000## patient 0.03925160 0.00000000 0.00000000## period 0.00000000 0.00000000 0.00000000## personnel 0.00000000 0.00000000 0.00000000## please 0.00000000 0.00000000 0.01317349## preexisting 0.01308387 0.01246261 0.02634699## preserve 0.00000000 0.01246261 0.00000000## prevents 0.01308387 0.00000000 0.01317349## principles 0.00000000 0.00000000 0.00000000## prisoners 0.00000000 0.00000000 0.00000000## privacy 0.00000000 0.00000000 0.01317349## profitable 0.01308387 0.01246261 0.01317349## protected 0.00000000 0.01246261 0.00000000## pull 0.00000000 0.01246261 0.02634699## purchase 0.01308387 0.01246261 0.00000000## qaeda 0.00000000 0.00000000 0.00000000## quarter 0.02616774 0.00000000 0.00000000## quo 0.00000000 0.03738784 0.00000000## raised 0.00000000 0.01246261 0.01317349## reduced 0.00000000 0.00000000 0.01317349## regardless 0.00000000 0.00000000 0.02634699## rely 0.00000000 0.00000000 0.01317349## repeat 0.00000000 0.01246261 0.01317349## replace 0.01308387 0.00000000 0.00000000## rescue 0.03925160 0.02492522 0.00000000## rewarded 0.01308387 0.01246261 0.00000000## rich 0.00000000 0.00000000 0.01317349## rid 0.03925160 0.00000000 0.00000000## root 0.01308387 0.01246261 0.01317349## running 0.00000000 0.00000000 0.02634699## saudi 0.00000000 0.00000000 0.00000000## sectarian 0.00000000 0.00000000 0.01317349## setting 0.01308387 0.01246261 0.02634699## severe 0.00000000 0.01246261 0.01317349## shi 0.00000000 0.00000000 0.00000000## shift 0.00000000 0.00000000 0.03952048## skill 0.01308387 0.00000000 0.00000000## slowly 0.00000000 0.02492522 0.01317349## sold 0.01308387 0.00000000 0.00000000## straight 0.00000000 0.01246261 0.00000000## strike 0.00000000 0.00000000 0.01317349## strongly 0.01308387 0.00000000 0.01317349## suggested 0.01308387 0.01246261 0.00000000## summit 0.01308387 0.01246261 0.01317349## surge 0.00000000 0.00000000 0.00000000## suspected 0.02616774 0.00000000 0.00000000## t 0.00000000 0.00000000 0.05269398## talked 0.00000000 0.00000000 0.00000000## telling 0.01308387 0.02492522 0.00000000## treat 0.00000000 0.00000000 0.01317349## treated 0.01308387 0.01246261 0.00000000## treaty 0.05233547 0.03738784 0.00000000## truly 0.01308387 0.00000000 0.01317349## unfair 0.00000000 0.00000000 0.00000000## unnecessary 0.02616774 0.00000000 0.00000000## uphold 0.00000000 0.00000000 0.00000000## vast 0.00000000 0.01246261 0.00000000## voted 0.00000000 0.00000000 0.00000000## votes 0.01308387 0.01246261 0.01317349## wasteful 0.00000000 0.00000000 0.01317349## wealth 0.00000000 0.00000000 0.00000000## who^ve 0.01308387 0.02492522 0.00000000## winning 0.03925160 0.00000000 0.00000000## wisdom 0.00000000 0.00000000 0.00000000## wise 0.00000000 0.00000000 0.00000000## worry 0.00000000 0.00000000 0.00000000## abu 0.00000000 0.00000000 0.00000000## advances 0.00000000 0.01246261 0.00000000## adversity 0.00000000 0.01246261 0.00000000## affiliates 0.01308387 0.01246261 0.01317349## aggressive 0.00000000 0.00000000 0.00000000## alan 0.00000000 0.00000000 0.00000000## amount 0.00000000 0.00000000 0.01317349## anger 0.00000000 0.00000000 0.00000000## apply 0.00000000 0.00000000 0.00000000## appropriate 0.00000000 0.00000000 0.00000000## asian 0.02616774 0.00000000 0.00000000## aspirations 0.01308387 0.01246261 0.01317349## badly 0.00000000 0.00000000 0.00000000## beat 0.02616774 0.00000000 0.01317349## became 0.01308387 0.02492522 0.00000000## black 0.01308387 0.01246261 0.00000000## blind 0.00000000 0.00000000 0.01317349## bomb 0.00000000 0.00000000 0.03952048## bound 0.01308387 0.00000000 0.00000000## brandon 0.07850321 0.00000000 0.00000000## budgetary 0.02616774 0.00000000 0.00000000## card 0.01308387 0.00000000 0.00000000## caring 0.00000000 0.00000000 0.00000000## checks 0.00000000 0.00000000 0.00000000## civilized 0.00000000 0.00000000 0.00000000## closely 0.00000000 0.00000000 0.00000000## coast 0.00000000 0.00000000 0.00000000## collective 0.00000000 0.00000000 0.01317349## committee 0.00000000 0.00000000 0.00000000## commonsense 0.01308387 0.00000000 0.00000000## complicated 0.01308387 0.01246261 0.01317349## computer 0.02616774 0.00000000 0.00000000## congressman 0.00000000 0.00000000 0.00000000## consequence 0.00000000 0.00000000 0.01317349## constant 0.00000000 0.00000000 0.00000000## continent 0.01308387 0.00000000 0.00000000## contributions 0.00000000 0.01246261 0.00000000## conviction 0.01308387 0.00000000 0.00000000## costly 0.00000000 0.00000000 0.01317349## court 0.00000000 0.01246261 0.00000000## damage 0.00000000 0.02492522 0.02634699## date 0.00000000 0.00000000 0.00000000## decide 0.00000000 0.00000000 0.00000000## deep 0.00000000 0.01246261 0.00000000## defining 0.00000000 0.00000000 0.01317349## democracies 0.00000000 0.00000000 0.00000000## design 0.01308387 0.00000000 0.01317349## designed 0.01308387 0.00000000 0.00000000## detention 0.00000000 0.00000000 0.01317349## died 0.00000000 0.00000000 0.00000000## direction 0.00000000 0.00000000 0.00000000## disarming 0.00000000 0.00000000 0.00000000## disaster 0.00000000 0.01246261 0.01317349## disrupt 0.00000000 0.00000000 0.01317349## driven 0.01308387 0.01246261 0.00000000## driving 0.00000000 0.00000000 0.01317349## drop 0.00000000 0.01246261 0.00000000## ebola 0.00000000 0.00000000 0.00000000## economists 0.01308387 0.01246261 0.01317349## edward 0.00000000 0.00000000 0.00000000## electricity 0.02616774 0.00000000 0.01317349## electronic 0.02616774 0.00000000 0.01317349## elimination 0.03925160 0.01246261 0.00000000## emerge 0.00000000 0.00000000 0.00000000## encouraging 0.01308387 0.00000000 0.00000000## enduring 0.01308387 0.00000000 0.00000000## engineering 0.01308387 0.00000000 0.01317349## entitlement 0.00000000 0.00000000 0.00000000## establish 0.00000000 0.00000000 0.00000000## european 0.01308387 0.00000000 0.00000000## evening 0.00000000 0.00000000 0.00000000## eventually 0.00000000 0.00000000 0.00000000## expanded 0.00000000 0.00000000 0.00000000## expectations 0.02616774 0.00000000 0.01317349## expensive 0.00000000 0.01246261 0.00000000## facing 0.00000000 0.01246261 0.01317349## fairness 0.00000000 0.00000000 0.01317349## false 0.00000000 0.02492522 0.00000000## father 0.00000000 0.00000000 0.01317349## federally 0.01308387 0.00000000 0.02634699## fighters 0.00000000 0.01246261 0.00000000## financing 0.00000000 0.01246261 0.00000000## fine 0.01308387 0.00000000 0.00000000## fire 0.00000000 0.00000000 0.00000000## firm 0.00000000 0.00000000 0.01317349## followed 0.00000000 0.00000000 0.00000000## fuels 0.00000000 0.00000000 0.01317349## generate 0.00000000 0.00000000 0.00000000## graduates 0.02616774 0.00000000 0.00000000## graduation 0.01308387 0.00000000 0.01317349## hatred 0.00000000 0.00000000 0.00000000## heart 0.00000000 0.00000000 0.00000000## holy 0.00000000 0.00000000 0.00000000## ii 0.00000000 0.00000000 0.00000000## immediately 0.00000000 0.01246261 0.00000000## increasingly 0.00000000 0.00000000 0.00000000## initiatives 0.00000000 0.00000000 0.00000000## inside 0.01308387 0.00000000 0.00000000## institution 0.01308387 0.00000000 0.00000000## invite 0.00000000 0.00000000 0.00000000## isolation 0.00000000 0.01246261 0.00000000## kid 0.01308387 0.00000000 0.02634699## knowing 0.00000000 0.02492522 0.00000000## labs 0.01308387 0.00000000 0.00000000## lands 0.00000000 0.00000000 0.01317349## larger 0.00000000 0.01246261 0.00000000## launching 0.01308387 0.03738784 0.00000000## levels 0.00000000 0.00000000 0.02634699## liberation 0.00000000 0.00000000 0.00000000## lincoln 0.00000000 0.00000000 0.00000000## london 0.00000000 0.01246261 0.00000000## lonely 0.00000000 0.00000000 0.00000000## maintain 0.00000000 0.01246261 0.00000000## marine 0.00000000 0.00000000 0.00000000## marines 0.00000000 0.00000000 0.01317349## meaning 0.00000000 0.00000000 0.00000000## meaningful 0.01308387 0.02492522 0.00000000## member 0.00000000 0.00000000 0.00000000## minister 0.00000000 0.00000000 0.00000000## missions 0.00000000 0.00000000 0.02634699## moments 0.00000000 0.02492522 0.00000000## moved 0.00000000 0.00000000 0.03952048## neighborhoods 0.00000000 0.00000000 0.00000000## noble 0.00000000 0.00000000 0.00000000## nor 0.00000000 0.00000000 0.01317349## oak 0.01308387 0.00000000 0.01317349## onto 0.01308387 0.00000000 0.00000000## oppressed 0.00000000 0.00000000 0.00000000## participation 0.00000000 0.00000000 0.01317349## partnerships 0.01308387 0.01246261 0.02634699## payments 0.00000000 0.01246261 0.01317349## pell 0.00000000 0.02492522 0.00000000## penalty 0.00000000 0.00000000 0.00000000## performance 0.01308387 0.00000000 0.01317349## peril 0.00000000 0.00000000 0.00000000## plants 0.00000000 0.01246261 0.01317349## plot 0.00000000 0.00000000 0.00000000## politicians 0.01308387 0.01246261 0.00000000## pope 0.00000000 0.00000000 0.00000000## practice 0.00000000 0.00000000 0.00000000## preventing 0.01308387 0.00000000 0.01317349## producing 0.00000000 0.00000000 0.00000000## punish 0.00000000 0.00000000 0.01317349## questions 0.01308387 0.01246261 0.00000000## railroad 0.03925160 0.01246261 0.00000000## ran 0.00000000 0.02492522 0.00000000## really 0.01308387 0.00000000 0.00000000## recover 0.00000000 0.02492522 0.00000000## reforming 0.01308387 0.00000000 0.01317349## religious 0.00000000 0.00000000 0.00000000## renewed 0.01308387 0.01246261 0.00000000## respects 0.00000000 0.00000000 0.00000000## respond 0.00000000 0.02492522 0.00000000## retirees 0.01308387 0.00000000 0.00000000## revenues 0.00000000 0.00000000 0.00000000## revolution 0.01308387 0.00000000 0.00000000## room 0.00000000 0.00000000 0.00000000## roosevelt 0.00000000 0.00000000 0.00000000## sake 0.01308387 0.00000000 0.01317349## saved 0.00000000 0.01246261 0.00000000## saying 0.00000000 0.02492522 0.00000000## scores 0.00000000 0.00000000 0.00000000## secret 0.01308387 0.00000000 0.00000000## seize 0.00000000 0.01246261 0.02634699## selling 0.02616774 0.00000000 0.01317349## serves 0.01308387 0.00000000 0.01317349## servicemembers 0.01308387 0.00000000 0.01317349## ship 0.00000000 0.01246261 0.01317349## shoulder 0.00000000 0.00000000 0.01317349## smart 0.01308387 0.00000000 0.01317349## smarter 0.00000000 0.00000000 0.01317349## soldiers 0.00000000 0.00000000 0.00000000## sorrow 0.00000000 0.00000000 0.00000000## stabilization 0.01308387 0.02492522 0.00000000## stable 0.00000000 0.00000000 0.01317349## steven 0.00000000 0.00000000 0.01317349## stockpile 0.00000000 0.01246261 0.01317349## strive 0.00000000 0.00000000 0.00000000## strongest 0.00000000 0.00000000 0.02634699## summer 0.01308387 0.00000000 0.01317349## syrian 0.00000000 0.00000000 0.01317349## systems 0.00000000 0.00000000 0.02634699## tactics 0.00000000 0.00000000 0.00000000## testing 0.00000000 0.00000000 0.00000000## texas 0.01308387 0.00000000 0.00000000## thinking 0.00000000 0.00000000 0.02634699## threatens 0.00000000 0.00000000 0.02634699## torture 0.00000000 0.01246261 0.00000000## tougher 0.01308387 0.00000000 0.00000000## towards 0.01308387 0.00000000 0.00000000## towns 0.00000000 0.01246261 0.00000000## tragedy 0.01308387 0.00000000 0.00000000## transform 0.00000000 0.00000000 0.00000000## transformation 0.01308387 0.00000000 0.00000000## treatments 0.00000000 0.00000000 0.00000000## troubled 0.00000000 0.01246261 0.00000000## tucson 0.05233547 0.00000000 0.00000000## turns 0.00000000 0.01246261 0.01317349## tv 0.02616774 0.01246261 0.00000000## ultimate 0.00000000 0.00000000 0.00000000## uncertainty 0.00000000 0.00000000 0.00000000## unfinished 0.00000000 0.00000000 0.00000000## unity 0.00000000 0.02492522 0.00000000## victims 0.00000000 0.00000000 0.00000000## voting 0.00000000 0.00000000 0.01317349## warren 0.00000000 0.00000000 0.00000000## wasn^t 0.02616774 0.00000000 0.00000000## weak 0.00000000 0.00000000 0.00000000## weakened 0.00000000 0.00000000 0.02634699## wealthy 0.00000000 0.00000000 0.01317349## wherever 0.03925160 0.00000000 0.01317349## wisely 0.00000000 0.00000000 0.00000000## written 0.01308387 0.01246261 0.00000000## accomplish 0.00000000 0.00000000 0.00000000## activities 0.00000000 0.00000000 0.00000000## adults 0.01308387 0.00000000 0.00000000## affairs 0.02616774 0.00000000 0.00000000## aggressively 0.00000000 0.02492522 0.01317349## aim 0.00000000 0.00000000 0.00000000## airports 0.01308387 0.00000000 0.00000000## ally 0.01308387 0.00000000 0.00000000## amanda 0.00000000 0.00000000 0.06586747## americas 0.02616774 0.00000000 0.01317349## announced 0.00000000 0.00000000 0.01317349## anthrax 0.00000000 0.00000000 0.00000000## anywhere 0.00000000 0.00000000 0.00000000## arabia 0.00000000 0.00000000 0.00000000## assume 0.00000000 0.01246261 0.00000000## atlantic 0.01308387 0.00000000 0.00000000## attract 0.02616774 0.00000000 0.00000000## automobile 0.00000000 0.00000000 0.00000000## b 0.02616774 0.00000000 0.00000000## barriers 0.02616774 0.00000000 0.00000000## batteries 0.00000000 0.01246261 0.00000000## behalf 0.00000000 0.01246261 0.00000000## behavior 0.00000000 0.01246261 0.00000000## bench 0.00000000 0.00000000 0.00000000## biofuels 0.01308387 0.02492522 0.00000000## blessed 0.00000000 0.00000000 0.00000000## blow 0.00000000 0.00000000 0.00000000## bonds 0.00000000 0.00000000 0.01317349## boost 0.00000000 0.00000000 0.01317349## bought 0.00000000 0.00000000 0.00000000## brian 0.00000000 0.00000000 0.00000000## british 0.00000000 0.00000000 0.00000000## broadband 0.01308387 0.00000000 0.01317349## broke 0.00000000 0.01246261 0.00000000## brutal 0.00000000 0.00000000 0.00000000## bullet 0.00000000 0.00000000 0.00000000## careers 0.01308387 0.00000000 0.01317349## catastrophic 0.00000000 0.00000000 0.00000000## central 0.01308387 0.00000000 0.00000000## charitable 0.00000000 0.00000000 0.00000000## civilian 0.00000000 0.00000000 0.01317349## claim 0.00000000 0.00000000 0.00000000## clinton 0.00000000 0.00000000 0.00000000## closer 0.00000000 0.01246261 0.01317349## cold 0.00000000 0.00000000 0.02634699## collapse 0.01308387 0.01246261 0.00000000## compassionate 0.00000000 0.00000000 0.00000000## compromise 0.01308387 0.00000000 0.01317349## conflicts 0.00000000 0.00000000 0.01317349## connected 0.00000000 0.01246261 0.01317349## connecting 0.01308387 0.00000000 0.02634699## constitutional 0.00000000 0.00000000 0.01317349## courses 0.00000000 0.00000000 0.00000000## covered 0.01308387 0.00000000 0.03952048## currently 0.01308387 0.00000000 0.00000000## daughters 0.00000000 0.00000000 0.01317349## declined 0.00000000 0.02492522 0.00000000## deduction 0.00000000 0.00000000 0.00000000## defenses 0.00000000 0.00000000 0.01317349## desiline 0.00000000 0.00000000 0.00000000## despair 0.00000000 0.00000000 0.00000000## details 0.01308387 0.00000000 0.00000000## detroit 0.00000000 0.00000000 0.03952048## die 0.00000000 0.00000000 0.00000000## disabilities 0.01308387 0.00000000 0.00000000## disagree 0.00000000 0.01246261 0.00000000## discovery 0.00000000 0.00000000 0.01317349## doors 0.01308387 0.00000000 0.00000000## dozens 0.00000000 0.00000000 0.01317349## dramatic 0.00000000 0.00000000 0.00000000## drawing 0.00000000 0.01246261 0.00000000## drove 0.02616774 0.00000000 0.00000000## duties 0.00000000 0.00000000 0.00000000## eager 0.01308387 0.02492522 0.01317349## earns 0.00000000 0.00000000 0.01317349## economics 0.00000000 0.00000000 0.00000000## embassy 0.00000000 0.00000000 0.00000000## encourages 0.00000000 0.00000000 0.01317349## engine 0.01308387 0.01246261 0.00000000## enormous 0.00000000 0.00000000 0.01317349## epidemic 0.00000000 0.01246261 0.00000000## erler 0.00000000 0.00000000 0.00000000## ethanol 0.00000000 0.01246261 0.00000000## excuse 0.00000000 0.00000000 0.00000000## existing 0.00000000 0.00000000 0.00000000## expected 0.00000000 0.00000000 0.00000000## expenses 0.00000000 0.02492522 0.00000000## extending 0.00000000 0.00000000 0.00000000## extraordinary 0.00000000 0.00000000 0.01317349## faces 0.01308387 0.01246261 0.00000000## faithful 0.00000000 0.00000000 0.00000000## family^s 0.00000000 0.01246261 0.00000000## favor 0.00000000 0.00000000 0.00000000## fee 0.00000000 0.03738784 0.00000000## feet 0.00000000 0.00000000 0.01317349## finding 0.01308387 0.00000000 0.00000000## flag 0.01308387 0.00000000 0.00000000## focused 0.01308387 0.00000000 0.01317349## foreclosure 0.00000000 0.01246261 0.00000000## form 0.00000000 0.00000000 0.00000000## fourth 0.00000000 0.01246261 0.00000000## framework 0.00000000 0.00000000 0.00000000## freedom^s 0.00000000 0.00000000 0.00000000## gathered 0.00000000 0.00000000 0.00000000## giffords 0.02616774 0.00000000 0.00000000## govern 0.00000000 0.02492522 0.00000000## governing 0.01308387 0.00000000 0.00000000## governors 0.01308387 0.00000000 0.02634699## grant 0.00000000 0.00000000 0.00000000## gravest 0.00000000 0.00000000 0.00000000## grid 0.00000000 0.00000000 0.00000000## grief 0.00000000 0.00000000 0.00000000## grit 0.00000000 0.01246261 0.01317349## guard 0.00000000 0.01246261 0.00000000## haiti 0.00000000 0.06231306 0.00000000## hasn^t 0.01308387 0.00000000 0.00000000## hate 0.00000000 0.02492522 0.00000000## healing 0.00000000 0.00000000 0.00000000## healthier 0.00000000 0.01246261 0.00000000## highways 0.00000000 0.00000000 0.00000000## hizballah 0.00000000 0.00000000 0.02634699## honorable 0.00000000 0.01246261 0.00000000## hospital 0.00000000 0.00000000 0.01317349## hubs 0.00000000 0.00000000 0.02634699## hydrogen 0.00000000 0.00000000 0.00000000## ideological 0.00000000 0.00000000 0.00000000## impose 0.00000000 0.00000000 0.00000000## impossible 0.00000000 0.00000000 0.00000000## include 0.00000000 0.00000000 0.00000000## inspire 0.02616774 0.00000000 0.00000000## investors 0.00000000 0.00000000 0.00000000## irresponsible 0.00000000 0.00000000 0.00000000## islam 0.00000000 0.00000000 0.00000000## isolated 0.00000000 0.01246261 0.00000000## j 0.00000000 0.00000000 0.00000000## journey 0.01308387 0.00000000 0.00000000## julie 0.00000000 0.00000000 0.00000000## kentucky 0.00000000 0.00000000 0.03952048## l 0.00000000 0.00000000 0.03952048## lady 0.00000000 0.01246261 0.01317349## lawyers 0.01308387 0.00000000 0.00000000## laying 0.01308387 0.00000000 0.00000000## lessons 0.00000000 0.00000000 0.00000000## lets 0.00000000 0.01246261 0.01317349## lifting 0.00000000 0.01246261 0.01317349## loved 0.00000000 0.00000000 0.01317349## lowest 0.01308387 0.00000000 0.01317349## manufacturer 0.00000000 0.01246261 0.00000000## mccain 0.00000000 0.00000000 0.00000000## meant 0.02616774 0.00000000 0.01317349## measured 0.01308387 0.00000000 0.00000000## minds 0.01308387 0.00000000 0.00000000## minorities 0.00000000 0.00000000 0.00000000## modernize 0.00000000 0.00000000 0.00000000## modest 0.00000000 0.01246261 0.00000000## momentum 0.00000000 0.00000000 0.00000000## monthly 0.00000000 0.01246261 0.01317349## mother 0.01308387 0.00000000 0.03952048## muslims 0.01308387 0.00000000 0.00000000## near 0.01308387 0.00000000 0.00000000## needless 0.00000000 0.00000000 0.01317349## negotiate 0.00000000 0.00000000 0.02634699## newtown 0.00000000 0.00000000 0.00000000## nobody 0.00000000 0.00000000 0.01317349## numbers 0.00000000 0.01246261 0.01317349## nurses 0.00000000 0.01246261 0.00000000## opening 0.00000000 0.01246261 0.00000000## oppose 0.00000000 0.00000000 0.00000000## opposition 0.00000000 0.00000000 0.01317349## organized 0.00000000 0.00000000 0.01317349## otherwise 0.00000000 0.01246261 0.00000000## outside 0.00000000 0.00000000 0.01317349## painful 0.02616774 0.00000000 0.00000000## paris 0.00000000 0.00000000 0.00000000## passion 0.01308387 0.00000000 0.00000000## patriot 0.00000000 0.00000000 0.00000000## pentagon 0.01308387 0.00000000 0.00000000## performing 0.00000000 0.00000000 0.00000000## permanently 0.00000000 0.00000000 0.00000000## placed 0.01308387 0.00000000 0.01317349## pleased 0.00000000 0.00000000 0.00000000## pledged 0.00000000 0.00000000 0.01317349## plenty 0.00000000 0.00000000 0.01317349## points 0.00000000 0.00000000 0.00000000## population 0.00000000 0.00000000 0.00000000## ports 0.00000000 0.00000000 0.01317349## pose 0.00000000 0.00000000 0.00000000## possibility 0.00000000 0.00000000 0.00000000## prayers 0.00000000 0.00000000 0.00000000## preparing 0.00000000 0.00000000 0.01317349## prevented 0.00000000 0.00000000 0.00000000## principal 0.02616774 0.01246261 0.00000000## principled 0.01308387 0.00000000 0.01317349## productive 0.01308387 0.00000000 0.00000000## profound 0.00000000 0.00000000 0.01317349## prosperous 0.01308387 0.00000000 0.00000000## proven 0.00000000 0.00000000 0.01317349## pursuit 0.00000000 0.01246261 0.00000000## push 0.01308387 0.00000000 0.00000000## puts 0.00000000 0.01246261 0.00000000## quit 0.00000000 0.03738784 0.01317349## rail 0.03925160 0.01246261 0.00000000## range 0.00000000 0.00000000 0.00000000## reaching 0.00000000 0.01246261 0.03952048## reagan 0.00000000 0.01246261 0.02634699## reasons 0.00000000 0.00000000 0.01317349## reauthorize 0.00000000 0.00000000 0.00000000## recommendations 0.00000000 0.00000000 0.00000000## recruit 0.00000000 0.00000000 0.00000000## reduces 0.00000000 0.00000000 0.00000000## refinance 0.00000000 0.00000000 0.00000000## reflects 0.00000000 0.00000000 0.00000000## rejects 0.00000000 0.00000000 0.01317349## relationship 0.01308387 0.00000000 0.01317349## religion 0.01308387 0.00000000 0.01317349## remaining 0.00000000 0.00000000 0.02634699## reminded 0.01308387 0.00000000 0.00000000## removed 0.01308387 0.00000000 0.00000000## repair 0.01308387 0.00000000 0.00000000## repeal 0.01308387 0.02492522 0.01317349## reserve 0.00000000 0.00000000 0.00000000## resilience 0.00000000 0.01246261 0.00000000## restart 0.00000000 0.00000000 0.00000000## restraint 0.01308387 0.01246261 0.00000000## retire 0.00000000 0.01246261 0.00000000## revealed 0.00000000 0.01246261 0.00000000## rewarding 0.00000000 0.01246261 0.00000000## rewards 0.00000000 0.01246261 0.00000000## romney 0.00000000 0.00000000 0.02634699## ryan 0.00000000 0.00000000 0.00000000## sacred 0.00000000 0.00000000 0.00000000## sandy 0.00000000 0.00000000 0.01317349## season 0.00000000 0.00000000 0.00000000## seeking 0.00000000 0.00000000 0.00000000## seeks 0.00000000 0.01246261 0.00000000## seem 0.00000000 0.00000000 0.00000000## self-government 0.00000000 0.00000000 0.01317349## servants 0.00000000 0.01246261 0.00000000## sets 0.02616774 0.00000000 0.01317349## short 0.00000000 0.00000000 0.00000000## shows 0.00000000 0.00000000 0.01317349## shut 0.00000000 0.00000000 0.01317349## sides 0.01308387 0.00000000 0.00000000## skies 0.01308387 0.00000000 0.00000000## skilled 0.00000000 0.00000000 0.00000000## solved 0.00000000 0.00000000 0.00000000## somebody 0.00000000 0.00000000 0.00000000## somehow 0.00000000 0.00000000 0.00000000## specific 0.00000000 0.02492522 0.02634699## speech 0.00000000 0.00000000 0.00000000## spill 0.00000000 0.00000000 0.00000000## spring 0.00000000 0.00000000 0.01317349## stewards 0.00000000 0.00000000 0.00000000## stopping 0.00000000 0.00000000 0.00000000## strengths 0.00000000 0.00000000 0.00000000## strikes 0.00000000 0.00000000 0.01317349## subject 0.00000000 0.01246261 0.00000000## submit 0.01308387 0.00000000 0.00000000## subsidizing 0.01308387 0.00000000 0.00000000## succeeded 0.01308387 0.00000000 0.00000000## sunni 0.00000000 0.00000000 0.00000000## talks 0.01308387 0.00000000 0.02634699## tells 0.01308387 0.00000000 0.00000000## term 0.00000000 0.00000000 0.00000000## tested 0.00000000 0.02492522 0.00000000## thomas 0.00000000 0.00000000 0.01317349## tight-knit 0.00000000 0.00000000 0.01317349## tom 0.02616774 0.00000000 0.01317349## trapped 0.01308387 0.00000000 0.01317349## treating 0.00000000 0.00000000 0.00000000## trial 0.00000000 0.00000000 0.00000000## undermine 0.00000000 0.00000000 0.00000000## unfortunately 0.00000000 0.01246261 0.00000000## universal 0.00000000 0.00000000 0.00000000## university 0.00000000 0.00000000 0.00000000## veteran 0.00000000 0.00000000 0.00000000## view 0.01308387 0.00000000 0.00000000## violated 0.00000000 0.00000000 0.01317349## visit 0.00000000 0.02492522 0.00000000## volunteers 0.00000000 0.00000000 0.00000000## wake 0.01308387 0.02492522 0.00000000## watched 0.00000000 0.00000000 0.00000000## waters 0.03925160 0.00000000 0.00000000## whom 0.00000000 0.00000000 0.00000000## willingness 0.00000000 0.00000000 0.00000000## women^s 0.00000000 0.00000000 0.01317349## youth 0.00000000 0.00000000 0.00000000## abuses 0.00000000 0.01246261 0.00000000## achieving 0.00000000 0.00000000 0.00000000## acres 0.01308387 0.00000000 0.00000000## affected 0.00000000 0.01246261 0.00000000## afflicted 0.00000000 0.00000000 0.00000000## afghans 0.01308387 0.01246261 0.00000000## aggression 0.00000000 0.00000000 0.00000000## aging 0.00000000 0.00000000 0.00000000## aisle 0.00000000 0.00000000 0.00000000## alike 0.00000000 0.01246261 0.00000000## alliance 0.00000000 0.00000000 0.02634699## alltime 0.00000000 0.00000000 0.00000000## amnesty 0.00000000 0.00000000 0.00000000## analyze 0.00000000 0.00000000 0.00000000## andra 0.00000000 0.00000000 0.05269398## annual 0.02616774 0.00000000 0.00000000## appointed 0.00000000 0.00000000 0.01317349## approved 0.01308387 0.00000000 0.00000000## arbitrary 0.00000000 0.00000000 0.00000000## argued 0.00000000 0.00000000 0.01317349## argument 0.00000000 0.01246261 0.01317349## arrested 0.00000000 0.00000000 0.00000000## ashley 0.00000000 0.00000000 0.00000000## assembling 0.00000000 0.00000000 0.00000000## association 0.00000000 0.00000000 0.00000000## atomic 0.00000000 0.00000000 0.00000000## attempt 0.00000000 0.01246261 0.00000000## attorney 0.00000000 0.00000000 0.00000000## authorities 0.00000000 0.00000000 0.00000000## automakers 0.00000000 0.00000000 0.01317349## automobiles 0.00000000 0.00000000 0.00000000## aware 0.00000000 0.00000000 0.00000000## background 0.00000000 0.00000000 0.00000000## backgrounds 0.01308387 0.01246261 0.00000000## bankruptcy 0.00000000 0.00000000 0.01317349## barely 0.00000000 0.00000000 0.02634699## battery 0.00000000 0.00000000 0.00000000## bauer 0.00000000 0.00000000 0.02634699## bear 0.00000000 0.00000000 0.01317349## beliefs 0.01308387 0.01246261 0.00000000## believes 0.00000000 0.00000000 0.00000000## ben 0.00000000 0.00000000 0.00000000## benjamin 0.00000000 0.00000000 0.02634699## blame 0.00000000 0.02492522 0.00000000## blood 0.00000000 0.00000000 0.00000000## board 0.00000000 0.00000000 0.01317349## boldly 0.00000000 0.00000000 0.00000000## boom 0.00000000 0.00000000 0.00000000## booming 0.01308387 0.00000000 0.01317349## botulinum 0.00000000 0.00000000 0.00000000## branches 0.00000000 0.00000000 0.00000000## britain 0.00000000 0.00000000 0.00000000## broadly 0.00000000 0.00000000 0.00000000## bryan 0.00000000 0.00000000 0.00000000## builds 0.00000000 0.00000000 0.00000000## burdens 0.00000000 0.02492522 0.01317349## calls 0.01308387 0.00000000 0.00000000## calm 0.00000000 0.00000000 0.00000000## capabilities 0.00000000 0.00000000 0.01317349## capable 0.00000000 0.00000000 0.00000000## carried 0.00000000 0.00000000 0.00000000## carrying 0.00000000 0.00000000 0.01317349## cast 0.00000000 0.00000000 0.01317349## cell 0.00000000 0.00000000 0.00000000## centers 0.00000000 0.00000000 0.00000000## ceos 0.00000000 0.00000000 0.01317349## charities 0.00000000 0.00000000 0.00000000## chose 0.00000000 0.02492522 0.00000000## chosen 0.00000000 0.00000000 0.00000000## classrooms 0.02616774 0.00000000 0.00000000## clearly 0.00000000 0.01246261 0.00000000## cloning 0.00000000 0.00000000 0.00000000## closing 0.00000000 0.00000000 0.00000000## closure 0.00000000 0.00000000 0.01317349## coalitions 0.01308387 0.00000000 0.00000000## cochairs 0.00000000 0.00000000 0.01317349## combined 0.00000000 0.00000000 0.00000000## commander 0.00000000 0.00000000 0.01317349## competitors 0.00000000 0.01246261 0.00000000## concluded 0.00000000 0.00000000 0.00000000## condition 0.01308387 0.00000000 0.02634699## confirmation 0.00000000 0.02492522 0.00000000## confronted 0.00000000 0.01246261 0.00000000## congresses 0.00000000 0.00000000 0.00000000## conquest 0.00000000 0.00000000 0.00000000## consequences 0.00000000 0.01246261 0.00000000## conservative 0.00000000 0.00000000 0.01317349## consumed 0.00000000 0.00000000 0.01317349## contained 0.00000000 0.00000000 0.00000000## contentious 0.02616774 0.02492522 0.00000000## continues 0.00000000 0.00000000 0.00000000## contribute 0.00000000 0.01246261 0.02634699## convictions 0.00000000 0.01246261 0.00000000## convinced 0.00000000 0.01246261 0.01317349## cops 0.00000000 0.01246261 0.00000000## core 0.00000000 0.01246261 0.01317349## counsel 0.00000000 0.00000000 0.01317349## country^s 0.00000000 0.00000000 0.02634699## creativity 0.01308387 0.00000000 0.00000000## creed 0.01308387 0.00000000 0.01317349## creek 0.00000000 0.00000000 0.00000000## criminal 0.00000000 0.00000000 0.00000000## critics 0.00000000 0.00000000 0.00000000## cynical 0.00000000 0.00000000 0.00000000## daily 0.00000000 0.00000000 0.00000000## daughter 0.00000000 0.00000000 0.01317349## dealing 0.00000000 0.02492522 0.01317349## deals 0.01308387 0.01246261 0.00000000## dealt 0.00000000 0.00000000 0.00000000## debating 0.00000000 0.00000000 0.00000000## deceiving 0.00000000 0.00000000 0.00000000## decided 0.00000000 0.01246261 0.00000000## dedicated 0.00000000 0.00000000 0.00000000## deductions 0.00000000 0.01246261 0.00000000## deeper 0.01308387 0.00000000 0.00000000## delay 0.00000000 0.02492522 0.00000000## delivering 0.00000000 0.00000000 0.00000000## demanding 0.00000000 0.00000000 0.01317349## deploy 0.01308387 0.00000000 0.00000000## deploying 0.00000000 0.00000000 0.00000000## describes 0.00000000 0.00000000 0.00000000## diplomats 0.00000000 0.00000000 0.01317349## directing 0.00000000 0.00000000 0.00000000## disadvantaged 0.00000000 0.00000000 0.00000000## discuss 0.00000000 0.00000000 0.00000000## discussion 0.00000000 0.01246261 0.00000000## disruptions 0.00000000 0.00000000 0.00000000## divided 0.00000000 0.00000000 0.00000000## drawn 0.00000000 0.00000000 0.00000000## drilling 0.03925160 0.00000000 0.00000000## drives 0.01308387 0.00000000 0.01317349## earning 0.01308387 0.00000000 0.01317349## earnings 0.00000000 0.00000000 0.00000000## egg 0.00000000 0.01246261 0.01317349## elements 0.00000000 0.00000000 0.01317349## employer 0.00000000 0.00000000 0.01317349## empty 0.02616774 0.00000000 0.01317349## encouraged 0.00000000 0.01246261 0.01317349## endure 0.00000000 0.00000000 0.00000000## engage 0.00000000 0.00000000 0.01317349## engaged 0.00000000 0.00000000 0.01317349## enlisting 0.01308387 0.00000000 0.00000000## enter 0.00000000 0.00000000 0.00000000## entering 0.00000000 0.00000000 0.01317349## environmental 0.00000000 0.00000000 0.00000000## envy 0.00000000 0.00000000 0.00000000## ethical 0.00000000 0.00000000 0.00000000## excessive 0.01308387 0.00000000 0.00000000## extreme 0.00000000 0.00000000 0.01317349## falling 0.00000000 0.00000000 0.01317349## fate 0.00000000 0.00000000 0.00000000## feeding 0.00000000 0.00000000 0.00000000## finances 0.00000000 0.00000000 0.01317349## firefighters 0.00000000 0.01246261 0.00000000## flexibility 0.00000000 0.00000000 0.00000000## flowing 0.01308387 0.00000000 0.00000000## flying 0.02616774 0.00000000 0.00000000## forests 0.00000000 0.00000000 0.00000000## forever 0.00000000 0.00000000 0.00000000## forms 0.00000000 0.00000000 0.00000000## forth 0.00000000 0.00000000 0.00000000## francis 0.00000000 0.00000000 0.00000000## friendship 0.00000000 0.00000000 0.00000000## fulfill 0.00000000 0.00000000 0.01317349## fulfilled 0.01308387 0.01246261 0.00000000## full-time 0.00000000 0.00000000 0.01317349## gained 0.00000000 0.00000000 0.01317349## games 0.00000000 0.00000000 0.02634699## gap 0.00000000 0.01246261 0.00000000## gasoline 0.00000000 0.00000000 0.00000000## gate 0.00000000 0.00000000 0.00000000## gates 0.01308387 0.00000000 0.00000000## generates 0.00000000 0.00000000 0.00000000## generosity 0.00000000 0.00000000 0.00000000## grade 0.00000000 0.00000000 0.00000000## grades 0.00000000 0.00000000 0.00000000## gradually 0.00000000 0.00000000 0.00000000## grasp 0.00000000 0.00000000 0.00000000## gratitude 0.00000000 0.01246261 0.00000000## guest 0.00000000 0.00000000 0.00000000## guided 0.00000000 0.00000000 0.00000000## hall 0.00000000 0.00000000 0.00000000## happy 0.00000000 0.00000000 0.00000000## harbor 0.00000000 0.00000000 0.00000000## hatch 0.00000000 0.00000000 0.00000000## hated 0.00000000 0.04985045 0.00000000## hearing 0.00000000 0.00000000 0.01317349## hemisphere 0.01308387 0.00000000 0.00000000## heroes 0.00000000 0.00000000 0.01317349## hiding 0.00000000 0.00000000 0.00000000## highs 0.00000000 0.01246261 0.00000000## himself 0.00000000 0.01246261 0.00000000## hole 0.01308387 0.02492522 0.00000000## homeownership 0.00000000 0.01246261 0.00000000## hopeless 0.00000000 0.00000000 0.00000000## hot 0.00000000 0.00000000 0.00000000## humane 0.00000000 0.00000000 0.00000000## hunger 0.00000000 0.00000000 0.00000000## husband 0.00000000 0.00000000 0.02634699## idealism 0.00000000 0.00000000 0.00000000## identified 0.00000000 0.01246261 0.00000000## ideologies 0.00000000 0.00000000 0.00000000## illness 0.00000000 0.01246261 0.00000000## imagined 0.00000000 0.00000000 0.00000000## imports 0.00000000 0.00000000 0.01317349## improved 0.01308387 0.00000000 0.00000000## inspired 0.00000000 0.00000000 0.00000000## institutes 0.00000000 0.00000000 0.00000000## interested 0.00000000 0.03738784 0.01317349## jackie 0.00000000 0.00000000 0.00000000## jeopardize 0.00000000 0.01246261 0.00000000## johnson 0.00000000 0.00000000 0.00000000## jordan 0.00000000 0.00000000 0.00000000## josefina 0.00000000 0.00000000 0.00000000## july 0.01308387 0.01246261 0.00000000## junk 0.00000000 0.00000000 0.00000000## k 0.00000000 0.00000000 0.01317349## knowledge 0.00000000 0.00000000 0.00000000## latino 0.01308387 0.00000000 0.00000000## layoffs 0.00000000 0.00000000 0.00000000## legitimate 0.00000000 0.00000000 0.00000000## lenders 0.00000000 0.01246261 0.01317349## lesson 0.00000000 0.00000000 0.00000000## levant 0.00000000 0.00000000 0.00000000## leverage 0.00000000 0.00000000 0.00000000## liberal 0.00000000 0.00000000 0.02634699## lies 0.00000000 0.00000000 0.00000000## light 0.01308387 0.00000000 0.00000000## liters 0.00000000 0.00000000 0.00000000## lived 0.00000000 0.00000000 0.00000000## locate 0.00000000 0.00000000 0.01317349## losses 0.00000000 0.01246261 0.00000000## malaria 0.00000000 0.00000000 0.00000000## master 0.00000000 0.00000000 0.00000000## match 0.00000000 0.00000000 0.01317349## meets 0.00000000 0.00000000 0.00000000## mentor 0.00000000 0.00000000 0.00000000## mercy 0.00000000 0.00000000 0.00000000## mexico 0.00000000 0.00000000 0.00000000## midst 0.00000000 0.01246261 0.01317349## militia 0.00000000 0.00000000 0.00000000## millionaires 0.01308387 0.00000000 0.00000000## mine 0.02616774 0.00000000 0.00000000## mitt 0.00000000 0.00000000 0.02634699## morning 0.00000000 0.00000000 0.01317349## mourning 0.00000000 0.00000000 0.00000000## movements 0.00000000 0.00000000 0.00000000## moves 0.00000000 0.00000000 0.00000000## name 0.00000000 0.00000000 0.00000000## nancy 0.00000000 0.01246261 0.00000000## native 0.01308387 0.00000000 0.00000000## nature 0.00000000 0.00000000 0.00000000## naval 0.00000000 0.00000000 0.01317349## nearing 0.00000000 0.00000000 0.00000000## nest 0.00000000 0.01246261 0.01317349## newly 0.00000000 0.00000000 0.00000000## norwood 0.00000000 0.00000000 0.00000000## notice 0.00000000 0.00000000 0.00000000## notion 0.00000000 0.01246261 0.01317349## obesity 0.00000000 0.02492522 0.02634699## offering 0.00000000 0.00000000 0.01317349## offshore 0.00000000 0.01246261 0.00000000## ohio 0.00000000 0.01246261 0.01317349## ongoing 0.00000000 0.00000000 0.00000000## oppression 0.00000000 0.00000000 0.00000000## orrin 0.00000000 0.00000000 0.00000000## outlined 0.00000000 0.00000000 0.01317349## outsourcing 0.00000000 0.01246261 0.00000000## overnight 0.00000000 0.00000000 0.01317349## oversight 0.00000000 0.01246261 0.00000000## ownership 0.00000000 0.00000000 0.01317349## pacific 0.01308387 0.01246261 0.00000000## pain 0.00000000 0.01246261 0.02634699## palestine 0.00000000 0.00000000 0.00000000## palestinians 0.00000000 0.00000000 0.02634699## partnering 0.00000000 0.00000000 0.01317349## payment 0.00000000 0.00000000 0.01317349## pelosi 0.00000000 0.01246261 0.00000000## perhaps 0.00000000 0.01246261 0.00000000## permitted 0.00000000 0.00000000 0.00000000## persian 0.00000000 0.00000000 0.00000000## philadelphia 0.00000000 0.01246261 0.00000000## plague 0.00000000 0.00000000 0.00000000## plotting 0.00000000 0.00000000 0.00000000## pocket 0.00000000 0.00000000 0.00000000## position 0.00000000 0.00000000 0.00000000## positioned 0.00000000 0.00000000 0.02634699## possibilities 0.00000000 0.00000000 0.01317349## pray 0.01308387 0.00000000 0.00000000## pre-k 0.00000000 0.00000000 0.03952048## precisely 0.00000000 0.02492522 0.00000000## preschool 0.00000000 0.00000000 0.00000000## present 0.00000000 0.00000000 0.00000000## previous 0.00000000 0.00000000 0.00000000## pride 0.01308387 0.01246261 0.00000000## probably 0.01308387 0.00000000 0.00000000## profit 0.00000000 0.01246261 0.00000000## prohibited 0.00000000 0.01246261 0.00000000## prove 0.00000000 0.00000000 0.00000000## purposes 0.00000000 0.00000000 0.00000000## qualities 0.00000000 0.00000000 0.00000000## quantities 0.00000000 0.00000000 0.00000000## quiet 0.00000000 0.00000000 0.00000000## raclin 0.00000000 0.00000000 0.00000000## rapidly 0.00000000 0.00000000 0.01317349## reaction 0.00000000 0.00000000 0.00000000## reality 0.00000000 0.01246261 0.00000000## reckless 0.00000000 0.00000000 0.00000000## records 0.01308387 0.00000000 0.00000000## regulation 0.00000000 0.00000000 0.00000000## rein 0.02616774 0.01246261 0.00000000## release 0.01308387 0.01246261 0.00000000## relent 0.01308387 0.00000000 0.00000000## remind 0.00000000 0.01246261 0.01317349## reminder 0.00000000 0.00000000 0.00000000## repayment 0.00000000 0.01246261 0.01317349## reports 0.00000000 0.00000000 0.00000000## represent 0.00000000 0.00000000 0.01317349## representative 0.00000000 0.00000000 0.00000000## represents 0.01308387 0.00000000 0.00000000## requiring 0.00000000 0.00000000 0.01317349## rescued 0.01308387 0.01246261 0.01317349## responsibly 0.00000000 0.01246261 0.00000000## rigged 0.01308387 0.00000000 0.00000000## ronald 0.00000000 0.01246261 0.02634699## rostrum 0.00000000 0.00000000 0.00000000## ruin 0.00000000 0.01246261 0.00000000## san 0.01308387 0.00000000 0.00000000## scientific 0.00000000 0.01246261 0.00000000## search 0.00000000 0.00000000 0.00000000## seems 0.00000000 0.01246261 0.00000000## senators 0.00000000 0.01246261 0.00000000## shadow 0.00000000 0.00000000 0.00000000## shield 0.00000000 0.00000000 0.00000000## shore 0.00000000 0.02492522 0.00000000## showed 0.00000000 0.00000000 0.00000000## siemens 0.00000000 0.00000000 0.00000000## site 0.01308387 0.01246261 0.00000000## six 0.00000000 0.00000000 0.01317349## skeptical 0.00000000 0.02492522 0.00000000## slipped 0.01308387 0.00000000 0.00000000## somewhere 0.01308387 0.00000000 0.00000000## southeast 0.00000000 0.00000000 0.00000000## sparing 0.00000000 0.00000000 0.00000000## sports 0.00000000 0.00000000 0.01317349## spouses 0.00000000 0.00000000 0.01317349## spreading 0.00000000 0.00000000 0.00000000## spur 0.01308387 0.00000000 0.00000000## st-century 0.01308387 0.00000000 0.00000000## stamp 0.00000000 0.00000000 0.00000000## star 0.00000000 0.00000000 0.00000000## stays 0.00000000 0.00000000 0.00000000## storm 0.00000000 0.01246261 0.00000000## straits 0.00000000 0.00000000 0.00000000## strategies 0.00000000 0.00000000 0.00000000## strengthened 0.01308387 0.03738784 0.00000000## striving 0.00000000 0.00000000 0.00000000## strongholds 0.01308387 0.00000000 0.00000000## struggles 0.00000000 0.02492522 0.01317349## successful 0.01308387 0.00000000 0.00000000## sudan 0.03925160 0.00000000 0.00000000## sufficient 0.00000000 0.00000000 0.00000000## supposed 0.00000000 0.00000000 0.00000000## supreme 0.00000000 0.01246261 0.00000000## table 0.00000000 0.00000000 0.00000000## tackle 0.01308387 0.02492522 0.00000000## talented 0.01308387 0.00000000 0.00000000## talking 0.00000000 0.00000000 0.00000000## target 0.00000000 0.00000000 0.00000000## targeted 0.00000000 0.00000000 0.01317349## tech 0.02616774 0.00000000 0.01317349## tehran 0.00000000 0.00000000 0.00000000## territories 0.00000000 0.00000000 0.00000000## territory 0.00000000 0.00000000 0.00000000## they^d 0.00000000 0.00000000 0.00000000## thriving 0.01308387 0.00000000 0.00000000## tide 0.00000000 0.00000000 0.00000000## tie 0.00000000 0.00000000 0.00000000## ties 0.00000000 0.00000000 0.01317349## tone 0.00000000 0.01246261 0.00000000## tool 0.00000000 0.00000000 0.00000000## toxin 0.00000000 0.00000000 0.00000000## trading 0.00000000 0.01246261 0.00000000## trains 0.01308387 0.01246261 0.00000000## trans-pacific 0.00000000 0.00000000 0.00000000## transforming 0.00000000 0.00000000 0.00000000## treasury 0.00000000 0.01246261 0.02634699## trends 0.00000000 0.00000000 0.01317349## tribal 0.01308387 0.00000000 0.00000000## trusting 0.00000000 0.00000000 0.00000000## tunisia 0.03925160 0.00000000 0.01317349## tyrants 0.00000000 0.00000000 0.00000000## uncovered 0.00000000 0.00000000 0.00000000## understood 0.00000000 0.00000000 0.00000000## unfairly 0.00000000 0.00000000 0.00000000## unions 0.00000000 0.00000000 0.00000000## up-or-down 0.00000000 0.00000000 0.00000000## upgrade 0.00000000 0.00000000 0.00000000## upholds 0.00000000 0.00000000 0.00000000## usa 0.00000000 0.00000000 0.00000000## usher 0.01308387 0.01246261 0.01317349## verge 0.00000000 0.01246261 0.00000000## verify 0.00000000 0.00000000 0.01317349## wanted 0.00000000 0.00000000 0.01317349## warfare 0.00000000 0.00000000 0.00000000## warning 0.00000000 0.00000000 0.00000000## warriors 0.00000000 0.00000000 0.01317349## wave 0.01308387 0.00000000 0.01317349## weaken 0.00000000 0.00000000 0.00000000## wear 0.00000000 0.00000000 0.00000000## web 0.01308387 0.01246261 0.00000000## weight 0.01308387 0.01246261 0.00000000## welfare 0.00000000 0.00000000 0.00000000## western 0.01308387 0.00000000 0.01317349## won 0.00000000 0.00000000 0.00000000## wonder 0.00000000 0.02492522 0.00000000## world-class 0.00000000 0.01246261 0.01317349## wouldn^t 0.00000000 0.03738784 0.00000000## wounded 0.00000000 0.00000000 0.01317349## year^s 0.00000000 0.01246261 0.02634699## you^d 0.02616774 0.00000000 0.01317349## yours 0.00000000 0.01246261 0.00000000## zarqawi 0.00000000 0.00000000 0.00000000## -percent 0.00000000 0.00000000 0.00000000## -year-old 0.00000000 0.01246261 0.01317349## abbas 0.00000000 0.00000000 0.00000000## abortion 0.00000000 0.00000000 0.00000000## abortions 0.00000000 0.00000000 0.00000000## abraham 0.00000000 0.00000000 0.00000000## abstinence 0.00000000 0.00000000 0.00000000## accelerate 0.00000000 0.00000000 0.00000000## accepted 0.00000000 0.00000000 0.00000000## accompany 0.00000000 0.00000000 0.00000000## accomplished 0.00000000 0.00000000 0.00000000## accountants 0.01308387 0.00000000 0.00000000## achievements 0.00000000 0.00000000 0.00000000## acknowledge 0.00000000 0.01246261 0.00000000## acting 0.00000000 0.00000000 0.00000000## activist 0.00000000 0.00000000 0.00000000## addition 0.00000000 0.00000000 0.00000000## addressing 0.00000000 0.02492522 0.00000000## adds 0.00000000 0.00000000 0.00000000## administered 0.01308387 0.00000000 0.00000000## administrations 0.00000000 0.02492522 0.00000000## adult 0.00000000 0.00000000 0.00000000## advocate 0.00000000 0.01246261 0.00000000## affect 0.00000000 0.00000000 0.00000000## airline 0.00000000 0.02492522 0.00000000## alive 0.00000000 0.01246261 0.01317349## all-of-the-above 0.00000000 0.00000000 0.01317349## ambition 0.00000000 0.00000000 0.00000000## anew 0.00000000 0.01246261 0.00000000## answers 0.00000000 0.00000000 0.00000000## anxious 0.00000000 0.00000000 0.00000000## appreciate 0.00000000 0.00000000 0.01317349## arab 0.00000000 0.00000000 0.00000000## arabian 0.01308387 0.01246261 0.00000000## area 0.00000000 0.01246261 0.00000000## arizona 0.01308387 0.00000000 0.01317349## arm 0.00000000 0.00000000 0.01317349## armies 0.00000000 0.00000000 0.00000000## arsenal 0.00000000 0.00000000 0.00000000## arsenals 0.00000000 0.00000000 0.00000000## asia-pacific 0.00000000 0.00000000 0.02634699## asks 0.00000000 0.00000000 0.00000000## assassins 0.00000000 0.00000000 0.00000000## attempted 0.00000000 0.00000000 0.00000000## attitude 0.00000000 0.00000000 0.00000000## audience 0.00000000 0.00000000 0.01317349## august 0.00000000 0.01246261 0.00000000## aung 0.00000000 0.00000000 0.00000000## australia 0.00000000 0.00000000 0.00000000## authorize 0.00000000 0.00000000 0.00000000## avoiding 0.00000000 0.00000000 0.00000000## backed 0.00000000 0.00000000 0.02634699## bailouts 0.00000000 0.00000000 0.00000000## ballistic 0.00000000 0.00000000 0.00000000## ballot 0.00000000 0.00000000 0.00000000## bankrupt 0.00000000 0.00000000 0.00000000## bargain 0.00000000 0.00000000 0.00000000## battered 0.00000000 0.00000000 0.01317349## battlefield 0.02616774 0.00000000 0.00000000## becomes 0.00000000 0.00000000 0.00000000## becoming 0.00000000 0.00000000 0.01317349## belong 0.00000000 0.00000000 0.01317349## beloved 0.00000000 0.00000000 0.00000000## below 0.00000000 0.00000000 0.00000000## benghazi 0.00000000 0.00000000 0.00000000## berlin 0.02616774 0.00000000 0.00000000## bet 0.00000000 0.00000000 0.00000000## bioterrorism 0.00000000 0.01246261 0.00000000## bisexual 0.00000000 0.00000000 0.01317349## blows 0.00000000 0.00000000 0.01317349## blueprint 0.00000000 0.00000000 0.00000000## bob 0.00000000 0.00000000 0.00000000## bombing 0.00000000 0.01246261 0.00000000## bombs 0.00000000 0.00000000 0.00000000## boss 0.00000000 0.01246261 0.01317349## boston 0.00000000 0.00000000 0.00000000## brain 0.01308387 0.00000000 0.01317349## brand 0.00000000 0.00000000 0.00000000## breakthrough 0.00000000 0.00000000 0.01317349## bubble 0.00000000 0.01246261 0.01317349## bucks 0.00000000 0.00000000 0.01317349## budgets 0.00000000 0.00000000 0.00000000## burdened 0.00000000 0.00000000 0.00000000## bureaucrats 0.00000000 0.00000000 0.00000000## burn 0.00000000 0.00000000 0.00000000## burning 0.01308387 0.00000000 0.00000000## busy 0.01308387 0.01246261 0.00000000## byron 0.00000000 0.00000000 0.00000000## cabinet 0.00000000 0.00000000 0.00000000## candid 0.00000000 0.00000000 0.00000000## cap 0.00000000 0.00000000 0.01317349## cards 0.01308387 0.00000000 0.00000000## carefully 0.00000000 0.00000000 0.00000000## cents 0.00000000 0.00000000 0.03952048## centuries 0.02616774 0.01246261 0.00000000## certainly 0.00000000 0.01246261 0.00000000## chair 0.01308387 0.01246261 0.00000000## chances 0.01308387 0.00000000 0.00000000## chapter 0.00000000 0.00000000 0.00000000## charges 0.00000000 0.00000000 0.00000000## check 0.00000000 0.00000000 0.01317349## chicago 0.00000000 0.00000000 0.00000000## chile 0.03925160 0.00000000 0.00000000## chip 0.00000000 0.00000000 0.00000000## chips 0.01308387 0.00000000 0.00000000## choosing 0.00000000 0.00000000 0.00000000## christians 0.00000000 0.00000000 0.00000000## christmas 0.00000000 0.02492522 0.00000000## church 0.00000000 0.00000000 0.01317349## circumstances 0.00000000 0.00000000 0.00000000## civilization 0.00000000 0.00000000 0.00000000## claimed 0.00000000 0.00000000 0.01317349## classes 0.01308387 0.00000000 0.00000000## cleanup 0.00000000 0.00000000 0.00000000## clearing 0.00000000 0.00000000 0.00000000## clock 0.01308387 0.00000000 0.00000000## closest 0.00000000 0.00000000 0.00000000## cole 0.00000000 0.00000000 0.00000000## collection 0.00000000 0.00000000 0.00000000## comforted 0.00000000 0.00000000 0.00000000## command 0.00000000 0.00000000 0.00000000## communism 0.00000000 0.00000000 0.00000000## company^s 0.00000000 0.00000000 0.00000000## competent 0.02616774 0.00000000 0.00000000## complex 0.00000000 0.01246261 0.01317349## concerned 0.00000000 0.00000000 0.00000000## connect 0.00000000 0.00000000 0.02634699## consensus 0.00000000 0.00000000 0.00000000## considered 0.00000000 0.00000000 0.00000000## consistent 0.00000000 0.01246261 0.00000000## consolidate 0.01308387 0.00000000 0.00000000## constructive 0.00000000 0.00000000 0.00000000## contain 0.00000000 0.00000000 0.00000000## contracting 0.00000000 0.00000000 0.01317349## contracts 0.00000000 0.00000000 0.00000000## convene 0.00000000 0.00000000 0.00000000## cooperate 0.00000000 0.00000000 0.00000000## coordination 0.00000000 0.00000000 0.00000000## cordray 0.00000000 0.00000000 0.00000000## corner 0.01308387 0.01246261 0.00000000## counter 0.00000000 0.01246261 0.01317349## countless 0.01308387 0.00000000 0.00000000## creative 0.00000000 0.00000000 0.00000000## crimes 0.00000000 0.02492522 0.00000000## criticism 0.00000000 0.00000000 0.00000000## crossings 0.00000000 0.00000000 0.00000000## crowds 0.00000000 0.00000000 0.00000000## cruelty 0.00000000 0.00000000 0.00000000## cure 0.00000000 0.00000000 0.00000000## custody 0.00000000 0.00000000 0.00000000## custom 0.00000000 0.00000000 0.00000000## cybersecurity 0.00000000 0.00000000 0.00000000## dan 0.00000000 0.00000000 0.00000000## dark 0.00000000 0.00000000 0.00000000## deaths 0.00000000 0.00000000 0.00000000## declare 0.00000000 0.00000000 0.00000000## deepest 0.00000000 0.00000000 0.00000000## defiance 0.00000000 0.00000000 0.00000000## defined 0.00000000 0.00000000 0.01317349## demars 0.00000000 0.00000000 0.03952048## democratization 0.01308387 0.00000000 0.01317349## denying 0.00000000 0.00000000 0.00000000## deployed 0.01308387 0.00000000 0.00000000## derail 0.00000000 0.00000000 0.01317349## destructive 0.00000000 0.00000000 0.00000000## detect 0.00000000 0.00000000 0.00000000## devastate 0.00000000 0.00000000 0.00000000## dictatorship 0.00000000 0.00000000 0.01317349## differently 0.00000000 0.00000000 0.01317349## digital 0.02616774 0.00000000 0.00000000## dikembe 0.00000000 0.00000000 0.00000000## director 0.00000000 0.00000000 0.00000000## disasters 0.00000000 0.01246261 0.00000000## disclose 0.00000000 0.01246261 0.00000000## discover 0.00000000 0.00000000 0.00000000## discoveries 0.00000000 0.00000000 0.00000000## dismantle 0.00000000 0.00000000 0.00000000## dismiss 0.00000000 0.00000000 0.00000000## disposition 0.01308387 0.01246261 0.00000000## distance 0.00000000 0.00000000 0.00000000## districts 0.00000000 0.00000000 0.00000000## diversity 0.00000000 0.01246261 0.00000000## dividends 0.00000000 0.00000000 0.00000000## divisions 0.00000000 0.02492522 0.00000000## doha 0.00000000 0.02492522 0.00000000## doubts 0.00000000 0.02492522 0.00000000## dozen 0.00000000 0.00000000 0.00000000## draft 0.00000000 0.00000000 0.00000000## draw 0.00000000 0.00000000 0.00000000## drawdown 0.00000000 0.00000000 0.00000000## dropout 0.01308387 0.00000000 0.00000000## dynamic 0.00000000 0.00000000 0.00000000## edge 0.00000000 0.00000000 0.01317349## educational 0.00000000 0.00000000 0.01317349## einstein 0.00000000 0.00000000 0.00000000## el 0.01308387 0.00000000 0.00000000## elderly 0.00000000 0.00000000 0.00000000## eliminated 0.00000000 0.00000000 0.02634699## eliminating 0.00000000 0.00000000 0.00000000## embassies 0.00000000 0.00000000 0.00000000## embolden 0.00000000 0.00000000 0.00000000## embrace 0.00000000 0.00000000 0.00000000## embraced 0.00000000 0.02492522 0.00000000## embryos 0.00000000 0.00000000 0.00000000## emerged 0.01308387 0.00000000 0.00000000## empire 0.00000000 0.00000000 0.00000000## employ 0.00000000 0.00000000 0.00000000## employer-based 0.00000000 0.00000000 0.00000000## endless 0.00000000 0.00000000 0.00000000## engagement 0.01308387 0.01246261 0.00000000## english 0.00000000 0.00000000 0.01317349## enjoy 0.00000000 0.00000000 0.00000000## enriching 0.01308387 0.00000000 0.00000000## enrichment 0.00000000 0.00000000 0.00000000## ensures 0.00000000 0.00000000 0.00000000## ensuring 0.00000000 0.01246261 0.00000000## entirely 0.00000000 0.00000000 0.00000000## entitlements 0.00000000 0.00000000 0.00000000## envoy 0.00000000 0.00000000 0.00000000## equally 0.00000000 0.00000000 0.00000000## equip 0.00000000 0.00000000 0.00000000## eric 0.00000000 0.00000000 0.00000000## errors 0.00000000 0.00000000 0.00000000## escape 0.00000000 0.00000000 0.00000000## estiven 0.00000000 0.00000000 0.03952048## ethnic 0.00000000 0.00000000 0.00000000## except 0.00000000 0.00000000 0.00000000## exceptional 0.00000000 0.00000000 0.00000000## executives 0.00000000 0.01246261 0.00000000## exercise 0.00000000 0.00000000 0.01317349## exist 0.01308387 0.00000000 0.00000000## existence 0.00000000 0.00000000 0.00000000## expense 0.00000000 0.00000000 0.00000000## expressed 0.01308387 0.00000000 0.00000000## eyes 0.00000000 0.00000000 0.01317349## falter 0.00000000 0.00000000 0.00000000## familiar 0.00000000 0.00000000 0.00000000## fascism 0.00000000 0.00000000 0.00000000## fearful 0.00000000 0.00000000 0.00000000## feeling 0.00000000 0.00000000 0.00000000## feels 0.00000000 0.00000000 0.00000000## fees 0.01308387 0.00000000 0.00000000## fifteen 0.00000000 0.00000000 0.00000000## filled 0.00000000 0.00000000 0.01317349## filling 0.00000000 0.01246261 0.00000000## finest 0.00000000 0.00000000 0.00000000## first-responders 0.00000000 0.01246261 0.00000000## flights 0.00000000 0.00000000 0.00000000## floods 0.00000000 0.00000000 0.01317349## flow 0.00000000 0.00000000 0.00000000## fly 0.00000000 0.00000000 0.00000000## footing 0.00000000 0.00000000 0.02634699## forcing 0.00000000 0.00000000 0.00000000## ford 0.00000000 0.00000000 0.01317349## forgot 0.00000000 0.00000000 0.00000000## formed 0.01308387 0.00000000 0.00000000## founding 0.01308387 0.00000000 0.01317349## freedoms 0.00000000 0.00000000 0.00000000## freer 0.00000000 0.00000000 0.01317349## front 0.01308387 0.00000000 0.00000000## frustration 0.00000000 0.00000000 0.00000000## function 0.01308387 0.00000000 0.00000000## furniture 0.02616774 0.00000000 0.00000000## futures 0.00000000 0.00000000 0.00000000## gabrielle 0.01308387 0.00000000 0.00000000## gangs 0.01308387 0.00000000 0.00000000## gaps 0.00000000 0.01246261 0.00000000## gary 0.03925160 0.00000000 0.00000000## generation^s 0.01308387 0.00000000 0.00000000## generous 0.00000000 0.01246261 0.00000000## georgia 0.00000000 0.00000000 0.00000000## germany 0.00000000 0.00000000 0.00000000## gi 0.00000000 0.00000000 0.00000000## ginsberg 0.00000000 0.00000000 0.02634699## god^s 0.00000000 0.00000000 0.00000000## golden 0.00000000 0.00000000 0.00000000## good-paying 0.00000000 0.00000000 0.00000000## goodness 0.00000000 0.00000000 0.00000000## google 0.01308387 0.00000000 0.01317349## grace 0.00000000 0.00000000 0.00000000## grandfather 0.00000000 0.00000000 0.00000000## greatness 0.00000000 0.00000000 0.00000000## gross 0.00000000 0.00000000 0.00000000## guarantees 0.00000000 0.01246261 0.01317349## guys 0.00000000 0.00000000 0.00000000## halfway 0.01308387 0.00000000 0.00000000## happens 0.00000000 0.00000000 0.00000000## harsh 0.00000000 0.00000000 0.00000000## havoc 0.00000000 0.00000000 0.00000000## heads 0.01308387 0.00000000 0.00000000## hearts 0.01308387 0.00000000 0.00000000## heat 0.00000000 0.00000000 0.00000000## henry 0.00000000 0.00000000 0.00000000## heroic 0.01308387 0.00000000 0.00000000## hesitate 0.01308387 0.00000000 0.01317349## highway 0.02616774 0.01246261 0.00000000## hijackers 0.00000000 0.00000000 0.00000000## history^s 0.00000000 0.01246261 0.00000000## holds 0.00000000 0.00000000 0.00000000## homeless 0.00000000 0.00000000 0.00000000## homelessness 0.00000000 0.00000000 0.02634699## honors 0.00000000 0.00000000 0.01317349## hostile 0.00000000 0.00000000 0.00000000## households 0.00000000 0.00000000 0.00000000## howard 0.02616774 0.00000000 0.00000000## hugged 0.00000000 0.00000000 0.00000000## hungry 0.00000000 0.00000000 0.00000000## hunt 0.00000000 0.00000000 0.00000000## hurricane 0.00000000 0.00000000 0.00000000## hurt 0.00000000 0.00000000 0.00000000## hybrid 0.00000000 0.00000000 0.00000000## ideal 0.00000000 0.00000000 0.00000000## iii 0.00000000 0.00000000 0.01317349## ill 0.00000000 0.00000000 0.00000000## illinois 0.00000000 0.01246261 0.00000000## images 0.00000000 0.00000000 0.00000000## immigrant 0.00000000 0.00000000 0.00000000## improvements 0.00000000 0.00000000 0.00000000## inc 0.01308387 0.00000000 0.00000000## incentive 0.00000000 0.01246261 0.01317349## industrialized 0.00000000 0.00000000 0.00000000## infection 0.00000000 0.00000000 0.00000000## infections 0.00000000 0.00000000 0.00000000## ingenuity 0.00000000 0.00000000 0.00000000## inherited 0.00000000 0.00000000 0.00000000## insurgency 0.02616774 0.00000000 0.00000000## insurgents 0.00000000 0.00000000 0.00000000## integrity 0.00000000 0.00000000 0.00000000## interior 0.01308387 0.00000000 0.00000000## intimidation 0.00000000 0.00000000 0.00000000## invited 0.00000000 0.00000000 0.00000000## involved 0.00000000 0.00000000 0.00000000## involves 0.00000000 0.00000000 0.00000000## iowa 0.01308387 0.00000000 0.00000000## isolating 0.00000000 0.00000000 0.00000000## isolationism 0.00000000 0.00000000 0.00000000## israelis 0.00000000 0.00000000 0.01317349## jack 0.00000000 0.00000000 0.00000000## janet 0.00000000 0.00000000 0.00000000## jews 0.00000000 0.00000000 0.00000000## judged 0.00000000 0.00000000 0.00000000## judgment 0.00000000 0.00000000 0.00000000## judicial 0.00000000 0.00000000 0.00000000## katherine 0.00000000 0.00000000 0.00000000## kathy 0.03925160 0.00000000 0.00000000## kay 0.00000000 0.00000000 0.00000000## kennedy^s 0.00000000 0.00000000 0.00000000## killing 0.00000000 0.00000000 0.00000000## kindness 0.00000000 0.00000000 0.01317349## king 0.00000000 0.00000000 0.00000000## kyi 0.00000000 0.00000000 0.00000000## laboratory 0.01308387 0.00000000 0.00000000## lack 0.00000000 0.00000000 0.00000000## ladders 0.00000000 0.00000000 0.01317349## latin 0.00000000 0.00000000 0.00000000## laura 0.00000000 0.00000000 0.00000000## lawful 0.00000000 0.00000000 0.00000000## league 0.00000000 0.01246261 0.00000000## leaves 0.00000000 0.01246261 0.00000000## lend 0.00000000 0.01246261 0.00000000## lesbian 0.00000000 0.00000000 0.01317349## letters 0.00000000 0.01246261 0.00000000## liberate 0.00000000 0.00000000 0.00000000## lieberman 0.00000000 0.00000000 0.00000000## lifetime 0.00000000 0.00000000 0.00000000## likely 0.00000000 0.00000000 0.00000000## limiting 0.00000000 0.00000000 0.00000000## lined 0.01308387 0.00000000 0.00000000## list 0.00000000 0.00000000 0.00000000## litigation 0.00000000 0.00000000 0.01317349## lock 0.00000000 0.00000000 0.00000000## longest 0.00000000 0.00000000 0.01317349## looked 0.00000000 0.00000000 0.00000000## louisiana 0.00000000 0.01246261 0.00000000## loving 0.00000000 0.00000000 0.00000000## lowering 0.00000000 0.00000000 0.01317349## loyalty 0.00000000 0.00000000 0.00000000## luxury 0.00000000 0.00000000 0.00000000## madrid 0.00000000 0.00000000 0.00000000## mali 0.00000000 0.00000000 0.01317349## malpractice 0.01308387 0.00000000 0.00000000## mankind 0.00000000 0.00000000 0.00000000## manufacture 0.02616774 0.01246261 0.00000000## meantime 0.00000000 0.00000000 0.01317349## media 0.00000000 0.01246261 0.00000000## menchu 0.00000000 0.00000000 0.00000000## mental 0.00000000 0.00000000 0.01317349## merge 0.01308387 0.00000000 0.00000000## messy 0.01308387 0.01246261 0.00000000## miles 0.00000000 0.00000000 0.00000000## milk 0.00000000 0.00000000 0.00000000## mindful 0.01308387 0.00000000 0.00000000## minneapolis 0.00000000 0.00000000 0.01317349## miracle 0.00000000 0.00000000 0.00000000## misguided 0.00000000 0.00000000 0.00000000## missiles 0.00000000 0.00000000 0.00000000## mistakes 0.00000000 0.00000000 0.01317349## mistrust 0.00000000 0.00000000 0.02634699## misty 0.00000000 0.00000000 0.03952048## misunderstanding 0.00000000 0.00000000 0.00000000## mobile 0.00000000 0.00000000 0.00000000## model 0.00000000 0.00000000 0.00000000## moon 0.01308387 0.00000000 0.00000000## mosque 0.00000000 0.00000000 0.00000000## mothers 0.00000000 0.00000000 0.01317349## mountain 0.01308387 0.01246261 0.00000000## murphy 0.00000000 0.00000000 0.00000000## narrow 0.00000000 0.00000000 0.01317349## nationwide 0.00000000 0.01246261 0.00000000## negotiated 0.00000000 0.00000000 0.01317349## neighborhood 0.00000000 0.00000000 0.00000000## nick 0.00000000 0.00000000 0.03952048## nights 0.00000000 0.00000000 0.00000000## nine 0.00000000 0.00000000 0.01317349## nominate 0.00000000 0.00000000 0.00000000## nominee 0.00000000 0.00000000 0.01317349## nominees 0.00000000 0.00000000 0.00000000## nonpartisan 0.01308387 0.00000000 0.00000000## nonproliferation 0.00000000 0.01246261 0.00000000## november 0.00000000 0.00000000 0.00000000## number-one 0.00000000 0.01246261 0.01317349## nurse 0.00000000 0.00000000 0.00000000## oath 0.00000000 0.00000000 0.00000000## objective 0.00000000 0.00000000 0.00000000## obligation 0.00000000 0.00000000 0.01317349## ocean 0.00000000 0.00000000 0.00000000## odds 0.00000000 0.00000000 0.02634699## offers 0.00000000 0.00000000 0.00000000## offices 0.01308387 0.00000000 0.00000000## official 0.00000000 0.01246261 0.00000000## older 0.00000000 0.00000000 0.00000000## olympic 0.00000000 0.00000000 0.03952048## open-ended 0.00000000 0.00000000 0.01317349## openings 0.00000000 0.00000000 0.00000000## opens 0.00000000 0.01246261 0.00000000## operating 0.01308387 0.00000000 0.00000000## opinions 0.01308387 0.00000000 0.00000000## opponents 0.00000000 0.00000000 0.00000000## opposed 0.00000000 0.00000000 0.00000000## oppressive 0.00000000 0.00000000 0.00000000## optimism 0.00000000 0.01246261 0.00000000## optimistic 0.00000000 0.00000000 0.00000000## orderly 0.00000000 0.00000000 0.00000000## orders 0.00000000 0.00000000 0.00000000## orleans 0.00000000 0.00000000 0.00000000## outlaw 0.00000000 0.00000000 0.00000000## overtime 0.00000000 0.00000000 0.00000000## overwhelming 0.00000000 0.01246261 0.00000000## pad 0.01308387 0.00000000 0.00000000## panels 0.00000000 0.01246261 0.00000000## parliament 0.00000000 0.00000000 0.00000000## passage 0.00000000 0.00000000 0.00000000## passenger 0.00000000 0.00000000 0.00000000## patent 0.00000000 0.00000000 0.01317349## pathway 0.00000000 0.01246261 0.00000000## patience 0.00000000 0.00000000 0.00000000## patrick 0.00000000 0.00000000 0.00000000## patrol 0.00000000 0.00000000 0.00000000## pendleton 0.00000000 0.00000000 0.00000000## penny 0.00000000 0.00000000 0.00000000## peoples 0.00000000 0.00000000 0.00000000## percentage 0.00000000 0.00000000 0.00000000## periods 0.00000000 0.01246261 0.00000000## permit 0.00000000 0.00000000 0.00000000## persistent 0.00000000 0.00000000 0.00000000## personally 0.00000000 0.00000000 0.00000000## phase 0.00000000 0.00000000 0.00000000## philippines 0.00000000 0.00000000 0.02634699## physical 0.00000000 0.00000000 0.00000000## pick 0.01308387 0.00000000 0.00000000## picture 0.00000000 0.00000000 0.00000000## placing 0.00000000 0.00000000 0.00000000## planning 0.00000000 0.00000000 0.00000000## plant 0.00000000 0.00000000 0.00000000## planted 0.01308387 0.00000000 0.01317349## plays 0.00000000 0.01246261 0.00000000## plots 0.01308387 0.01246261 0.00000000## poised 0.01308387 0.00000000 0.00000000## polls 0.00000000 0.00000000 0.00000000## pollution-free 0.00000000 0.00000000 0.00000000## popular 0.00000000 0.02492522 0.00000000## possess 0.00000000 0.00000000 0.00000000## posted 0.00000000 0.00000000 0.00000000## posts 0.00000000 0.01246261 0.00000000## practical 0.00000000 0.00000000 0.01317349## praise 0.00000000 0.00000000 0.00000000## precious 0.00000000 0.00000000 0.00000000## presents 0.00000000 0.00000000 0.00000000## pressing 0.00000000 0.00000000 0.00000000## pretty 0.01308387 0.00000000 0.00000000## prevail 0.00000000 0.00000000 0.00000000## priced 0.00000000 0.00000000 0.01317349## primary 0.00000000 0.00000000 0.00000000## promising 0.00000000 0.00000000 0.00000000## promoting 0.01308387 0.00000000 0.00000000## proof 0.00000000 0.00000000 0.00000000## proportion 0.02616774 0.00000000 0.00000000## prosper 0.01308387 0.01246261 0.00000000## providence 0.00000000 0.00000000 0.00000000## proving 0.00000000 0.00000000 0.00000000## pushed 0.00000000 0.00000000 0.00000000## pushing 0.00000000 0.00000000 0.00000000## qadhafi 0.00000000 0.00000000 0.00000000## radicalism 0.00000000 0.00000000 0.00000000## raids 0.00000000 0.00000000 0.00000000## rallying 0.00000000 0.00000000 0.00000000## rancor 0.01308387 0.00000000 0.00000000## reasonable 0.00000000 0.00000000 0.00000000## received 0.01308387 0.00000000 0.00000000## receiving 0.00000000 0.00000000 0.00000000## recklessness 0.00000000 0.01246261 0.00000000## reckoning 0.00000000 0.00000000 0.00000000## recognition 0.01308387 0.00000000 0.01317349## reconciliation 0.00000000 0.00000000 0.00000000## reconstruction 0.00000000 0.00000000 0.00000000## recruiting 0.00000000 0.00000000 0.00000000## red 0.00000000 0.00000000 0.01317349## redesign 0.00000000 0.00000000 0.01317349## refighting 0.01308387 0.00000000 0.01317349## refugees 0.00000000 0.00000000 0.00000000## regard 0.00000000 0.00000000 0.01317349## reinvented 0.02616774 0.00000000 0.00000000## reinvestment 0.00000000 0.01246261 0.00000000## rejected 0.00000000 0.00000000 0.00000000## rejoin 0.00000000 0.00000000 0.01317349## relied 0.00000000 0.00000000 0.00000000## relieve 0.00000000 0.01246261 0.00000000## removing 0.01308387 0.00000000 0.00000000## remsburg 0.00000000 0.00000000 0.03952048## repaid 0.00000000 0.01246261 0.00000000## represented 0.00000000 0.00000000 0.00000000## researchers 0.00000000 0.00000000 0.00000000## resentment 0.00000000 0.00000000 0.00000000## resolute 0.00000000 0.00000000 0.00000000## resolution 0.00000000 0.00000000 0.00000000## resolved 0.00000000 0.00000000 0.01317349## resource 0.00000000 0.00000000 0.00000000## responded 0.00000000 0.00000000 0.00000000## restrictions 0.00000000 0.00000000 0.01317349## retired 0.00000000 0.00000000 0.00000000## returned 0.00000000 0.00000000 0.00000000## returns 0.00000000 0.00000000 0.01317349## reverse 0.00000000 0.00000000 0.01317349## reversed 0.00000000 0.01246261 0.00000000## richard 0.00000000 0.00000000 0.00000000## rieman 0.00000000 0.00000000 0.00000000## rigid 0.00000000 0.00000000 0.00000000## risen 0.00000000 0.00000000 0.00000000## risky 0.00000000 0.00000000 0.00000000## roaring 0.01308387 0.00000000 0.01317349## rock 0.02616774 0.00000000 0.00000000## rodriguez 0.00000000 0.00000000 0.03952048## roll 0.00000000 0.00000000 0.00000000## rubble 0.00000000 0.01246261 0.00000000## rush 0.00000000 0.00000000 0.03952048## sacrifices 0.00000000 0.00000000 0.00000000## safia 0.00000000 0.00000000 0.00000000## salvador 0.01308387 0.00000000 0.00000000## sanchez 0.00000000 0.00000000 0.00000000## sat 0.00000000 0.00000000 0.01317349## saves 0.00000000 0.00000000 0.00000000## scandals 0.00000000 0.00000000 0.00000000## schedule 0.00000000 0.00000000 0.00000000## sciences 0.00000000 0.00000000 0.00000000## scott 0.00000000 0.00000000 0.00000000## securing 0.01308387 0.01246261 0.00000000## sends 0.00000000 0.00000000 0.01317349## series 0.00000000 0.00000000 0.00000000## seriously 0.00000000 0.00000000 0.00000000## setbacks 0.00000000 0.03738784 0.00000000## settled 0.00000000 0.00000000 0.01317349## seven 0.00000000 0.00000000 0.00000000## severely 0.00000000 0.00000000 0.00000000## shadows 0.01308387 0.00000000 0.00000000## shake 0.00000000 0.00000000 0.00000000## she^d 0.00000000 0.00000000 0.03952048## she^s 0.01308387 0.00000000 0.01317349## shelley 0.00000000 0.00000000 0.03952048## shelter 0.00000000 0.00000000 0.00000000## shifts 0.00000000 0.01246261 0.01317349## shootings 0.01308387 0.00000000 0.00000000## shop 0.01308387 0.00000000 0.01317349## short-term 0.00000000 0.01246261 0.00000000## shrinking 0.01308387 0.00000000 0.00000000## sight 0.00000000 0.00000000 0.00000000## sights 0.00000000 0.00000000 0.00000000## signs 0.00000000 0.00000000 0.01317349## silver 0.00000000 0.00000000 0.00000000## similar 0.00000000 0.00000000 0.00000000## simplify 0.02616774 0.00000000 0.00000000## sits 0.00000000 0.01246261 0.00000000## sitting 0.00000000 0.00000000 0.00000000## sixty 0.00000000 0.00000000 0.00000000## skepticism 0.00000000 0.00000000 0.00000000## skin 0.00000000 0.00000000 0.00000000## skyrocketing 0.00000000 0.00000000 0.00000000## slashing 0.01308387 0.00000000 0.01317349## slavery 0.00000000 0.00000000 0.00000000## soil 0.00000000 0.00000000 0.00000000## solutions 0.00000000 0.01246261 0.00000000## somalia 0.00000000 0.00000000 0.01317349## sons 0.00000000 0.00000000 0.01317349## sought 0.00000000 0.00000000 0.00000000## soviet 0.00000000 0.00000000 0.01317349## spare 0.00000000 0.00000000 0.00000000## speaking 0.00000000 0.02492522 0.00000000## spends 0.01308387 0.00000000 0.00000000## sputnik 0.02616774 0.00000000 0.00000000## staff 0.00000000 0.00000000 0.00000000## stagnant 0.00000000 0.00000000 0.01317349## steadily 0.00000000 0.00000000 0.02634699## steady 0.00000000 0.00000000 0.00000000## steal 0.00000000 0.01246261 0.00000000## stepped 0.00000000 0.00000000 0.00000000## strain 0.00000000 0.00000000 0.00000000## strangers 0.00000000 0.00000000 0.00000000## streamline 0.00000000 0.00000000 0.01317349## strides 0.01308387 0.00000000 0.01317349## succeeding 0.00000000 0.00000000 0.00000000## succeeds 0.00000000 0.00000000 0.01317349## suffered 0.00000000 0.00000000 0.01317349## sums 0.00000000 0.00000000 0.00000000## sunday 0.00000000 0.01246261 0.00000000## superpower 0.01308387 0.00000000 0.00000000## supporters 0.00000000 0.00000000 0.00000000## surpluses 0.00000000 0.01246261 0.00000000## surrounding 0.01308387 0.00000000 0.00000000## sustainable 0.01308387 0.00000000 0.00000000## suu 0.00000000 0.00000000 0.00000000## symbol 0.00000000 0.00000000 0.00000000## takeover 0.00000000 0.00000000 0.00000000## talent 0.00000000 0.00000000 0.00000000## targeting 0.00000000 0.00000000 0.00000000## tax-free 0.00000000 0.00000000 0.00000000## teams 0.01308387 0.00000000 0.00000000## ted 0.00000000 0.00000000 0.00000000## teen 0.00000000 0.00000000 0.00000000## temporary- 0.00000000 0.00000000 0.00000000## tempting 0.00000000 0.01246261 0.00000000## tests 0.00000000 0.00000000 0.00000000## threatened 0.00000000 0.01246261 0.00000000## three-quarters 0.00000000 0.00000000 0.00000000## tirelessly 0.00000000 0.00000000 0.00000000## total 0.00000000 0.01246261 0.01317349## totalitarian 0.00000000 0.00000000 0.00000000## tpp 0.00000000 0.00000000 0.00000000## tradition 0.00000000 0.00000000 0.00000000## traffic 0.00000000 0.00000000 0.00000000## trafficking 0.00000000 0.00000000 0.00000000## transgender 0.00000000 0.00000000 0.01317349## transit 0.00000000 0.00000000 0.00000000## transitional 0.00000000 0.00000000 0.00000000## translate 0.01308387 0.00000000 0.01317349## tremendous 0.00000000 0.00000000 0.00000000## trend 0.00000000 0.00000000 0.00000000## tried 0.00000000 0.00000000 0.00000000## twenty-first 0.00000000 0.00000000 0.00000000## twice 0.00000000 0.00000000 0.00000000## typical 0.00000000 0.00000000 0.00000000## uncertain 0.00000000 0.01246261 0.00000000## understanding 0.00000000 0.00000000 0.01317349## unfolding 0.00000000 0.00000000 0.00000000## unified 0.00000000 0.01246261 0.01317349## unique 0.00000000 0.00000000 0.00000000## untold 0.00000000 0.00000000 0.00000000## unwarranted 0.01308387 0.01246261 0.00000000## update 0.00000000 0.00000000 0.00000000## upholding 0.00000000 0.01246261 0.00000000## upward 0.00000000 0.00000000 0.02634699## usual 0.00000000 0.01246261 0.01317349## va 0.00000000 0.01246261 0.00000000## vaccines 0.00000000 0.00000000 0.01317349## vehicles 0.01308387 0.00000000 0.00000000## vicious 0.00000000 0.00000000 0.00000000## villages 0.00000000 0.00000000 0.00000000## visiting 0.00000000 0.00000000 0.01317349## volunteer 0.00000000 0.00000000 0.00000000## volunteered 0.01308387 0.00000000 0.00000000## voter 0.00000000 0.00000000 0.00000000## waited 0.00000000 0.00000000 0.00000000## walked 0.00000000 0.01246261 0.01317349## walks 0.01308387 0.00000000 0.00000000## warmest 0.00000000 0.00000000 0.00000000## weatherization 0.00000000 0.00000000 0.00000000## welcoming 0.00000000 0.00000000 0.00000000## weren^t 0.00000000 0.00000000 0.00000000## wesley 0.00000000 0.00000000 0.00000000## whenever 0.00000000 0.00000000 0.01317349## witnessed 0.00000000 0.01246261 0.00000000## wonderful 0.00000000 0.00000000 0.00000000## writing 0.00000000 0.00000000 0.00000000## yield 0.00000000 0.00000000 0.00000000## youngest 0.00000000 0.00000000 0.01317349## yourself 0.00000000 0.00000000 0.00000000## zero 0.00000000 0.00000000 0.02634699## abandoning 0.00000000 0.00000000 0.00000000## abess 0.00000000 0.00000000 0.00000000## abide 0.00000000 0.01246261 0.00000000## abusive 0.00000000 0.00000000 0.00000000## accident 0.00000000 0.00000000 0.01317349## according 0.00000000 0.01246261 0.00000000## acid 0.00000000 0.00000000 0.00000000## actively 0.00000000 0.00000000 0.01317349## adapt 0.00000000 0.00000000 0.00000000## adhere 0.00000000 0.01246261 0.00000000## adjusted 0.00000000 0.00000000 0.00000000## adjustments 0.00000000 0.00000000 0.00000000## administrative 0.00000000 0.00000000 0.00000000## admit 0.00000000 0.00000000 0.00000000## adoption 0.00000000 0.00000000 0.00000000## advancement 0.00000000 0.00000000 0.00000000## advantages 0.00000000 0.00000000 0.00000000## adversaries 0.00000000 0.00000000 0.01317349## advice 0.00000000 0.00000000 0.00000000## advisory 0.00000000 0.00000000 0.00000000## advocates 0.00000000 0.00000000 0.00000000## afloat 0.00000000 0.01246261 0.00000000## afraid 0.00000000 0.00000000 0.01317349## agent 0.00000000 0.00000000 0.00000000## agrees 0.00000000 0.00000000 0.01317349## agricultural 0.00000000 0.00000000 0.00000000## agriculture 0.00000000 0.00000000 0.00000000## ahmed 0.00000000 0.00000000 0.00000000## aigner-clark 0.00000000 0.00000000 0.00000000## aims 0.00000000 0.00000000 0.00000000## airplane 0.01308387 0.00000000 0.00000000## airstrikes 0.00000000 0.00000000 0.00000000## al- 0.00000000 0.00000000 0.00000000## al-suhail 0.00000000 0.00000000 0.00000000## alabama 0.01308387 0.00000000 0.00000000## alarm 0.00000000 0.00000000 0.00000000## allah 0.00000000 0.00000000 0.00000000## allawi 0.00000000 0.00000000 0.00000000## aluminum 0.00000000 0.00000000 0.00000000## amendment 0.00000000 0.00000000 0.00000000## ample 0.00000000 0.00000000 0.00000000## anbar 0.00000000 0.00000000 0.00000000## angry 0.00000000 0.01246261 0.00000000## anniversary 0.00000000 0.00000000 0.01317349## antidrug 0.00000000 0.00000000 0.00000000## antiretroviral 0.00000000 0.00000000 0.00000000## anxieties 0.00000000 0.02492522 0.00000000## anybody 0.00000000 0.00000000 0.00000000## appeal 0.00000000 0.00000000 0.00000000## appeared 0.00000000 0.00000000 0.00000000## appetite 0.00000000 0.00000000 0.00000000## apple 0.00000000 0.00000000 0.01317349## application 0.00000000 0.00000000 0.01317349## applying 0.00000000 0.00000000 0.00000000## apprenticeships 0.00000000 0.00000000 0.01317349## appropriations 0.00000000 0.00000000 0.00000000## approve 0.00000000 0.00000000 0.00000000## approving 0.00000000 0.00000000 0.00000000## april 0.00000000 0.00000000 0.00000000## arabic 0.00000000 0.00000000 0.00000000## arc 0.00000000 0.00000000 0.00000000## arming 0.00000000 0.00000000 0.00000000## asad 0.00000000 0.00000000 0.00000000## aspiring 0.00000000 0.00000000 0.00000000## assemble 0.01308387 0.00000000 0.00000000## assets 0.00000000 0.00000000 0.00000000## assistant 0.00000000 0.00000000 0.01317349## assisting 0.00000000 0.00000000 0.01317349## associate 0.00000000 0.00000000 0.00000000## assure 0.00000000 0.00000000 0.00000000## assured 0.00000000 0.00000000 0.00000000## asthma 0.00000000 0.00000000 0.02634699## atrocity 0.00000000 0.00000000 0.00000000## attend 0.00000000 0.00000000 0.00000000## attractive 0.00000000 0.00000000 0.01317349## attracts 0.00000000 0.00000000 0.00000000## automaker 0.00000000 0.00000000 0.01317349## autrey 0.00000000 0.00000000 0.00000000## avert 0.00000000 0.01246261 0.00000000## awaken 0.00000000 0.00000000 0.00000000## awareness 0.00000000 0.00000000 0.00000000## ba 0.00000000 0.00000000 0.00000000## backlog 0.00000000 0.00000000 0.01317349## backs 0.01308387 0.00000000 0.00000000## bailey 0.00000000 0.00000000 0.00000000## ban 0.00000000 0.01246261 0.00000000## banned 0.00000000 0.00000000 0.00000000## banning 0.00000000 0.00000000 0.00000000## bans 0.00000000 0.00000000 0.00000000## bargaining 0.00000000 0.00000000 0.00000000## barra 0.00000000 0.00000000 0.02634699## baseball 0.00000000 0.00000000 0.00000000## bashar 0.00000000 0.00000000 0.00000000## basics 0.00000000 0.00000000 0.00000000## basis 0.00000000 0.00000000 0.00000000## baton 0.00000000 0.00000000 0.00000000## beach 0.00000000 0.01246261 0.01317349## beacon 0.00000000 0.00000000 0.00000000## beamer 0.00000000 0.00000000 0.00000000## bedrock 0.00000000 0.00000000 0.00000000## beijing 0.00000000 0.00000000 0.00000000## belarus 0.00000000 0.00000000 0.00000000## ben^s 0.00000000 0.00000000 0.00000000## benchmark 0.00000000 0.00000000 0.00000000## beneficiary 0.00000000 0.00000000 0.00000000## benefited 0.00000000 0.00000000 0.00000000## berkshire 0.00000000 0.00000000 0.00000000## berra 0.00000000 0.00000000 0.00000000## beshear 0.00000000 0.00000000 0.02634699## bethea 0.00000000 0.00000000 0.00000000## bets 0.00000000 0.00000000 0.00000000## billionaires 0.00000000 0.00000000 0.00000000## binding 0.00000000 0.00000000 0.00000000## bioshield 0.00000000 0.00000000 0.00000000## biotechnology 0.01308387 0.00000000 0.00000000## bite 0.00000000 0.00000000 0.00000000## bitter 0.00000000 0.00000000 0.00000000## blackmail 0.00000000 0.00000000 0.00000000## blackmailed 0.00000000 0.00000000 0.00000000## blessings 0.00000000 0.00000000 0.00000000## blocking 0.00000000 0.00000000 0.00000000## blue 0.00000000 0.00000000 0.01317349## boards 0.01308387 0.01246261 0.00000000## boggs 0.00000000 0.00000000 0.01317349## bombings 0.00000000 0.00000000 0.00000000## bonuses 0.00000000 0.01246261 0.00000000## books 0.00000000 0.00000000 0.00000000## boomers 0.01308387 0.00000000 0.00000000## boosted 0.00000000 0.00000000 0.01317349## boots 0.00000000 0.00000000 0.00000000## borrowing 0.00000000 0.01246261 0.00000000## bosanek 0.00000000 0.00000000 0.00000000## bounce 0.00000000 0.00000000 0.00000000## bowles 0.00000000 0.00000000 0.00000000## box 0.00000000 0.00000000 0.00000000## bray 0.00000000 0.00000000 0.00000000## breast 0.00000000 0.00000000 0.00000000## breaux 0.00000000 0.00000000 0.00000000## brighter 0.00000000 0.00000000 0.00000000## brink 0.00000000 0.00000000 0.00000000## broad-based 0.00000000 0.00000000 0.00000000## bruce 0.02616774 0.00000000 0.00000000## brutality 0.00000000 0.00000000 0.00000000## budged 0.00000000 0.00000000 0.01317349## buffalo 0.00000000 0.00000000 0.00000000## builders 0.01308387 0.00000000 0.01317349## bureau 0.00000000 0.00000000 0.00000000## bureaucracy 0.00000000 0.00000000 0.01317349## bureaucrat 0.00000000 0.00000000 0.00000000## buyers 0.00000000 0.01246261 0.00000000## cable 0.00000000 0.00000000 0.00000000## cairo 0.00000000 0.00000000 0.00000000## calculated 0.00000000 0.00000000 0.00000000## camp 0.00000000 0.00000000 0.00000000## canal 0.00000000 0.01246261 0.01317349## candor 0.00000000 0.00000000 0.00000000## canister 0.00000000 0.00000000 0.00000000## capability 0.00000000 0.00000000 0.00000000## caribbean 0.00000000 0.00000000 0.00000000## caroline 0.00000000 0.00000000 0.00000000## carries 0.00000000 0.00000000 0.00000000## casualties 0.00000000 0.00000000 0.01317349## casualty 0.00000000 0.00000000 0.00000000## catch 0.00000000 0.00000000 0.00000000## category 0.00000000 0.00000000 0.00000000## caused 0.00000000 0.00000000 0.00000000## cedar 0.00000000 0.00000000 0.00000000## certainty 0.01308387 0.00000000 0.00000000## chairman 0.00000000 0.00000000 0.00000000## challenging 0.00000000 0.00000000 0.01317349## charity 0.00000000 0.00000000 0.00000000## charlotte 0.00000000 0.00000000 0.00000000## cheapest 0.00000000 0.01246261 0.00000000## chiefs 0.00000000 0.00000000 0.00000000## child^s 0.01308387 0.00000000 0.01317349## chinese 0.00000000 0.00000000 0.00000000## chute 0.00000000 0.00000000 0.02634699## cia 0.00000000 0.00000000 0.00000000## circumstance 0.00000000 0.00000000 0.00000000## civic 0.00000000 0.00000000 0.00000000## civility 0.00000000 0.00000000 0.00000000## clarity 0.00000000 0.00000000 0.00000000## classmates 0.00000000 0.00000000 0.01317349## client 0.00000000 0.01246261 0.00000000## co 0.01308387 0.00000000 0.00000000## coach 0.00000000 0.00000000 0.00000000## coached 0.00000000 0.00000000 0.00000000## coaches 0.00000000 0.00000000 0.00000000## coburn 0.00000000 0.00000000 0.00000000## collapsed 0.00000000 0.00000000 0.00000000## colleague 0.01308387 0.00000000 0.00000000## collected 0.00000000 0.00000000 0.01317349## colorado 0.01308387 0.00000000 0.00000000## comfortable 0.00000000 0.00000000 0.00000000## companionship 0.00000000 0.00000000 0.00000000## compare 0.00000000 0.00000000 0.00000000## computers 0.01308387 0.00000000 0.00000000## comrades 0.00000000 0.00000000 0.02634699## concentrate 0.00000000 0.00000000 0.01317349## concessions 0.00000000 0.00000000 0.00000000## conclusion 0.01308387 0.00000000 0.00000000## concrete 0.00000000 0.00000000 0.02634699## condemn 0.00000000 0.00000000 0.00000000## conducting 0.00000000 0.00000000 0.00000000## confessions 0.00000000 0.00000000 0.00000000## confirmed 0.00000000 0.00000000 0.00000000## confound 0.00000000 0.00000000 0.00000000## confusing 0.00000000 0.00000000 0.00000000## congressmen 0.00000000 0.00000000 0.00000000## conrad 0.00000000 0.02492522 0.00000000## consequential 0.01308387 0.00000000 0.00000000## conspiracies 0.00000000 0.00000000 0.00000000## constructing 0.00000000 0.00000000 0.00000000## consult 0.00000000 0.00000000 0.00000000## consultation 0.00000000 0.00000000 0.00000000## containment 0.00000000 0.00000000 0.00000000## contempt 0.00000000 0.00000000 0.00000000## contest 0.00000000 0.00000000 0.00000000## contract 0.00000000 0.00000000 0.00000000## contrary 0.00000000 0.00000000 0.00000000## contributing 0.00000000 0.00000000 0.00000000## controlled 0.00000000 0.00000000 0.00000000## controls 0.00000000 0.01246261 0.00000000## controversies 0.00000000 0.00000000 0.00000000## conversation 0.00000000 0.00000000 0.00000000## convince 0.00000000 0.00000000 0.01317349## corrosive 0.00000000 0.01246261 0.00000000## count 0.00000000 0.00000000 0.00000000## counted 0.00000000 0.00000000 0.00000000## couple 0.00000000 0.00000000 0.00000000## covering 0.00000000 0.00000000 0.01317349## crate 0.00000000 0.00000000 0.00000000## credibility 0.00000000 0.01246261 0.00000000## credibly 0.00000000 0.00000000 0.00000000## creditworthiness 0.00000000 0.00000000 0.01317349## crippling 0.00000000 0.00000000 0.00000000## crises 0.00000000 0.00000000 0.01317349## crops 0.00000000 0.00000000 0.00000000## cross 0.00000000 0.00000000 0.00000000## crowd 0.00000000 0.00000000 0.01317349## cruise 0.00000000 0.00000000 0.00000000## crumbling 0.01308387 0.00000000 0.00000000## crushing 0.00000000 0.00000000 0.00000000## cuban 0.00000000 0.00000000 0.00000000## cultures 0.00000000 0.00000000 0.00000000## cures 0.00000000 0.00000000 0.00000000## curran 0.00000000 0.00000000 0.00000000## curve 0.00000000 0.00000000 0.00000000## cutting-edge 0.01308387 0.00000000 0.00000000## cycle 0.00000000 0.00000000 0.00000000## cynicism 0.00000000 0.01246261 0.00000000## cynics 0.00000000 0.00000000 0.00000000## damaged 0.00000000 0.00000000 0.00000000## darkness 0.00000000 0.00000000 0.00000000## dates 0.00000000 0.00000000 0.01317349## david 0.00000000 0.00000000 0.00000000## day^s 0.00000000 0.01246261 0.00000000## de 0.00000000 0.00000000 0.00000000## dead 0.00000000 0.00000000 0.00000000## deadly 0.00000000 0.00000000 0.00000000## dear 0.00000000 0.00000000 0.00000000## debated 0.00000000 0.01246261 0.00000000## debbie 0.00000000 0.00000000 0.00000000## december 0.01308387 0.00000000 0.00000000## decides 0.00000000 0.01246261 0.01317349## declaration 0.00000000 0.00000000 0.00000000## declares 0.00000000 0.01246261 0.00000000## declines 0.00000000 0.00000000 0.00000000## deduct 0.00000000 0.00000000 0.00000000## deeds 0.00000000 0.00000000 0.00000000## defectors 0.00000000 0.00000000 0.00000000## defended 0.00000000 0.00000000 0.00000000## defenders 0.00000000 0.00000000 0.00000000## defending 0.00000000 0.00000000 0.00000000## defensive 0.00000000 0.00000000 0.00000000## defines 0.00000000 0.00000000 0.00000000## degrees 0.01308387 0.00000000 0.01317349## delayed 0.00000000 0.00000000 0.00000000## demonstrate 0.00000000 0.00000000 0.00000000## denver 0.02616774 0.00000000 0.00000000## dependents 0.01308387 0.00000000 0.00000000## deportation 0.01308387 0.00000000 0.00000000## deposits 0.00000000 0.01246261 0.00000000## designs 0.00000000 0.00000000 0.00000000## desperately 0.00000000 0.00000000 0.00000000## despise 0.00000000 0.00000000 0.00000000## determining 0.00000000 0.00000000 0.00000000## devaney 0.00000000 0.00000000 0.00000000## developed 0.01308387 0.00000000 0.00000000## diabetes 0.00000000 0.00000000 0.00000000## diagnosis 0.00000000 0.00000000 0.00000000## dictate 0.00000000 0.00000000 0.00000000## dictates 0.00000000 0.00000000 0.00000000## dictators 0.00000000 0.00000000 0.00000000## difficulties 0.00000000 0.00000000 0.00000000## dingell 0.00000000 0.00000000 0.00000000## dioxide 0.00000000 0.00000000 0.01317349## dirtier 0.00000000 0.00000000 0.00000000## disadvantage 0.00000000 0.00000000 0.00000000## disagreements 0.00000000 0.02492522 0.00000000## disappear 0.01308387 0.00000000 0.00000000## discarded 0.00000000 0.00000000 0.00000000## disclosed 0.00000000 0.00000000 0.00000000## discourage 0.01308387 0.00000000 0.00000000## discouraged 0.00000000 0.00000000 0.01317349## discovered 0.00000000 0.00000000 0.00000000## discriminate 0.00000000 0.00000000 0.00000000## discrimination 0.00000000 0.01246261 0.00000000## disfigured 0.00000000 0.00000000 0.00000000## displaced 0.00000000 0.00000000 0.00000000## disputes 0.00000000 0.00000000 0.00000000## disrupted 0.00000000 0.01246261 0.00000000## disruption 0.00000000 0.00000000 0.00000000## district 0.00000000 0.00000000 0.00000000## diversify 0.00000000 0.00000000 0.00000000## divide 0.00000000 0.00000000 0.00000000## dividend 0.00000000 0.00000000 0.00000000## divides 0.00000000 0.00000000 0.00000000## divisive 0.01308387 0.00000000 0.00000000## dna 0.00000000 0.00000000 0.00000000## doctor-patient 0.00000000 0.00000000 0.00000000## dole 0.00000000 0.00000000 0.00000000## dominated 0.00000000 0.01246261 0.00000000## domination 0.00000000 0.00000000 0.00000000## donna 0.00000000 0.00000000 0.00000000## doses 0.00000000 0.00000000 0.00000000## download 0.02616774 0.00000000 0.00000000## dr 0.00000000 0.00000000 0.00000000## dragged 0.00000000 0.00000000 0.00000000## drastic 0.00000000 0.00000000 0.00000000## dread 0.00000000 0.00000000 0.00000000## dreaming 0.00000000 0.00000000 0.01317349## drills 0.00000000 0.00000000 0.00000000## dripping 0.00000000 0.00000000 0.00000000## drones 0.00000000 0.00000000 0.01317349## dropping 0.00000000 0.00000000 0.00000000## drought 0.00000000 0.00000000 0.01317349## droughts 0.00000000 0.00000000 0.00000000## due 0.00000000 0.01246261 0.00000000## durable 0.00000000 0.00000000 0.00000000## duration 0.00000000 0.00000000 0.00000000## dying 0.00000000 0.00000000 0.00000000## e-mails 0.00000000 0.00000000 0.00000000## earl 0.00000000 0.00000000 0.00000000## earliest 0.01308387 0.00000000 0.00000000## earned-income 0.00000000 0.00000000 0.02634699## earthquake 0.00000000 0.02492522 0.00000000## eased 0.00000000 0.00000000 0.01317349## easily 0.00000000 0.00000000 0.00000000## eaten 0.00000000 0.00000000 0.00000000## economies 0.00000000 0.00000000 0.00000000## edison 0.01308387 0.00000000 0.00000000## educating 0.01308387 0.00000000 0.00000000## effectively 0.00000000 0.01246261 0.00000000## eight 0.00000000 0.00000000 0.00000000## eighth 0.00000000 0.00000000 0.00000000## elaborate 0.00000000 0.00000000 0.00000000## electing 0.00000000 0.00000000 0.00000000## eliminates 0.00000000 0.00000000 0.00000000## else^s 0.00000000 0.00000000 0.00000000## embargo 0.00000000 0.00000000 0.00000000## emphasis 0.01308387 0.01246261 0.00000000## employee 0.02616774 0.00000000 0.00000000## enact 0.00000000 0.00000000 0.00000000## endured 0.00000000 0.00000000 0.01317349## endures 0.01308387 0.00000000 0.00000000## enemy^s 0.00000000 0.00000000 0.00000000## energy-efficient 0.00000000 0.01246261 0.00000000## enforced 0.00000000 0.01246261 0.00000000## enrich 0.00000000 0.01246261 0.00000000## enrolled 0.00000000 0.00000000 0.00000000## enshrined 0.01308387 0.01246261 0.00000000## entered 0.00000000 0.00000000 0.00000000## enthusiasm 0.00000000 0.00000000 0.00000000## entrenched 0.00000000 0.01246261 0.00000000## entrepreneurship 0.00000000 0.00000000 0.00000000## entry 0.00000000 0.00000000 0.00000000## environmentally 0.00000000 0.00000000 0.00000000## equivalent 0.00000000 0.00000000 0.00000000## eradicate 0.00000000 0.00000000 0.00000000## erskine 0.00000000 0.00000000 0.00000000## escalating 0.00000000 0.00000000 0.00000000## estimate 0.00000000 0.00000000 0.00000000## estimates 0.00000000 0.00000000 0.00000000## ethic 0.00000000 0.00000000 0.01317349## evade 0.00000000 0.00000000 0.00000000## event 0.00000000 0.00000000 0.00000000## everyone^s 0.00000000 0.00000000 0.01317349## evolving 0.00000000 0.00000000 0.00000000## examine 0.00000000 0.00000000 0.00000000## excel 0.00000000 0.01246261 0.00000000## exception 0.00000000 0.00000000 0.00000000## exchanges 0.00000000 0.00000000 0.02634699## excluded 0.00000000 0.01246261 0.00000000## excuses 0.01308387 0.00000000 0.00000000## exhaust 0.00000000 0.00000000 0.00000000## exists 0.00000000 0.00000000 0.00000000## expands 0.00000000 0.00000000 0.00000000## expeditionary 0.00000000 0.00000000 0.01317349## expelling 0.01308387 0.00000000 0.00000000## experiment 0.00000000 0.00000000 0.00000000## explained 0.00000000 0.00000000 0.00000000## explaining 0.00000000 0.01246261 0.00000000## explanation 0.00000000 0.00000000 0.00000000## exploited 0.00000000 0.00000000 0.00000000## exploration 0.00000000 0.00000000 0.00000000## explore 0.00000000 0.00000000 0.00000000## exporters 0.00000000 0.00000000 0.01317349## exposed 0.00000000 0.00000000 0.01317349## extended 0.00000000 0.01246261 0.00000000## extends 0.00000000 0.00000000 0.00000000## extension 0.02616774 0.00000000 0.00000000## eye 0.00000000 0.00000000 0.02634699## eyed 0.00000000 0.00000000 0.01317349## facility 0.01308387 0.00000000 0.00000000## fails 0.00000000 0.00000000 0.00000000## fairest 0.00000000 0.00000000 0.00000000## fairly 0.00000000 0.01246261 0.00000000## fallujah 0.00000000 0.00000000 0.00000000## famine 0.00000000 0.00000000 0.00000000## fanfare 0.00000000 0.00000000 0.00000000## far-reaching 0.00000000 0.00000000 0.00000000## farmer 0.00000000 0.00000000 0.01317349## fatherless 0.00000000 0.00000000 0.00000000## favorite 0.01308387 0.00000000 0.00000000## fierce 0.00000000 0.00000000 0.00000000## fiercely 0.01308387 0.00000000 0.00000000## fifty 0.00000000 0.00000000 0.00000000## fights 0.00000000 0.00000000 0.00000000## financed 0.00000000 0.00000000 0.00000000## fingerprints 0.00000000 0.00000000 0.00000000## fingers 0.00000000 0.01246261 0.00000000## finished 0.00000000 0.02492522 0.00000000## finishing 0.01308387 0.00000000 0.01317349## fires 0.00000000 0.00000000 0.00000000## firmly 0.00000000 0.00000000 0.01317349## firms 0.00000000 0.01246261 0.00000000## first-class 0.00000000 0.00000000 0.02634699## first-time 0.00000000 0.02492522 0.00000000## fiscally 0.00000000 0.00000000 0.00000000## fisher 0.02616774 0.00000000 0.00000000## fits 0.00000000 0.00000000 0.00000000## flags 0.00000000 0.00000000 0.00000000## flexible 0.01308387 0.00000000 0.00000000## floor 0.00000000 0.00000000 0.00000000## florida 0.00000000 0.02492522 0.00000000## following 0.00000000 0.00000000 0.00000000## forgiven 0.00000000 0.02492522 0.00000000## fork 0.00000000 0.00000000 0.00000000## forsyth 0.02616774 0.00000000 0.00000000## fortunately 0.00000000 0.00000000 0.00000000## fossil 0.00000000 0.00000000 0.01317349## foundations 0.00000000 0.00000000 0.02634699## founded 0.01308387 0.00000000 0.00000000## foy 0.02616774 0.00000000 0.00000000## fragile 0.00000000 0.00000000 0.00000000## freely 0.00000000 0.00000000 0.01317349## friday 0.00000000 0.00000000 0.00000000## fringe 0.00000000 0.00000000 0.00000000## frontline 0.00000000 0.00000000 0.00000000## frozen 0.01308387 0.00000000 0.00000000## frustrated 0.00000000 0.01246261 0.01317349## frustrating 0.01308387 0.00000000 0.00000000## fuel-efficient 0.00000000 0.00000000 0.01317349## fumes 0.00000000 0.00000000 0.00000000## gabby 0.01308387 0.00000000 0.00000000## gaining 0.00000000 0.00000000 0.00000000## gallon 0.00000000 0.00000000 0.00000000## gallons 0.00000000 0.00000000 0.00000000## gender 0.00000000 0.00000000 0.01317349## generals 0.01308387 0.00000000 0.00000000## generational 0.00000000 0.00000000 0.00000000## genocide 0.00000000 0.00000000 0.00000000## genome 0.00000000 0.00000000 0.00000000## georgetown 0.00000000 0.00000000 0.00000000## germ 0.00000000 0.00000000 0.00000000## gibraltar 0.00000000 0.00000000 0.00000000## gitmo 0.00000000 0.00000000 0.00000000## giuliani 0.00000000 0.00000000 0.00000000## giveaways 0.00000000 0.00000000 0.00000000## glad 0.00000000 0.00000000 0.00000000## god-given 0.00000000 0.00000000 0.00000000## gotten 0.00000000 0.00000000 0.00000000## governance 0.01308387 0.01246261 0.00000000## graders 0.00000000 0.00000000 0.00000000## graduating 0.00000000 0.00000000 0.00000000## grandmother 0.00000000 0.00000000 0.00000000## grassley 0.00000000 0.00000000 0.00000000## grassroots 0.00000000 0.00000000 0.00000000## gray 0.00000000 0.00000000 0.00000000## greenhouse 0.00000000 0.00000000 0.00000000## gregg 0.00000000 0.02492522 0.00000000## gridlock 0.00000000 0.00000000 0.00000000## grocery 0.00000000 0.00000000 0.01317349## grueling 0.00000000 0.00000000 0.01317349## guaranteeing 0.00000000 0.00000000 0.01317349## guess 0.00000000 0.00000000 0.00000000## guidance 0.00000000 0.00000000 0.00000000## guides 0.00000000 0.00000000 0.00000000## guiding 0.00000000 0.00000000 0.00000000## gut 0.00000000 0.00000000 0.00000000## hadiya 0.00000000 0.00000000 0.00000000## hadn^t 0.00000000 0.00000000 0.00000000## halls 0.00000000 0.00000000 0.00000000## halt 0.00000000 0.00000000 0.00000000## halted 0.00000000 0.00000000 0.01317349## hamas 0.00000000 0.00000000 0.00000000## hambali 0.00000000 0.00000000 0.00000000## hamburg 0.00000000 0.00000000 0.00000000## hamid 0.00000000 0.00000000 0.00000000## handful 0.00000000 0.00000000 0.00000000## hands-on 0.00000000 0.00000000 0.01317349## hardships 0.00000000 0.01246261 0.00000000## harkin 0.00000000 0.00000000 0.02634699## hathaway 0.00000000 0.00000000 0.00000000## haul 0.00000000 0.00000000 0.00000000## head 0.00000000 0.00000000 0.00000000## headlines 0.00000000 0.01246261 0.00000000## healed 0.00000000 0.00000000 0.00000000## heavy 0.00000000 0.00000000 0.00000000## height 0.01308387 0.00000000 0.00000000## heppner 0.00000000 0.00000000 0.00000000## hesitation 0.00000000 0.00000000 0.00000000## high-paying 0.00000000 0.00000000 0.00000000## high-strength 0.00000000 0.00000000 0.00000000## high-wage 0.00000000 0.00000000 0.00000000## highly 0.00000000 0.00000000 0.00000000## hillary 0.00000000 0.00000000 0.00000000## hills 0.01308387 0.01246261 0.00000000## hinder 0.00000000 0.00000000 0.01317349## hired 0.00000000 0.00000000 0.00000000## hitlerism 0.00000000 0.00000000 0.00000000## hmos 0.00000000 0.00000000 0.00000000## holiness 0.00000000 0.00000000 0.00000000## homeowner 0.00000000 0.00000000 0.00000000## homework 0.01308387 0.00000000 0.00000000## honesty 0.00000000 0.00000000 0.00000000## honey 0.00000000 0.01246261 0.00000000## hopelessness 0.00000000 0.00000000 0.00000000## horizon 0.01308387 0.00000000 0.00000000## hormuz 0.00000000 0.00000000 0.00000000## horrific 0.00000000 0.00000000 0.00000000## horror 0.00000000 0.00000000 0.00000000## horrors 0.00000000 0.00000000 0.00000000## hostage 0.00000000 0.01246261 0.00000000## hotter 0.00000000 0.00000000 0.00000000## household 0.00000000 0.01246261 0.00000000## houser 0.02616774 0.00000000 0.00000000## houses 0.01308387 0.00000000 0.01317349## humanitarian 0.00000000 0.00000000 0.00000000## humbled 0.00000000 0.00000000 0.00000000## hunting 0.00000000 0.00000000 0.00000000## hurting 0.00000000 0.02492522 0.00000000## hussein^s 0.00000000 0.00000000 0.00000000## hutchison 0.00000000 0.00000000 0.00000000## hybrids 0.00000000 0.00000000 0.00000000## hydrogen-powered 0.00000000 0.00000000 0.00000000## illegally 0.00000000 0.00000000 0.00000000## illusions 0.01308387 0.00000000 0.00000000## imminent 0.00000000 0.00000000 0.00000000## impartial 0.00000000 0.00000000 0.00000000## imperatives 0.00000000 0.00000000 0.00000000## import 0.00000000 0.00000000 0.00000000## imported 0.00000000 0.00000000 0.00000000## imposed 0.00000000 0.00000000 0.01317349## imposing 0.00000000 0.00000000 0.00000000## imprisoned 0.00000000 0.00000000 0.00000000## incite 0.00000000 0.00000000 0.00000000## incorporates 0.00000000 0.00000000 0.00000000## independents 0.00000000 0.00000000 0.00000000## indicate 0.00000000 0.00000000 0.00000000## indicates 0.00000000 0.00000000 0.00000000## indicted 0.00000000 0.00000000 0.00000000## inevitable 0.00000000 0.01246261 0.00000000## infants 0.00000000 0.00000000 0.00000000## informed 0.00000000 0.00000000 0.00000000## inherit 0.00000000 0.00000000 0.00000000## inner 0.00000000 0.01246261 0.00000000## inoculating 0.00000000 0.00000000 0.00000000## insisted 0.00000000 0.00000000 0.00000000## insists 0.00000000 0.00000000 0.00000000## inspection 0.00000000 0.00000000 0.00000000## inspections 0.00000000 0.00000000 0.01317349## inspector 0.00000000 0.00000000 0.00000000## inspiration 0.00000000 0.00000000 0.00000000## installing 0.00000000 0.00000000 0.01317349## instance 0.00000000 0.00000000 0.00000000## instant 0.00000000 0.00000000 0.00000000## institute 0.01308387 0.00000000 0.00000000## instructing 0.00000000 0.00000000 0.00000000## integration 0.00000000 0.00000000 0.00000000## intense 0.00000000 0.00000000 0.00000000## intensified 0.00000000 0.00000000 0.00000000## intention 0.00000000 0.00000000 0.00000000## interstate 0.01308387 0.01246261 0.00000000## interview 0.00000000 0.00000000 0.00000000## invent 0.00000000 0.00000000 0.01317349## invented 0.00000000 0.00000000 0.00000000## inventors 0.02616774 0.00000000 0.00000000## invested 0.00000000 0.00000000 0.00000000## investor 0.00000000 0.00000000 0.00000000## invitation 0.00000000 0.00000000 0.00000000## involve 0.00000000 0.00000000 0.01317349## involvement 0.01308387 0.00000000 0.00000000## invulnerability 0.00000000 0.00000000 0.00000000## ira 0.00000000 0.00000000 0.01317349## iranians 0.00000000 0.00000000 0.00000000## ironclad 0.00000000 0.00000000 0.00000000## irons 0.00000000 0.00000000 0.00000000## isil^s 0.00000000 0.00000000 0.00000000## issuing 0.01308387 0.00000000 0.00000000## items 0.00000000 0.00000000 0.00000000## jailed 0.00000000 0.00000000 0.00000000## james 0.02616774 0.00000000 0.00000000## jerusalem 0.00000000 0.00000000 0.00000000## jewish 0.01308387 0.00000000 0.01317349## jim 0.02616774 0.00000000 0.00000000## job-creating 0.00000000 0.00000000 0.00000000## john^s 0.00000000 0.00000000 0.02634699## joining 0.00000000 0.00000000 0.01317349## judd 0.00000000 0.02492522 0.00000000## jump-start 0.00000000 0.00000000 0.00000000## junior 0.00000000 0.00000000 0.00000000## kara 0.00000000 0.00000000 0.00000000## karzai 0.00000000 0.00000000 0.00000000## kathleen 0.00000000 0.00000000 0.00000000## kathryn 0.00000000 0.00000000 0.00000000## keeper 0.00000000 0.00000000 0.00000000## kelly 0.00000000 0.00000000 0.00000000## kent 0.00000000 0.02492522 0.00000000## kerry 0.00000000 0.00000000 0.00000000## khalid 0.00000000 0.00000000 0.00000000## khattala 0.00000000 0.00000000 0.00000000## kristin 0.02616774 0.00000000 0.00000000## landed 0.00000000 0.01246261 0.00000000## landmark 0.00000000 0.00000000 0.00000000## large-scale 0.00000000 0.00000000 0.01317349## launchers 0.01308387 0.01246261 0.00000000## lawsuit 0.00000000 0.00000000 0.00000000## lawyer 0.00000000 0.00000000 0.02634699## leg 0.00000000 0.00000000 0.00000000## legacy 0.01308387 0.00000000 0.00000000## legally 0.00000000 0.00000000 0.00000000## legislate 0.00000000 0.00000000 0.00000000## lender 0.00000000 0.00000000 0.00000000## lengths 0.00000000 0.00000000 0.00000000## leonard 0.00000000 0.00000000 0.00000000## lethal 0.00000000 0.00000000 0.00000000## letting 0.00000000 0.00000000 0.00000000## lifeblood 0.00000000 0.00000000 0.00000000## likewise 0.00000000 0.00000000 0.00000000## limited 0.01308387 0.00000000 0.00000000## linked 0.00000000 0.00000000 0.00000000## links 0.00000000 0.00000000 0.00000000## lisa 0.00000000 0.00000000 0.00000000## listening 0.01308387 0.00000000 0.00000000## lists 0.00000000 0.00000000 0.00000000## literacy 0.00000000 0.00000000 0.00000000## llp 0.00000000 0.00000000 0.01317349## load 0.00000000 0.00000000 0.00000000## location 0.00000000 0.00000000 0.00000000## locked 0.01308387 0.00000000 0.00000000## logistics 0.00000000 0.00000000 0.00000000## logs 0.01308387 0.01246261 0.00000000## loss 0.00000000 0.00000000 0.00000000## loves 0.00000000 0.00000000 0.01317349## lowered 0.00000000 0.00000000 0.00000000## lowers 0.00000000 0.00000000 0.00000000## luna 0.00000000 0.00000000 0.00000000## mahmoud 0.00000000 0.00000000 0.00000000## maintaining 0.01308387 0.00000000 0.00000000## manage 0.00000000 0.00000000 0.00000000## management 0.00000000 0.00000000 0.00000000## mandate 0.01308387 0.00000000 0.00000000## mandates 0.00000000 0.00000000 0.00000000## mandatory 0.00000000 0.00000000 0.00000000## manmade 0.00000000 0.00000000 0.00000000## map 0.01308387 0.00000000 0.00000000## marching 0.00000000 0.01246261 0.00000000## market-based 0.00000000 0.00000000 0.00000000## marketplace 0.00000000 0.00000000 0.00000000## marks 0.00000000 0.00000000 0.00000000## married 0.00000000 0.00000000 0.00000000## mars 0.00000000 0.00000000 0.00000000## marshals 0.00000000 0.00000000 0.00000000## mary 0.00000000 0.00000000 0.02634699## maryland 0.00000000 0.00000000 0.00000000## matched 0.00000000 0.00000000 0.00000000## mayors 0.00000000 0.00000000 0.01317349## maze 0.00000000 0.00000000 0.00000000## mazen 0.00000000 0.00000000 0.00000000## medicare^s 0.00000000 0.00000000 0.01317349## meetings 0.00000000 0.01246261 0.00000000## melting 0.00000000 0.00000000 0.00000000## memories 0.00000000 0.00000000 0.00000000## memory 0.00000000 0.00000000 0.00000000## mentioned 0.00000000 0.00000000 0.00000000## mentoring 0.00000000 0.00000000 0.00000000## mercury 0.00000000 0.00000000 0.00000000## merely 0.00000000 0.00000000 0.00000000## mess 0.00000000 0.00000000 0.00000000## messages 0.00000000 0.00000000 0.00000000## miami 0.00000000 0.00000000 0.00000000## michigan 0.01308387 0.00000000 0.00000000## midwest 0.01308387 0.00000000 0.00000000## milan 0.00000000 0.00000000 0.00000000## militarism 0.00000000 0.00000000 0.00000000## millennium 0.00000000 0.00000000 0.00000000## miller 0.00000000 0.00000000 0.02634699## miners 0.02616774 0.00000000 0.00000000## minutes 0.00000000 0.00000000 0.01317349## miracles 0.00000000 0.00000000 0.00000000## miraculous 0.00000000 0.00000000 0.00000000## mistake 0.00000000 0.01246261 0.00000000## mitchell 0.00000000 0.00000000 0.00000000## mobility 0.00000000 0.00000000 0.01317349## mobilized 0.00000000 0.00000000 0.00000000## mobilizing 0.00000000 0.00000000 0.00000000## moderate 0.00000000 0.00000000 0.00000000## modernized 0.00000000 0.00000000 0.00000000## mohammed 0.00000000 0.00000000 0.00000000## moms 0.00000000 0.00000000 0.01317349## monitoring 0.00000000 0.00000000 0.00000000## mostly 0.00000000 0.01246261 0.00000000## motors 0.00000000 0.00000000 0.01317349## mounting 0.00000000 0.00000000 0.00000000## multinational 0.00000000 0.00000000 0.00000000## murderers 0.00000000 0.00000000 0.00000000## music 0.00000000 0.00000000 0.00000000## mustard 0.00000000 0.00000000 0.00000000## muster 0.00000000 0.00000000 0.00000000## mutilation 0.00000000 0.00000000 0.00000000## mutombo 0.00000000 0.00000000 0.00000000## myra 0.00000000 0.00000000 0.02634699## naive 0.00000000 0.01246261 0.00000000## nasa 0.01308387 0.00000000 0.00000000## nationalized 0.00000000 0.00000000 0.00000000## necessities 0.00000000 0.01246261 0.00000000## necessity 0.00000000 0.00000000 0.00000000## negotiating 0.00000000 0.00000000 0.00000000## neighbor 0.00000000 0.00000000 0.00000000## nerve 0.00000000 0.00000000 0.00000000## neutrality 0.00000000 0.00000000 0.00000000## newer 0.01308387 0.00000000 0.00000000## newspaper 0.01308387 0.00000000 0.00000000## noise 0.01308387 0.00000000 0.00000000## nominations 0.00000000 0.00000000 0.00000000## normal 0.00000000 0.00000000 0.00000000## nowhere 0.00000000 0.00000000 0.00000000## nuclear-armed 0.00000000 0.00000000 0.00000000## o 0.00000000 0.00000000 0.00000000## object 0.00000000 0.00000000 0.00000000## objections 0.00000000 0.00000000 0.00000000## obstacles 0.00000000 0.00000000 0.00000000## obtained 0.00000000 0.00000000 0.00000000## occupations 0.00000000 0.00000000 0.00000000## offense 0.00000000 0.00000000 0.00000000## omaha 0.00000000 0.01246261 0.01317349## one-tenth 0.00000000 0.00000000 0.00000000## one-third 0.00000000 0.00000000 0.00000000## operative 0.00000000 0.00000000 0.00000000## opinion 0.00000000 0.00000000 0.00000000## orphaned 0.00000000 0.00000000 0.00000000## other^s 0.00000000 0.00000000 0.00000000## out-build 0.01308387 0.00000000 0.00000000## out-educate 0.01308387 0.00000000 0.00000000## out-innovate 0.01308387 0.00000000 0.00000000## outrage 0.00000000 0.00000000 0.00000000## outstanding 0.00000000 0.00000000 0.01317349## overlook 0.00000000 0.00000000 0.00000000## overthrow 0.00000000 0.00000000 0.00000000## owning 0.00000000 0.00000000 0.00000000## oxygen 0.00000000 0.00000000 0.00000000## package 0.00000000 0.00000000 0.00000000## paint 0.00000000 0.00000000 0.00000000## pandemic 0.00000000 0.00000000 0.00000000## panel 0.00000000 0.00000000 0.01317349## parental 0.01308387 0.00000000 0.00000000## park 0.00000000 0.00000000 0.01317349## parks 0.00000000 0.00000000 0.00000000## partial-birth 0.00000000 0.00000000 0.00000000## particular 0.01308387 0.00000000 0.00000000## partisanship 0.00000000 0.01246261 0.00000000## passengers 0.00000000 0.00000000 0.00000000## passions 0.00000000 0.01246261 0.00000000## pastors 0.00000000 0.00000000 0.01317349## pataki 0.00000000 0.00000000 0.00000000## patenting 0.00000000 0.00000000 0.00000000## patrolling 0.00000000 0.00000000 0.00000000## patrols 0.01308387 0.00000000 0.00000000## patterns 0.00000000 0.00000000 0.00000000## patton 0.00000000 0.00000000 0.01317349## paul 0.00000000 0.00000000 0.00000000## peacefully 0.00000000 0.00000000 0.02634699## pearson 0.00000000 0.00000000 0.00000000## penalties 0.01308387 0.00000000 0.00000000## pension 0.00000000 0.00000000 0.01317349## perfect 0.00000000 0.00000000 0.00000000## permits 0.00000000 0.00000000 0.00000000## permitting 0.00000000 0.00000000 0.01317349## perpetrator 0.00000000 0.00000000 0.00000000## perpetual 0.00000000 0.01246261 0.00000000## perseverance 0.00000000 0.00000000 0.00000000## persons 0.00000000 0.00000000 0.01317349## pet 0.01308387 0.01246261 0.00000000## petraeus 0.00000000 0.00000000 0.00000000## philosophical 0.00000000 0.01246261 0.00000000## philosophy 0.00000000 0.00000000 0.00000000## phony 0.00000000 0.00000000 0.00000000## physicians 0.00000000 0.00000000 0.00000000## pictures 0.00000000 0.00000000 0.01317349## pile 0.00000000 0.00000000 0.00000000## pizza 0.00000000 0.00000000 0.01317349## placement 0.00000000 0.00000000 0.00000000## planned 0.00000000 0.00000000 0.00000000## platform 0.00000000 0.00000000 0.00000000## plug-in 0.00000000 0.00000000 0.00000000## plunged 0.00000000 0.00000000 0.00000000## plus 0.00000000 0.00000000 0.01317349## poland 0.00000000 0.00000000 0.00000000## politely 0.00000000 0.00000000 0.00000000## poll 0.00000000 0.01246261 0.00000000## portion 0.00000000 0.00000000 0.00000000## poses 0.00000000 0.00000000 0.00000000## posing 0.00000000 0.00000000 0.00000000## possessed 0.00000000 0.00000000 0.01317349## post 0.00000000 0.01246261 0.01317349## pot 0.00000000 0.00000000 0.00000000## potter 0.00000000 0.00000000 0.00000000## pouring 0.01308387 0.00000000 0.00000000## powell 0.00000000 0.00000000 0.00000000## powered 0.00000000 0.00000000 0.00000000## powerplants 0.00000000 0.01246261 0.00000000## powers 0.00000000 0.01246261 0.00000000## practiced 0.00000000 0.00000000 0.00000000## prayer 0.00000000 0.00000000 0.00000000## praying 0.00000000 0.00000000 0.01317349## predecessor 0.00000000 0.00000000 0.00000000## prefer 0.00000000 0.00000000 0.01317349## pregnancy 0.00000000 0.00000000 0.00000000## pretend 0.00000000 0.01246261 0.00000000## pretending 0.01308387 0.00000000 0.00000000## prevailed 0.00000000 0.01246261 0.00000000## primarily 0.00000000 0.00000000 0.00000000## principals 0.01308387 0.00000000 0.01317349## prior 0.00000000 0.01246261 0.00000000## prisoner 0.00000000 0.00000000 0.00000000## prize 0.00000000 0.00000000 0.00000000## procedures 0.00000000 0.00000000 0.01317349## proctor 0.02616774 0.00000000 0.00000000## produced 0.00000000 0.00000000 0.02634699## productivity 0.00000000 0.00000000 0.01317349## progressive 0.00000000 0.00000000 0.00000000## progrowth 0.00000000 0.00000000 0.00000000## proliferation 0.00000000 0.00000000 0.00000000## prominent 0.00000000 0.00000000 0.00000000## prompt 0.00000000 0.00000000 0.00000000## propaganda 0.00000000 0.00000000 0.00000000## proper 0.00000000 0.00000000 0.01317349## properly 0.00000000 0.00000000 0.00000000## prosecution 0.00000000 0.00000000 0.00000000## prospect 0.00000000 0.00000000 0.00000000## protectionism 0.00000000 0.00000000 0.00000000## proved 0.02616774 0.00000000 0.00000000## province 0.00000000 0.00000000 0.00000000## provinces 0.00000000 0.00000000 0.00000000## provincial 0.00000000 0.00000000 0.00000000## provision 0.00000000 0.00000000 0.00000000## provisions 0.00000000 0.00000000 0.00000000## prudent 0.00000000 0.00000000 0.01317349## pulled 0.00000000 0.00000000 0.00000000## pump 0.00000000 0.00000000 0.01317349## pundits 0.00000000 0.01246261 0.00000000## punishing 0.01308387 0.01246261 0.00000000## purchases 0.00000000 0.00000000 0.00000000## purchasing 0.00000000 0.00000000 0.00000000## pursued 0.00000000 0.00000000 0.00000000## pursues 0.00000000 0.00000000 0.00000000## putin 0.00000000 0.00000000 0.00000000## qualified 0.00000000 0.00000000 0.00000000## quick 0.00000000 0.00000000 0.00000000## quite 0.00000000 0.00000000 0.00000000## quitters 0.00000000 0.00000000 0.00000000## quitting 0.00000000 0.00000000 0.00000000## races 0.00000000 0.00000000 0.00000000## rage 0.00000000 0.00000000 0.00000000## railroads 0.00000000 0.01246261 0.00000000## raises 0.00000000 0.01246261 0.00000000## raleigh 0.00000000 0.00000000 0.01317349## rallied 0.01308387 0.00000000 0.01317349## rally 0.00000000 0.00000000 0.00000000## randolph 0.02616774 0.00000000 0.00000000## rape 0.00000000 0.00000000 0.00000000## rarely 0.00000000 0.00000000 0.01317349## rational 0.00000000 0.00000000 0.00000000## rations 0.00000000 0.00000000 0.00000000## reached 0.00000000 0.01246261 0.00000000## reaches 0.00000000 0.00000000 0.00000000## reaffirm 0.00000000 0.01246261 0.00000000## realized 0.01308387 0.00000000 0.00000000## realizing 0.00000000 0.01246261 0.00000000## rebounding 0.00000000 0.00000000 0.01317349## rebuilt 0.00000000 0.00000000 0.00000000## recedes 0.00000000 0.00000000 0.00000000## reclaim 0.00000000 0.00000000 0.00000000## recognizes 0.00000000 0.00000000 0.00000000## recommended 0.00000000 0.00000000 0.00000000## recovered 0.00000000 0.01246261 0.00000000## recovering 0.00000000 0.00000000 0.00000000## recriminations 0.00000000 0.00000000 0.00000000## redefine 0.00000000 0.00000000 0.00000000## reformed 0.00000000 0.00000000 0.00000000## reformers 0.00000000 0.00000000 0.00000000## refund 0.00000000 0.00000000 0.00000000## refundable 0.00000000 0.00000000 0.00000000## refused 0.00000000 0.00000000 0.00000000## refuses 0.00000000 0.00000000 0.00000000## reignite 0.00000000 0.00000000 0.00000000## reinforcements 0.00000000 0.00000000 0.00000000## reinvent 0.02616774 0.00000000 0.00000000## related 0.00000000 0.01246261 0.00000000## relentless 0.00000000 0.00000000 0.00000000## religions 0.00000000 0.00000000 0.00000000## reluctantly 0.00000000 0.00000000 0.00000000## remaking 0.00000000 0.00000000 0.00000000## remnants 0.00000000 0.00000000 0.01317349## remote 0.00000000 0.00000000 0.00000000## renewal 0.00000000 0.00000000 0.00000000## renovation 0.00000000 0.00000000 0.00000000## reorganized 0.00000000 0.00000000 0.00000000## repairing 0.01308387 0.00000000 0.00000000## replaced 0.00000000 0.00000000 0.00000000## reporting 0.00000000 0.00000000 0.00000000## represses 0.00000000 0.00000000 0.00000000## repressing 0.00000000 0.00000000 0.00000000## republic 0.00000000 0.01246261 0.00000000## requested 0.00000000 0.00000000 0.00000000## requests 0.00000000 0.02492522 0.00000000## resentments 0.00000000 0.00000000 0.00000000## reshaping 0.00000000 0.00000000 0.00000000## resident 0.00000000 0.00000000 0.02634699## resilient 0.00000000 0.01246261 0.00000000## respected 0.00000000 0.00000000 0.00000000## respiratory 0.00000000 0.00000000 0.00000000## responders 0.00000000 0.00000000 0.00000000## restored 0.01308387 0.00000000 0.00000000## restoring 0.00000000 0.01246261 0.00000000## restrained 0.00000000 0.00000000 0.00000000## restructure 0.00000000 0.00000000 0.00000000## restructuring 0.01308387 0.00000000 0.00000000## resume 0.00000000 0.00000000 0.00000000## retail 0.01308387 0.00000000 0.00000000## retaliation 0.00000000 0.00000000 0.00000000## retool 0.00000000 0.00000000 0.00000000## retooled 0.00000000 0.00000000 0.00000000## retrain 0.00000000 0.00000000 0.00000000## retreating 0.00000000 0.00000000 0.00000000## returning 0.00000000 0.00000000 0.00000000## reveal 0.00000000 0.00000000 0.00000000## revival 0.00000000 0.00000000 0.00000000## revive 0.00000000 0.00000000 0.00000000## revolutionary 0.00000000 0.00000000 0.00000000## richness 0.00000000 0.00000000 0.00000000## riddled 0.00000000 0.00000000 0.01317349## ride 0.00000000 0.00000000 0.00000000## ridge 0.01308387 0.00000000 0.00000000## rigorous 0.00000000 0.00000000 0.00000000## ripped 0.00000000 0.00000000 0.00000000## risked 0.01308387 0.00000000 0.00000000## risking 0.00000000 0.00000000 0.00000000## ritterby 0.00000000 0.00000000 0.00000000## rival 0.02616774 0.00000000 0.00000000## roadside 0.00000000 0.00000000 0.01317349## robotics 0.00000000 0.00000000 0.00000000## robust 0.01308387 0.00000000 0.00000000## rolled 0.00000000 0.00000000 0.01317349## rolling 0.00000000 0.00000000 0.00000000## romney^s 0.00000000 0.00000000 0.01317349## roofing 0.02616774 0.00000000 0.00000000## rooted 0.00000000 0.00000000 0.00000000## rose 0.00000000 0.00000000 0.00000000## rouge 0.00000000 0.00000000 0.00000000## routes 0.01308387 0.00000000 0.00000000## routine 0.00000000 0.00000000 0.00000000## rubio 0.00000000 0.00000000 0.02634699## rudolph 0.00000000 0.00000000 0.00000000## rugged 0.00000000 0.00000000 0.00000000## ruins 0.00000000 0.00000000 0.00000000## rulers 0.00000000 0.00000000 0.00000000## ruling 0.00000000 0.00000000 0.00000000## rushed 0.00000000 0.00000000 0.01317349## sacrificed 0.00000000 0.00000000 0.00000000## sacrificing 0.00000000 0.00000000 0.01317349## sadly 0.00000000 0.01246261 0.00000000## safeguard 0.00000000 0.00000000 0.00000000## safeguards 0.01308387 0.00000000 0.00000000## safely 0.00000000 0.00000000 0.01317349## salaries 0.01308387 0.00000000 0.00000000## salary 0.00000000 0.00000000 0.00000000## salute 0.00000000 0.00000000 0.00000000## sanctuary 0.00000000 0.00000000 0.00000000## sanitizing 0.00000000 0.00000000 0.00000000## sanity 0.00000000 0.00000000 0.00000000## sarin 0.00000000 0.00000000 0.00000000## scale 0.00000000 0.00000000 0.00000000## scattered 0.00000000 0.00000000 0.00000000## scavenger 0.00000000 0.00000000 0.00000000## scenes 0.00000000 0.00000000 0.00000000## schip 0.00000000 0.00000000 0.00000000## scholarships 0.01308387 0.00000000 0.00000000## scope 0.00000000 0.00000000 0.01317349## screeners 0.00000000 0.00000000 0.00000000## sebelius 0.00000000 0.00000000 0.00000000## seconds 0.00000000 0.00000000 0.00000000## secretly 0.00000000 0.00000000 0.00000000## secrets 0.00000000 0.00000000 0.00000000## sectors 0.00000000 0.00000000 0.00000000## secured 0.00000000 0.00000000 0.00000000## seized 0.00000000 0.00000000 0.00000000## seldom 0.00000000 0.00000000 0.00000000## self-appointed 0.00000000 0.00000000 0.00000000## self-reliant 0.00000000 0.00000000 0.00000000## selma 0.00000000 0.00000000 0.00000000## sensible 0.00000000 0.00000000 0.00000000## sensors 0.00000000 0.00000000 0.00000000## sentence 0.00000000 0.00000000 0.00000000## seoul 0.00000000 0.00000000 0.00000000## separate 0.00000000 0.00000000 0.00000000## settle 0.00000000 0.00000000 0.00000000## sexually 0.00000000 0.00000000 0.00000000## shadowy 0.00000000 0.00000000 0.00000000## shaking 0.00000000 0.00000000 0.01317349## shalala 0.00000000 0.00000000 0.00000000## shale 0.00000000 0.00000000 0.00000000## shareholder 0.00000000 0.00000000 0.00000000## sharing 0.00000000 0.00000000 0.00000000## sharon 0.00000000 0.00000000 0.00000000## sharp 0.00000000 0.00000000 0.02634699## sheer 0.00000000 0.01246261 0.00000000## sheik 0.00000000 0.00000000 0.00000000## sheoma 0.00000000 0.00000000 0.00000000## shifting 0.00000000 0.00000000 0.00000000## shipment 0.00000000 0.00000000 0.00000000## ships 0.00000000 0.00000000 0.00000000## shock 0.00000000 0.00000000 0.00000000## shortchanging 0.00000000 0.00000000 0.00000000## shortcuts 0.00000000 0.00000000 0.00000000## shortfall 0.00000000 0.00000000 0.00000000## showroom 0.00000000 0.00000000 0.00000000## shrapnel 0.00000000 0.00000000 0.01317349## shrink 0.00000000 0.00000000 0.01317349## shuttered 0.01308387 0.01246261 0.00000000## sidelines 0.00000000 0.01246261 0.01317349## signal 0.00000000 0.00000000 0.00000000## significantly 0.00000000 0.00000000 0.00000000## simpson 0.00000000 0.00000000 0.00000000## singapore 0.00000000 0.00000000 0.00000000## sites 0.00000000 0.00000000 0.00000000## slash 0.00000000 0.01246261 0.01317349## sleepless 0.00000000 0.00000000 0.00000000## slip 0.00000000 0.00000000 0.00000000## slipping 0.00000000 0.00000000 0.00000000## smallpox 0.00000000 0.00000000 0.00000000## sobered 0.00000000 0.00000000 0.00000000## societies 0.00000000 0.00000000 0.00000000## soldier 0.00000000 0.00000000 0.00000000## solemn 0.00000000 0.00000000 0.00000000## solid 0.01308387 0.00000000 0.00000000## solving 0.00000000 0.00000000 0.01317349## someday 0.00000000 0.00000000 0.00000000## someplace 0.00000000 0.01246261 0.00000000## soranno 0.00000000 0.00000000 0.02634699## sort 0.00000000 0.00000000 0.00000000## soul 0.00000000 0.00000000 0.00000000## southern 0.01308387 0.00000000 0.00000000## sovereign 0.00000000 0.00000000 0.00000000## sovereignty 0.00000000 0.00000000 0.00000000## soviets 0.02616774 0.00000000 0.00000000## speaks 0.00000000 0.00000000 0.01317349## spiegel 0.00000000 0.00000000 0.00000000## sponsor 0.00000000 0.00000000 0.00000000## squads 0.00000000 0.00000000 0.00000000## stabilize 0.00000000 0.00000000 0.00000000## stabilized 0.00000000 0.02492522 0.00000000## staffs 0.00000000 0.00000000 0.00000000## stage 0.00000000 0.00000000 0.00000000## staggering 0.00000000 0.00000000 0.00000000## stagnation 0.00000000 0.00000000 0.00000000## stairs 0.00000000 0.00000000 0.00000000## stalled 0.00000000 0.00000000 0.01317349## stamped 0.00000000 0.00000000 0.01317349## stark 0.00000000 0.00000000 0.00000000## starts 0.00000000 0.00000000 0.00000000## startup 0.00000000 0.00000000 0.01317349## startups 0.00000000 0.00000000 0.00000000## starvation 0.00000000 0.00000000 0.00000000## statements 0.00000000 0.00000000 0.00000000## station 0.01308387 0.00000000 0.00000000## statistics 0.00000000 0.00000000 0.00000000## statute 0.00000000 0.00000000 0.00000000## stayed 0.00000000 0.00000000 0.00000000## staying 0.00000000 0.00000000 0.00000000## steadfast 0.00000000 0.00000000 0.00000000## steel 0.01308387 0.00000000 0.01317349## steroids 0.00000000 0.00000000 0.00000000## steve 0.00000000 0.00000000 0.01317349## stimulate 0.00000000 0.00000000 0.00000000## stockpiles 0.00000000 0.01246261 0.01317349## strained 0.00000000 0.01246261 0.00000000## street^s 0.00000000 0.00000000 0.00000000## strengthens 0.00000000 0.00000000 0.00000000## stretch 0.00000000 0.00000000 0.01317349## stretches 0.00000000 0.01246261 0.00000000## structure 0.00000000 0.00000000 0.00000000## struggled 0.01308387 0.00000000 0.00000000## stubborn 0.00000000 0.01246261 0.00000000## stuck 0.00000000 0.00000000 0.00000000## submitted 0.00000000 0.00000000 0.00000000## subsidized 0.00000000 0.00000000 0.00000000## substantial 0.00000000 0.01246261 0.00000000## substantially 0.00000000 0.00000000 0.00000000## suddenly 0.00000000 0.00000000 0.00000000## sued 0.00000000 0.00000000 0.00000000## suffer 0.00000000 0.00000000 0.00000000## suitable 0.00000000 0.00000000 0.00000000## summon 0.00000000 0.00000000 0.01317349## sunlight 0.01308387 0.00000000 0.00000000## superb 0.00000000 0.00000000 0.00000000## surgery 0.00000000 0.00000000 0.02634699## surprise 0.00000000 0.00000000 0.00000000## surrender 0.00000000 0.00000000 0.01317349## suspicion 0.00000000 0.00000000 0.00000000## swift 0.00000000 0.00000000 0.00000000## switch 0.00000000 0.00000000 0.00000000## sympathy 0.00000000 0.00000000 0.00000000## system^s 0.00000000 0.00000000 0.00000000## systematically 0.00000000 0.00000000 0.00000000## tables 0.00000000 0.00000000 0.00000000## taleb 0.00000000 0.00000000 0.00000000## talents 0.00000000 0.00000000 0.00000000## tallest 0.00000000 0.00000000 0.00000000## targets 0.00000000 0.00000000 0.00000000## tasks 0.00000000 0.00000000 0.00000000## taught 0.00000000 0.00000000 0.00000000## teachings 0.00000000 0.00000000 0.00000000## tear 0.00000000 0.01246261 0.00000000## technical 0.00000000 0.00000000 0.00000000## teddy 0.00000000 0.00000000 0.00000000## teenager 0.00000000 0.00000000 0.01317349## television 0.00000000 0.00000000 0.00000000## tennessee 0.00000000 0.00000000 0.01317349## testified 0.00000000 0.00000000 0.00000000## theirs 0.00000000 0.00000000 0.01317349## thereby 0.00000000 0.00000000 0.00000000## therefore 0.00000000 0.00000000 0.00000000## they^ll 0.00000000 0.00000000 0.00000000## thompson 0.00000000 0.00000000 0.00000000## thread 0.00000000 0.00000000 0.00000000## threatening 0.00000000 0.00000000 0.00000000## thrive 0.00000000 0.00000000 0.00000000## thugs 0.00000000 0.00000000 0.00000000## tighter 0.01308387 0.00000000 0.00000000## tim 0.00000000 0.00000000 0.00000000## toil 0.00000000 0.00000000 0.01317349## tolerance 0.00000000 0.00000000 0.00000000## tomorrow^s 0.01308387 0.00000000 0.01317349## tongues 0.00000000 0.00000000 0.00000000## tons 0.00000000 0.00000000 0.00000000## torturing 0.00000000 0.00000000 0.00000000## touch 0.00000000 0.00000000 0.01317349## touched 0.00000000 0.00000000 0.00000000## touching 0.00000000 0.00000000 0.00000000## towers 0.00000000 0.00000000 0.00000000## toxic 0.00000000 0.00000000 0.00000000## tracking 0.00000000 0.00000000 0.00000000## tracks 0.00000000 0.00000000 0.00000000## traditional 0.00000000 0.00000000 0.00000000## traditions 0.00000000 0.00000000 0.00000000## traffickers 0.00000000 0.00000000 0.00000000## trajectory 0.00000000 0.00000000 0.01317349## transcontinental 0.01308387 0.00000000 0.00000000## transfer 0.00000000 0.00000000 0.00000000## transformed 0.01308387 0.00000000 0.00000000## transmitted 0.00000000 0.00000000 0.00000000## transparent 0.00000000 0.01246261 0.00000000## treasured 0.00000000 0.00000000 0.00000000## treaties 0.00000000 0.00000000 0.00000000## trillion-dollar 0.00000000 0.00000000 0.00000000## triple 0.00000000 0.01246261 0.00000000## triumph 0.00000000 0.00000000 0.00000000## trivial 0.00000000 0.00000000 0.00000000## troop 0.00000000 0.00000000 0.00000000## truman 0.00000000 0.00000000 0.00000000## trusted 0.00000000 0.00000000 0.00000000## tubes 0.00000000 0.00000000 0.00000000## tuesday 0.00000000 0.01246261 0.00000000## turbine 0.00000000 0.00000000 0.00000000## tutoring 0.00000000 0.00000000 0.01317349## twelve 0.00000000 0.00000000 0.00000000## twenty 0.00000000 0.01246261 0.00000000## two-thirds 0.00000000 0.00000000 0.00000000## ty 0.00000000 0.00000000 0.00000000## typhoon 0.00000000 0.00000000 0.02634699## u- 0.00000000 0.00000000 0.00000000## unable 0.00000000 0.02492522 0.00000000## unanswered 0.00000000 0.00000000 0.00000000## unarmed 0.00000000 0.00000000 0.00000000## uncertainties 0.00000000 0.00000000 0.00000000## unconditional 0.00000000 0.00000000 0.00000000## underway 0.01308387 0.00000000 0.00000000## undo 0.00000000 0.00000000 0.01317349## undocumented 0.02616774 0.00000000 0.00000000## unethical 0.00000000 0.00000000 0.00000000## uninterrupted 0.00000000 0.00000000 0.00000000## unite 0.00000000 0.00000000 0.00000000## unleash 0.00000000 0.00000000 0.01317349## unleashed 0.01308387 0.00000000 0.00000000## unraveling 0.00000000 0.00000000 0.00000000## unstable 0.00000000 0.00000000 0.00000000## unsustainable 0.00000000 0.00000000 0.00000000## untouched 0.00000000 0.01246261 0.00000000## unused 0.01308387 0.00000000 0.00000000## unwavering 0.00000000 0.00000000 0.00000000## unyielding 0.00000000 0.00000000 0.00000000## upwards 0.00000000 0.00000000 0.00000000## utter 0.00000000 0.00000000 0.00000000## vacant 0.01308387 0.00000000 0.00000000## vatican 0.00000000 0.00000000 0.00000000## vets 0.00000000 0.00000000 0.00000000## vibrant 0.00000000 0.00000000 0.00000000## victor 0.00000000 0.00000000 0.00000000## victoria 0.00000000 0.00000000 0.00000000## victories 0.00000000 0.00000000 0.00000000## video 0.01308387 0.00000000 0.00000000## videos 0.00000000 0.00000000 0.00000000## views 0.00000000 0.00000000 0.00000000## vigilant 0.00000000 0.00000000 0.01317349## vigorous 0.00000000 0.00000000 0.00000000## violate 0.00000000 0.00000000 0.00000000## violating 0.00000000 0.01246261 0.00000000## violations 0.00000000 0.02492522 0.00000000## virginia 0.00000000 0.00000000 0.00000000## virus 0.00000000 0.00000000 0.00000000## viruses 0.00000000 0.00000000 0.00000000## visited 0.00000000 0.00000000 0.00000000## visitor 0.01308387 0.01246261 0.00000000## vladimir 0.00000000 0.00000000 0.00000000## vladimirovich 0.00000000 0.00000000 0.00000000## voluntarily 0.00000000 0.00000000 0.00000000## vx 0.00000000 0.00000000 0.00000000## waitress 0.00000000 0.00000000 0.00000000## walking 0.00000000 0.00000000 0.00000000## warned 0.00000000 0.01246261 0.00000000## wasted 0.00000000 0.00000000 0.00000000## wastes 0.00000000 0.00000000 0.00000000## watchdog 0.00000000 0.00000000 0.00000000## waves 0.00000000 0.00000000 0.00000000## weakening 0.00000000 0.00000000 0.00000000## weaker 0.00000000 0.00000000 0.00000000## weakest 0.00000000 0.00000000 0.00000000## weather 0.00000000 0.00000000 0.00000000## weighed 0.00000000 0.00000000 0.00000000## welcomed 0.00000000 0.00000000 0.00000000## wendell 0.00000000 0.00000000 0.00000000## whim 0.00000000 0.00000000 0.00000000## whirlwind 0.00000000 0.00000000 0.00000000## wide 0.00000000 0.00000000 0.00000000## wildfires 0.00000000 0.00000000 0.00000000## wildlife 0.00000000 0.00000000 0.00000000## window 0.00000000 0.01246261 0.00000000## windows 0.01308387 0.00000000 0.00000000## winner 0.02616774 0.00000000 0.00000000## wiped 0.01308387 0.00000000 0.00000000## wireless 0.01308387 0.00000000 0.00000000## wisconsin 0.00000000 0.00000000 0.00000000## wish 0.00000000 0.00000000 0.00000000## witness 0.00000000 0.00000000 0.00000000## witnesses 0.00000000 0.00000000 0.00000000## wondering 0.00000000 0.01246261 0.00000000## wood 0.00000000 0.00000000 0.00000000## workplace 0.00000000 0.00000000 0.01317349## worksite 0.00000000 0.00000000 0.00000000## worried 0.00000000 0.00000000 0.00000000## worsened 0.00000000 0.00000000 0.00000000## wounds 0.00000000 0.00000000 0.00000000## wright 0.01308387 0.00000000 0.00000000## yesterday 0.00000000 0.01246261 0.00000000## yogi 0.00000000 0.00000000 0.00000000## youngstown 0.00000000 0.00000000 0.01317349## yourselves 0.00000000 0.00000000 0.00000000## zimbabwe 0.00000000 0.00000000 0.00000000## -foot 0.01308387 0.00000000 0.00000000## -h 0.00000000 0.00000000 0.00000000## -something 0.00000000 0.00000000 0.01317349## -year-olds 0.00000000 0.00000000 0.00000000## abandoned 0.00000000 0.00000000 0.00000000## abetting 0.00000000 0.00000000 0.00000000## abolition 0.00000000 0.00000000 0.00000000## abruptly 0.00000000 0.00000000 0.00000000## absence 0.00000000 0.00000000 0.00000000## academy 0.00000000 0.00000000 0.00000000## accelerating 0.00000000 0.00000000 0.00000000## acceptable 0.00000000 0.00000000 0.00000000## acceptance 0.00000000 0.00000000 0.00000000## accepts 0.00000000 0.00000000 0.00000000## accessible 0.00000000 0.00000000 0.00000000## accessing 0.00000000 0.00000000 0.00000000## accompanied 0.00000000 0.00000000 0.00000000## accomplishment 0.00000000 0.00000000 0.00000000## accomplishments 0.00000000 0.00000000 0.00000000## accumulated 0.00000000 0.00000000 0.00000000## accumulates 0.00000000 0.00000000 0.00000000## aching 0.00000000 0.00000000 0.00000000## acknowledgment 0.00000000 0.00000000 0.00000000## acne 0.00000000 0.00000000 0.00000000## acquire 0.00000000 0.00000000 0.00000000## acrimony 0.00000000 0.00000000 0.00000000## across-the-board 0.00000000 0.00000000 0.01317349## activity 0.00000000 0.00000000 0.00000000## actual 0.00000000 0.00000000 0.00000000## adapting 0.00000000 0.00000000 0.00000000## addressed 0.00000000 0.00000000 0.00000000## adjustment 0.00000000 0.00000000 0.00000000## administer 0.00000000 0.00000000 0.00000000## administration^s 0.00000000 0.01246261 0.00000000## administrator 0.00000000 0.00000000 0.00000000## admirals 0.00000000 0.00000000 0.00000000## admire 0.00000000 0.00000000 0.00000000## admitted 0.00000000 0.00000000 0.00000000## adnan 0.00000000 0.00000000 0.00000000## adopt 0.00000000 0.00000000 0.00000000## adopting 0.00000000 0.00000000 0.00000000## adopts 0.00000000 0.00000000 0.00000000## ads 0.00000000 0.00000000 0.00000000## adulthood 0.00000000 0.00000000 0.00000000## advanced-placement 0.00000000 0.00000000 0.00000000## advancing 0.00000000 0.00000000 0.00000000## advisers 0.00000000 0.00000000 0.00000000## advocated 0.00000000 0.00000000 0.00000000## advocating 0.00000000 0.00000000 0.00000000## aeronautics 0.00000000 0.00000000 0.00000000## affecting 0.00000000 0.00000000 0.00000000## affects 0.00000000 0.00000000 0.00000000## affiliated 0.00000000 0.00000000 0.00000000## affluent 0.00000000 0.00000000 0.00000000## affront 0.00000000 0.00000000 0.00000000## afghanistan^s 0.00000000 0.00000000 0.00000000## afterward 0.00000000 0.00000000 0.00000000## afterwards 0.00000000 0.00000000 0.00000000## agribusiness 0.00000000 0.00000000 0.00000000## aided 0.00000000 0.00000000 0.00000000## aiding 0.00000000 0.00000000 0.00000000## aids-free 0.00000000 0.00000000 0.00000000## aimed 0.00000000 0.00000000 0.00000000## ain^t 0.00000000 0.00000000 0.00000000## airlines 0.00000000 0.00000000 0.00000000## airmen 0.00000000 0.00000000 0.00000000## airplanes 0.00000000 0.00000000 0.00000000## al-asad 0.00000000 0.00000000 0.00000000## alarming 0.00000000 0.00000000 0.00000000## alert 0.00000000 0.00000000 0.00000000## alesandro 0.00000000 0.00000000 0.00000000## alienating 0.00000000 0.00000000 0.00000000## aligned 0.01308387 0.00000000 0.00000000## alito 0.00000000 0.00000000 0.00000000## all-in 0.00000000 0.00000000 0.01317349## all-out 0.00000000 0.00000000 0.00000000## all-powerful 0.00000000 0.00000000 0.00000000## allegiance 0.01308387 0.00000000 0.00000000## allentown 0.00000000 0.01246261 0.00000000## allowance 0.00000000 0.01246261 0.00000000## although 0.00000000 0.00000000 0.00000000## altogether 0.00000000 0.01246261 0.00000000## alzheimer^s 0.00000000 0.00000000 0.00000000## american-made 0.00000000 0.00000000 0.00000000## ammunition 0.00000000 0.00000000 0.00000000## amounts 0.00000000 0.00000000 0.00000000## analysts 0.00000000 0.00000000 0.00000000## anchor 0.00000000 0.00000000 0.00000000## andrews 0.00000000 0.00000000 0.00000000## angeles 0.00000000 0.00000000 0.00000000## anguish 0.00000000 0.01246261 0.00000000## animosity 0.00000000 0.00000000 0.00000000## annapolis 0.00000000 0.00000000 0.00000000## anniversaries 0.00000000 0.00000000 0.00000000## announcement 0.00000000 0.00000000 0.00000000## answered 0.00000000 0.00000000 0.00000000## anthem 0.00000000 0.00000000 0.00000000## anti-semitism 0.00000000 0.00000000 0.00000000## antifraud 0.00000000 0.00000000 0.00000000## antipoverty 0.00000000 0.01246261 0.00000000## antsy 0.00000000 0.00000000 0.00000000## anymore 0.00000000 0.00000000 0.00000000## anyone^s 0.00000000 0.00000000 0.00000000## anytime 0.00000000 0.00000000 0.00000000## anyway 0.00000000 0.00000000 0.00000000## apartments 0.00000000 0.00000000 0.00000000## apathy 0.00000000 0.00000000 0.00000000## apollo 0.01308387 0.00000000 0.00000000## applaud 0.00000000 0.00000000 0.00000000## applauded 0.00000000 0.00000000 0.00000000## applications 0.00000000 0.00000000 0.01317349## apprenticeship 0.00000000 0.00000000 0.00000000## approaches 0.00000000 0.00000000 0.00000000## approval 0.00000000 0.00000000 0.00000000## april^s 0.00000000 0.01246261 0.00000000## arab-israeli 0.00000000 0.00000000 0.01317349## archaic 0.00000000 0.00000000 0.00000000## arguing 0.00000000 0.00000000 0.00000000## ariel 0.00000000 0.00000000 0.00000000## arlene 0.00000000 0.00000000 0.00000000## armored 0.00000000 0.00000000 0.00000000## arrivals 0.00000000 0.00000000 0.00000000## arrive 0.00000000 0.00000000 0.00000000## arrives 0.00000000 0.00000000 0.00000000## art 0.00000000 0.00000000 0.00000000## articles 0.00000000 0.00000000 0.00000000## artificial 0.00000000 0.00000000 0.00000000## artist 0.00000000 0.00000000 0.00000000## asbestos 0.00000000 0.00000000 0.00000000## ashcroft 0.00000000 0.00000000 0.00000000## aspect 0.00000000 0.00000000 0.00000000## aspects 0.00000000 0.00000000 0.00000000## aspires 0.00000000 0.00000000 0.00000000## assassin^s 0.00000000 0.00000000 0.00000000## assassinated 0.00000000 0.00000000 0.00000000## assault 0.00000000 0.00000000 0.00000000## assaulted 0.00000000 0.00000000 0.00000000## asserting 0.00000000 0.00000000 0.00000000## asset 0.00000000 0.01246261 0.00000000## assimilates 0.00000000 0.00000000 0.00000000## assisted 0.00000000 0.00000000 0.00000000## associate^s 0.00000000 0.00000000 0.00000000## assuming 0.00000000 0.00000000 0.00000000## assumptions 0.00000000 0.00000000 0.00000000## assuring 0.00000000 0.00000000 0.00000000## astronauts 0.00000000 0.00000000 0.00000000## at-risk 0.00000000 0.00000000 0.00000000## athification 0.00000000 0.00000000 0.00000000## athist 0.00000000 0.00000000 0.00000000## athletics 0.00000000 0.00000000 0.00000000## attached 0.00000000 0.00000000 0.00000000## attackers 0.00000000 0.00000000 0.00000000## attempts 0.00000000 0.00000000 0.00000000## attitudes 0.00000000 0.00000000 0.00000000## attorneys 0.00000000 0.00000000 0.00000000## aurora 0.00000000 0.00000000 0.00000000## austin 0.00000000 0.00000000 0.00000000## authorized 0.00000000 0.00000000 0.00000000## authorizing 0.00000000 0.00000000 0.00000000## authors 0.00000000 0.00000000 0.00000000## automated 0.00000000 0.00000000 0.00000000## automatic 0.00000000 0.00000000 0.01317349## automatically 0.00000000 0.00000000 0.00000000## autoworker 0.00000000 0.00000000 0.01317349## avenue 0.00000000 0.01246261 0.00000000## avenues 0.00000000 0.00000000 0.00000000## aviation 0.00000000 0.01246261 0.00000000## avoidance 0.00000000 0.00000000 0.00000000## avoided 0.00000000 0.00000000 0.00000000## avoids 0.00000000 0.00000000 0.00000000## awakened 0.00000000 0.00000000 0.00000000## awakening 0.00000000 0.00000000 0.00000000## awarded 0.00000000 0.00000000 0.00000000## awed 0.00000000 0.00000000 0.00000000## awful 0.00000000 0.00000000 0.00000000## awoke 0.00000000 0.00000000 0.00000000## ayad 0.00000000 0.00000000 0.00000000## az 0.00000000 0.00000000 0.01317349## backing 0.00000000 0.00000000 0.00000000## backsliding 0.00000000 0.00000000 0.00000000## backwards 0.00000000 0.00000000 0.00000000## bacteria 0.00000000 0.00000000 0.01317349## bag 0.00000000 0.00000000 0.00000000## bahrain 0.00000000 0.00000000 0.00000000## bailing 0.00000000 0.00000000 0.00000000## bailout 0.00000000 0.01246261 0.00000000## balances 0.00000000 0.00000000 0.00000000## bali 0.00000000 0.00000000 0.00000000## baltimore 0.00000000 0.00000000 0.00000000## band 0.00000000 0.00000000 0.00000000## bang 0.00000000 0.00000000 0.00000000## banker 0.00000000 0.01246261 0.00000000## bankers 0.00000000 0.00000000 0.00000000## banking 0.00000000 0.00000000 0.00000000## bankroll 0.00000000 0.00000000 0.00000000## bankrolled 0.00000000 0.01246261 0.00000000## banner 0.00000000 0.00000000 0.00000000## bar 0.01308387 0.00000000 0.00000000## barkeep 0.00000000 0.00000000 0.01317349## barrels 0.00000000 0.00000000 0.00000000## basement 0.00000000 0.00000000 0.00000000## basest 0.00000000 0.00000000 0.00000000## bashing 0.00000000 0.00000000 0.00000000## basically 0.00000000 0.00000000 0.00000000## basketball 0.00000000 0.00000000 0.00000000## battalions 0.00000000 0.00000000 0.00000000## battling 0.00000000 0.00000000 0.00000000## beard 0.00000000 0.00000000 0.00000000## bears 0.00000000 0.00000000 0.00000000## beaten 0.00000000 0.01246261 0.00000000## beauty 0.00000000 0.00000000 0.00000000## beginnings 0.00000000 0.00000000 0.00000000## begrudge 0.00000000 0.00000000 0.00000000## behead 0.00000000 0.00000000 0.00000000## beings 0.00000000 0.00000000 0.00000000## belongs 0.00000000 0.00000000 0.00000000## belt 0.00000000 0.01246261 0.00000000## belts 0.00000000 0.01246261 0.00000000## benchmarks 0.00000000 0.00000000 0.00000000## beneficial 0.00000000 0.00000000 0.00000000## beneficiaries 0.00000000 0.00000000 0.00000000## benefitted 0.00000000 0.00000000 0.00000000## berlin^s 0.00000000 0.00000000 0.00000000## beside 0.00000000 0.00000000 0.00000000## beslan 0.00000000 0.00000000 0.00000000## betray 0.00000000 0.00000000 0.00000000## betraying 0.00000000 0.00000000 0.00000000## betrays 0.00000000 0.00000000 0.00000000## bias 0.00000000 0.00000000 0.00000000## bickering 0.00000000 0.00000000 0.00000000## biden^s 0.00000000 0.00000000 0.00000000## big-hearted 0.00000000 0.00000000 0.00000000## billion-dollar 0.00000000 0.00000000 0.00000000
Suppose we would like to compare the linguistic DNA of the two Presidents.
the
:mean(as.numeric(mydata['the',1:9])) #Bush
## [1] 5.175532
mean(as.numeric(mydata['the',10:19])) #Obama
## [1] 4.144577
and
:mean(as.numeric(mydata['and',1:9])) #Bush
## [1] 4.527649
mean(as.numeric(mydata['and',10:19])) #Obama
## [1] 3.809449
How can you use this tool to learn answers of relevance to political science?
What assumptions need to hold in order for us to interpret these answers in causal terms?
Test whether Bush uses the word "economy" more/less than Obama.
Test whether Bush uses the word "security" more/less than Obama.
The "documentary hypothesis" posits that the Pentateuch, the first five books of the Jewish and Christian bibles (Genesis, Exodus, Leviticus, Numbers, Deuteronomy), were not written by Moses, the traditional author, but are in fact a combination of various anonymous sources: the Yahwist (J), the Elohist (E), the Deuteronomist (D), and the Priestly (P).
stylo
to Test the Documentary HypothesisIn addition to counting words, the package stylo
also allows for identifying the authorship of text.
We will apply this function to test the "documentary hypothesis" .
Download and set-up the data, set your directory to the one that contains these folders:
I saved 5 different excerpts from Genesis:
The primary_set
directory contains text files with known authors.
The secondary_set
directory contains text files whose authorship we have to attribute.
stylo::classify
genesis<-classify()summary(genesis)genesis$distance.table
E | J | |
---|---|---|
e | 1.597276 | 2.044529 |
j | 2.149624 | 2.114899 |
x | 1.847896 | 2.037398 |
Smaller distance indicate likely the same author
Who is more likely to be the author of passage x?
Assigned Reading: Jodie Archer and Matthew L. Jockers. The Bestseller Code: Anatomy of the Blockbuster Novel. St. Martin's Publishing Group, 2016. Chapter 4.
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |